{ "$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" ] }