{ "$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" } } }