Flipdish · JSON Structure

Menus Menu Summary Structure

Menu Summary

Type: object Properties: 8
RestaurantOnline OrderingMobile AppsPoint of SaleOrdersMenuPaymentsWebhooks

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

Properties

MenuId ModifiedTime VersionNumber MenuUrl Name Locked StoreNames 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-summary-structure.json",
  "name": "MenuSummary",
  "description": "Menu Summary",
  "type": "object",
  "properties": {
    "MenuId": {
      "description": "Menu identifier",
      "type": "int32",
      "example": 500123
    },
    "ModifiedTime": {
      "description": "Last modified time",
      "type": "datetime",
      "example": "2026-06-02T12:00:00Z"
    },
    "VersionNumber": {
      "description": "Menu version",
      "type": "int32",
      "example": 3
    },
    "MenuUrl": {
      "description": "Menu Url",
      "type": "string",
      "example": "https://api.flipdish.co/example"
    },
    "Name": {
      "description": "Name of Menu, only shown in portal",
      "type": "string",
      "example": "Example Name"
    },
    "Locked": {
      "description": "Locked: is menu locked against modifcation",
      "type": "boolean",
      "example": true
    },
    "StoreNames": {
      "description": "List of stores names which are associated with this menu",
      "type": "array",
      "items": {
        "type": "string"
      },
      "example": [
        "Example Name"
      ]
    },
    "IsIntegrated": {
      "description": "Flag to indicate if the menu is integrated (contains metadata)",
      "type": "boolean",
      "example": true
    }
  }
}