CommitOrder

CommitOrder schema from Burger King's Partners API

Fortune 500FranchisingHospitalityNYSE QSRQuick Service RestaurantsRestaurants

Properties

Name Type Description
charges object
mpfOrderId object
paymentMethod object
fireOrderInSeconds object
readyInSeconds object
View JSON Schema on GitHub

JSON Schema

channel-commit-order-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "CommitOrder",
  "description": "CommitOrder schema from Burger King's Partners API",
  "$id": "https://raw.githubusercontent.com/api-evangelist/restaurant-brands/refs/heads/main/json-schema/channel-commit-order-schema.json",
  "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"
  ]
}