Webex · Schema
OperatingModeHolidayGetObject
CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing
Properties
| Name | Type | Description |
|---|---|---|
| id | string | A unique identifier for the holiday. |
| name | string | Name of the holiday. |
| allDayEnabled | boolean | Specifies if the `operating mode holiday` schedule event is enabled for the entire day. `False` if the flag is not set. |
| startDate | string | Start date of the `operating mode holiday`. |
| endDate | string | End date of the `operating mode holiday`. |
| startTime | string | Start time for the `operating mode holiday`. Mandatory if `allDayEnabled` is false. |
| endTime | string | End time for the `operating mode holiday`. Mandatory if `allDayEnabled` is false. |
| recurrence | object | Recurrence configuration for the `operating mode holiday`. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/OperatingModeHolidayGetObject",
"title": "OperatingModeHolidayGetObject",
"type": "object",
"required": [
"id",
"name",
"allDayEnabled",
"startDate",
"endDate"
],
"properties": {
"id": {
"type": "string",
"example": "Y2lzY29zcGFyazovL3VzL1NDSEVEVUxFX0VWRU5UL2E4Mjg5NzIyLTFiODAtNDFiNy05Njc4LTBlNzdhZThjMTIwOQ",
"description": "A unique identifier for the holiday."
},
"name": {
"type": "string",
"example": "Christmas",
"description": "Name of the holiday."
},
"allDayEnabled": {
"type": "boolean",
"example": true,
"description": "Specifies if the `operating mode holiday` schedule event is enabled for the entire day. `False` if the flag is not set."
},
"startDate": {
"type": "string",
"example": "2024-12-25",
"description": "Start date of the `operating mode holiday`."
},
"endDate": {
"type": "string",
"example": "2024-12-26",
"description": "End date of the `operating mode holiday`."
},
"startTime": {
"type": "string",
"example": "09:00",
"description": "Start time for the `operating mode holiday`. Mandatory if `allDayEnabled` is false."
},
"endTime": {
"type": "string",
"example": "17:00",
"description": "End time for the `operating mode holiday`. Mandatory if `allDayEnabled` is false."
},
"recurrence": {
"$ref": "#/components/schemas/OperatingModeRecurrenceObject",
"description": "Recurrence configuration for the `operating mode holiday`."
}
}
}