{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-structure/authentication-webhooks-purchase-info-structure.json", "description": "PurchaseInfo schema from Adyen API", "type": "object", "properties": { "date": { "description": "Date of the purchase.", "type": "string" }, "merchantName": { "description": "Name of the merchant.", "type": "string" }, "originalAmount": { "description": "Amount of the purchase.", "$ref": "#/components/schemas/Amount" } }, "required": [ "merchantName", "date", "originalAmount" ], "name": "PurchaseInfo" }