Palo Alto Networks · Schema
Asset
An asset tracked in the XSIAM asset inventory.
Cloud SecurityCybersecurityFirewallNetwork SecuritySASESOARThreat IntelligenceXDR
Properties
| Name | Type | Description |
|---|---|---|
| asset_id | string | |
| asset_name | string | |
| asset_type | string | |
| operating_system | string | |
| ip_addresses | array | |
| risk_score | number | Asset risk score (0.0 to 100.0). |
| first_seen | integer | First observation timestamp as Unix epoch milliseconds. |
| last_seen | integer | |
| tags | array | |
| sources | array | Data sources that reported this asset. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Asset",
"description": "An asset tracked in the XSIAM asset inventory.",
"$id": "https://raw.githubusercontent.com/api-evangelist/palo-alto-networks/refs/heads/main/json-schema/cortex-xsiam-api-asset-schema.json",
"type": "object",
"properties": {
"asset_id": {
"type": "string"
},
"asset_name": {
"type": "string"
},
"asset_type": {
"type": "string",
"enum": [
"DEVICE",
"CLOUD_RESOURCE",
"USER",
"SERVICE_ACCOUNT"
]
},
"operating_system": {
"type": "string"
},
"ip_addresses": {
"type": "array",
"items": {
"type": "string"
}
},
"risk_score": {
"type": "number",
"description": "Asset risk score (0.0 to 100.0)."
},
"first_seen": {
"type": "integer",
"description": "First observation timestamp as Unix epoch milliseconds."
},
"last_seen": {
"type": "integer"
},
"tags": {
"type": "array",
"items": {
"type": "string"
}
},
"sources": {
"type": "array",
"items": {
"type": "string"
},
"description": "Data sources that reported this asset."
}
}
}