<?xml version="1.0"?>
<!-- This code will be used to define the element record, which is the only element contained inside the address_book root element whose complexType is called "addressType" -->
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema">
	<xsd:complexType name="addressType">
		<xsd:sequence>
			<xsd:element name="record" type="recordType"/>
		</xsd:sequence>
	</xsd:complexType>
</xsd:schema>

