Lunchbox · Schema

OrderChildItem

OrderChildItem schema from Lunchbox Core API

RestaurantOnline OrderingGuest EngagementCateringMenusOrdersLoyaltyEnterprise

Properties

Name Type Description
menu_id integer
quantity integer
pick_list_id integer
item_id integer
category_id integer
style_id integer
size_id integer
View JSON Schema on GitHub

JSON Schema

core-order-child-item-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "OrderChildItem",
  "description": "OrderChildItem schema from Lunchbox Core API",
  "$id": "https://raw.githubusercontent.com/api-evangelist/lunchbox/refs/heads/main/json-schema/core-order-child-item-schema.json",
  "type": "object",
  "properties": {
    "menu_id": {
      "type": "integer",
      "example": 1234
    },
    "quantity": {
      "type": "integer",
      "example": 1
    },
    "pick_list_id": {
      "type": "integer",
      "example": 1234
    },
    "item_id": {
      "type": "integer",
      "example": 1234
    },
    "category_id": {
      "type": "integer",
      "example": 1234
    },
    "style_id": {
      "type": "integer",
      "nullable": true,
      "example": 1234
    },
    "size_id": {
      "type": "integer",
      "nullable": true,
      "example": 1234
    }
  }
}