Lunchbox · Schema

Menu

Menu schema from Lunchbox Core API

RestaurantOnline OrderingGuest EngagementCateringMenusOrdersLoyaltyEnterprise

Properties

Name Type Description
menu_id integer
name string
service_type_id integer
View JSON Schema on GitHub

JSON Schema

core-menu-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Menu",
  "description": "Menu schema from Lunchbox Core API",
  "$id": "https://raw.githubusercontent.com/api-evangelist/lunchbox/refs/heads/main/json-schema/core-menu-schema.json",
  "type": "object",
  "properties": {
    "menu_id": {
      "type": "integer",
      "example": 1234
    },
    "name": {
      "type": "string",
      "example": "Sample"
    },
    "service_type_id": {
      "type": "integer",
      "example": 1234
    }
  }
}