Adyen · Schema

LoyaltyRequest

It conveys Information related to the Loyalty transaction to process. Content of the Loyalty Request message.

PaymentsFinancial-ServicesFintech

Properties

Name Type Description
SaleData object
LoyaltyTransaction object
LoyaltyData object
View JSON Schema on GitHub

JSON Schema

terminal-loyalty-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-schema/terminal-loyalty-request-schema.json",
  "title": "LoyaltyRequest",
  "description": "It conveys Information related to the Loyalty transaction to process. Content of the Loyalty Request message.",
  "type": "object",
  "properties": {
    "SaleData": {
      "$ref": "#/components/schemas/SaleData"
    },
    "LoyaltyTransaction": {
      "$ref": "#/components/schemas/LoyaltyTransaction"
    },
    "LoyaltyData": {
      "$ref": "#/components/schemas/LoyaltyData"
    }
  },
  "required": [
    "SaleData",
    "LoyaltyTransaction",
    "LoyaltyData"
  ]
}