<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns="http://www.eamxml.org/schema/Rev0" targetNamespace="http://www.eamxml.org/schema/Rev0" elementFormDefault="qualified">
	<xs:annotation>
		<xs:documentation>
			EAMXML.org Representation of Person
		</xs:documentation>
	</xs:annotation>
	<xs:include schemaLocation="Position.xsd"/>
	<xs:include schemaLocation="Contact.xsd"/>

	<xs:element name="Person" type="PersonType"/>

	<xs:complexType name="PersonType">
		<xs:sequence>
			<xs:element name="UserId" type="xs:string" minOccurs="0"/>
			<xs:element name="FirstName" type="xs:string" minOccurs="0"/>
			<xs:element name="MiddleName" type="xs:string" minOccurs="0"/>
			<xs:element name="LastName" type="xs:string" minOccurs="0"/>
			<xs:element name="Title" type="xs:string" minOccurs="0"/>
			<xs:element name="Suffix" type="xs:string" minOccurs="0"/>
			<xs:element name="Gender" type="xs:string" minOccurs="0"/>
			<xs:element name="Birthdate" type="xs:date" minOccurs="0"/>
			<xs:element name="Position" type="PositionType" minOccurs="0" maxOccurs="unbounded"/>
			<xs:element name="ContactInformation" type="ContactType" minOccurs="0" maxOccurs="unbounded"/>
		</xs:sequence>
		<xs:attribute name="Id" type="xs:string" use="required"/>
	</xs:complexType>
</xs:schema>

