{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/hubspot/refs/heads/main/json-structure/crm-search-api-sort-structure.json", "name": "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" ] }