Adyen · Schema
CapabilitySettings
CapabilitySettings schema from Adyen API
PaymentsFinancial ServicesFintech
Properties
| Name | Type | Description |
|---|---|---|
| amountPerIndustry | object | The maximum amount a card holder can spend per industry. |
| authorizedCardUsers | boolean | The number of card holders who can use the card. |
| fundingSource | array | The funding source of the card, for example **debit**. |
| interval | string | The period when the rule conditions apply. |
| maxAmount | object | The maximum amount a card holder can withdraw per day. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-schema/legal-entity-capability-settings-schema.json",
"title": "CapabilitySettings",
"description": "CapabilitySettings schema from Adyen API",
"type": "object",
"properties": {
"amountPerIndustry": {
"additionalProperties": {
"$ref": "#/components/schemas/Amount"
},
"description": "The maximum amount a card holder can spend per industry.",
"type": "object"
},
"authorizedCardUsers": {
"description": "The number of card holders who can use the card.",
"type": "boolean"
},
"fundingSource": {
"description": "The funding source of the card, for example **debit**.",
"items": {
"enum": [
"credit",
"debit",
"prepaid"
],
"type": "string"
},
"type": "array"
},
"interval": {
"description": "The period when the rule conditions apply.",
"enum": [
"daily",
"monthly",
"weekly"
],
"type": "string"
},
"maxAmount": {
"description": "The maximum amount a card holder can withdraw per day.",
"$ref": "#/components/schemas/Amount"
}
}
}