Amazon IoT Events · Schema

DetectorModelSummaries

DetectorModelSummaries schema

Event DetectionIoTState MachineAutomation
View JSON Schema on GitHub

JSON Schema

iot-events-detector-model-summaries-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-detector-model-summaries-schema.json",
  "title": "DetectorModelSummaries",
  "description": "DetectorModelSummaries schema",
  "type": "array",
  "items": {
    "type": "object",
    "properties": {
      "detectorModelName": {
        "allOf": [
          {
            "$ref": "#/components/schemas/DetectorModelName"
          },
          {
            "description": "The name of the detector model."
          }
        ]
      },
      "detectorModelDescription": {
        "allOf": [
          {
            "$ref": "#/components/schemas/DetectorModelDescription"
          },
          {
            "description": "A brief description of the detector model."
          }
        ]
      },
      "creationTime": {
        "allOf": [
          {
            "$ref": "#/components/schemas/Timestamp"
          },
          {
            "description": "The time the detector model was created."
          }
        ]
      }
    },
    "description": "Information about the detector model."
  }
}