<?xml version="1.0" encoding="UTF-8"?>
<xsd:schema	xmlns:xsd="http://www.w3.org/2001/XMLSchema"
				xmlns:sys="http://rets.org/xsd/RETSSystem/2007-08"
				targetNamespace="http://rets.org/xsd/RETSSystem/2007-08"
				elementFormDefault="qualified"
				attributeFormDefault="unqualified">

	<!--
		(C)2007 National Association of REALTORS(R)

		Tab stops
		:set ts=3

		File History
		======================
		$Header: LookupList.xsd, 13, 10/8/2007 1:22:13 PM, Paul Stusiak$
		

		$Log:
		 13   055_RETS_Standard 1.12        10/8/2007 1:22:13 PM   Paul Stusiak
		      Update version timestamp
		 12   055_RETS_Standard 1.11        7/25/2007 12:09:39 AM  Paul Stusiak
		      move to common container of retssystem
		 11   055_RETS_Standard 1.10        5/2/2007 1:16:05 PM    Paul Stusiak
		      change namespace reference, update version time stamp
		 10   055_RETS_Standard 1.9         4/3/2007 1:43:57 AM    Paul Stusiak
		      change namespace to remote location (www.ftc2.com) for testing
		 9    055_RETS_Standard 1.8         4/2/2007 11:26:55 AM   Paul Stusiak
		      change namespace to match responding server and to use the URI
		      versioning suggested by both HP and XFront
		 8    055_RETS_Standard 1.7         3/30/2007 6:20:40 PM   Paul Stusiak
		      Update of the versionTimestamp and the namespace (namespace to
		      200704). Change formating to a standard format
		 7    055_RETS_Standard 1.6         3/7/2007 10:49:25 PM   Paul Stusiak
		      Added standard document header.
		 6    055_RETS_Standard 1.5         12/2/2006 1:12:44 AM   Paul Stusiak
		      various mechanical fixes tho the schema and a re-direct from
		      retsserver.realtors.org to www.ftc2.com
		 5    055_RETS_Standard 1.4         9/20/2006 12:43:25 PM  Jeff Brush
		      chgd schemaLocation to point to http://retsserver.rets.org:8080/xsd/
		 4    055_RETS_Standard 1.3         5/9/2006 7:47:20 AM    Jeff Brush
		      changed all Field-related element's types to string
		 3    055_RETS_Standard 1.2         4/7/2006 7:36:39 PM    Jeff Brush
		      renamed version attribute to versionTimestamp for schema versioning
		 2    055_RETS_Standard 1.1         4/7/2006 1:37:29 PM    Jeff Brush
		      modified to have schema versioning as datetime, add year month to
		      namespaces, minor corrections
		 1    055_RETS_Standard 1.0         4/4/2006 8:06:06 AM    Jeff Brush
		      Updated schemas.  All MLS schemas have extensibility points.  New
		      ObjectReferenceList.xsd
		$
		======================
	-->

	<xsd:annotation>
		<xsd:documentation>
			RETS Metadata lookup list schema.
		</xsd:documentation>
	</xsd:annotation>

	<!-- Types -->
	<xsd:complexType name="LookupList">
		<xsd:sequence>
			<xsd:element	name="Map"
								maxOccurs="unbounded"
								minOccurs="0">
				<xsd:complexType>
					<xsd:sequence>
						<xsd:element	name="MapEntry"
											maxOccurs="unbounded">
							<xsd:complexType>
								<xsd:sequence>
									<xsd:element	name="Name"
														type="xsd:string"/>
									<xsd:element	name="Value"
														type="xsd:string"/>
								</xsd:sequence>
							</xsd:complexType>
						</xsd:element>
					</xsd:sequence>
					<xsd:attribute	name="name"
										type="xsd:NMTOKEN"
										use="required"/>
					<xsd:attribute	name="version"
										type="xsd:anyURI"
										use="required"/>
					<xsd:attribute	name="timestamp"
										type="xsd:dateTime"
										use="required"/>
				</xsd:complexType>
			</xsd:element>
			<xsd:any	namespace="##other"
						minOccurs="0"
						maxOccurs="unbounded"/>
		</xsd:sequence>
		<xsd:attribute	name="versionTimestamp"
							type="xsd:dateTime"
							use="required"
							fixed="2007-07-25T06:55:00Z"/>
	</xsd:complexType>

	<!-- Elements -->
	<xsd:element	name="LookupList"
						type="sys:LookupList"/>
</xsd:schema>