PurchaseInfo schema from Adyen API
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-schema/authentication-webhooks-purchase-info-schema.json", "title": "PurchaseInfo", "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" ] }