Channel Cart Structure

Cart representing a customer's selections from the menu

Type: object Properties: 1 Required: 1
Fortune 500FranchisingHospitalityNYSE QSRQuick Service RestaurantsRestaurants

Cart is a JSON Structure definition published by Restaurant Brands International, describing 1 property, of which 1 is required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

menuSelections

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-cart-structure.json",
  "name": "Cart",
  "description": "Cart representing a customer's selections from the menu",
  "type": "object",
  "properties": {
    "menuSelections": {
      "type": "array",
      "minItems": 1,
      "items": {
        "$ref": "#/components/schemas/MenuSelection"
      }
    }
  },
  "required": [
    "menuSelections"
  ]
}