<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<edmx:Edmx Version="1.0"
	xmlns:edmx="http://schemas.microsoft.com/ado/2007/06/edmx"
	xmlns:sap="http://www.sap.com/Protocols/SAPData">
	<edmx:DataServices
		xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata"
		m:DataServiceVersion="2.0">
		<Schema Namespace="HierarchyTestservice.odata.tree"
			xmlns:d="http://schemas.microsoft.com/ado/2007/08/dataservices"
			xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata"
			xmlns="http://schemas.microsoft.com/ado/2008/09/edm">
			<EntityType Name="orgHierarchyType">
				<Key>
					<PropertyRef Name="HIERARCHY_NODE" />
				</Key>
				<Property Name="HIERARCHY_NODE" Type="Edm.String" Nullable="false" MaxLength="32" sap:hierarchy-node-for="HIERARCHY_NODE"/>
				<Property Name="DESCRIPTION" Type="Edm.String" MaxLength="100" />
				<Property Name="LEVEL" Type="Edm.Int32" sap:hierarchy-level-for="HIERARCHY_NODE" />
				<Property Name="PARENT_NODE" Type="Edm.String" MaxLength="32" sap:hierarchy-parent-node-for="HIERARCHY_NODE" />
				<Property Name="DRILLDOWN_STATE" Type="Edm.String" MaxLength="16" sap:hierarchy-drill-state-for="HIERARCHY_NODE" />
				<Property Name="MAGNITUDE" Type="Edm.Int32" sap:hierarchy-node-descendant-count-for="HIERARCHY_NODE" />
				<Property Name="SERVER_INDEX" Type="Edm.Int32" />
			</EntityType>
			<EntityContainer Name="tree"
				m:IsDefaultEntityContainer="true">
				<EntitySet Name="orgHierarchy"
					EntityType="HierarchyTestservice.odata.tree.orgHierarchyType" />
			</EntityContainer>
		</Schema>
	</edmx:DataServices>
</edmx:Edmx>
