Sha256: b35cbdb9eb07b2f256b0d1994db277c19d83d662695845ef97151470e3dbe2c0
Contents?: true
Size: 878 Bytes
Versions: 19
Compression:
Stored size: 878 Bytes
Contents
{ "$schema": "http://json-schema.org/draft-07/schema#", "type": "object", "properties": { "instanceId": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "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", "maxLength": 1024 }, "role": { "type": "string", "enum": [ "admin", "view" ] }, "avatarUrl": { "type": "string", "format": "uri", "maxLength": 1024 }, "twoFactorAuthEnabled": { "type": "boolean" }, "ssoLinked": { "type": "boolean" } }, "additionalProperties": false }
Version data entries
19 entries across 19 versions & 1 rubygems