Calories

Calories schema from Burger King's Partners API v2

Fortune 500FranchisingHospitalityNYSE QSRQuick Service RestaurantsRestaurants

Properties

Name Type Description
def number Default calorie value
max number Maximum calorie value
min number Minimum calorie value
View JSON Schema on GitHub

JSON Schema

menu-v2-calories-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Calories",
  "description": "Calories schema from Burger King's Partners API v2",
  "$id": "https://raw.githubusercontent.com/api-evangelist/restaurant-brands/refs/heads/main/json-schema/menu-v2-calories-schema.json",
  "type": "object",
  "properties": {
    "def": {
      "type": "number",
      "format": "integer",
      "description": "Default calorie value",
      "example": 1.0
    },
    "max": {
      "type": "number",
      "format": "integer",
      "description": "Maximum calorie value",
      "example": 1.0
    },
    "min": {
      "type": "number",
      "format": "integer",
      "description": "Minimum calorie value",
      "example": 1.0
    }
  }
}