Sorting specification for result sets.
{ "$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." } } }