Webex · Schema

BusinessHoursBulkExportDTO

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
name string
description string
timezone string
holidayName string
overrideName string
workingHours array
View JSON Schema on GitHub

JSON Schema

webex-businesshoursbulkexportdto-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BusinessHoursBulkExportDTO",
  "title": "BusinessHoursBulkExportDTO",
  "type": "object",
  "properties": {
    "name": {
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "timezone": {
      "type": "string"
    },
    "holidayName": {
      "type": "string"
    },
    "overrideName": {
      "type": "string"
    },
    "workingHours": {
      "uniqueItems": true,
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/WorkingHoursBulkExportDTO"
      }
    }
  }
}