Flipdish · JSON Structure

Menus Menu Base Structure

Menu base

Type: object Properties: 4
RestaurantOnline OrderingMobile AppsPoint of SaleOrdersMenuPaymentsWebhooks

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

Properties

DisplaySectionLinks MenuSectionBehaviour TaxType IsIntegrated

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-base-structure.json",
  "name": "MenuBase",
  "description": "Menu base",
  "type": "object",
  "properties": {
    "DisplaySectionLinks": {
      "description": "Display menu section link on UI",
      "type": "boolean",
      "example": true
    },
    "MenuSectionBehaviour": {
      "description": "Menu section behaviour",
      "enum": [
        "ExpandSingle",
        "ExpandMultiple"
      ],
      "type": "string",
      "example": "ExpandSingle"
    },
    "TaxType": {
      "description": "Tax type",
      "enum": [
        "IncludedInBasePrice",
        "ExcludedFromBasePrice"
      ],
      "type": "string",
      "example": "IncludedInBasePrice"
    },
    "IsIntegrated": {
      "description": "Flag to indicate if the menu is integrated (contains metadata)",
      "type": "boolean",
      "example": true
    }
  }
}