Sha256: 16be1dbeeda131b8b0f6d95ed1423460fdc1c0d473b9fab16993b0d2552acca2
Contents?: true
Size: 533 Bytes
Versions: 19
Compression:
Stored size: 533 Bytes
Contents
{ "$schema": "http://json-schema.org/draft-07/schema#", "type": "object", "properties": { "token": { "type": "string", "minLength": 1 }, "email": { "type": "string", "format": "email", "maxLength": 1024 }, "password": { "type": "string", "minLength": 12, "maxLength": 2048, "pattern": "^(?=.*[A-Z])(?=.*[^A-Za-z0-9])(?=.*[0-9])(?=.*[a-z]).{12,}$" } }, "required": [ "token", "email", "password" ], "additionalProperties": false }
Version data entries
19 entries across 19 versions & 1 rubygems