<?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.3" 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="Base_Receiver_Kind" type="Receiver_Kind_T" maxOccurs="unbounded">
				<xs:annotation>
					<xs:documentation>A base alert receiver for which no alternative kinds of receiver exist</xs:documentation>
				</xs:annotation>
			</xs:element>
		</xs:sequence>
		<xs:unique name="ReceiversToBeUniqueInTheHierarchy">
			<xs:selector xpath="//Type"/>
			<xs:field xpath="."/>
		</xs:unique>
	</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="Priority_Receiver_Kind" type="Receiver_Kind_T" maxOccurs="unbounded">
				<xs:annotation>
					<xs:documentation>A more specialised, higher priority receiver. Alerts are routed to the enclosing parent receiver if no receiver of this type is available.</xs:documentation>
				</xs:annotation>
			</xs:element>
		</xs:sequence>
	</xs:complexType>
</xs:schema>

