{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/paytronix/refs/heads/main/json-structure/online-ordering-api-order-item-structure.json", "name": "OrderItem", "description": "OrderItem schema from Paytronix Online Ordering API", "type": "object", "properties": { "menuItemId": { "type": "string", "example": "4b96f1bafc9f100ca79231ef" }, "name": { "type": "string", "example": "Chicken Burrito" }, "quantity": { "type": "int32", "example": 2 }, "price": { "type": "double", "example": 9.5 }, "options": { "type": "array", "items": { "type": "object", "properties": { "name": { "type": "string" }, "price": { "type": "double" } } } } } }