Flipdish · JSON Structure

Menus Menu Item Option Set Base Structure

Menu item option set

Type: object Properties: 7
RestaurantOnline OrderingMobile AppsPoint of SaleOrdersMenuPaymentsWebhooks

MenuItemOptionSetBase is a JSON Structure definition published by Flipdish, describing 7 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

Name IsMasterOptionSet DisplayOrder MinSelectCount MaxSelectCount CellLayoutType PublicId

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$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-base-structure.json",
  "name": "MenuItemOptionSetBase",
  "description": "Menu item option set",
  "type": "object",
  "properties": {
    "Name": {
      "description": "Menu item option set name",
      "maxLength": 4000,
      "minLength": 0,
      "type": "string",
      "example": "Example Name"
    },
    "IsMasterOptionSet": {
      "description": "Is master option set. This can affect the layout of the options in the menu displayed to the customer. Usually it is true if the option could be considerd a standalone item as opposed to an addition (\"with ketchup\") or modifier (\"large\").",
      "type": "boolean",
      "example": true
    },
    "DisplayOrder": {
      "description": "Display order. Displayed in ascending order.",
      "type": "int32",
      "example": 1
    },
    "MinSelectCount": {
      "description": "Minimum items must be selected",
      "type": "int32",
      "example": 3
    },
    "MaxSelectCount": {
      "description": "Maximum number of items can be selected",
      "type": "int32",
      "example": 3
    },
    "CellLayoutType": {
      "description": "Small | Medium | Large\r\nAffects the layout of the menu.",
      "enum": [
        "Small",
        "Medium",
        "Large",
        "HiddenImage"
      ],
      "type": "string",
      "example": "Small"
    },
    "PublicId": {
      "description": "Permanent reference to the item.",
      "type": "uuid",
      "example": "00000000-0000-0000-0000-000000000000"
    }
  }
}