pub struct Field56D {
pub name_and_address: Vec<String>,
}
Expand description
§Field 56D: Intermediary Institution (Option D)
§Overview
Field 56D identifies an intermediary institution in SWIFT payment messages using name and address information. This field provides an alternative identification method when BIC codes or account numbers are not available or suitable. It allows for detailed specification of the intermediary institution through structured name and address data, supporting various international payment routing scenarios where traditional identifiers may not be sufficient.
§Format Specification
Format: 4*35x
- 4*35x: Up to 4 lines of 35 characters each
- Line structure: Free-form text for name and address
- Character set: SWIFT character set (A-Z, 0-9, and limited special characters)
- Line separation: Each line on separate row
§Structure
INTERMEDIARY BANK NAME LIMITED
123 FINANCIAL DISTRICT AVENUE
NEW YORK NY 10005
UNITED STATES OF AMERICA
│ │
└──────────────────────────────┘
Up to 35 characters per line
Maximum 4 lines
§Field Components
- Institution Name: Official name of intermediary institution
- Street Address: Physical address details
- City/State: Location information
- Country: Country of domicile
- Additional Info: Branch details, postal codes, etc.
§Usage Context
Field 56D is used in:
- MT103: Single Customer Credit Transfer
- MT200: Financial Institution Transfer
- MT202: General Financial Institution Transfer
- MT202COV: Cover for customer credit transfer
- MT205: Financial Institution Transfer for its own account
§Business Applications
- Non-BIC institutions: Identifying institutions without BIC codes
- Regional banks: Supporting local and regional financial institutions
- Correspondent banking: Detailed intermediary identification
- Cross-border payments: International payment routing
- Regulatory compliance: Meeting identification requirements
- Payment transparency: Providing clear intermediary details
§Examples
:56D:INTERMEDIARY BANK LIMITED
456 BANKING STREET
LONDON EC2V 8RF
UNITED KINGDOM
└─── UK intermediary bank with full address
:56D:REGIONAL COOPERATIVE BANK
HAUPTSTRASSE 123
60311 FRANKFURT AM MAIN
GERMANY
└─── German regional bank identification
:56D:CITY COMMERCIAL BANK
FINANCIAL DISTRICT
MUMBAI 400001
INDIA
└─── Indian commercial bank details
:56D:PROVINCIAL SAVINGS BANK
RUE DE LA BANQUE 789
75001 PARIS
FRANCE
└─── French provincial bank with address
§Name and Address Guidelines
- Line 1: Institution name (required)
- Line 2: Street address or building details
- Line 3: City, state/province, postal code
- Line 4: Country name
- Formatting: Clear, unambiguous identification
- Language: English preferred for international payments
§Validation Rules
- Line count: Minimum 1, maximum 4 lines
- Line length: Maximum 35 characters per line
- Character set: SWIFT character set only
- Content: Each line must contain meaningful information
- Empty lines: Not permitted
- Control characters: Not allowed
- Special characters: Limited to SWIFT-approved set
§Network Validated Rules (SWIFT Standards)
- Maximum 4 lines allowed (Error: T26)
- Each line maximum 35 characters (Error: T50)
- Must use SWIFT character set only (Error: T61)
- At least one line required (Error: T13)
- No empty lines permitted (Error: T40)
- Field 56D alternative to 56A/56C (Error: C56)
- Institution must be identifiable (Error: T51)
Fields§
§name_and_address: Vec<String>
Name and address lines (up to 4 lines of 35 characters each)
Implementations§
Source§impl Field56D
impl Field56D
Sourcepub fn new(name_and_address: Vec<String>) -> Result<Self, ParseError>
pub fn new(name_and_address: Vec<String>) -> Result<Self, ParseError>
Create a new Field56D with validation
Sourcepub fn from_string(content: impl Into<String>) -> Result<Self, ParseError>
pub fn from_string(content: impl Into<String>) -> Result<Self, ParseError>
Create from a single string, splitting on newlines
Sourcepub fn name_and_address(&self) -> &[String]
pub fn name_and_address(&self) -> &[String]
Get the name and address lines
Sourcepub fn line_count(&self) -> usize
pub fn line_count(&self) -> usize
Get the number of lines
Sourcepub fn add_line(&mut self, line: String) -> Result<(), ParseError>
pub fn add_line(&mut self, line: String) -> Result<(), ParseError>
Add a line of name/address information
Sourcepub fn description(&self) -> String
pub fn description(&self) -> String
Get human-readable description