Webex · Schema

PostScheduleObject

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
type string Type of the schedule. * `businessHours` - Business hours schedule type. * `holidays` - Holidays schedule type.
name string Unique name for the schedule.
events array List of schedule events.
View JSON Schema on GitHub

JSON Schema

webex-postscheduleobject-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PostScheduleObject",
  "title": "PostScheduleObject",
  "type": "object",
  "required": [
    "type",
    "name"
  ],
  "properties": {
    "type": {
      "type": "string",
      "enum": [
        "businessHours",
        "holidays"
      ],
      "description": "Type of the schedule.\n * `businessHours` - Business hours schedule type.\n * `holidays` - Holidays schedule type.\n"
    },
    "name": {
      "type": "string",
      "example": "AUTOATTENDANT-BUSINESS-HOURS",
      "description": "Unique name for the schedule."
    },
    "events": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ScheduleEventObject"
      },
      "description": "List of schedule events."
    }
  }
}