Zip code schema

<ListByAreaCodeResponse xmlns="http://www.tilisoft.com/ws/LocInfo/literalTypes">
<ListByAreaCodeResult>
<xs:schema id="ZipCodeData" targetNamespace="http://www.tilisoft.com/ws/LocInfo/DataObjects/ZipCodeData.xsd" attributeFormDefault="qualified" elementFormDefault="qualified" xmlns:mstns="http://www.tilisoft.com/ws/LocInfo/DataObjects/ZipCodeData.xsd" xmlns="http://www.tilisoft.com/ws/LocInfo/DataObjects/ZipCodeData.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xs:element name="ZipCodeData" msdata:IsDataSet="true">
<xs:complexType>
<xs:choice maxOccurs="unbounded">
<xs:element name="ZipCodeInfo">
<xs:complexType>
<xs:sequence>
<xs:element name="ZIPCODE" type="xs:string" minOccurs="0"/>
<xs:element name="CITY" type="xs:string" minOccurs="0"/>
<xs:element name="STATE" type="xs:string" minOccurs="0"/>
<xs:element name="FIPS" type="xs:string" minOccurs="0"/>
<xs:element name="COUNTY" type="xs:string" minOccurs="0"/>
<xs:element name="COUNTYAREA_SQMI" type="xs:double" minOccurs="0"/>
<xs:element name="LATITUDE" type="xs:double" minOccurs="0"/>
<xs:element name="LONGITUDE" type="xs:double" minOccurs="0"/>
<xs:element name="AREACODE" type="xs:string" minOccurs="0"/>
<xs:element name="TIMEZONECODE" type="xs:int" minOccurs="0"/>
<xs:element name="TIMEZONENAME" type="xs:string" minOccurs="0"/>
<xs:element name="MILES" type="xs:int" minOccurs="0"/>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:choice>
</xs:complexType>
</xs:element>
</xs:schema>
<diffgram xmlns:msdata="urn:schemas-microsoft-com:xml-msdata" xmlns:diffgr="urn:schemas-microsoft-com:xml-diffgram-v1">
<ZipCodeData xmlns="http://www.tilisoft.com/ws/LocInfo/DataObjects/ZipCodeData.xsd">
<ZipCodeInfo diffgr:id="ZipCodeInfo1" msdata:rowOrder="0">
<ZIPCODE>92801</ZIPCODE>
<CITY>ANAHEIM</CITY>
<STATE>CA</STATE>
<FIPS>059</FIPS>
<COUNTY>ORANGE</COUNTY>
<COUNTYAREA_SQMI>790</COUNTYAREA_SQMI>
<LATITUDE>33.8448</LATITUDE>
<LONGITUDE>117.9538</LONGITUDE>
<AREACODE>714</AREACODE>
<TIMEZONECODE>8</TIMEZONECODE>
<TIMEZONENAME>Pacific</TIMEZONENAME>
<MILES>0</MILES>
</ZipCodeInfo>
<ZipCodeInfo diffgr:id="ZipCodeInfo2" msdata:rowOrder="1">
<ZIPCODE>92802</ZIPCODE>
<CITY>ANAHEIM</CITY>
<STATE>CA</STATE>
<FIPS>059</FIPS>
<COUNTY>ORANGE</COUNTY>
<COUNTYAREA_SQMI>790</COUNTYAREA_SQMI>
<LATITUDE>33.807</LATITUDE>
<LONGITUDE>117.9259</LONGITUDE>
<AREACODE>714</AREACODE>
<TIMEZONECODE>8</TIMEZONECODE>
<TIMEZONENAME>Pacific</TIMEZONENAME>
<MILES>0</MILES>
</ZipCodeInfo>
<ZipCodeData>
</diffgram>
</ListByAreaCodeResult>
</ListByAreaCodeResponse> <?xml version="1.0" encoding="UTF-8"?> <!-- edited with XMLSPY v5 U (http://www.xmlspy.com) by FileNET Corp. (FileNET Corp.) --> <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" attributeFormDefault="unqualified"> <xs:element name="OrderEntry"> <xs:annotation> <xs:documentation>Root</xs:documentation> </xs:annotation> <xs:complexType> <xs:sequence> <xs:element name="CustomerName" type="xs:string"/> <xs:element name="OrderNum" type="xs:integer"/> <xs:element name="Price" type="xs:float"/> <xs:element name="ShipTo"> <xs:complexType> <xs:sequence> <xs:element name="Contact" type="xs:string"/> <xs:element name="Address" type="xs:string"/> </xs:sequence> </xs:complexType> </xs:element> </xs:sequence> </xs:complexType> </xs:element> </xs:schema>

OrderAckSchema

Copy the schema below and paste it into the Schema Definition.

<?xml version="1.0" encoding="UTF-8"?>
<!-- edited with XMLSPY v5 U (http://www.xmlspy.com) by FileNET Corp. (FileNET Corp.) -->
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" attributeFormDefault="unqualified">
<xs:element name="OrderAck">
<xs:annotation>
<xs:documentation>Order acknowledgement</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element name="CustomerName" type="xs:string"/>
<xs:element name="OrderNum" type="xs:integer"/>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:schema>