Sha256: 7a66075b9d04710dd08112fe14548599d37698d01768c0b9d98ef490509cfee8
Contents?: true
Size: 961 Bytes
Versions: 4
Compression:
Stored size: 961 Bytes
Contents
{ "$schema": "http://json-schema.org/draft-04/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", "view" ] }, "avatarUrl": { "type": "string", "format": "uri", "maxLength": 1024 }, "twoFactorAuthEnabled": { "type": "boolean" }, "ssoLinked": { "type": "boolean" } }, "additionalProperties": false }
Version data entries
4 entries across 4 versions & 1 rubygems