Cart

Cart representing a customer's selections from the menu

Fortune 500FranchisingHospitalityNYSE QSRQuick Service RestaurantsRestaurants

Properties

Name Type Description
menuSelections array
View JSON Schema on GitHub

JSON Schema

channel-cart-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Cart",
  "description": "Cart representing a customer's selections from the menu",
  "$id": "https://raw.githubusercontent.com/api-evangelist/restaurant-brands/refs/heads/main/json-schema/channel-cart-schema.json",
  "type": "object",
  "properties": {
    "menuSelections": {
      "type": "array",
      "minItems": 1,
      "items": {
        "$ref": "#/components/schemas/MenuSelection"
      }
    }
  },
  "required": [
    "menuSelections"
  ]
}