Sha256: 90c3c0f3f1aada3f534ce03109efc8612069a7ee44a8ecb928601ec1150b4a57
Contents?: true
Size: 674 Bytes
Versions: 19
Compression:
Stored size: 674 Bytes
Contents
{ "$schema": "http://json-schema.org/draft-07/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
19 entries across 19 versions & 1 rubygems