<?xml version="1.0" encoding="UTF-8"?>
<xsd:schema xmlns="http://www.skatestown.com/ns/po"
	xmlns:xsd="http://www.w3.org/2001/XMLSchema"
	targetNamespace="http://www.skatestown.com/ns/po">

<xsd:annotation>
  <xsd:documentation xml:lang="en">
	Address schema for Skatestown.
  </xsd:documentation>
</xsd:annotation>


<xsd:complexType name="addressType">
    <xsd:sequence>
	<xsd:element name="name" type="xsd:string" minOccurs="0"/>
	<xsd:element name="company" type="xsd:string" minOccurs="0"/>
	<xsd:element name="street" maxOccurs="unbounded"/>	
	<xsd:element name="city" type="xsd:string"/>	
	<xsd:element name="state" type="xsd:string" minOccurs="0"/>	
	<xsd:element name="zip"	type="xsd:string" minOccurs="0"/>
	<xsd:element name="country" type="xsd:string" minOccurs="0"/>
    </xsd:sequence>
    <xsd:attribute name="id" type="xsd:ID"/>
    <xsd:attribute name="href" type="xsd:IDREF"/>
</xsd:complexType>

</xsd:schema>
