{
    "$id": "https://alwaysai.co/device-agent-status-schema.json",
    "$schema": "https://json-schema.org/draft/2019-09/schema",
    "title": "device_agent_status",
    "description": "Whether the analytics passthrough is enabled and available",
    "type": "object",
    "properties": {
        "passthrough": {
            "type": "object",
            "properties": {
                "status": {
                    "type": "string",
                    "enum": [
                        "starting",
                        "running",
                        "error",
                        "disabled"
                    ]
                },
                "message": {
                    "type": "string"
                }
            },
            "required": [
                "status",
                "message"
            ]
        }
    },
    "required": [
        "passthrough"
    ]
}
