MenuItem schema from Lunchbox Core API
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "MenuItem", "description": "MenuItem schema from Lunchbox Core API", "$id": "https://raw.githubusercontent.com/api-evangelist/lunchbox/refs/heads/main/json-schema/core-menu-item-schema.json", "type": "object", "properties": { "item_id": { "type": "integer", "example": 1234 }, "category_id": { "type": "integer", "example": 1234 }, "menu_id": { "type": "integer", "example": 1234 }, "name": { "type": "string", "example": "Sample" }, "description": { "type": "string", "example": "string" }, "price_cents": { "type": "integer", "example": 100 }, "is_available": { "type": "boolean", "example": true } } }