{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "AuditLog", "description": "An audit management log entry recording an administrative action.", "$id": "https://raw.githubusercontent.com/api-evangelist/palo-alto-networks/refs/heads/main/json-schema/cortex-xpanse-api-audit-log-schema.json", "type": "object", "properties": { "timestamp": { "type": "integer", "description": "Action timestamp as Unix epoch milliseconds." }, "actor_primary_username": { "type": "string" }, "actor_email": { "type": "string" }, "actor_type": { "type": "string", "enum": [ "User", "API" ] }, "sub_type": { "type": "string", "description": "Action subtype (e.g., Login, IpRangeModified, RuleUpdated)." }, "result": { "type": "string", "enum": [ "SUCCESS", "FAIL" ] }, "reason": { "type": "string" }, "ip": { "type": "string", "description": "Source IP address of the action." }, "description": { "type": "string" } } }