Webex · Schema

ModifyScheduleEventListObject

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
name string Current name for the event.
newName string New name for the event.
startDate string Start date of event.
endDate string End date of event.
startTime string Start time of event. Mandatory if the event is not all day.
endTime string End time of event. Mandatory if the event is not all day.
allDayEnabled boolean An indication of whether given event is an all-day event or not. Mandatory if the `startTime` and `endTime` are not defined.
recurrence object Recurrence definition.
View JSON Schema on GitHub

JSON Schema

webex-modifyscheduleeventlistobject-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ModifyScheduleEventListObject",
  "title": "ModifyScheduleEventListObject",
  "type": "object",
  "required": [
    "name",
    "newName",
    "startDate",
    "endDate"
  ],
  "properties": {
    "name": {
      "type": "string",
      "example": "Schedule",
      "description": "Current name for the event."
    },
    "newName": {
      "type": "string",
      "example": "MondaySchedule",
      "description": "New 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. Mandatory if the event is not all day."
    },
    "endTime": {
      "type": "string",
      "example": "14:20",
      "description": "End time of event. Mandatory if the event is not all day."
    },
    "allDayEnabled": {
      "type": "boolean",
      "description": "An indication of whether given event is an all-day event or not. Mandatory if the `startTime` and `endTime` are not defined."
    },
    "recurrence": {
      "$ref": "#/components/schemas/RecurrenceObject",
      "description": "Recurrence definition."
    }
  }
}