Webex · Schema

ModifyScheduleObject

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
name string Unique name for the schedule.
events array List of schedule events.
View JSON Schema on GitHub

JSON Schema

webex-modifyscheduleobject-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ModifyScheduleObject",
  "title": "ModifyScheduleObject",
  "type": "object",
  "required": [
    "name"
  ],
  "properties": {
    "name": {
      "type": "string",
      "example": "AUTOATTENDANT-BUSINESS-HOURS",
      "description": "Unique name for the schedule."
    },
    "events": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ModifyScheduleEventListObject"
      },
      "description": "List of schedule events."
    }
  }
}