Channel Money Structure

Representation of money. Money amounts are always provided in the smallest currency unit (e.g,. 100 where `currency=USD` represents 100 "cents" or 1 USD).

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

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

Properties

currency amount

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-money-structure.json",
  "name": "Money",
  "description": "Representation of money. Money amounts are always provided in the smallest currency unit (e.g,. 100 where `currency=USD` represents 100 \"cents\" or 1 USD).\n",
  "type": "object",
  "properties": {
    "currency": {
      "$ref": "#/components/schemas/Currency"
    },
    "amount": {
      "title": "Amount",
      "description": "Amount in the specified currency",
      "type": "double",
      "example": 100
    }
  },
  "required": [
    "currency",
    "amount"
  ]
}