{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-schema/management-configuration-schema.json", "title": "Configuration", "description": "Configuration schema from Adyen API", "type": "object", "properties": { "brand": { "description": "Payment method, like **eftpos_australia** or **mc**. See the [possible values](https://docs.adyen.com/development-resources/paymentmethodvariant#management-api). ", "type": "string" }, "country": { "description": "Countries, to filter different surcharge amounts for domestic or international cards.", "items": { "type": "string" }, "type": "array" }, "currencies": { "description": "Currency, and surcharge percentage or amount.", "items": { "$ref": "#/components/schemas/Currency" }, "type": "array" }, "sources": { "description": "Funding source. Possible values:\n* **Credit**\n* **Debit**", "items": { "type": "string" }, "type": "array" } }, "required": [ "brand", "currencies" ] }