<?xml version="1.0" encoding="utf-8" ?>
<xs:schema id="Example" targetNamespace="http://tempuri.org/Example.xsd" elementFormDefault="qualified"
	xmlns="http://tempuri.org/Example.xsd" xmlns:mstns="http://tempuri.org/Example.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema">
	<xs:element name="MyDataSet">
		<xs:complexType>
			<xs:choice maxOccurs="unbounded">
				<xs:element name="customers">
					<xs:complexType>
						<xs:sequence>
							<xs:element name="CustomerID" type="xs:integer" minOccurs="0" />
							<xs:element name="CompanyName" type="xs:string" minOccurs="0" />
							<xs:element name="Phone" type="xs:string" />
						</xs:sequence>
					</xs:complexType>
				</xs:element>
			</xs:choice>
		</xs:complexType>
	</xs:element>
</xs:schema>