LocalizedString

Translated text for different locales

Fortune 500FranchisingHospitalityNYSE QSRQuick Service RestaurantsRestaurants

Properties

Name Type Description
en string English translation
fr string French translation, if any
View JSON Schema on GitHub

JSON Schema

menu-v2-localized-string-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "LocalizedString",
  "description": "Translated text for different locales",
  "$id": "https://raw.githubusercontent.com/api-evangelist/restaurant-brands/refs/heads/main/json-schema/menu-v2-localized-string-schema.json",
  "type": "object",
  "properties": {
    "en": {
      "type": "string",
      "description": "English translation",
      "example": "example"
    },
    "fr": {
      "type": "string",
      "description": "French translation, if any",
      "example": "example"
    }
  }
}