<?xml version = "1.0" encoding = "UTF-8"?>
<!--Conforms to w3c http://www.w3.org/2000/10/XMLSchema-->
<xsd:schema xmlns:xsd = "http://www.w3.org/2001/XMLSchema">
	<xsd:element name = "TargetXML">
		<xsd:complexType>
			<xsd:sequence>
				<xsd:element ref = "Tchild1"/>
				<xsd:element ref = "Tchild2"/>
				<xsd:element ref = "Tchild3"/>
			</xsd:sequence>
		</xsd:complexType>
	</xsd:element>
	<xsd:element name = "Tchild1" type = "xsd:string"/>
	<xsd:element name = "Tchild2" type = "xsd:string"/>
	<xsd:element name = "Tchild3" type = "xsd:string"/>
</xsd:schema>