Lunchbox · Schema

MenuItem

MenuItem schema from Lunchbox Core API

RestaurantOnline OrderingGuest EngagementCateringMenusOrdersLoyaltyEnterprise

Properties

Name Type Description
item_id integer
category_id integer
menu_id integer
name string
description string
price_cents integer
is_available boolean
View JSON Schema on GitHub

JSON Schema

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