Webex · Schema
GetScheduleEventObject
CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing
Properties
| Name | Type | Description |
|---|---|---|
| id | string | A unique identifier for the schedule event. |
| name | string | Name for the event. |
| startDate | string | Start Date of Event. |
| endDate | string | End Date of Event. |
| startTime | string | Start time of event. |
| endTime | string | End time of event. |
| allDayEnabled | boolean | An indication of whether given event is an all-day event or not. |
| recurrence | object | Recurrence definition. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/GetScheduleEventObject",
"title": "GetScheduleEventObject",
"type": "object",
"required": [
"id",
"name",
"startDate",
"endDate"
],
"properties": {
"id": {
"type": "string",
"example": "Y2lzY29zcGFyazovL3VzL1NDSEVEVUxFX0VWRU5UL1RXOXVaR0Y1VTJOb1pXUjFiR1U",
"description": "A unique identifier for the schedule event."
},
"name": {
"type": "string",
"example": "MondaySchedule",
"description": "Name for the event."
},
"startDate": {
"type": "string",
"example": "2021-11-01",
"description": "Start Date of Event."
},
"endDate": {
"type": "string",
"example": "2021-11-30",
"description": "End Date of Event."
},
"startTime": {
"type": "string",
"example": "12:20",
"description": "Start time of event."
},
"endTime": {
"type": "string",
"example": "14:20",
"description": "End time of event."
},
"allDayEnabled": {
"type": "boolean",
"description": "An indication of whether given event is an all-day event or not."
},
"recurrence": {
"$ref": "#/components/schemas/RecurrenceObject",
"description": "Recurrence definition."
}
}
}