Schema Name: SystemInformation.xsd
Target Namespace: http://rets.org/xsd/RETSSystem/2007-08
Documentation:
Elements related to information about the system.
Collapse XSD Schema Code:

<xs:schema	xmlns:xs="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). All Rights Reserved

		Tab stops
		:set ts=3

		File History
		======================
		$Header: SystemInformation.xsd, 13, 1/24/08 2:30:35 PM EST, Paul Stusiak$
		
		$Log:
		 13   055_RETS_Standard 1.12        1/24/08 2:30:35 PM EST Paul Stusiak
		      correct copyright notice language
		 12   055_RETS_Standard 1.11        10/8/07 4:22:16 PM EDT Paul Stusiak
		      Update version timestamp
		 11   055_RETS_Standard 1.10        7/25/07 3:09:40 AM EDT Paul Stusiak
		      move to common container of retssystem
		 10   055_RETS_Standard 1.9         7/9/07 3:37:03 PM EDT  Paul Stusiak
		      Update versionTimestamp to 2007-07-09T19:21:00Z
		 9    055_RETS_Standard 1.8         6/27/07 12:53:02 PM EDTGina Accawi
		      Attribute name case consistency.
		 8    055_RETS_Standard 1.7         5/2/07 4:35:36 PM EDT  Paul Stusiak
		      change namespace reference, update version time stamp
		 7    055_RETS_Standard 1.6         4/3/07 4:43:04 AM EDT  Paul Stusiak
		      change namespace to remote location (www.ftc2.com) for testing
		 6    055_RETS_Standard 1.5         4/2/07 2:26:59 PM EDT  Paul Stusiak
		      change namespace to match responding server and to use the URI
		      versioning suggested by both HP and XFront
		 5    055_RETS_Standard 1.4         3/30/07 9:19:07 PM EDT Paul Stusiak
		      Update of the versionTimestamp and the namespace (namespace to
		      200704). Change formating to a standard format
		 4    055_RETS_Standard 1.3         3/8/07 2:04:38 AM EST  Paul Stusiak
		      Added standard document header.
		 3    055_RETS_Standard 1.2         12/2/06 4:12:46 AM EST Paul Stusiak
		      various mechanical fixes tho the schema and a re-direct from
		      retsserver.realtors.org to www.ftc2.com
		 2    055_RETS_Standard 1.1         4/7/06 10:36:41 PM EDT Jeff Brush
		      renamed version attribute to versionTimestamp for schema versioning
		 1    055_RETS_Standard 1.0         4/7/06 4:44:08 PM EDT  Jeff Brush      
		$
		======================
	-->

	<xs:annotation>
		<xs:documentation>
			Elements related to information about the system.
		</xs:documentation>
	</xs:annotation>

	<!-- Types -->
	<xs:complexType name="ParameterType">
		<xs:simpleContent>
			<xs:extension base="xs:string">
				<xs:attribute name="name" use="required">
					<xs:simpleType>
						<xs:restriction base="xs:NMTOKEN">
							<xs:enumeration value="CurrentTimeStamp"/>
							<xs:enumeration value="LastTimeStamp"/>
							<xs:enumeration value="MinimumLimit"/>
							<xs:enumeration value="KeyLimit"/>
							<xs:enumeration value="ReplicationSupport"/>
							<xs:enumeration value="Other"/>
						</xs:restriction>
					</xs:simpleType>
				</xs:attribute>
				<xs:attribute name="resource" type="xs:string"/>
			</xs:extension>
		</xs:simpleContent>
	</xs:complexType>
	<xs:complexType name="SystemInformationType">
		<xs:sequence>
			<xs:element	name="Parameter"
							type="sys:ParameterType"
							minOccurs="0"
							maxOccurs="unbounded"/>
			<xs:any		namespace="##other"
							minOccurs="0"
							maxOccurs="unbounded"/>
		</xs:sequence>
		<xs:attribute	name="versionTimestamp"
							type="xs:dateTime"
							use="required"
							fixed="2007-07-25T06:37:00Z"/>
	</xs:complexType>

	<!-- Elements -->
	<xs:element	name="SystemInformation"
					type="sys:SystemInformationType"/>
</xs:schema>
Collapse ComplexTypes:
Collapse Elements: