Palo Alto Networks · JSON Structure

Prisma Access Insights Api Query Filter Structure

Filter criteria for the data resource query

Type: object Properties: 2
Cloud SecurityCybersecurityFirewallNetwork SecuritySASESOARThreat IntelligenceXDR

QueryFilter is a JSON Structure definition published by Palo Alto Networks, describing 2 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

operator rules

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/palo-alto-networks/refs/heads/main/json-structure/prisma-access-insights-api-query-filter-structure.json",
  "name": "QueryFilter",
  "description": "Filter criteria for the data resource query",
  "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"
            }
          }
        }
      }
    }
  }
}