Nutrition

Nutrition schema from Burger King's Partners API v2

Fortune 500FranchisingHospitalityNYSE QSRQuick Service RestaurantsRestaurants

Properties

Name Type Description
allergens object List of allergens
calories object Calories details
nutrients object List of nutrients
View JSON Schema on GitHub

JSON Schema

menu-v2-nutrition-schema.json Raw ↑
{
  "$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"
    }
  }
}