Channel Commit Order Structure

CommitOrder schema from Burger King's Partners API

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

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

Properties

charges mpfOrderId paymentMethod fireOrderInSeconds readyInSeconds

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-commit-order-structure.json",
  "name": "CommitOrder",
  "description": "CommitOrder schema from Burger King's Partners API",
  "type": "object",
  "properties": {
    "charges": {
      "$ref": "#/components/schemas/Charges"
    },
    "mpfOrderId": {
      "$ref": "#/components/schemas/MpfOrderId"
    },
    "paymentMethod": {
      "$ref": "#/components/schemas/PaymentMethod"
    },
    "fireOrderInSeconds": {
      "$ref": "#/components/schemas/FireOrderInSeconds"
    },
    "readyInSeconds": {
      "$ref": "#/components/schemas/ReadyInSeconds"
    }
  },
  "required": [
    "paymentMethod",
    "fireOrderInSeconds"
  ]
}