<?xml version="1.0"?>
<!-- This is a short little phone schema that relates to phone.xml -->
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema">
	<xsd:element name="phoneType">
		<xsd:complexType>
			<xsd:sequence>
				<xsd:element name="phone" type="phoneType"/>
			</xsd:sequence>
		</xsd:complexType>
	</xsd:element>
	<xsd:simpleType name="phoneType">
		<xsd:restriction base="xsd:string">
			<xsd:pattern value="\d{3}\-\d{3}\-\d{4}"/>
		</xsd:restriction>
	</xsd:simpleType>
</xsd:schema>

