Amazon Connect · Schema
CreateHoursOfOperationRequest
ChatContact CenterCustomer ServiceVoiceAIOmnichannel
Properties
| Name | Type | Description |
|---|---|---|
| Name | string | The name of the hours of operation. |
| Description | string | The description of the hours of operation. |
| TimeZone | string | The time zone of the hours of operation. |
| Config | array | |
| Tags | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/CreateHoursOfOperationRequest",
"title": "CreateHoursOfOperationRequest",
"type": "object",
"required": [
"Config",
"Name",
"TimeZone"
],
"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"
}
}
}
}