AlarmModelSummaries schema
{ "$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-model-summaries-schema.json", "title": "AlarmModelSummaries", "description": "AlarmModelSummaries schema", "type": "array", "items": { "type": "object", "properties": { "creationTime": { "allOf": [ { "$ref": "#/components/schemas/Timestamp" }, { "description": "The time the alarm model was created, in the Unix epoch format." } ] }, "alarmModelDescription": { "allOf": [ { "$ref": "#/components/schemas/AlarmModelDescription" }, { "description": "The description of the alarm model." } ] }, "alarmModelName": { "allOf": [ { "$ref": "#/components/schemas/AlarmModelName" }, { "description": "The name of the alarm model." } ] } }, "description": "Contains a summary of an alarm model." } }