pub struct Field72 {
pub information: Vec<String>,
}
Expand description
Field 72: Sender to Receiver Information
§Purpose
Specifies additional information for the Receiver or other specified party in financial messages. This field provides structured communication between financial institutions, enabling additional instructions, clarifications, and institutional coordination that supplements the main transaction details.
§Format Specification
- Swift Format:
6*35x
- Structure: Up to 6 lines of 35 characters each
- Content: Structured narrative format with specific codes
- Line Format:
/8c/[additional information]
(Code)(Narrative)
§Business Context Applications
- Institutional Communication: Additional instructions between banks
- Processing Instructions: Specific handling requirements
- Regulatory Information: Compliance-related communications
- Operational Coordination: Coordination between correspondent banks
§Network Validation Requirements
- Line Structure: Each code must be between slashes at line beginning
- Continuation: Continuation text starts with ‘//’
- Prohibited Codes: /REJT/ and /RETN/ codes not allowed (Error T81)
- ERI Exclusion: Must not include ERI (Error T82)
- Character Set: Must use valid SWIFT character set
§Structured Code Requirements
§Mandatory Code Format
- Line 1:
/8c/[additional information]
- Code followed by narrative - Lines 2-6: Continuation with ‘//’ or new codes
- Code Uniqueness: Each code should appear only once
- Format Compliance: Exact adherence to code structure required
§Primary Code: INS (Instructing Institution)
- Purpose: Identifies instructing institution
- Format: /INS/[BIC code]
- Validation: Must be followed by valid BIC
- Uniqueness: Must be unique within message
- Usage: Critical for institutional identification
§Regional Considerations
- European Networks: SEPA and TARGET2 institutional communications
- US Systems: Federal Reserve and commercial bank coordination
- Asian Markets: Regional institutional communication requirements
- Cross-Border: International institutional coordination
§Error Prevention Guidelines
- Code Validation: Verify all codes are properly formatted
- BIC Verification: Confirm BIC codes are valid and registered
- Continuation Format: Ensure continuation lines use ‘//’ prefix
- Prohibited Content: Avoid prohibited codes and content
§Related Fields Integration
- Field 53A: Sender’s Correspondent (institutional relationships)
- Field 54A: Receiver’s Correspondent (receiving institutions)
- Field 70: Remittance Information (payment details)
- Field 77A: Narrative (extended narrative information)
§Compliance Framework
- Regulatory Communication: Institutional regulatory information exchange
- Audit Documentation: Complete institutional communication trail
- Risk Management: Institutional risk communication
- Operational Compliance: Processing instruction compliance
§See Also
- Swift FIN User Handbook: Sender to Receiver Information Specifications
- Institutional Communication: Banking Institution Coordination
- Processing Instructions: Financial Institution Guidelines
- Regulatory Communication: Banking Regulatory Requirements
Fields§
§information: Vec<String>
Sender to receiver information
Format: 6*35x - Up to 6 lines of 35 characters each Contains structured institutional communications with codes and narrative Line 1: /8c/[additional information], subsequent lines: continuation or new codes
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Field72
impl<'de> Deserialize<'de> for Field72
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl SwiftField for Field72
impl SwiftField for Field72
Source§fn to_swift_string(&self) -> String
fn to_swift_string(&self) -> String
Convert field back to SWIFT string format
Source§fn format_spec() -> &'static str
fn format_spec() -> &'static str
Get field format specification
impl StructuralPartialEq for Field72
Auto Trait Implementations§
impl Freeze for Field72
impl RefUnwindSafe for Field72
impl Send for Field72
impl Sync for Field72
impl Unpin for Field72
impl UnwindSafe for Field72
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more