Webex · Schema

OperatingModeSameHoursDailyScheduleObject

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
mondayToFriday object `Operating mode` schedule for Monday to Friday.
saturdayToSunday object `Operating mode` schedule for Saturday to Sunday.
View JSON Schema on GitHub

JSON Schema

webex-operatingmodesamehoursdailyscheduleobject-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/OperatingModeSameHoursDailyScheduleObject",
  "title": "OperatingModeSameHoursDailyScheduleObject",
  "type": "object",
  "required": [
    "mondayToFriday",
    "saturdayToSunday"
  ],
  "properties": {
    "mondayToFriday": {
      "$ref": "#/components/schemas/OperatingModeDayScheduleObject",
      "description": "`Operating mode` schedule for Monday to Friday."
    },
    "saturdayToSunday": {
      "$ref": "#/components/schemas/OperatingModeDayScheduleObject",
      "description": "`Operating mode` schedule for Saturday to Sunday."
    }
  }
}