Adyen · Schema

CapabilitySettings

CapabilitySettings schema from Adyen API

PaymentsFinancial ServicesFintech

Properties

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

JSON Schema

configuration-webhooks-capability-settings-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/configuration-webhooks-capability-settings-schema.json",
  "title": "CapabilitySettings",
  "description": "CapabilitySettings schema from Adyen API",
  "type": "object",
  "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"
    }
  }
}