Channel Calories Structure

Calories range

Type: object Properties: 4
Fortune 500FranchisingHospitalityNYSE QSRQuick Service RestaurantsRestaurants

Calories is a JSON Structure definition published by Restaurant Brands International, describing 4 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

default displayType lowerRange upperRange

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/restaurant-brands/refs/heads/main/json-structure/channel-calories-structure.json",
  "name": "Calories",
  "description": "Calories range",
  "type": "object",
  "properties": {
    "default": {
      "type": "double",
      "minimum": 0,
      "example": 1.0
    },
    "displayType": {
      "type": "string",
      "enum": [
        "Range",
        "Lower",
        "Upper"
      ],
      "example": "Range"
    },
    "lowerRange": {
      "type": "double",
      "minimum": 0,
      "example": 1.0
    },
    "upperRange": {
      "type": "double",
      "minimum": 0,
      "example": 1.0
    }
  }
}