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