EntryRef

Reference to entry and optional the price of this entry

Fortune 500FranchisingHospitalityNYSE QSRQuick Service RestaurantsRestaurants

Properties

Name Type Description
amount number Amount in the specified currency
entryId object
View JSON Schema on GitHub

JSON Schema

channel-entry-ref-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "EntryRef",
  "description": "Reference to entry and optional the price of this entry",
  "$id": "https://raw.githubusercontent.com/api-evangelist/restaurant-brands/refs/heads/main/json-schema/channel-entry-ref-schema.json",
  "type": "object",
  "properties": {
    "amount": {
      "title": "Amount",
      "description": "Amount in the specified currency",
      "type": "number",
      "format": "integer",
      "minimum": 0,
      "example": 599
    },
    "entryId": {
      "$ref": "#/components/schemas/EntryId"
    }
  }
}