{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/User", "title": "User", "type": "object", "properties": { "username": { "type": "string" }, "fullName": { "type": "string" }, "firstName": { "type": "string" }, "lastName": { "type": "string" }, "email": { "type": "string", "format": "email" }, "description": { "type": "string" }, "role": { "type": "string", "enum": [ "org_admin", "org_publisher", "org_user", "account_admin" ] }, "level": { "type": "string" }, "created": { "type": "integer" }, "modified": { "type": "integer" }, "groups": { "type": "array", "items": { "$ref": "#/components/schemas/GroupRef" } } } }