Properties
| Name | Type | Description |
|---|---|---|
| login | string | User login name |
| displayName | string | Display name |
| string | Email address | |
| groups | array | Groups the user belongs to |
| userProfile | string | User profile (e.g., READER, DATA_ANALYST, DATA_ENGINEER, ADMIN) |
| enabled | boolean | Whether the account is enabled |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/User",
"title": "User",
"type": "object",
"properties": {
"login": {
"type": "string",
"description": "User login name"
},
"displayName": {
"type": "string",
"description": "Display name"
},
"email": {
"type": "string",
"format": "email",
"description": "Email address"
},
"groups": {
"type": "array",
"items": {
"type": "string"
},
"description": "Groups the user belongs to"
},
"userProfile": {
"type": "string",
"description": "User profile (e.g., READER, DATA_ANALYST, DATA_ENGINEER, ADMIN)"
},
"enabled": {
"type": "boolean",
"description": "Whether the account is enabled"
}
}
}