{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/hubspot/refs/heads/main/json-structure/engagement-calls-api-sort-option-structure.json", "name": "SortOption", "description": "Sort option for search results", "type": "object", "properties": { "propertyName": { "type": "string", "description": "The property to sort by", "example": "hs_timestamp" }, "direction": { "type": "string", "enum": [ "ASCENDING", "DESCENDING" ], "description": "Sort direction", "default": "DESCENDING", "example": "DESCENDING" } }, "required": [ "propertyName" ] }