{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/yelp/refs/heads/main/json-schema/yelp-reviews-response-schema.json", "title": "ReviewsResponse", "description": "ReviewsResponse schema from Yelp Fusion API", "type": "object", "properties": { "total": { "type": "integer", "example": 240 }, "possible_languages": { "type": "array", "items": { "type": "string" } }, "reviews": { "type": "array", "items": { "$ref": "#/components/schemas/Review" } } } }