{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/AutocompleteResponse", "title": "AutocompleteResponse", "type": "object", "description": "Response from the autocomplete endpoint", "properties": { "suggestions": { "type": "array", "description": "List of autocomplete suggestions", "items": { "$ref": "#/components/schemas/Suggestion" }, "example": [] } } }