IBAN Validator
Check whether an IBAN is well formed: the mod-97 checksum, the country's own length, and the character layout each position must have. Splits the number into its parts, verifies the national check digit for twelve countries, and names the bank for Dutch IBANs. A format check, not a bank check.
Reads: iban from input "iban"
iban (required)Text (String)The IBAN to check. Spaces and lower case are fine. Example: NL91 ABNA 0417 1643 00
What this step gives back
{
"valid": true,
"iban": "NL91ABNA0417164300",
"country": "NL",
"countryName": "Netherlands",
"checkDigits": "91",
"bankCode": "ABNA",
"accountNumber": "0417164300",
"institution": {
"name": "ABN AMRO",
"kind": "bank"
}
}A later step reading this one can take the whole object, or a path into it such as valid.