Sha256: b4cb012e8bfbfdff93f25052bf9a906c69c5c1a0c492da0ba18afaaddc5aa994
Contents?: true
Size: 676 Bytes
Versions: 4
Compression:
Stored size: 676 Bytes
Contents
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "userId": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "email": { "type": "string", "format": "email", "maxLength": 1024 }, "firstName": { "type": "string", "minLength": 1, "maxLength": 1024 }, "lastName": { "type": "string", "minLength": 1, "maxLength": 1024 }, "role": { "type": "string", "enum": [ "admin", "view" ] }, "avatarUrl": { "type": "string", "format": "url" } }, "additionalProperties": false }
Version data entries
4 entries across 2 versions & 1 rubygems