{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/yelp/refs/heads/main/json-structure/yelp-business-search-response-structure.json", "name": "BusinessSearchResponse", "description": "BusinessSearchResponse schema from Yelp Fusion API", "type": "object", "properties": { "total": { "type": "int32", "description": "Total number of businesses Yelp found.", "example": 240 }, "businesses": { "type": "array", "items": { "$ref": "#/components/schemas/Business" } }, "region": { "type": "object", "properties": { "center": { "$ref": "#/components/schemas/Coordinates" } } } } }