Balance

The amount of a given currency the user has

Fortune 500FranchisingHospitalityNYSE QSRQuick Service RestaurantsRestaurants

Properties

Name Type Description
amount number
currency string
View JSON Schema on GitHub

JSON Schema

channel-balance-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Balance",
  "description": "The amount of a given currency the user has",
  "$id": "https://raw.githubusercontent.com/api-evangelist/restaurant-brands/refs/heads/main/json-schema/channel-balance-schema.json",
  "type": "object",
  "properties": {
    "amount": {
      "type": "number",
      "example": 599
    },
    "currency": {
      "type": "string",
      "example": "USD"
    }
  }
}