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