Adyen · Schema

CapabilitySettings

PaymentsFinancial ServicesFintech

Properties

Name Type Description
amountPerIndustry object
authorizedCardUsers boolean
fundingSource array
interval string
maxAmount object
View JSON Schema on GitHub

JSON Schema

adyen-capabilitysettings-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CapabilitySettings",
  "title": "CapabilitySettings",
  "properties": {
    "amountPerIndustry": {
      "additionalProperties": {
        "$ref": "#/components/schemas/Amount"
      },
      "description": "",
      "type": "object"
    },
    "authorizedCardUsers": {
      "description": "",
      "type": "boolean"
    },
    "fundingSource": {
      "description": "",
      "items": {
        "enum": [
          "credit",
          "debit",
          "prepaid"
        ],
        "type": "string"
      },
      "type": "array"
    },
    "interval": {
      "description": "",
      "enum": [
        "daily",
        "monthly",
        "weekly"
      ],
      "type": "string"
    },
    "maxAmount": {
      "description": "",
      "$ref": "#/components/schemas/Amount"
    }
  },
  "type": "object"
}