Amazon Connect · JSON Structure

Hours Of Operation Time Slice Structure

The start or end time of an hours of operation.

Type: object Properties: 2 Required: 2
ChatContact CenterCustomer ServiceVoiceAIOmnichannel

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

Properties

Hours Minutes

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/hours-of-operation-time-slice-structure.json",
  "name": "HoursOfOperationTimeSlice",
  "description": "The start or end time of an hours of operation.",
  "type": "object",
  "properties": {
    "Hours": {
      "type": "int32",
      "description": "The hours.",
      "minimum": 0,
      "maximum": 23,
      "example": 9
    },
    "Minutes": {
      "type": "int32",
      "description": "The minutes.",
      "minimum": 0,
      "maximum": 59,
      "example": 0
    }
  },
  "required": [
    "Hours",
    "Minutes"
  ]
}