Adyen · Schema

Configuration

Configuration schema from Adyen API

PaymentsFinancial ServicesFintech

Properties

Name Type Description
brand string Payment method, like **eftpos_australia** or **mc**. See the [possible values](https://docs.adyen.com/development-resources/paymentmethodvariant#management-api).
country array Countries, to filter different surcharge amounts for domestic or international cards.
currencies array Currency, and surcharge percentage or amount.
sources array Funding source. Possible values: * **Credit** * **Debit**
View JSON Schema on GitHub

JSON Schema

management-configuration-schema.json Raw ↑
{
  "$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"
  ]
}