Menu V2 Entry Options Structure

Options configuration for a menu entry

Type: object Properties: 4
Fortune 500FranchisingHospitalityNYSE QSRQuick Service RestaurantsRestaurants

EntryOptions is a JSON Structure definition published by Restaurant Brands International, describing 4 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

defaults entries injectDefault quantity

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-entry-options-structure.json",
  "name": "EntryOptions",
  "description": "Options configuration for a menu entry",
  "type": "object",
  "properties": {
    "defaults": {
      "type": "array",
      "description": "Options which should be selected by default",
      "items": {
        "type": "string"
      },
      "example": []
    },
    "entries": {
      "type": "array",
      "description": "Collection of references to the item's options",
      "items": {
        "$ref": "#/components/schemas/EntryOptions"
      }
    },
    "injectDefault": {
      "type": "boolean",
      "description": "Whether or not to inject the default options",
      "example": true
    },
    "quantity": {
      "$ref": "#/components/schemas/Quantity"
    }
  }
}