Amazon Connect · JSON Structure

Create Hours Of Operation Request Structure

CreateHoursOfOperationRequest schema from Amazon Connect Service API

Type: object Properties: 5 Required: 3
ChatContact CenterCustomer ServiceVoiceAIOmnichannel

CreateHoursOfOperationRequest is a JSON Structure definition published by Amazon Connect, describing 5 properties, of which 3 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

Name Description TimeZone Config Tags

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-connect/refs/heads/main/json-structure/create-hours-of-operation-request-structure.json",
  "name": "CreateHoursOfOperationRequest",
  "description": "CreateHoursOfOperationRequest schema from Amazon Connect Service API",
  "type": "object",
  "properties": {
    "Name": {
      "type": "string",
      "description": "The name of the hours of operation.",
      "example": "Business Hours"
    },
    "Description": {
      "type": "string",
      "description": "The description of the hours of operation."
    },
    "TimeZone": {
      "type": "string",
      "description": "The time zone of the hours of operation.",
      "example": "America/New_York"
    },
    "Config": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/HoursOfOperationConfig"
      }
    },
    "Tags": {
      "type": "object",
      "additionalProperties": {
        "type": "string"
      }
    }
  },
  "required": [
    "Config",
    "Name",
    "TimeZone"
  ]
}