{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-iot-events/refs/heads/main/json-schema/iot-events-alarm-event-actions-schema.json",
"title": "AlarmEventActions",
"description": "Contains information about one or more alarm actions.",
"type": "object",
"properties": {
"alarmActions": {
"allOf": [
{
"$ref": "#/components/schemas/AlarmActions"
},
{
"description": "Specifies one or more supported actions to receive notifications when the alarm state changes."
}
]
}
}
}