Flipdish · Schema

MenuElementListResponse

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

RestaurantOnline OrderingMobile AppsPoint of SaleOrdersMenuPaymentsWebhooks

Properties

Name Type Description
MenuName string Menu Name
MenuElementName string Menu Item Name
InstanceCount integer Menu Item Count
IsAvailable boolean Menu Item is hide or unhide
Items array List of Items
View JSON Schema on GitHub

JSON Schema

menus-menu-element-list-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/flipdish/refs/heads/main/json-schema/menus-menu-element-list-response-schema.json",
  "title": "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": {
      "format": "int32",
      "description": "Menu Item Count",
      "type": "integer",
      "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": []
    }
  }
}