RS exchanges EDI/XML with Agents/Clients by FTP. The file is structured into below sections:
This section displays the Filer and Sender schema, representing a key part of the overall EDI structure. The complete XSD schema, including all elements and attributes, is available for download at the bottom of this page.
...
...
<xs:element name="ISF">
<xs:complexType>
<xs:sequence>
<xs:element ref="Filer"/>
<xs:element ref="Sender"/>
...
...
</xs:sequence>
</xs:complexType>
</xs:element>
...
...
<xs:element name="Filer">
<xs:complexType>
<xs:sequence>
<xs:element ref="FilerCompanyName"/>
<xs:element ref="FilerContactName"/>
<xs:element ref="FilerTelephone"/>
<xs:element ref="FilerDate"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="Sender">
<xs:complexType>
<xs:sequence>
<xs:element ref="SenderBranchCode"/>
<xs:element ref="SenderName"/>
<xs:element ref="SenderEmail"/>
</xs:sequence>
</xs:complexType>
</xs:element>
...
...
This example highlights the Filer and Sender. For the complete XML structure and all data elements, please download the full sample file.
<ISF>
...
...
<Filer>
<FilerCompanyName>Example Shipping Co.</FilerCompanyName>
<FilerContactName>John Doe</FilerContactName>
<FilerTelephone>123-456-7890</FilerTelephone>
<FilerDate>20250701</FilerDate>
</Filer>
<Sender>
<SenderBranchCode>BR01</SenderBranchCode>
<SenderName>Example Sender</SenderName>
<SenderEmail>sender@example.com</SenderEmail>
</Sender>
...
...
</ISF>
How can I get the EDI file?
The EDI file can be transferred using FTP or SFTP. For enhanced security, we strongly recommend using SFTP,
which supports both password and key-based authentication.
How do I validate the XML?
You can use the provided XSD (XML Schema Definition) file to validate the XML file. An XSD defines the
structure and rules for the XML.