Loyalty

User and transaction information regarding loyalty

Fortune 500FranchisingHospitalityNYSE QSRQuick Service RestaurantsRestaurants

Properties

Name Type Description
loyaltyId object
transactionId object
View JSON Schema on GitHub

JSON Schema

channel-loyalty-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Loyalty",
  "description": "User and transaction information regarding loyalty",
  "$id": "https://raw.githubusercontent.com/api-evangelist/restaurant-brands/refs/heads/main/json-schema/channel-loyalty-schema.json",
  "type": "object",
  "properties": {
    "loyaltyId": {
      "$ref": "#/components/schemas/LoyaltyId"
    },
    "transactionId": {
      "$ref": "#/components/schemas/LoyaltyTransactionId"
    }
  },
  "required": [
    "loyaltyId",
    "transactionId"
  ]
}