Webex · Schema

WorkingHoursBulkExportDTO

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
workingHourName string Name of the working hour shift.
startTime string Start time of the working hour shift.
endTime string End time of the working hour shift.
days array List of days for which this working hour shift is applicable.
View JSON Schema on GitHub

JSON Schema

webex-workinghoursbulkexportdto-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/WorkingHoursBulkExportDTO",
  "title": "WorkingHoursBulkExportDTO",
  "type": "object",
  "properties": {
    "workingHourName": {
      "type": "string",
      "description": "Name of the working hour shift."
    },
    "startTime": {
      "type": "string",
      "description": "Start time of the working hour shift."
    },
    "endTime": {
      "type": "string",
      "description": "End time of the working hour shift."
    },
    "days": {
      "type": "array",
      "description": "List of days for which this working hour shift is applicable.",
      "items": {
        "type": "string",
        "description": "Day of the week."
      }
    }
  }
}