{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-schema/transfer-webhooks-merchant-data-schema.json", "title": "MerchantData", "description": "MerchantData schema from Adyen API", "type": "object", "properties": { "acquirerId": { "description": "The unique identifier of the merchant's acquirer.", "type": "string" }, "mcc": { "description": "The merchant category code.", "type": "string" }, "merchantId": { "description": "The merchant identifier.", "type": "string" }, "nameLocation": { "description": "Contains the merchant's name and location.", "$ref": "#/components/schemas/NameLocation" }, "postalCode": { "description": "The merchant postal code.", "type": "string" } } }