Flipdish · Schema

PublishMenuChanges

Publish Menu Changes

RestaurantOnline OrderingMobile AppsPoint-of-SaleOrderMenusPaymentsWebhook

Properties

Name Type Description
CatalogItemId string Optional Catalog item id
MenuIds array Optional Collection of Menu id
View JSON Schema on GitHub

JSON Schema

catalog-publish-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-publish-menu-changes-schema.json",
  "title": "PublishMenuChanges",
  "description": "Publish Menu Changes",
  "type": "object",
  "properties": {
    "CatalogItemId": {
      "description": "Optional Catalog item id",
      "maxLength": 30,
      "minLength": 0,
      "type": "string",
      "example": "500123"
    },
    "MenuIds": {
      "description": "Optional Collection of Menu id",
      "type": "array",
      "items": {
        "format": "int32",
        "type": "integer"
      },
      "example": [
        1
      ]
    }
  }
}