Sha256: 025c77567f7a792007a14a4c10758a1a8d1aedb3653230e9c3dd46003117c6d4
Contents?: true
Size: 1021 Bytes
Versions: 21
Compression:
Stored size: 1021 Bytes
Contents
{ "$schema": "http://json-schema.org/draft-07/schema#", "type": "object", "properties": { "email": { "type": "string", "format": "email", "maxLength": 1024 }, "firstName": { "type": "string", "maxLength": 1024 }, "lastName": { "type": "string", "maxLength": 1024 }, "password": { "type": "string", "minLength": 8, "maxLength": 2048 }, "tokenCutoff": { "type": "string", "format": "date-time" }, "userTags": { "type": "object", "patternProperties": { "^[0-9a-zA-Z_-]{1,255}$": { "type": "string", "minLength": 1, "maxLength": 255 } }, "additionalProperties": false }, "experienceGroupIds": { "type": "array", "items": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "maxItems": 1000 } }, "additionalProperties": false, "required": [ "email", "password" ] }
Version data entries
21 entries across 21 versions & 1 rubygems