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