Flipdish · Schema

Allergen

Allergen.

RestaurantOnline OrderingMobile AppsPoint of SaleOrdersMenuPaymentsWebhooks

Properties

Name Type Description
AllergenId string A unique identifier for the allergen
LocalizedName string Localized name of the allergen
IconUrl string Url to the icon for the allergen
View JSON Schema on GitHub

JSON Schema

menus-allergen-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-allergen-schema.json",
  "title": "Allergen",
  "description": "Allergen.",
  "type": "object",
  "properties": {
    "AllergenId": {
      "description": "A unique identifier for the allergen",
      "type": "string",
      "example": "500123"
    },
    "LocalizedName": {
      "description": "Localized name of the allergen",
      "type": "string",
      "example": "Example Name"
    },
    "IconUrl": {
      "description": "Url to the icon for the allergen",
      "type": "string",
      "example": "https://api.flipdish.co/example"
    }
  }
}