<?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 Inventory
		</xs:documentation>
	</xs:annotation>
	<xs:include schemaLocation="Address.xsd"/>
	<xs:include schemaLocation="UserDefined.xsd"/>

	<xs:element name="BusinessUnit" type="BusinessUnitType"/>
	<xs:complexType name="BusinessUnitType">
		<xs:sequence>
				<xs:element name="Address" type="AddressType" 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:attribute name="Name" type="xs:string" use="optional"/>
		<xs:attribute name="Description" type="xs:string" use="optional"/>
		<xs:attribute name="ParentBusinessUnitId" type="xs:string" use="optional"/>
		<xs:attribute name="CultureCode" type="xs:string" use="optional"/>
	</xs:complexType>
</xs:schema>
