Filter criteria for the data resource query
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "QueryFilter", "description": "Filter criteria for the data resource query", "$id": "https://raw.githubusercontent.com/api-evangelist/palo-alto-networks/refs/heads/main/json-schema/prisma-access-insights-api-query-filter-schema.json", "type": "object", "properties": { "operator": { "type": "string", "description": "Logical operator for combining filter rules", "enum": [ "AND", "OR" ] }, "rules": { "type": "array", "description": "List of filter rules", "items": { "type": "object", "properties": { "property": { "type": "string", "description": "Property name to filter on" }, "operator": { "type": "string", "description": "Comparison operator", "enum": [ "equals", "not_equals", "contains", "in", "not_in", "greater_than", "less_than" ] }, "values": { "type": "array", "description": "Values to match against", "items": { "type": "string" } } } } } } }