Webex · Schema

ScheduleShortDetails

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
id string Identifier for a schedule.
name string Name for the schedule.
type object The Schedule type whether `businessHours` or `holidays`.
level object The Schedule level whether `LOCATION` or `PEOPLE`.
View JSON Schema on GitHub

JSON Schema

webex-scheduleshortdetails-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ScheduleShortDetails",
  "title": "ScheduleShortDetails",
  "type": "object",
  "required": [
    "id",
    "name",
    "type"
  ],
  "properties": {
    "id": {
      "type": "string",
      "example": "Y2lzY29zcGFyazovL3VzL1VTRVJfU0NIRURVTEUvUkdGc2JHRnpYMDltWm1salpWOUliM1Z5Y3c9PQ",
      "description": "Identifier for a 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`."
    },
    "level": {
      "$ref": "#/components/schemas/ScheduleLevel",
      "description": "The Schedule level whether `LOCATION` or `PEOPLE`."
    }
  }
}