{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/yelp/refs/heads/main/json-structure/yelp-business-detail-structure.json", "name": "BusinessDetail", "description": "BusinessDetail schema from Yelp Fusion API", "allOf": [ { "$ref": "#/components/schemas/Business" }, { "type": "object", "properties": { "is_claimed": { "type": "boolean" }, "photos": { "type": "array", "items": { "type": "uri" } }, "hours": { "type": "array", "items": { "$ref": "#/components/schemas/BusinessHours" } }, "special_hours": { "type": "array", "items": { "type": "object", "additionalProperties": true } }, "messaging": { "type": "object", "additionalProperties": true }, "yelp_menu_url": { "type": "uri" } } } ] }