ADT · JSON Structure

Platform Api Automation Structure

An automation rule or smart home scene.

Type: object Properties: 5
Access ControlAutomationHome SecurityIoTMonitoringSecuritySmart HomeFortune 1000

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

Properties

id name trigger enabled actions

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-structure.json",
  "name": "Automation",
  "description": "An automation rule or smart home scene.",
  "type": "object",
  "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"
      }
    }
  }
}