<?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 Supplier
		</xs:documentation>
	</xs:annotation>

	<xs:include schemaLocation="Address.xsd"/>

	<xs:element name="Supplier" type="SupplierType"/>
	<xs:complexType name="SupplierType">
		<xs:sequence>
			<xs:element name="SupplierName" type="xs:string" minOccurs="0"/>
			<xs:element name="SupplierURL" type="xs:string" minOccurs="0"/>
			<xs:element name="SupplierDunAndBradstreetNumber" type="xs:string" minOccurs="0"/>
			<xs:element name="SupplierAddress" type="AddressType" minOccurs="0" maxOccurs="unbounded"/>
		</xs:sequence>
		<xs:attribute name="Id" type="xs:string" use="required"/>
	</xs:complexType>
</xs:schema>

