<?xml version="1.0"?>
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema">
	<xsd:complexType name="myType">
		<xsd:sequence>
			<xsd:element name="first" type="xsd:string" minOccurs="1" maxOccurs="1"/>
			<xsd:element name="last" type="xsd:string" minOccurs="1" maxOccurs="1"/>
			<xsd:any minOccurs="1" maxOccurs="unbounded"/>
		</xsd:sequence>
	</xsd:complexType>
	<xsd:element name="name" type="myType"/>
</xsd:schema>