{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-schema/terminal-loyalty-account-schema.json", "title": "LoyaltyAccount", "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" ] }