Sha256: 512acb038818b09502b35ca6d46ec43335ee9e3ff599cfb08b85036f55a6c732
Contents?: true
Size: 674 Bytes
Versions: 15
Compression:
Stored size: 674 Bytes
Contents
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "twoFactorCode": { "type": "string", "maxLength": 2048 }, "password": { "type": "string", "minLength": 8, "maxLength": 2048 }, "newPassword": { "type": "string", "minLength": 12, "maxLength": 2048, "pattern": "^(?=.*[A-Z])(?=.*[^A-Za-z0-9])(?=.*[0-9])(?=.*[a-z]).{12,}$" }, "invalidateExistingTokens": { "type": "boolean" }, "tokenTTL": { "type": "integer", "minimum": 0 } }, "required": [ "password", "newPassword" ], "additionalProperties": false }
Version data entries
15 entries across 15 versions & 1 rubygems