{ "type": "object", "description": "Sort option for search results", "name": "SortOption", "properties": { "propertyName": { "type": "string", "description": "The property to sort by" }, "direction": { "type": "string", "description": "Sort direction", "enum": [ "ASCENDING", "DESCENDING" ] } }, "required": [ "propertyName" ], "$schema": "https://json-structure.org/draft/2020-12/schema" }