{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-structure/management-currency-structure.json", "description": "Currency schema from Adyen API", "type": "object", "properties": { "amount": { "description": "Surcharge amount per transaction, in [minor units](https://docs.adyen.com/development-resources/currency-codes).", "type": "int32" }, "currencyCode": { "description": "Three-character [ISO currency code](https://docs.adyen.com/development-resources/currency-codes). For example, **AUD**.", "type": "string" }, "percentage": { "description": "Surcharge percentage per transaction. The maximum number of decimal places is two. For example, **1%** or **2.27%**.", "type": "double" } }, "required": [ "currencyCode" ], "name": "Currency" }