{ "$schema": "http://json-schema.org/draft-04/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", "minLength": 1, "maxLength": 1024 }, "role": { "type": "string", "enum": [ "admin", "view" ] }, "avatarUrl": { "type": "string", "format": "url" } }, "additionalProperties": false }