Amazon IoT Events · Schema

AlarmModelSummary

Contains a summary of an alarm model.

Event DetectionIoTState MachineAutomation

Properties

Name Type Description
creationTime object
alarmModelDescription object
alarmModelName object
View JSON Schema on GitHub

JSON Schema

iot-events-alarm-model-summary-schema.json Raw ↑
{
  "$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-summary-schema.json",
  "title": "AlarmModelSummary",
  "description": "Contains a summary of an alarm model.",
  "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."
        }
      ]
    }
  }
}