{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-cloudwatch/refs/heads/main/json-schema/cloudwatch-describe-alarms-response-schema.json",
"title": "DescribeAlarmsResponse",
"description": "Response from the DescribeAlarms action",
"type": "object",
"properties": {
"metricAlarms": {
"type": "array",
"description": "The information about the alarms",
"items": {
"$ref": "#/components/schemas/Alarm"
}
},
"nextToken": {
"type": "string",
"description": "Token for the next page of results"
}
}
}