{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/hubspot/refs/heads/main/json-schema/crm-search-api-sort-schema.json", "title": "Sort", "description": "A sort criterion for ordering search results.", "type": "object", "properties": { "propertyName": { "type": "string", "description": "The name of the CRM property to sort by.", "example": "Example Record" }, "direction": { "type": "string", "description": "The sort direction.", "enum": [ "ASCENDING", "DESCENDING" ], "default": "ASCENDING", "example": "ASCENDING" } }, "required": [ "propertyName" ] }