{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/palo-alto-networks/refs/heads/main/json-structure/cortex-xsoar-api-incident-search-request-structure.json", "name": "IncidentSearchRequest", "description": "IncidentSearchRequest schema from Palo Alto Networks Cortex XSOAR REST API", "type": "object", "properties": { "filter": { "type": "object", "description": "Structured filter criteria for the incident search.", "properties": { "query": { "type": "string", "description": "Lucene query string (e.g., status:Active severity:High)." }, "status": { "type": "array", "items": { "type": "int32" } }, "sort": { "type": "array", "items": { "type": "object", "properties": { "field": { "type": "string" }, "asc": { "type": "boolean" } } } }, "period": { "type": "object", "properties": { "byFrom": { "type": "datetime" }, "byTo": { "type": "datetime" } } } } }, "fromDate": { "type": "datetime" }, "toDate": { "type": "datetime" }, "size": { "type": "int32", "maximum": 100, "default": 10 }, "page": { "type": "int32", "default": 0 } } }