RewardEntry

These represent Reward Offers available for this menu.

Fortune 500FranchisingHospitalityNYSE QSRQuick Service RestaurantsRestaurants
View JSON Schema on GitHub

JSON Schema

channel-reward-entry-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "RewardEntry",
  "description": "These represent Reward Offers available for this menu.\n",
  "$id": "https://raw.githubusercontent.com/api-evangelist/restaurant-brands/refs/heads/main/json-schema/channel-reward-entry-schema.json",
  "type": "object",
  "allOf": [
    {
      "$ref": "#/components/schemas/LoyaltyBaseEntry"
    },
    {
      "properties": {
        "id": {
          "example": "foo-reward-entity-id"
        },
        "type": {
          "enum": [
            "REWARD"
          ],
          "example": "REWARD"
        },
        "name": {
          "example": "4pc Nuggets"
        },
        "description": {
          "example": "4pc Nuggets"
        },
        "loyaltyPoints": {
          "example": "250"
        }
      }
    }
  ]
}