Channel Charges Structure

Order pricing details

Type: object Properties: 5
Fortune 500FranchisingHospitalityNYSE QSRQuick Service RestaurantsRestaurants

Charges is a JSON Structure definition published by Restaurant Brands International, describing 5 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

tax mpfTax subTotal total fees

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/restaurant-brands/refs/heads/main/json-structure/channel-charges-structure.json",
  "name": "Charges",
  "description": "Order pricing details",
  "type": "object",
  "properties": {
    "tax": {
      "$ref": "#/components/schemas/Money",
      "description": "Taxes the customer must pay"
    },
    "mpfTax": {
      "$ref": "#/components/schemas/MFTaxes",
      "description": "Taxes calculated from the partners side"
    },
    "subTotal": {
      "$ref": "#/components/schemas/Money",
      "description": "The subtotal the customer must pay"
    },
    "total": {
      "$ref": "#/components/schemas/Money",
      "description": "The total amount the customer must pay"
    },
    "fees": {
      "$ref": "#/components/schemas/Fees"
    }
  }
}