Palo Alto Networks · Schema

SortOrder

Sorting specification for result sets.

Cloud SecurityCybersecurityFirewallNetwork SecuritySASESOARThreat IntelligenceXDR

Properties

Name Type Description
field string Field to sort by.
keyword string Sort direction.
View JSON Schema on GitHub

JSON Schema

cortex-xdr-api-sort-order-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "SortOrder",
  "description": "Sorting specification for result sets.",
  "$id": "https://raw.githubusercontent.com/api-evangelist/palo-alto-networks/refs/heads/main/json-schema/cortex-xdr-api-sort-order-schema.json",
  "type": "object",
  "properties": {
    "field": {
      "type": "string",
      "description": "Field to sort by."
    },
    "keyword": {
      "type": "string",
      "enum": [
        "asc",
        "desc"
      ],
      "description": "Sort direction."
    }
  }
}