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