Flipdish · Schema

Metadata

Metadata

RestaurantOnline OrderingMobile AppsPoint of SaleOrdersMenuPaymentsWebhooks

Properties

Name Type Description
MenuEntityId integer Menu entity identifier (eg: MenuItemId, MenuItemOptionSetItemId)
Key string Metadata key (Unique identifier)
Value string Metadata value
View JSON Schema on GitHub

JSON Schema

menus-metadata-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-metadata-schema.json",
  "title": "Metadata",
  "description": "Metadata",
  "type": "object",
  "properties": {
    "MenuEntityId": {
      "format": "int32",
      "description": "Menu entity identifier (eg: MenuItemId, MenuItemOptionSetItemId)",
      "type": "integer",
      "example": 500123
    },
    "Key": {
      "description": "Metadata key (Unique identifier)",
      "maxLength": 128,
      "minLength": 0,
      "type": "string",
      "example": "string"
    },
    "Value": {
      "description": "Metadata value",
      "maxLength": 4000,
      "minLength": 0,
      "type": "string",
      "example": "string"
    }
  }
}