{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "Nutrition", "description": "Nutrition schema from Burger King's Partners API v2", "$id": "https://raw.githubusercontent.com/api-evangelist/restaurant-brands/refs/heads/main/json-schema/menu-v2-nutrition-schema.json", "type": "object", "properties": { "allergens": { "description": "List of allergens", "$ref": "#/components/schemas/Allergen" }, "calories": { "description": "Calories details", "$ref": "#/components/schemas/Calories" }, "nutrients": { "description": "List of nutrients", "$ref": "#/components/schemas/Nutrient" } } }