ADT · JSON Structure

Platform Api Automation List Structure

List of automation rules.

Type: object Properties: 1
Access ControlAutomationHome SecurityIoTMonitoringSecuritySmart HomeFortune 1000

AutomationList is a JSON Structure definition published by ADT, describing 1 property. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

automations

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/adt/refs/heads/main/json-structure/platform-api-automation-list-structure.json",
  "name": "AutomationList",
  "description": "List of automation rules.",
  "type": "object",
  "properties": {
    "automations": {
      "type": "array",
      "description": "Array of automation rules.",
      "items": {
        "type": "object",
        "description": "An automation rule or smart home scene.",
        "properties": {
          "id": {
            "type": "string",
            "description": "Unique identifier of the automation.",
            "example": "auto-001"
          },
          "name": {
            "type": "string",
            "description": "Display name of the automation.",
            "example": "Arm Away at Night"
          },
          "trigger": {
            "type": "string",
            "description": "What triggers this automation.",
            "enum": [
              "schedule",
              "alarm",
              "sensor",
              "geofence",
              "manual"
            ],
            "example": "schedule"
          },
          "enabled": {
            "type": "boolean",
            "description": "Whether the automation is currently active.",
            "example": true
          },
          "actions": {
            "type": "array",
            "description": "List of actions performed by this automation.",
            "items": {
              "type": "object"
            }
          }
        }
      }
    }
  }
}