<?xml version="1.0" encoding="UTF-8"?>
<xs:schema	xmlns:xs="http://www.w3.org/2001/XMLSchema"
				xmlns:exprop="http://www.myCompany.com/xsd/Properties/2007-04"
				targetNamespace="http://www.myCompany.com/xsd/Properties/2007-04"
				elementFormDefault="qualified"
				attributeFormDefault="unqualified">

	<xs:element name="PoliticalData">
		<xs:sequence>
			<xs:element	name="StateHouseDistrict"
							type="xs:integer"
							minOccurs="0"
							maxOccurs="1">
				<xs:annotation>
					<xs:documentation>
						The state house district in which the homeowner
						would be voting.
					</xs:documentation>
					<xs:appinfo>

						33
					</xs:appinfo>
				</xs:annotation>
			</xs:element>
			<xs:element	name="USSenateDistrict"
							type="xs:integer"
							minOccurs="0"
							maxOccurs="1">
				<xs:annotation>
					<xs:documentation>
						The US senate district in which the homeowner
						would be voting.
					</xs:documentation>
					<xs:appinfo>

						3
					</xs:appinfo>
				</xs:annotation>
			</xs:element>
			<xs:element	name="StateSenateDistrict"
							type="xs:integer"
							minOccurs="0"
							maxOccurs="1">
				<xs:annotation>
					<xs:documentation>
						The state senate district in which the homeowner
						would be voting.
					</xs:documentation>
					<xs:appinfo>

						5
					</xs:appinfo>
				</xs:annotation>				
			</xs:element>
			<xs:element	name="CountyCommission"
							type="CommissionType"
							minOccurs="0"
							maxOccurs="1"/>			
			<xs:element	name="CityCommission"
							type="CommissionType"
							minOccurs="0"
							maxOccurs="1"/>			
		</xs:sequence>
	</xs:element>
	<xs:complexType name="CommissionType">
		<xs:sequence>
			<xs:element	name="BoardMember"
							type="xs:string"
							minOccurs="1"
							maxOccurs="unbounded">

				<xs:annotation>
					<xs:documentation>
						Names of each of the Commission members
					</xs:documentation>
					<xs:appinfo>
						Joe Byrd
					</xs:appinfo>
				</xs:annotation>
			</xs:element>			
		</xs:sequence>

	</xs:complexType>
	<xs:element	name="SchoolBoard"
					type="CommissionType"
					minOccurs="0"
					maxOccurs="1">
		<xs:annotation>
			<xs:documentation>
				Names of each of the SchoolBoard members
			</xs:documentation>
			<xs:appinfo>
				Alejandro Almendes
			</xs:appinfo>
		</xs:annotation>

	</xs:element>
	<xs:simpleType name="WallCoveringTypeEnum">
		<xs:restriction base="xs:string">
			<xs:enumeration value="paint"/>
			<xs:enumeration value="stucco"/>
			<xs:enumeration value="wallpaper"/>
			<xs:enumeration value="paneling"/>
		</xs:restriction>
	</xs:simpleType>

	<xs:element	name="WallCovering"
					minOccurs="0"
					maxOccurs="unbounded">
		<xs:annotation>
			<xs:documentation>
				The type of covering on the wall.
			</xs:documentation>
			<xs:appinfo>
				paint
			</xs:appinfo>
		</xs:annotation>
	</xs:element>

</xs:schema>