Sha256: 508a6d7d7e037d261c3db6f0b17fd4fd8097db0d29df09f96173ce4a2fb59ec5
Contents?: true
Size: 961 Bytes
Versions: 13
Compression:
Stored size: 961 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", "view" ] }, "avatarUrl": { "type": "string", "format": "uri", "maxLength": 1024 }, "twoFactorAuthEnabled": { "type": "boolean" }, "ssoLinked": { "type": "boolean" } }, "additionalProperties": false }
Version data entries
13 entries across 13 versions & 1 rubygems