{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/BankCategoryData", "title": "BankCategoryData", "additionalProperties": false, "properties": { "priority": { "x-addedInVersion": "4", "description": "The priority for the bank transfer. This sets the speed at which the transfer is sent and the fees that you have to pay. Required for transfers with `category` **bank**.\n\nPossible values:\n\n* **regular**: For normal, low-value transactions.\n\n* **fast**: Faster way to transfer funds but has higher fees. Recommended for high-priority, low-value transactions.\n\n* **wire**: Fastest way to transfer funds but has the highest fees. Recommended for high-priority, high-value transactions.\n\n* **instant**: Instant way to transfer funds in [SEPA countries](https://www.ecb.europa.eu/paym/integration/retail/sepa/html/index.en.html).\n\n* **crossBorder**: High-value transfer to a recipient in a different country.\n\n* **internal**: Transfer to an Adyen-issued business bank account (by bank account number/IBAN).", "enum": [ "crossBorder", "fast", "instant", "internal", "regular", "wire" ], "type": "string" }, "type": { "default": "bank", "description": "**bank**", "enum": [ "bank" ], "type": "string" } }, "type": "object" }