Mega Code Archive

 
Categories / XML / XML Schema
 

US postal address

<?xml version="1.0"?> <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"   targetNamespace="http://www.rntsoft.com" xmlns="http://www.rntsoft.com"   elementFormDefault="qualified">     <xs:complexType name="postalAddress">        <xs:sequence>           <xs:element name="Street" type="xs:string" maxOccurs="4" />           <xs:element name="City" type="xs:string" />           <xs:element name="State" type="xs:string" />           <xs:element name="ZIP" type="xs:string" />           <xs:element name="Country" type="xs:string" />        </xs:sequence>     </xs:complexType>          <xs:element name="Address" type="postalAddress" /> </xs:schema>