Lunchbox · JSON Structure

Core New Order Request Structure

NewOrderRequest schema from Lunchbox Core API

Type: object Properties: 4
RestaurantOnline OrderingGuest EngagementCateringMenusOrdersLoyaltyEnterprise

NewOrderRequest is a JSON Structure definition published by Lunchbox, describing 4 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

customer_id store_id service_type_id is_group_order

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/lunchbox/refs/heads/main/json-structure/core-new-order-request-structure.json",
  "name": "NewOrderRequest",
  "description": "NewOrderRequest schema from Lunchbox Core API",
  "type": "object",
  "properties": {
    "customer_id": {
      "type": "int32",
      "example": 1234
    },
    "store_id": {
      "type": "string",
      "example": "123456"
    },
    "service_type_id": {
      "type": "int32",
      "example": 1234
    },
    "is_group_order": {
      "type": "boolean",
      "example": true
    }
  }
}