{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "OrderChildItem", "description": "OrderChildItem schema from Lunchbox Core API", "$id": "https://raw.githubusercontent.com/api-evangelist/lunchbox/refs/heads/main/json-schema/core-order-child-item-schema.json", "type": "object", "properties": { "menu_id": { "type": "integer", "example": 1234 }, "quantity": { "type": "integer", "example": 1 }, "pick_list_id": { "type": "integer", "example": 1234 }, "item_id": { "type": "integer", "example": 1234 }, "category_id": { "type": "integer", "example": 1234 }, "style_id": { "type": "integer", "nullable": true, "example": 1234 }, "size_id": { "type": "integer", "nullable": true, "example": 1234 } } }