Meta

Metadata about the menu document

Fortune 500FranchisingHospitalityNYSE QSRQuick Service RestaurantsRestaurants

Properties

Name Type Description
currency string Currency code in ISO-4217 alpha format
imageBaseUrl string Base URL for all images served by this menu
View JSON Schema on GitHub

JSON Schema

menu-v2-meta-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Meta",
  "description": "Metadata about the menu document",
  "$id": "https://raw.githubusercontent.com/api-evangelist/restaurant-brands/refs/heads/main/json-schema/menu-v2-meta-schema.json",
  "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"
  ]
}