Adyen · JSON Structure

Terminal Loyalty Account Structure

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

Type: object Properties: 2 Required: 1
PaymentsFinancial ServicesFintech

LoyaltyAccount is a JSON Structure definition published by Adyen, describing 2 properties, of which 1 is required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

LoyaltyAccountID LoyaltyBrand

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-structure/terminal-loyalty-account-structure.json",
  "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.",
  "type": "object",
  "properties": {
    "LoyaltyAccountID": {
      "$ref": "#/components/schemas/LoyaltyAccountID"
    },
    "LoyaltyBrand": {
      "type": "string",
      "pattern": "^.+$",
      "description": "If a card is analysed."
    }
  },
  "required": [
    "LoyaltyAccountID"
  ],
  "name": "LoyaltyAccount"
}