noNamespace
complexType AddressType

Super Types
{http://www.w3.org/2001/XMLSchema}anyType
|
+--{}AddressType (restriction)

Properties
This component is not nillable.

Model
<...>
(Address1, Address2, City, State, Zip )
</...>


Nested Element Summary
xsd:stringAddress1
          
xsd:stringAddress2
          
xsd:stringCity
          
 State
          
 Zip
          

Nested Element Detail

Address1

Type:
xsd:string

Address2

Type:
xsd:string

City

Type:
xsd:string

State

Details:
State

Zip

Details:
Zip

Source
<xsd:complexType name="AddressType">
<xsd:sequence>
<xsd:element name="Address1" type="xsd:string"/>
<xsd:element name="Address2" type="xsd:string"/>
<xsd:element name="City" type="xsd:string"/>
<xsd:element name="State">
<xsd:simpleType>
<xsd:restriction base="xsd:string">
<xsd:enumeration value="CA"/>
<xsd:enumeration value="NY"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:element>
<xsd:element name="Zip">
<xsd:simpleType>
<xsd:restriction base="xsd:string">
<xsd:pattern value="[0-9]{5}"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:element>
</xsd:sequence>
</xsd:complexType>


http://www.stylusstudio.com