Menu V2 Quantity Structure

Quantity constraints for a menu entry

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

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

Properties

def max min

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/menu-v2-quantity-structure.json",
  "name": "Quantity",
  "description": "Quantity constraints for a menu entry",
  "type": "object",
  "properties": {
    "def": {
      "type": "int32",
      "description": "Default quantity",
      "minimum": 1,
      "example": 1
    },
    "max": {
      "type": "int32",
      "description": "Maximum allowed quantity",
      "minimum": 1,
      "example": 1
    },
    "min": {
      "type": "int32",
      "description": "Minimum required quantity",
      "minimum": 1,
      "example": 1
    }
  }
}