{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/flipdish/refs/heads/main/json-structure/menus-menu-item-option-set-item-base-structure.json", "name": "MenuItemOptionSetItemBase", "description": "Menu item option set item", "type": "object", "properties": { "Name": { "description": "Name", "type": "string", "example": "Example Name" }, "Price": { "description": "Price", "type": "double", "example": 12.5 }, "DepositReturnFee": { "description": "An optional fee that can be added to the price of the item.", "type": "double", "nullable": true, "example": 12.5 }, "IsAvailable": { "description": "Is available", "type": "boolean", "example": true }, "DisplayOrder": { "description": "Display order. Displayed in ascending order.", "type": "int32", "example": 1 }, "CellLayoutType": { "description": "Small | Medium | Large\r\nAffects the layout of the menu.", "enum": [ "Small", "Medium", "Large", "HiddenImage" ], "type": "string", "example": "Small" }, "ImageUrl": { "description": "Image url", "type": "string", "example": "https://api.flipdish.co/example" }, "PublicId": { "description": "Permanent reference to the item.", "type": "uuid", "example": "00000000-0000-0000-0000-000000000000" } } }