<?xml version="1.0" encoding="UTF-8" ?>
<!-- Receiver Hierarchy schema -->
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified"
attributeFormDefault="unqualified" version="1.0a" id="Receiver_Hierarchy_Data">
	<xs:element name="Receiver_Hierarchy_Root" type="Receiver_Hierarchy_T">
		<xs:annotation>
			<xs:documentation>Root element containing Hierarchy Data.</xs:documentation>
		</xs:annotation>
	</xs:element>
	<xs:complexType name="Receiver_Hierarchy_T">
		<xs:sequence>
			<xs:element name="Receiver_Kind" type="Receiver_Kind_T" maxOccurs="unbounded">
				<xs:annotation>
					<xs:documentation>A Receiver Kind</xs:documentation>
				</xs:annotation>
			</xs:element>
		</xs:sequence>
	</xs:complexType>
	<xs:complexType name="Receiver_Kind_T">
		<xs:sequence>
			<xs:element name="Type">
				<xs:annotation>
					<xs:documentation>The receiver kind e.g. SPS</xs:documentation>
				</xs:annotation>
				<xs:simpleType>
					<xs:restriction base="xs:string">
						<xs:minLength value="1" />
					</xs:restriction>
				</xs:simpleType>
			</xs:element>
			<xs:element name="ParentType">
				<xs:annotation>
					<xs:documentation>The 'type' of the receiver kind's parent e.g. TPS</xs:documentation>
				</xs:annotation>
				<xs:simpleType>
					<xs:restriction base="xs:string">
						<xs:minLength value="1" />
					</xs:restriction>
				</xs:simpleType>
			</xs:element>
		</xs:sequence>
	</xs:complexType>
</xs:schema>

