{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/palo-alto-networks/refs/heads/main/json-structure/cortex-xsiam-api-asset-structure.json", "name": "Asset", "description": "An asset tracked in the XSIAM asset inventory.", "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": "double", "description": "Asset risk score (0.0 to 100.0)." }, "first_seen": { "type": "int32", "description": "First observation timestamp as Unix epoch milliseconds." }, "last_seen": { "type": "int32" }, "tags": { "type": "array", "items": { "type": "string" } }, "sources": { "type": "array", "description": "Data sources that reported this asset.", "items": { "type": "string" } } } }