{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-schema/configuration-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" } } }