<?xml version="1.0" encoding="utf-8"?>
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema">
    <xsd:element name="order">
        <xsd:complexType>
            <xsd:annotation>
                <xsd:documentation>The order wrapper</xsd:documentation>
            </xsd:annotation>
            <xsd:all>
                <xsd:element name="identifierType" type="orderIdentifierType"/>
                <xsd:element name="identifier" type="xsd:string"/>
            </xsd:all>
        </xsd:complexType>
    </xsd:element>
    <xsd:simpleType name="orderIdentifierType">
        <xsd:restriction base="xsd:string">
            <xsd:enumeration value="connectionIdentifier"/>
            <xsd:enumeration value="connectionInvoice"/>
            <xsd:enumeration value="connectionNumber"/>
            <xsd:enumeration value="effectConnectIdentifier"/>
            <xsd:enumeration value="effectConnectNumber"/>
            <xsd:enumeration value="channelIdentifier"/>
            <xsd:enumeration value="channelNumber"/>
        </xsd:restriction>
    </xsd:simpleType>
</xsd:schema>
