<?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 Address
		</xs:documentation>
	</xs:annotation>
	<xs:include schemaLocation="Contact.xsd"/>
	<xs:include schemaLocation="UserDefined.xsd"/>
	<xs:include schemaLocation="Keyword.xsd"/>
	<xs:element name="Address"/>
	<xs:complexType name="AddressType">
		<xs:sequence>
			<xs:element name="AddressName" type="xs:string" minOccurs="0"/>
			<xs:element name="AddressLine" type="xs:string" minOccurs="0" maxOccurs="unbounded"/>
			<xs:element name="City" type="xs:string" minOccurs="0"/>
			<xs:element name="State" type="xs:string" minOccurs="0"/>
			<xs:element name="Country" type="xs:string" minOccurs="0"/>
			<xs:element name="PostalCode" type="xs:string" minOccurs="0"/>
			<xs:element name="Latitude" type="xs:float" minOccurs="0"/>
			<xs:element name="Longitude" type="xs:float" minOccurs="0"/>
			<xs:element name="Contact" type="ContactType" minOccurs="0" maxOccurs="unbounded"/>
			<xs:element name="UserDefined" type="UserDefinedType" minOccurs="0" maxOccurs="unbounded"/>
		</xs:sequence>
		<xs:attribute name="Id" type="xs:string" use="required"/>
	</xs:complexType>
</xs:schema>