{ "$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" ] }