Flipdish · Schema

PendingMenuChanges

Pending Menu Changes

RestaurantOnline OrderingMobile AppsPoint of SaleOrdersMenuPaymentsWebhooks

Properties

Name Type Description
CatalogItemId string Unique catalog item id
MenuId integer Unique menu id
View JSON Schema on GitHub

JSON Schema

catalog-pending-menu-changes-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/catalog-pending-menu-changes-schema.json",
  "title": "PendingMenuChanges",
  "description": "Pending Menu Changes",
  "type": "object",
  "properties": {
    "CatalogItemId": {
      "description": "Unique catalog item id",
      "maxLength": 30,
      "minLength": 0,
      "type": "string",
      "example": "500123"
    },
    "MenuId": {
      "format": "int32",
      "description": "Unique menu id",
      "type": "integer",
      "example": 500123
    }
  }
}