Webex · Schema
ScheduleLongDetails
CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing
Properties
| Name | Type | Description |
|---|---|---|
| id | string | Identifier for a schedule. |
| name | string | Name for the schedule. |
| type | object | The Schedule type whether `businessHours` or `holidays`. |
| events | array | List of events. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ScheduleLongDetails",
"title": "ScheduleLongDetails",
"type": "object",
"required": [
"id",
"name",
"type"
],
"properties": {
"id": {
"type": "string",
"example": "Y2lzY29zcGFyazovL3VzL1VTRVJfU0NIRURVTEUvUkdGc2JHRnpYMDltWm1salpWOUliM1Z5Y3c9PQ",
"description": "Identifier for a schedule."
},
"name": {
"type": "string",
"example": "Dallas_Office_Hours",
"description": "Name for the schedule."
},
"type": {
"$ref": "#/components/schemas/ScheduleType",
"description": "The Schedule type whether `businessHours` or `holidays`."
},
"events": {
"type": "array",
"items": {
"$ref": "#/components/schemas/EventLongDetails"
},
"description": "List of events."
}
}
}