Amazon Connect · Schema
GetMetricDataResponse
GetMetricDataResponse schema from Amazon Connect Service API
ChatContact CenterCustomer ServiceVoiceAIOmnichannel
Properties
| Name | Type | Description |
|---|---|---|
| NextToken | string | |
| MetricResults | array |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-connect/refs/heads/main/json-schema/get-metric-data-response-schema.json",
"title": "GetMetricDataResponse",
"description": "GetMetricDataResponse schema from Amazon Connect Service API",
"type": "object",
"properties": {
"NextToken": {
"type": "string"
},
"MetricResults": {
"type": "array",
"items": {
"type": "object",
"properties": {
"Dimensions": {
"type": "object",
"properties": {
"Queue": {
"type": "object",
"properties": {
"Id": {
"type": "string"
},
"Arn": {
"type": "string"
}
}
},
"Channel": {
"type": "string"
}
}
},
"Collections": {
"type": "array",
"items": {
"type": "object",
"properties": {
"Metric": {
"type": "object",
"properties": {
"Name": {
"type": "string"
},
"Unit": {
"type": "string"
},
"Statistic": {
"type": "string"
}
}
},
"Value": {
"type": "number"
}
}
}
}
}
}
}
}
}