{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/yelp/refs/heads/main/json-structure/yelp-autocomplete-response-structure.json", "name": "AutocompleteResponse", "description": "AutocompleteResponse schema from Yelp Fusion API", "type": "object", "properties": { "terms": { "type": "array", "items": { "type": "object", "properties": { "text": { "type": "string" } } } }, "businesses": { "type": "array", "items": { "type": "object", "properties": { "id": { "type": "string" }, "name": { "type": "string" } } } }, "categories": { "type": "array", "items": { "$ref": "#/components/schemas/Category" } } } }