ItsaCheckmate · Schema

OrderTotals

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

RestaurantPoint Of SaleOnline OrderingDeliveryMenusOrdersIntegration

Properties

Name Type Description
subtotal integer Sum of line items before tax.
tax integer Tax amount.
total integer Grand total charged.
View JSON Schema on GitHub

JSON Schema

marketplace-api-order-totals-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/itsacheckmate/refs/heads/main/json-schema/marketplace-api-order-totals-schema.json",
  "title": "OrderTotals",
  "description": "Monetary totals for an order, in the smallest currency unit (cents).",
  "type": "object",
  "properties": {
    "subtotal": {
      "type": "integer",
      "description": "Sum of line items before tax."
    },
    "tax": {
      "type": "integer",
      "description": "Tax amount."
    },
    "total": {
      "type": "integer",
      "description": "Grand total charged."
    }
  }
}