Webex · Schema

UserSchedulePostRequest

Request body for creating a new user schedule.

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-userschedulepostrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UserSchedulePostRequest",
  "title": "UserSchedulePostRequest",
  "type": "object",
  "description": "Request body for creating a new user schedule.",
  "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": "Schedule ABC",
      "description": "Unique name for the schedule."
    },
    "events": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ScheduleEventObject"
      },
      "description": "List of schedule events."
    }
  }
}