<?xml version="1.0"?>

<!-- This code will be used to force the element record, whose complexType is called "recordType", to have three elements inside it, 
     name, address, and contact, and in that order. -->

<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema">
	<xsd:complexType name="recordType">
		<xsd:sequence>
			<xsd:element name="name" type="nameType"/>
			<xsd:element name="address" type="addressType"/>
			<xsd:element name="contact" type="contactType"/>
		</xsd:sequence>
	</xsd:complexType>
</xsd:schema>
