ADT · Schema

SystemStatusResponse

Response to an arm or disarm command.

Access ControlAutomationHome SecurityIoTMonitoringSecuritySmart HomeFortune 1000

Properties

Name Type Description
systemId string ID of the system.
status string New system status after command.
timestamp string Timestamp of the status change.
View JSON Schema on GitHub

JSON Schema

platform-api-system-status-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/adt/refs/heads/main/json-schema/platform-api-system-status-response-schema.json",
  "title": "SystemStatusResponse",
  "description": "Response to an arm or disarm command.",
  "type": "object",
  "properties": {
    "systemId": {
      "type": "string",
      "description": "ID of the system.",
      "example": "sys-001"
    },
    "status": {
      "type": "string",
      "description": "New system status after command.",
      "example": "armed_away"
    },
    "timestamp": {
      "type": "string",
      "format": "date-time",
      "description": "Timestamp of the status change.",
      "example": "2025-03-15T14:30:00Z"
    }
  }
}