ItsaCheckmate · JSON Structure

Marketplace Api Order Item Structure

A single line item in an order.

Type: object Properties: 4
RestaurantPoint Of SaleOnline OrderingDeliveryMenusOrdersIntegration

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

Properties

id name quantity price

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/itsacheckmate/refs/heads/main/json-structure/marketplace-api-order-item-structure.json",
  "name": "OrderItem",
  "description": "A single line item in an order.",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Menu item identifier."
    },
    "name": {
      "type": "string",
      "description": "Item name."
    },
    "quantity": {
      "type": "int64",
      "description": "Quantity ordered."
    },
    "price": {
      "type": "int64",
      "description": "Unit price in the smallest currency unit (cents)."
    }
  }
}