Menu V2 Meta Structure

Metadata about the menu document

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

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

Properties

currency imageBaseUrl

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/menu-v2-meta-structure.json",
  "name": "Meta",
  "description": "Metadata about the menu document",
  "type": "object",
  "properties": {
    "currency": {
      "type": "string",
      "description": "Currency code in ISO-4217 alpha format",
      "pattern": "^[A-Z]{3}$",
      "example": "USD"
    },
    "imageBaseUrl": {
      "type": "string",
      "description": "Base URL for all images served by this menu",
      "example": "https://bk-partners.rbictg.com"
    }
  },
  "required": [
    "imageBaseUrl"
  ]
}