Palo Alto Networks · Schema

MonitoredAgent

MonitoredAgent schema from Palo Alto Networks Autonomous DEM API

Cloud SecurityCybersecurityFirewallNetwork SecuritySASESOARThreat IntelligenceXDR

Properties

Name Type Description
agent_id string Unique ADEM agent identifier.
user_id string User email or identifier associated with this agent.
device_name string Hostname of the endpoint device.
os string Operating system of the endpoint.
os_version string Operating system version string.
agent_version string ADEM agent software version.
site_name string Site name where the agent is located.
status string Current agent connectivity status.
last_seen string Timestamp of the last agent heartbeat.
View JSON Schema on GitHub

JSON Schema

autonomous-dem-api-monitored-agent-schema.json Raw ↑
{
  "$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."
    }
  }
}