Commit 402b77b9 authored by Mark Canterbury's avatar Mark Canterbury Committed by Mark Canterbury
Browse files

Adding dictionaries

parent 49741129
Loading
Loading
Loading
Loading
+20 −4
Original line number Diff line number Diff line
<?xml version="1.0" encoding="UTF-8"?>
<HI1Message xmlns="http://uri.etsi.org/03120/common/2019/10/Core" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:common="http://uri.etsi.org/03120/common/2016/02/Common" xmlns:task="http://uri.etsi.org/03120/common/2020/09/Task" xmlns:config="http://uri.etsi.org/03120/common/2024/06/Config">
<HI1Message xmlns="http://uri.etsi.org/03120/common/2019/10/Core" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:common="http://uri.etsi.org/03120/common/2016/02/Common" xmlns:task="http://uri.etsi.org/03120/common/2020/09/Task" xmlns:config="http://uri.etsi.org/03120/common/2024/06/Config" xmlns:dictionaries="http://uri.etsi.org/03280/common/2019/10/Dictionaries">
    <Header>
        <SenderIdentifier>
            <CountryCode>XX</CountryCode>
@@ -24,6 +24,22 @@
                    <ActionIdentifier>0</ActionIdentifier>
                    <CONFIGResponse>
                        <LastChanged>2024-05-10T08:52:32Z</LastChanged>
                        <Dictionaries>
                            <dictionaries:Dictionary>
                                <dictionaries:Owner>ACTOR2</dictionaries:Owner>
                                <dictionaries:Name>LIServiceTypes</dictionaries:Name>
                                <dictionaries:DictionaryEntries>
                                    <dictionaries:DictionaryEntry>
                                        <dictionaries:Value>ServiceA</dictionaries:Value>
                                        <dictionaries:Meaning>This is a dictionary entry</dictionaries:Meaning>
                                    </dictionaries:DictionaryEntry>
                                    <dictionaries:DictionaryEntry>
                                        <dictionaries:Value>ServiceB</dictionaries:Value>
                                        <dictionaries:Meaning>This is a dictionary entry</dictionaries:Meaning>
                                    </dictionaries:DictionaryEntry>
                                </dictionaries:DictionaryEntries>
                            </dictionaries:Dictionary>
                        </Dictionaries>
                        <TargetFormatTypeDefinitions>
                            <config:FormatOwner>ACTOR02</config:FormatOwner>
                            <config:TargetFormatTypeDefinitionEntries>
@@ -42,7 +58,7 @@
                                <config:AssociatedLIServiceTypes>
                                    <common:DictionaryEntry>
                                        <common:Owner>ACTOR02</common:Owner>
                                        <common:Name>LIServerTypes</common:Name>
                                        <common:Name>LIServiceTypes</common:Name>
                                        <common:Value>ServiceA</common:Value>
                                    </common:DictionaryEntry>
                                </config:AssociatedLIServiceTypes>
@@ -56,12 +72,12 @@
                                <config:AssociatedLIServiceTypes>
                                    <common:DictionaryEntry>
                                        <common:Owner>ACTOR02</common:Owner>
                                        <common:Name>LIServerTypes</common:Name>
                                        <common:Name>LIServiceTypes</common:Name>
                                        <common:Value>ServiceA</common:Value>
                                    </common:DictionaryEntry>
                                    <common:DictionaryEntry>
                                        <common:Owner>ACTOR02</common:Owner>
                                        <common:Name>LIServerTypes</common:Name>
                                        <common:Name>LIServiceTypes</common:Name>
                                        <common:Value>ServiceB</common:Value>
                                    </common:DictionaryEntry>
                                </config:AssociatedLIServiceTypes>
+3 −1
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:digsig="http://www.w3.org/2000/09/xmldsig#" xmlns:config="http://uri.etsi.org/03120/common/2024/06/Config" xmlns="http://uri.etsi.org/03120/common/2019/10/Core" targetNamespace="http://uri.etsi.org/03120/common/2019/10/Core" elementFormDefault="qualified" attributeFormDefault="unqualified">
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:etsi="http://uri.etsi.org/03280/common/2017/07" xmlns:dictionaries="http://uri.etsi.org/03280/common/2019/10/Dictionaries" xmlns:common="http://uri.etsi.org/03120/common/2016/02/Common" xmlns:digsig="http://www.w3.org/2000/09/xmldsig#" xmlns:config="http://uri.etsi.org/03120/common/2024/06/Config" xmlns="http://uri.etsi.org/03120/common/2019/10/Core" targetNamespace="http://uri.etsi.org/03120/common/2019/10/Core" 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/2024/06/Config"/>
    <xs:import namespace="http://uri.etsi.org/03280/common/2019/10/Dictionaries"/>    
    <xs:import namespace="http://uri.etsi.org/03280/common/2017/07"/>
    <xs:import namespace="http://www.w3.org/2000/09/xmldsig#"/>
    <xs:element name="HI1Message" type="HI1Message"/>
@@ -165,6 +166,7 @@
    <xs:complexType name="CONFIGResponse">
        <xs:sequence>
            <xs:element name="LastChanged" type="etsi:QualifiedDateTime"/>
            <xs:element name="Dictionaries" type="dictionaries:Dictionaries"/>
            <xs:element name="TargetFormatTypeDefinitions" type="config:TargetFormatTypeDefinitions"/>
            <xs:element name="TargetingConfigurations" type="config:TargetingConfigurations"/>
            <xs:element name="SupportedLIWorkflowEndpoints" type="config:SupportedLIWorkflowEndpoints"/>
+3 −0
Original line number Diff line number Diff line
@@ -21,6 +21,7 @@
            "103120/schema/xsd/ts_103120_Common.xsd",
            "103120/schema/xsd/ts_103120_Config.xsd",
            "103120/schema/xsd/ts_103120_Core.xsd",
            "103120/dictionaries/ts_103120_Dictionaries.xsd",
            "103120/schema/xsd/ts_103120_TrafficPolicy.xsd",
            "testing/deps/xmldsig/xmldsig-core-schema.xsd"
        ],
@@ -42,6 +43,7 @@
            "103120/schema/xsd/ts_103120_Common.xsd",
            "103120/schema/xsd/ts_103120_Config.xsd",
            "103120/schema/xsd/ts_103120_Delivery.xsd",
            "103120/dictionaries/ts_103120_Dictionaries.xsd",
            "103120/schema/xsd/ts_103120_Document.xsd",
            "103120/schema/xsd/ts_103120_Notification.xsd",
            "103120/schema/xsd/ts_103120_Task.xsd",
@@ -61,6 +63,7 @@
            "103120/schema/xsd/ts_103120_Common.xsd",
            "103120/schema/xsd/ts_103120_Core.xsd",
            "103120/schema/xsd/ts_103120_Config.xsd",
            "103120/dictionaries/ts_103120_Dictionaries.xsd",
            "103120/schema/xsd/ts_103120_Task.xsd",
            "testing/deps/xmldsig/xmldsig-core-schema.xsd",
            "103707/examples/FooServiceSchema.xsd"