Schema Name: UserInformation.xsd
Target Namespace: http://rets.org/xsd/RETSSystem/2007-08
Documentation:
Elements related to information about the user.
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: UserInformation.xsd, 16, 1/24/08 2:30:35 PM EST, Paul Stusiak$
		
		$Log:
		 16   055_RETS_Standard 1.15        1/24/08 2:30:35 PM EST Paul Stusiak
		      correct copyright notice language
		 15   055_RETS_Standard 1.14        10/8/07 4:22:17 PM EDT Paul Stusiak
		      Update version timestamp
		 14   055_RETS_Standard 1.13        7/25/07 3:09:40 AM EDT Paul Stusiak
		      move to common container of retssystem
		 13   055_RETS_Standard 1.12        7/9/07 3:37:03 PM EDT  Paul Stusiak
		      Update versionTimestamp to 2007-07-09T19:21:00Z
		 12   055_RETS_Standard 1.11        7/6/07 5:30:09 PM EDT  Gina Accawi
		      Rename ids
		 11   055_RETS_Standard 1.10        6/26/07 3:40:41 PM EDT Gina Accawi
		      Rename Agent to Member. This affects namespaces, element names, type
		      references, and attribute names.
		 10   055_RETS_Standard 1.9         5/2/07 4:35:46 PM EDT  Paul Stusiak
		      change namespace reference, update version time stamp
		 9    055_RETS_Standard 1.8         4/3/07 4:43:04 AM EDT  Paul Stusiak
		      change namespace to remote location (www.ftc2.com) for testing
		 8    055_RETS_Standard 1.7         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
		 7    055_RETS_Standard 1.6         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
		 6    055_RETS_Standard 1.5         3/8/07 2:05:44 AM EST  Paul Stusiak
		      Added standard document header.
		 5    055_RETS_Standard 1.4         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
		 4    055_RETS_Standard 1.3         7/31/06 12:26:03 PM EDTJeff Brush
		      updated schemas to have child element of minOccurs="0" allowing for
		      empty root element to be returned in cases where the search results
		      are empty
		 3    055_RETS_Standard 1.2         4/7/06 10:36:41 PM EDT Jeff Brush
		      renamed version attribute to versionTimestamp for schema versioning
		 2    055_RETS_Standard 1.1         4/7/06 4:37:44 PM EDT  Jeff Brush
		      modified to have schema versioning as datetime, add year month to
		      namespaces, minor corrections
		 1    055_RETS_Standard 1.0         4/6/06 3:22:01 PM EDT  Jeff Brush      
		$
		======================
	-->

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

	<!-- Types -->
	<xs:simpleType name="MemberCode">
		<xs:restriction base="xs:string"/>
	</xs:simpleType>
	<xs:simpleType name="Balance">
		<xs:restriction base="xs:string"/>
	</xs:simpleType>
	<xs:simpleType name="BrokerBranch">
		<xs:restriction base="xs:string"/>
	</xs:simpleType>
	<xs:simpleType name="BrokerCode">
		<xs:restriction base="xs:string"/>
	</xs:simpleType>
	<xs:simpleType name="Class">
		<xs:restriction base="xs:string"/>
	</xs:simpleType>
	<xs:simpleType name="PasswordExpireDate">
		<xs:restriction base="xs:dateTime"/>
	</xs:simpleType>
	<xs:simpleType name="Level">
		<xs:restriction base="xs:string"/>
	</xs:simpleType>
	<xs:simpleType name="MemberName">
		<xs:restriction base="xs:string"/>
	</xs:simpleType>
	<xs:complexType name="UserInformationType">
		<xs:sequence>
			<xs:element	name="Level"
							type="sys:Level"/>
			<xs:element	name="Class"
							type="sys:Class"/>
			<xs:element	name="MemberCode"
							type="sys:MemberCode"/>
			<xs:element	name="BrokerCode"
							type="sys:BrokerCode"/>
			<xs:element	name="BrokerBranch"
							type="sys:BrokerBranch"/>
			<xs:element	name="MemberName"
							type="sys:MemberName"/>
			<xs:element	name="Balance"
							type="sys:Balance"/>
			<xs:element	name="PasswordExpireDate"
							type="sys:PasswordExpireDate"/>
			<xs:any		namespace="##other"
							minOccurs="0"
							maxOccurs="unbounded"/>
		</xs:sequence>
		<xs:attribute	name="userId"
							type="xs:string"
							use="required"/>
		<xs:attribute	name="versionTimestamp"
							type="xs:dateTime"
							use="required"
							fixed="2007-07-25T06:36:00Z"/>
	</xs:complexType>

	<!-- Elements -->
	<xs:element	name="UserInformation"
					type="sys:UserInformationType"/>
</xs:schema>
Collapse ComplexTypes:
Collapse Elements:
Collapse SimpleTypes: