<xsd:element name="Business">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="EIN" type="EINType" />
<xsd:element name="BusinessName1" type="BusinessName1Type" />
<xsd:element name="BusinessName2" type="BusinessName2Type" minOccurs="0" />
<xsd:choice>
<xsd:element name="BusinessNameControl" type="BusinessNameControlType" />
<xsd:element name="CheckDigit" type="CheckDigitType" />
</xsd:choice>
<!-- In Care Of Name Line -->
<xsd:element name="InCareOfNameLine" minOccurs="0">
<xsd:annotation>
<xsd:documentation>Used to indicate the In Care Of line for address. Legal Characters: percent sign, A-Z, a-z, 0-9, hyphen, slash, ampersand, and single space. Illegal Characters: leading space, trailing space, adjacent spaces, and other symbols.</xsd:documentation>
</xsd:annotation>
<xsd:simpleType>
<xsd:restriction base="xsd:string">
<xsd:maxLength value="35" />
<xsd:pattern value="(% )([A-Za-z0-9\-/|&] ?)*[A-Za-z0-9\-/|&]" />
</xsd:restriction>
</xsd:simpleType>
</xsd:element>
<xsd:choice>
<xsd:element name="USAddress" type="USAddressType" />
<xsd:element name="ForeignAddress" type="ForeignAddressType" />
</xsd:choice>
<xsd:element name="AddressChange" type="CheckboxType" minOccurs="0" />
</xsd:sequence>
</xsd:complexType>
</xsd:element>
|