Hey,
I have checked the baseTypes-v3-5.xsd expecially the ones with address types.
Example: In the incorporation schema, there is
<xs:element name="RegisteredOfficeAddress" type="UKAddressType"/>
In the baseTypes-v3-5.xsd, there is UKAddressType and AnyAddressBaseType
<xs:complexType name="UKAddressType">
<xs:sequence>
<xs:element ref="Premise"/>
<xs:element ref="Street" minOccurs="0"/>
<xs:element ref="Thoroughfare" minOccurs="0"/>
<xs:element ref="PostTown"/>
<xs:element ref="County" minOccurs="0"/>
<xs:element name="Country">
<xs:annotation>
<xs:documentation>UK country code.</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:enumeration value="GB-ENG"/>
<xs:enumeration value="GB-WLS"/>
<xs:enumeration value="GB-SCT"/>
<xs:enumeration value="GB-NIR"/>
<xs:enumeration value="GBR"/>
<xs:enumeration value="UNDEF"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element ref="Postcode" minOccurs="0"/>
<xs:element ref="CareofName" minOccurs="0"/>
<xs:element ref="PoBox" minOccurs="0"/>
</xs:sequence>
</xs:complexType>
<xs:complexType name="AnyAddressBaseType">
<xs:sequence>
<xs:element ref="Premise"/>
<xs:element ref="Street"/>
<xs:element ref="Thoroughfare" minOccurs="0"/>
<xs:element ref="PostTown"/>
<xs:element ref="County" minOccurs="0"/>
<xs:element ref="Country"/>
<xs:element ref="Postcode" minOccurs="0"/>
</xs:sequence>
</xs:complexType>
My question is - Example: If we collect information at our end as one line address, postcode, country - are we okay passing in the one line address for both premise and street as part of AnyAddressBaseType? How will that we handled for any correspondence (letters)? Will this lead to both these lines being printed?
Thanks