Adyen · Schema

LoyaltyAccount

This data structure conveys the identification of the account and the associated loyalty brand. Data related to a loyalty account processed in the transaction.

PaymentsFinancial ServicesFintech

Properties

Name Type Description
LoyaltyAccountID object
LoyaltyBrand string If a card is analysed.
View JSON Schema on GitHub

JSON Schema

adyen-loyaltyaccount-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/LoyaltyAccount",
  "title": "LoyaltyAccount",
  "type": "object",
  "description": "This data structure conveys the identification of the account and the associated loyalty brand. Data related to a loyalty account processed in the transaction.",
  "properties": {
    "LoyaltyAccountID": {
      "$ref": "#/components/schemas/LoyaltyAccountID"
    },
    "LoyaltyBrand": {
      "type": "string",
      "pattern": "^.+$",
      "description": "If a card is analysed."
    }
  },
  "required": [
    "LoyaltyAccountID"
  ]
}