Commit e0316313 authored by Jose Antonio Ordoñez Lucena's avatar Jose Antonio Ordoñez Lucena Committed by lengyelb
Browse files

Update _3gpp-common-trace.yang

parent 07f8cb63
Loading
Loading
Loading
Loading
+55 −2
Original line number Diff line number Diff line
@@ -590,8 +590,59 @@ module _3gpp-common-trace {
      reference "Clause 5.1 of 3GPP TS 32.422";
    }


    grouping AreaScopeGrp {
      description "Represents the AreaScope dataType.
      This <<dataType>> defines the area scope of MDT.
      The Area Scope parameter in LTE and NR is either:
      - list of Cells, identified by E-UTRAN-CGI or NG-RAN CGI. 
      Maximum 32 CGI can be defined.
      - list of Tracking Area, identified by TAC. 
      Maximum of 8 TAC can be defined. 
      - list of Tracking Area Identity, identified by TAC with 
      associated plmn-Identity perTAC-List containing the 
      PLMN identity for each TAC. Maximum of 8 TAI can be defined.
      The Area Scope parameter in NR can also contain:
      - list of NPN-IDs in NR. It is either a list of PNI-NPNs 
      identified by CAG ID with associated plmn-Identity or a  
      list of SNPNs identified by Network ID with associated 
      plmn-Identity .";    

      choice AreaScopeChoice {
        leaf-list eutraCellIdList {
          type string;
          min-elements 1;
          max-elements 32;
          description "List of E-UTRAN cells identified by E-UTRAN-CGI";
        }
        
        leaf-list nrCellIdList {
          type string;
          min-elements 1;
          max-elements 32;
          description "List of NR cells identified by NG-RAN CGI";
        }
        
        leaf-list tacList {
          type types3gpp:Tac;
          min-elements 1;
          max-elements 8;
          description "Tracking Area Code list";
        }
        
        list taiList {
          description "Tracking Area Identity list";
          key idx;
          min-elements 1;
          max-elements 8;
          leaf idx { type string; }
          uses types3gpp:TaiGrp;
        }
      }
    }

    leaf MDTAnonymizationOfData {
      when ../MDTAreaScope ;
      when ../areaScope ;
      type enumeration {
        enum NO_IDENTITY;
        enum TAC_OF_IMEI;
@@ -624,7 +675,7 @@ module _3gpp-common-trace {
      }
    }

    leaf-list MDTAreaScope {
    leaf-list areaScope {
      type string;
      description "specifies MDT area scope when activates an MDT job.

@@ -641,6 +692,8 @@ module _3gpp-common-trace {

      One or list of eNBs for RLF and RCEFreporting";
      reference "Clause 5.10.2 of 3GPP TS 32.422";

      uses AreaScopeGrp;   
    }

    leaf MDTCollectionPeriodRrmLte {