Palo Alto Networks · Schema
Endpoint
An endpoint enrolled in XSIAM protection.
Cloud SecurityCybersecurityFirewallNetwork SecuritySASESOARThreat IntelligenceXDR
Properties
| Name | Type | Description |
|---|---|---|
| endpoint_id | string | |
| endpoint_name | string | |
| endpoint_type | string | |
| endpoint_status | string | |
| os_type | string | |
| ip | array | |
| users | array | |
| domain | string | |
| first_seen | integer | |
| last_seen | integer | |
| endpoint_version | string | |
| content_version | string | |
| is_isolated | string | |
| scan_status | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Endpoint",
"description": "An endpoint enrolled in XSIAM protection.",
"$id": "https://raw.githubusercontent.com/api-evangelist/palo-alto-networks/refs/heads/main/json-schema/cortex-xsiam-api-endpoint-schema.json",
"type": "object",
"properties": {
"endpoint_id": {
"type": "string"
},
"endpoint_name": {
"type": "string"
},
"endpoint_type": {
"type": "string",
"enum": [
"SERVER",
"WORKSTATION",
"LAPTOP"
]
},
"endpoint_status": {
"type": "string",
"enum": [
"CONNECTED",
"DISCONNECTED",
"LOST",
"UNINSTALLED"
]
},
"os_type": {
"type": "string",
"enum": [
"AGENT_OS_WINDOWS",
"AGENT_OS_LINUX",
"AGENT_OS_MAC"
]
},
"ip": {
"type": "array",
"items": {
"type": "string"
}
},
"users": {
"type": "array",
"items": {
"type": "string"
}
},
"domain": {
"type": "string"
},
"first_seen": {
"type": "integer"
},
"last_seen": {
"type": "integer"
},
"endpoint_version": {
"type": "string"
},
"content_version": {
"type": "string"
},
"is_isolated": {
"type": "string",
"enum": [
"AGENT_ISOLATED",
"AGENT_UNISOLATED",
"PENDING_ISOLATION",
"PENDING_UNISOLATION"
]
},
"scan_status": {
"type": "string"
}
}
}