freshworks · Schema
UserStatus
Properties
| Name | Type | Description |
|---|---|---|
| user_id | integer | ID of the user. |
| name | string | Name of the user. |
| available | boolean | Whether the user is available. |
| on_call | boolean | Whether the user is currently on a call. |
| status | string | Current status label. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/UserStatus",
"title": "UserStatus",
"type": "object",
"properties": {
"user_id": {
"type": "integer",
"description": "ID of the user."
},
"name": {
"type": "string",
"description": "Name of the user."
},
"available": {
"type": "boolean",
"description": "Whether the user is available."
},
"on_call": {
"type": "boolean",
"description": "Whether the user is currently on a call."
},
"status": {
"type": "string",
"description": "Current status label."
}
}
}