automation-anywhere · Schema
UserSummary
Abbreviated user object returned within authentication responses
Properties
| Name | Type | Description |
|---|---|---|
| id | integer | Unique numeric identifier of the user |
| username | string | The user's login username |
| string | The user's email address | |
| roles | array | Roles assigned to the user |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/UserSummary",
"title": "UserSummary",
"type": "object",
"description": "Abbreviated user object returned within authentication responses",
"properties": {
"id": {
"type": "integer",
"format": "int64",
"description": "Unique numeric identifier of the user"
},
"username": {
"type": "string",
"description": "The user's login username"
},
"email": {
"type": "string",
"format": "email",
"description": "The user's email address"
},
"roles": {
"type": "array",
"description": "Roles assigned to the user",
"items": {
"$ref": "#/components/schemas/RoleRef"
}
}
}
}