Commit 5146737e authored by tappen's avatar tappen
Browse files

TS 103 120 CR102 – Adding Correspondence

parent 8080aefc
Loading
Loading
Loading
Loading
Loading
+17 −2
Original line number Diff line number Diff line
@@ -17,6 +17,10 @@
                <Value>Notification</Value>
                <Meaning>A Notification Object as defined in section 7.4</Meaning>
            </DictionaryEntry>
            <DictionaryEntry>
                <Value>Correspondence</Value>
                <Meaning>A Correspondence Object as defined in section 7.7</Meaning>
            </DictionaryEntry>
            <DictionaryEntry>
                <Value>Task</Value>
                <Meaning>An LI Task Object as defined in section 8.2</Meaning>
@@ -341,6 +345,17 @@
            </DictionaryEntry>
        </DictionaryEntries>
    </Dictionary>
    <Dictionary>
        <!--NotificationType: see Clause 7.7.3 Table 7.28 -->
        <Owner>ETSI</Owner>
        <Name>CorrespondenceType</Name>
        <DictionaryEntries>
            <DictionaryEntry>
                <Value>General</Value>
                <Meaning>General correspondence messages.</Meaning>
            </DictionaryEntry>
        </DictionaryEntries>
    </Dictionary>
    <Dictionary>
        <!--TrafficAction: see Clause 7.6.3 Table 7.25-->
        <Owner>ETSI</Owner>
+32 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
           xmlns:etsi="http://uri.etsi.org/03280/common/2017/07"
           xmlns:common="http://uri.etsi.org/03120/common/2016/02/Common"
           xmlns:core="http://uri.etsi.org/03120/common/2019/10/Core"
           xmlns="http://uri.etsi.org/03120/common/2016/02/Correspondence"
           targetNamespace="http://uri.etsi.org/03120/common/2016/02/Correspondence"
           elementFormDefault="qualified"
           attributeFormDefault="unqualified">
    <xs:import namespace="http://uri.etsi.org/03120/common/2016/02/Common"/>
    <xs:import namespace="http://uri.etsi.org/03120/common/2019/10/Core"/>
    <xs:import namespace="http://uri.etsi.org/03280/common/2017/07"/>
    <xs:complexType name="CorrespondenceObject">
        <xs:complexContent>
            <xs:extension base="core:HI1Object">
                <xs:sequence>
                    <xs:element name="CorrespondenceText" type="etsi:LongString" minOccurs="0"/>
                    <xs:element name="CorrespondenceType" type="common:DictionaryEntry" minOccurs="0"/>
                    <xs:element name="NewCorrespondence" type="xs:boolean" minOccurs="0"/>
                    <xs:element name="SenderContactDetails" type="common:GenericContactDetails" minOccurs="0"/>
                    <xs:element name="ReplyBy" type="etsi:QualifiedDateTime" minOccurs="0"/>
                    <xs:element name="NationalNotificationParameters" type="NationalCorrespondenceParameters" minOccurs="0"/>
                </xs:sequence>
            </xs:extension>
        </xs:complexContent>
    </xs:complexType>
    <xs:complexType name="NationalCorrespondenceParameters" abstract="true">
        <xs:sequence>
            <xs:element name="CountryCode" type="etsi:ISOCountryCode"/>
        </xs:sequence>
    </xs:complexType>
</xs:schema>