Properties
| Name | Type | Description |
|---|---|---|
| sessionId | string | A unique identifier for a hot desk session. |
| workspaceId | string | The workspace where the hot desk session is active. |
| personId | string | The id of the person who initiated the hot desk session. |
| bookingStartTime | string | The start time of the booking. |
| bookingEndTime | string | The end time of the booking. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/HotDesk",
"title": "HotDesk",
"type": "object",
"properties": {
"sessionId": {
"type": "string",
"example": "Y2lzY29...",
"description": "A unique identifier for a hot desk session."
},
"workspaceId": {
"type": "string",
"example": "YL34EmB...",
"description": "The workspace where the hot desk session is active."
},
"personId": {
"type": "string",
"example": "YL34EmA...",
"description": "The id of the person who initiated the hot desk session."
},
"bookingStartTime": {
"type": "string",
"example": "2024-08-29T12:00:00Z",
"description": "The start time of the booking."
},
"bookingEndTime": {
"type": "string",
"example": "2024-08-29T20:00:00Z",
"description": "The end time of the booking."
}
}
}