OpenMenu · JSON Structure

Openmenu Menu Item Structure

JSON Structure definition for an OpenMenu Format menu item.

Type: object Properties: 12 Required: 1
RestaurantMenusMenu DataSearchNutritionStructured Data

OpenMenuMenuItem is a JSON Structure definition published by OpenMenu, describing 12 properties, of which 1 is required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

menu_item_name menu_item_description menu_item_price menu_item_calories menu_item_heat_index special vegetarian vegan kosher halal gluten_free menu_item_allergy_information_allergens

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/openmenu/refs/heads/main/json-structure/openmenu-menu-item-structure.json",
  "name": "OpenMenuMenuItem",
  "description": "JSON Structure definition for an OpenMenu Format menu item.",
  "type": "object",
  "properties": {
    "menu_item_name": { "type": "string" },
    "menu_item_description": { "type": "string" },
    "menu_item_price": { "type": "string" },
    "menu_item_calories": { "type": "int32" },
    "menu_item_heat_index": { "type": "int32" },
    "special": { "type": "boolean" },
    "vegetarian": { "type": "boolean" },
    "vegan": { "type": "boolean" },
    "kosher": { "type": "boolean" },
    "halal": { "type": "boolean" },
    "gluten_free": { "type": "boolean" },
    "menu_item_allergy_information_allergens": {
      "type": "array",
      "items": {
        "type": "string",
        "enum": ["Egg", "Fish", "Dairy", "Peanut", "Shellfish", "Soy", "Tree Nut", "Wheat", "Gluten"]
      }
    }
  },
  "required": ["menu_item_name"]
}