Flipdish · Schema

MenuNutritionInfoHeader

MenuNutritionInfoHeader.

RestaurantOnline OrderingMobile AppsPoint of SaleOrdersMenuPaymentsWebhooks

Properties

Name Type Description
MenuId integer Menu Id
NutritionInfoVersionGuid string Nutrition information version guid (generated every time the nutrition information is updated)
AbsoluteUrl string Absolute URL of the nutrition information json file
View JSON Schema on GitHub

JSON Schema

menus-menu-nutrition-info-header-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-nutrition-info-header-schema.json",
  "title": "MenuNutritionInfoHeader",
  "description": "MenuNutritionInfoHeader.",
  "type": "object",
  "properties": {
    "MenuId": {
      "format": "int32",
      "description": "Menu Id",
      "type": "integer",
      "example": 500123
    },
    "NutritionInfoVersionGuid": {
      "format": "uuid",
      "description": "Nutrition information version guid (generated every time the nutrition information is updated)",
      "type": "string",
      "example": "00000000-0000-0000-0000-000000000000"
    },
    "AbsoluteUrl": {
      "description": "Absolute URL of the nutrition information json file",
      "type": "string",
      "example": "https://api.flipdish.co/example"
    }
  }
}