Amazon Connect · Schema

HoursOfOperationTimeSlice

The start or end time of an hours of operation.

ChatContact CenterCustomer ServiceVoiceAIOmnichannel

Properties

Name Type Description
Hours integer The hours.
Minutes integer The minutes.
View JSON Schema on GitHub

JSON Schema

hours-of-operation-time-slice-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-connect/refs/heads/main/json-schema/hours-of-operation-time-slice-schema.json",
  "title": "HoursOfOperationTimeSlice",
  "description": "The start or end time of an hours of operation.",
  "type": "object",
  "properties": {
    "Hours": {
      "type": "integer",
      "description": "The hours.",
      "minimum": 0,
      "maximum": 23,
      "example": 9
    },
    "Minutes": {
      "type": "integer",
      "description": "The minutes.",
      "minimum": 0,
      "maximum": 59,
      "example": 0
    }
  },
  "required": [
    "Hours",
    "Minutes"
  ]
}