ItsaCheckmate · JSON Structure

Marketplace Api Order Totals Structure

Monetary totals for an order, in the smallest currency unit (cents).

Type: object Properties: 3
RestaurantPoint Of SaleOnline OrderingDeliveryMenusOrdersIntegration

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

Properties

subtotal tax total

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-totals-structure.json",
  "name": "OrderTotals",
  "description": "Monetary totals for an order, in the smallest currency unit (cents).",
  "type": "object",
  "properties": {
    "subtotal": {
      "type": "int64",
      "description": "Sum of line items before tax."
    },
    "tax": {
      "type": "int64",
      "description": "Tax amount."
    },
    "total": {
      "type": "int64",
      "description": "Grand total charged."
    }
  }
}