{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "MonitoredAgent", "description": "MonitoredAgent schema from Palo Alto Networks Autonomous DEM API", "$id": "https://raw.githubusercontent.com/api-evangelist/palo-alto-networks/refs/heads/main/json-schema/autonomous-dem-api-monitored-agent-schema.json", "type": "object", "properties": { "agent_id": { "type": "string", "description": "Unique ADEM agent identifier." }, "user_id": { "type": "string", "description": "User email or identifier associated with this agent." }, "device_name": { "type": "string", "description": "Hostname of the endpoint device." }, "os": { "type": "string", "enum": [ "windows", "macos", "linux", "ios", "android" ], "description": "Operating system of the endpoint." }, "os_version": { "type": "string", "description": "Operating system version string." }, "agent_version": { "type": "string", "description": "ADEM agent software version." }, "site_name": { "type": "string", "description": "Site name where the agent is located." }, "status": { "type": "string", "enum": [ "connected", "disconnected", "degraded" ], "description": "Current agent connectivity status." }, "last_seen": { "type": "string", "format": "date-time", "description": "Timestamp of the last agent heartbeat." } } }