Properties
| Name | Type | Description |
|---|---|---|
| username | string | |
| fullName | string | |
| firstName | string | |
| lastName | string | |
| string | ||
| description | string | |
| role | string | |
| level | string | |
| created | integer | |
| modified | integer | |
| groups | array |
JSON Schema
{
"$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"
}
}
}
}