Webex · Schema

ScheduleUpdateRequest

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
newName string New name for the schedule.
name string Name for the schedule.
type object The Schedule type whether `businessHours` or `holidays`.
events array List of events.
View JSON Schema on GitHub

JSON Schema

webex-scheduleupdaterequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ScheduleUpdateRequest",
  "title": "ScheduleUpdateRequest",
  "type": "object",
  "required": [
    "newName",
    "name",
    "type"
  ],
  "properties": {
    "newName": {
      "type": "string",
      "example": "Richardson_Office_Hours",
      "description": "New name for the 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."
    }
  }
}