Nutrition

Nutrition Details

Fortune 500FranchisingHospitalityNYSE QSRQuick Service RestaurantsRestaurants

Properties

Name Type Description
calories object
nutrients array
allergens array
View JSON Schema on GitHub

JSON Schema

channel-nutrition-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Nutrition",
  "description": "Nutrition Details",
  "$id": "https://raw.githubusercontent.com/api-evangelist/restaurant-brands/refs/heads/main/json-schema/channel-nutrition-schema.json",
  "type": "object",
  "properties": {
    "calories": {
      "$ref": "#/components/schemas/Calories"
    },
    "nutrients": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Nutrient"
      }
    },
    "allergens": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Allergen"
      }
    }
  }
}