Commit bec866c6 authored by canterburym's avatar canterburym
Browse files

Merge branch 'cr/33128/0626' into 'meeting/SA104'

TS 33.128 - CR0626 - Adding structure for Multiple NCGIs in the ID association request

See merge request !253
parents 631eddd4 fd653bb7
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -68,7 +68,7 @@
        <DictionaryEntries>
            <DictionaryEntry>
                <Value>IncludeNCGIInResponse</Value>
                <Meaning>A request for returning the NCGI in the response.</Meaning>
                <Meaning>A request for returning the NCGI and additional CGIs in the response.</Meaning>
            </DictionaryEntry>
        </DictionaryEntries>
    </Dictionary>
+1 −0
Original line number Diff line number Diff line
@@ -46,6 +46,7 @@
      <xs:element name="FiveGSTAIList" type="liqr:FiveGSTAIList" minOccurs="0"/>
      <xs:element name="GPSI" type="liqr:GPSI" minOccurs="0"/>
      <xs:element name="NCGI" type="liqr:NCGI" minOccurs="0"/>
      <xs:element name="AdditionalCGIs" type="liqr:AdditionalCGIList" minOccurs="0"/>
    </xs:sequence>
  </xs:complexType>

+20 −0
Original line number Diff line number Diff line
@@ -179,4 +179,24 @@
    </xs:restriction>
  </xs:simpleType>

  <xs:complexType name="AdditionalCGIList">
    <xs:sequence>
      <xs:element name="AdditionalCGI" type="AdditionalCGI" maxOccurs="unbounded"/>
    </xs:sequence>
  </xs:complexType>

  <xs:complexType name="AdditionalCGI">
    <xs:choice>
      <xs:element name="NCGIWithoutAssociationTime" type="NCGIWithoutAssociationTime"/>
    </xs:choice>
  </xs:complexType>

  <xs:complexType name="NCGIWithoutAssociationTime">
    <xs:sequence>
      <xs:element name="PLMNID" type="PLMNID"/>
      <xs:element name="NRCellID" type="NRCellID"/>
      <xs:element name="NID" type="NID" minOccurs="0"/>
    </xs:sequence>
  </xs:complexType>

</xs:schema>