Flipdish · JSON Structure

Menus Menu Element List Response Structure

Response with any menu elements that had issues being hidden/shown

Type: object Properties: 5
RestaurantOnline OrderingMobile AppsPoint of SaleOrdersMenuPaymentsWebhooks

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

Properties

MenuName MenuElementName InstanceCount IsAvailable Items

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-element-list-response-structure.json",
  "name": "MenuElementListResponse",
  "description": "Response with any menu elements that had issues being hidden/shown",
  "type": "object",
  "properties": {
    "MenuName": {
      "description": "Menu Name",
      "type": "string",
      "example": "Example Name"
    },
    "MenuElementName": {
      "description": "Menu Item Name",
      "type": "string",
      "example": "Example Name"
    },
    "InstanceCount": {
      "description": "Menu Item Count",
      "type": "int32",
      "example": 3
    },
    "IsAvailable": {
      "description": "Menu Item is hide or unhide",
      "type": "boolean",
      "example": true
    },
    "Items": {
      "description": "List of Items",
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/MenuElementListItemResponse"
      },
      "example": []
    }
  }
}