Amazon Connect · Schema

HoursOfOperationConfig

Contains information about the hours of operation.

ChatContact CenterCustomer ServiceVoiceAIOmnichannel

Properties

Name Type Description
Day string The day that the hours of operation applies to.
StartTime object
EndTime object
View JSON Schema on GitHub

JSON Schema

amazon-connect-hoursofoperationconfig-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/HoursOfOperationConfig",
  "title": "HoursOfOperationConfig",
  "type": "object",
  "description": "Contains information about the hours of operation.",
  "required": [
    "Day",
    "StartTime",
    "EndTime"
  ],
  "properties": {
    "Day": {
      "type": "string",
      "description": "The day that the hours of operation applies to.",
      "enum": [
        "SUNDAY",
        "MONDAY",
        "TUESDAY",
        "WEDNESDAY",
        "THURSDAY",
        "FRIDAY",
        "SATURDAY"
      ],
      "example": "MONDAY"
    },
    "StartTime": {
      "$ref": "#/components/schemas/HoursOfOperationTimeSlice"
    },
    "EndTime": {
      "$ref": "#/components/schemas/HoursOfOperationTimeSlice"
    }
  }
}