Channel Cart Priced Structure

Cart containing a customer's selections from the menu with prices

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

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

Properties

menuSelections feedback

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-priced-structure.json",
  "name": "CartPriced",
  "description": "Cart containing a customer's selections from the menu with prices",
  "type": "object",
  "properties": {
    "menuSelections": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/MenuSelectionPriced"
      }
    },
    "feedback": {
      "$ref": "#/components/schemas/Feedbacks"
    }
  },
  "required": [
    "menuSelections"
  ]
}