LibNGAP_Templates.ttcn 1.61 MB
Newer Older
7001 7002 7003 7004 7005 7006 7007 7008 7009 7010 7011 7012 7013 7014 7015 7016 7017 7018 7019 7020 7021 7022 7023 7024 7025 7026 7027 7028 7029 7030 7031 7032 7033 7034 7035 7036 7037 7038 7039 7040 7041 7042 7043 7044 7045 7046 7047 7048 7049 7050 7051 7052 7053 7054 7055 7056 7057 7058 7059 7060 7061 7062 7063 7064 7065 7066 7067 7068 7069 7070 7071 7072 7073 7074 7075 7076 7077 7078 7079 7080 7081 7082 7083 7084 7085 7086 7087 7088 7089 7090 7091 7092 7093 7094 7095 7096 7097 7098 7099 7100 7101 7102 7103 7104 7105 7106 7107 7108 7109 7110 7111 7112 7113 7114 7115 7116 7117 7118 7119 7120 7121 7122 7123 7124 7125 7126 7127 7128 7129 7130 7131 7132 7133 7134 7135 7136 7137 7138 7139 7140 7141 7142 7143 7144 7145 7146 7147 7148 7149 7150 7151 7152 7153 7154 7155 7156 7157 7158 7159 7160 7161 7162 7163 7164 7165 7166 7167 7168 7169 7170 7171 7172 7173 7174 7175 7176 7177 7178 7179 7180 7181 7182 7183 7184 7185 7186 7187 7188 7189 7190 7191 7192 7193 7194 7195 7196 7197 7198 7199 7200 7201 7202 7203 7204 7205 7206 7207 7208 7209 7210 7211 7212 7213 7214 7215 7216 7217 7218 7219 7220 7221 7222 7223 7224 7225 7226 7227 7228 7229 7230 7231 7232 7233 7234 7235 7236 7237 7238 7239 7240 7241 7242 7243 7244 7245 7246 7247 7248 7249 7250 7251 7252 7253 7254 7255 7256 7257 7258 7259 7260 7261 7262 7263 7264 7265 7266 7267 7268 7269 7270 7271 7272 7273 7274 7275 7276 7277 7278 7279 7280 7281 7282 7283 7284 7285 7286 7287 7288 7289 7290 7291 7292 7293 7294 7295 7296 7297 7298 7299 7300 7301 7302 7303 7304 7305 7306 7307 7308 7309 7310 7311 7312 7313 7314 7315 7316 7317 7318 7319 7320 7321 7322 7323 7324 7325 7326 7327 7328 7329 7330 7331 7332 7333 7334 7335 7336 7337 7338 7339 7340 7341 7342 7343 7344 7345 7346 7347 7348 7349 7350 7351 7352 7353 7354 7355 7356 7357 7358 7359 7360 7361 7362 7363 7364 7365 7366 7367 7368 7369 7370 7371 7372 7373 7374 7375 7376 7377 7378 7379 7380 7381 7382 7383 7384 7385 7386 7387 7388 7389 7390 7391 7392 7393 7394 7395 7396 7397 7398 7399 7400 7401 7402 7403 7404 7405 7406 7407 7408 7409 7410 7411 7412 7413 7414 7415 7416 7417 7418 7419 7420 7421 7422 7423 7424 7425 7426 7427 7428 7429 7430 7431 7432 7433 7434 7435 7436 7437 7438 7439 7440 7441 7442 7443 7444 7445 7446 7447 7448 7449 7450 7451 7452 7453 7454 7455 7456 7457 7458 7459 7460 7461 7462 7463 7464 7465 7466 7467 7468 7469 7470 7471 7472 7473 7474 7475 7476 7477 7478 7479 7480 7481 7482 7483 7484 7485 7486 7487 7488 7489 7490 7491 7492 7493 7494 7495 7496 7497 7498 7499 7500 7501 7502 7503 7504 7505 7506 7507 7508 7509 7510 7511 7512 7513 7514 7515 7516 7517 7518 7519 7520 7521 7522 7523 7524 7525 7526 7527 7528 7529 7530 7531 7532 7533 7534 7535 7536 7537 7538 7539 7540 7541 7542 7543 7544 7545 7546 7547 7548 7549 7550 7551 7552 7553 7554 7555 7556 7557 7558 7559 7560 7561 7562 7563 7564 7565 7566 7567 7568 7569 7570 7571 7572 7573 7574 7575 7576 7577 7578 7579 7580 7581 7582 7583 7584 7585 7586 7587 7588 7589 7590 7591 7592 7593 7594 7595 7596 7597 7598 7599 7600 7601 7602 7603 7604 7605 7606 7607 7608 7609 7610 7611 7612 7613 7614 7615 7616 7617 7618 7619 7620 7621 7622 7623 7624 7625 7626 7627 7628 7629 7630 7631 7632 7633 7634 7635 7636 7637 7638 7639 7640 7641 7642 7643 7644 7645 7646 7647 7648 7649 7650 7651 7652 7653 7654 7655 7656 7657 7658 7659 7660 7661 7662 7663 7664 7665 7666 7667 7668 7669 7670 7671 7672 7673 7674 7675 7676 7677 7678 7679 7680 7681 7682 7683 7684 7685 7686 7687 7688 7689 7690 7691 7692 7693 7694 7695 7696 7697 7698 7699 7700 7701 7702 7703 7704 7705 7706 7707 7708 7709 7710 7711 7712 7713 7714 7715 7716 7717 7718 7719 7720 7721 7722 7723 7724 7725 7726 7727 7728 7729 7730 7731 7732 7733 7734 7735 7736 7737 7738 7739 7740 7741 7742 7743 7744 7745 7746 7747 7748 7749 7750 7751 7752 7753 7754 7755 7756 7757 7758 7759 7760 7761 7762 7763 7764 7765 7766 7767 7768 7769 7770 7771 7772 7773 7774 7775 7776 7777 7778 7779 7780 7781 7782 7783 7784 7785 7786 7787 7788 7789 7790 7791 7792 7793 7794 7795 7796 7797 7798 7799 7800 7801 7802 7803 7804 7805 7806 7807 7808 7809 7810 7811 7812 7813 7814 7815 7816 7817 7818 7819 7820 7821 7822 7823 7824 7825 7826 7827 7828 7829 7830 7831 7832 7833 7834 7835 7836 7837 7838 7839 7840 7841 7842 7843 7844 7845 7846 7847 7848 7849 7850 7851 7852 7853 7854 7855 7856 7857 7858 7859 7860 7861 7862 7863 7864 7865 7866 7867 7868 7869 7870 7871 7872 7873 7874 7875 7876 7877 7878 7879 7880 7881 7882 7883 7884 7885 7886 7887 7888 7889 7890 7891 7892 7893 7894 7895 7896 7897 7898 7899 7900 7901 7902 7903 7904 7905 7906 7907 7908 7909 7910 7911 7912 7913 7914 7915 7916 7917 7918 7919 7920 7921 7922 7923 7924 7925 7926 7927 7928 7929 7930 7931 7932 7933 7934 7935 7936 7937 7938 7939 7940 7941 7942 7943 7944 7945 7946 7947 7948 7949 7950 7951 7952 7953 7954 7955 7956 7957 7958 7959 7960 7961 7962 7963 7964 7965 7966 7967 7968 7969 7970 7971 7972 7973 7974 7975 7976 7977 7978 7979 7980 7981 7982 7983 7984 7985 7986 7987 7988 7989 7990 7991 7992 7993 7994 7995 7996 7997 7998 7999 8000
                                                                                                                    in template (value) IntersystemSONInformationRequest.choice_Extensions p_choice_Extensions
                                                                                                                    ) := {
                    choice_Extensions := p_choice_Extensions
                } // End of template m_intersystemSONInformationRequest_choice_Extensions

                template (omit) IntersystemCellActivationRequest m_intersystemCellActivationRequest(
                                                                                                    in template (value) IntersystemCellActivationRequest.activationID p_activationID,
                                                                                                    in template (value) CellsToActivateList p_cellsToActivateList,
                                                                                                    in template (omit) IntersystemCellActivationRequest.iE_Extensions p_iE_Extensions := omit
                                                                                                    ) := {
                    activationID        := p_activationID,
                    cellsToActivateList := p_cellsToActivateList,
                    iE_Extensions       := p_iE_Extensions
                } // End of template m_intersystemCellActivationRequest

                template (omit) IntersystemResourceStatusRequest m_intersystemResourceStatusRequest(
                                                                                                    in template (value) ReportingSystem p_reportingSystem,
                                                                                                    in template (value) ReportCharacteristics p_reportCharacteristics,
                                                                                                    in template (value) ReportType p_reportType,
                                                                                                    in template (omit) IntersystemResourceStatusRequest.iE_Extensions p_iE_Extensions := omit
                                                                                                    ) := {
                    reportingSystem       := p_reportingSystem,
                    reportCharacteristics := p_reportCharacteristics,
                    reportType            := p_reportType,
                    iE_Extensions         := p_iE_Extensions
                } // End of template m_intersystemResourceStatusRequest

                template (value) ReportingSystem m_reportingSystem_eUTRAN(
                                                                        in template (value) EUTRAN_ReportingSystemIEs p_eUTRAN
                                                                        ) := {
                    eUTRAN := p_eUTRAN
                } // End of template m_reportingSystem_eUTRAN

                template (value) ReportingSystem m_reportingSystem_nGRAN(
                                                                        in template (value) NGRAN_ReportingSystemIEs p_nGRAN
                                                                        ) := {
                    nGRAN := p_nGRAN
                } // End of template m_reportingSystem_nGRAN

                template (value) ReportingSystem m_reportingSystem_choice_Extensions(
                                                                                    in template (value) ReportingSystem.choice_Extensions p_choice_Extensions
                                                                                    ) := {
                    choice_Extensions := p_choice_Extensions
                } // End of template m_reportingSystem_choice_Extensions

                template (omit) EUTRAN_ReportingSystemIEs m_eUTRAN_ReportingSystemIEs(
                                                                                    in template (value) EUTRAN_CellToReportList p_eUTRAN_CellToReportList,
                                                                                    in template (omit) EUTRAN_ReportingSystemIEs.iE_Extensions p_iE_Extensions := omit
                                                                                    ) := {
                    eUTRAN_CellToReportList := p_eUTRAN_CellToReportList,
                    iE_Extensions           := p_iE_Extensions
                } // End of template m_eUTRAN_ReportingSystemIEs

                template (omit) NGRAN_ReportingSystemIEs m_nGRAN_ReportingSystemIEs(
                                                                                    in template (value) NGRAN_CellToReportList p_nGRAN_CellToReportList,
                                                                                    in template (omit) NGRAN_ReportingSystemIEs.iE_Extensions p_iE_Extensions := omit
                                                                                    ) := {
                    nGRAN_CellToReportList := p_nGRAN_CellToReportList,
                    iE_Extensions          := p_iE_Extensions
                } // End of template m_nGRAN_ReportingSystemIEs

                template (omit) EUTRAN_CellToReportItem m_eUTRAN_CellToReportItem(
                                                                                in template (value) EUTRA_CGI p_eCGI,
                                                                                in template (omit) EUTRAN_CellToReportItem.iE_Extensions p_iE_Extensions := omit
                                                                                ) := {
                    eCGI          := p_eCGI,
                    iE_Extensions := p_iE_Extensions
                } // End of template m_eUTRAN_CellToReportItem

                template (omit) NGRAN_CellToReportItem m_nGRAN_CellToReportItem(
                                                                                in template (value) NGRAN_CGI p_nGRAN_CGI,
                                                                                in template (omit) NGRAN_CellToReportItem.iE_Extensions p_iE_Extensions := omit
                                                                                ):= {
                    nGRAN_CGI     := p_nGRAN_CGI,
                    iE_Extensions := p_iE_Extensions
                } // End of template m_nGRAN_CellToReportItem

                template (value) ReportType m_reportType_eventBasedReporting(
                                                                            in template (value) EventBasedReportingIEs p_eventBasedReporting
                                                                            ) := {
                    eventBasedReporting := p_eventBasedReporting
                } // End of template m_reportType_eventBasedReporting

                template (value) ReportType m_reportType_periodicReporting(
                                                                            in template (value) PeriodicReportingIEs p_periodicReporting
                                                                            ) := {
                    periodicReporting := p_periodicReporting
                } // End of template m_reportType_periodicReporting

                template (value) ReportType m_reportType_choice_Extensions(
                                                                        in template (value) ReportType.choice_Extensions p_choice_Extensions
                                                                        ) := {
                    choice_Extensions := p_choice_Extensions
                } // End of template m_reportType_choice_Extensions

                template (value) EventBasedReportingIEs m_eventBasedReportingIEs(
                                                                                in template (value) IntersystemResourceThreshold p_intersystemResourceThresholdLow,
                                                                                in template (value) IntersystemResourceThreshold p_intersystemResourceThresholdHigh,
                                                                                in template (value)NumberOfMeasurementReportingLevels p_numberOfMeasurementReportingLevels,
                                                                                in template (omit) EventBasedReportingIEs.iE_Extensions p_iE_Extensions := omit
                                                                                ) := {
                    intersystemResourceThresholdLow    := p_intersystemResourceThresholdLow,
                    intersystemResourceThresholdHigh   := p_intersystemResourceThresholdHigh,
                    numberOfMeasurementReportingLevels := p_numberOfMeasurementReportingLevels,
                    iE_Extensions                      := p_iE_Extensions
                } // End of template m_eventBasedReportingIEs

                template (value) NumberOfMeasurementReportingLevels m_numberOfMeasurementReportingLevels(in NumberOfMeasurementReportingLevels p_value := n2) := p_value;

                template (omit) PeriodicReportingIEs m_PeriodicReportingIEs(
                                                                            in template (value) ReportingPeriodicity p_reportingPeriodicity,
                                                                            in template (omit) PeriodicReportingIEs.iE_Extensions p_iE_Extensions := omit
                                                                            ) := {
                    reportingPeriodicity := p_reportingPeriodicity,
                    iE_Extensions        := p_iE_Extensions
                } // End of template m_PeriodicReportingIEs

                template (value) ReportingPeriodicity m_reportingPeriodicity(in ReportingPeriodicity p_value := stop_) := p_value;

                template (value) IntersystemSONInformationReply m_intersystemSONInformationReply_nGRAN_CellActivation(
                                                                                                                    in template (value) IntersystemCellActivationReply p_nGRAN_CellActivation
                                                                                                                    ) := {
                    nGRAN_CellActivation := p_nGRAN_CellActivation
                } // End of template m_intersystemSONInformationReply_nGRAN_CellActivation

                template (value) IntersystemSONInformationReply m_intersystemSONInformationReply_resourceStatus(
                                                                                                                in template (value) IntersystemResourceStatusReply p_resourceStatus
                                                                                                                ) := {
                    resourceStatus := p_resourceStatus
                } // End of template m_intersystemSONInformationReply_resourceStatus

                template (value) IntersystemSONInformationReply m_intersystemSONInformationReply_choice_Extensions(
                                                                                                                in template (value) IntersystemSONInformationReply.choice_Extensions p_choice_Extensions
                                                                                                                ) := {
                    choice_Extensions := p_choice_Extensions
                } // End of template m_intersystemSONInformationReply_choice_Extensions

                template (omit) IntersystemCellActivationReply m_intersystemCellActivationReply(
                                                                                                in template (value) ActivatedCellList p_activatedCellList,
                                                                                                in template (value) IntersystemCellActivationReply.activation_ID p_activation_ID,
                                                                                                in template (omit) IntersystemCellActivationReply.iE_Extensions p_iE_Extensions := omit
                                                                                                ) := {
                    activatedCellList := p_activatedCellList,
                    activation_ID     := p_activation_ID,
                    iE_Extensions     := p_iE_Extensions
                } // End of template m_intersystemCellActivationReply

                template (omit) IntersystemResourceStatusReply m_intersystemResourceStatusReply(
                                                                                                in template (value) ReportingSystem p_reportingsystem,
                                                                                                in template (omit) IntersystemResourceStatusReply.iE_Extensions p_iE_Extensions := omit
                                                                                                ) := {
                    reportingsystem := p_reportingsystem,
                    iE_Extensions   := p_iE_Extensions
                } // End of template m_intersystemResourceStatusReply

                template (value) IntersystemSONInformationReport m_intersystemSONInformationReport_hOReportInformation(
                                                                                                                    in template (value) InterSystemHOReport p_hOReportInformation
                                                                                                                    ) := {
                    hOReportInformation := p_hOReportInformation
                } // End of template m_intersystemSONInformationReport_hOReportInformation

                template (value) IntersystemSONInformationReport m_intersystemSONInformationReport_failureIndicationInformation(
                                                                                                                                in template (value) InterSystemFailureIndication p_failureIndicationInformation
                                                                                                                                ) := {
                    failureIndicationInformation := p_failureIndicationInformation
                } // End of template m_intersystemSONInformationReport_failureIndicationInformation

                template (value) IntersystemSONInformationReport m_intersystemSONInformationReport_choice_Extensions(
                                                                                                                in template (value) IntersystemSONInformationReport.choice_Extensions p_choice_Extensions
                                                                                                                ) := {
                    choice_Extensions := p_choice_Extensions
                } // End of template m_intersystemSONInformationReport_choice_Extensions

                template (value) IntersystemSONInformationReport.choice_Extensions m_intersystemSONInformationReport_id_EnergySavingIndication(
                                                                                                                                            in template (value) IntersystemCellStateIndication p_intersystemCellStateIndication
                                                                                                                                            ) := {
                    id          := id_EnergySavingIndication,
                    criticality := ignore,
                    value_      := { IntersystemCellStateIndication := p_intersystemCellStateIndication }
                } // End of template m_intersystemSONInformationReport_id_EnergySavingIndication

                template (value) IntersystemSONInformationReport.choice_Extensions m_intersystemSONInformationReport_id_IntersystemResourceStatusUpdate(
                                                                                                                                                        in template (value) IntersystemResourceStatusReport p_intersystemResourceStatusReport
                                                                                                                                                        ) := {
                    id          := id_IntersystemResourceStatusUpdate,
                    criticality := ignore,
                    value_      := { IntersystemResourceStatusReport := p_intersystemResourceStatusReport }
                } // End of template m_intersystemSONInformationReport_id_IntersystemResourceStatusUpdate

                template (omit) NotificationCell_Item m_notificationCell_Item(
                                                                            in template (value) NGRAN_CGI p_nGRAN_CGI,
                                                                            in template (value) NotificationCell_Item.notifyFlag p_notifyFlag := activated,
                                                                            in template (omit) NotificationCell_Item.iE_Extensions p_iE_Extensions := omit
                                                                            ) := {
                    nGRAN_CGI     := p_nGRAN_CGI,
                    notifyFlag    := p_notifyFlag,
                    iE_Extensions := p_iE_Extensions
                } // End of template m_notificationCell_Item

                template (omit) IntersystemResourceStatusReport m_intersystemResourceStatusReport(
                                                                                                in template (value) ResourceStatusReportingSystem p_reportingSystem,
                                                                                                in template (omit) IntersystemResourceStatusReport.iE_Extensions p_iE_Extensions := omit
                                                                                                ) := {
                    reportingSystem := p_reportingSystem,
                    iE_Extensions   := p_iE_Extensions
                } // End of template m_intersystemResourceStatusReport

                template (value) ResourceStatusReportingSystem m_resourceStatusReportingSystemt_eUTRAN_ReportingStatus(
                                                                                                                    in template (value) EUTRAN_ReportingStatusIEs p_eUTRAN_ReportingStatus
                                                                                                                    ) := {
                    eUTRAN_ReportingStatus := p_eUTRAN_ReportingStatus
                } // End of template m_resourceStatusReportingSystem_eUTRAN_ReportingStatus

                template (value) ResourceStatusReportingSystem m_resourceStatusReportingSystemt_nGRAN_ReportingStatus(
                                                                                                                    in template (value) NGRAN_ReportingStatusIEs p_nGRAN_ReportingStatus
                                                                                                                    ) := {
                    nGRAN_ReportingStatus := p_nGRAN_ReportingStatus
                } // End of template m_resourceStatusReportingSystem_nGRAN_ReportingStatus

                template (value) ResourceStatusReportingSystem m_resourceStatusReportingSystem_choice_Extensions(
                                                                                                                in template (value) ResourceStatusReportingSystem.choice_Extensions p_choice_Extensions
                                                                                                                ) := {
                    choice_Extensions := p_choice_Extensions
                } // End of template m_resourceStatusReportingSystem_choice_Extensions

                template (omit) EUTRAN_ReportingStatusIEs m_eUTRAN_ReportingStatusIEs(
                                                                                    in template (value) EUTRAN_CellReportList p_eUTRAN_CellReportList,
                                                                                    in template (omit) EUTRAN_ReportingStatusIEs.iE_Extensions p_iE_Extensions := omit
                                                                                    ) := {
                    eUTRAN_CellReportList := p_eUTRAN_CellReportList,
                    iE_Extensions         := p_iE_Extensions
                } // End of template m_eUTRAN_ReportingStatusIEs

                template (omit) EUTRAN_CellReportItem m_eUTRAN_CellReportItem (
                                                                            in template (value) EUTRA_CGI p_eCGI,
                                                                            in template (value) EUTRAN_CompositeAvailableCapacityGroup p_eUTRAN_CompositeAvailableCapacityGroup,
                                                                            in template (omit) EUTRAN_NumberOfActiveUEs p_eUTRAN_NumberOfActiveUEs := omit,
                                                                            in template (omit) NGRAN_NoofRRCConnections p_eUTRAN_NoofRRCConnections := omit,
                                                                            in template (omit) EUTRAN_RadioResourceStatus p_eUTRAN_RadioResourceStatus := omit,
                                                                            in template (omit) EUTRAN_CellReportItem.iE_Extensions p_iE_Extensions := omit
                                                                            ):= {
                    eCGI                                   := p_eCGI,
                    eUTRAN_CompositeAvailableCapacityGroup := p_eUTRAN_CompositeAvailableCapacityGroup,
                    eUTRAN_NumberOfActiveUEs               := p_eUTRAN_NumberOfActiveUEs,
                    eUTRAN_NoofRRCConnections              := p_eUTRAN_NoofRRCConnections,
                    eUTRAN_RadioResourceStatus             := p_eUTRAN_RadioResourceStatus,
                    iE_Extensions                          := p_iE_Extensions
                } // End of template m_eUTRAN_ReportingStatusIEs

                template (omit) EUTRAN_CompositeAvailableCapacityGroup m_EUTRAN_CompositeAvailableCapacityGroup(
                                                                                                                in template (value) CompositeAvailableCapacity p_dL_CompositeAvailableCapacity,
                                                                                                                in template (value) CompositeAvailableCapacity p_uL_CompositeAvailableCapacity,
                                                                                                                in template (omit) EUTRAN_CompositeAvailableCapacityGroup.iE_Extensions p_iE_Extensions := omit
                                                                                                                ) := {
                    dL_CompositeAvailableCapacity := p_dL_CompositeAvailableCapacity,
                    uL_CompositeAvailableCapacity := p_uL_CompositeAvailableCapacity,
                    iE_Extensions                 := p_iE_Extensions
                } // End of template m_EUTRAN_CompositeAvailableCapacityGroup

                template (omit) CompositeAvailableCapacity m_compositeAvailableCapacity(
                                                                                        in template (value) CompositeAvailableCapacity.capacityValue p_capacityValue,
                                                                                        in template (omit) CompositeAvailableCapacity.cellCapacityClassValue p_cellCapacityClassValue := omit,
                                                                                        in template (omit) CompositeAvailableCapacity.iE_Extensions p_iE_Extensions := omit
                                                                                        ) := {
                    cellCapacityClassValue := p_cellCapacityClassValue,
                    capacityValue          := p_capacityValue,
                    iE_Extensions          := p_iE_Extensions
                } // End of template m_compositeAvailableCapacity

                template (omit) EUTRAN_RadioResourceStatus m_eUTRAN_RadioResourceStatus(
                                                                                        in template (value) EUTRAN_RadioResourceStatus.dL_GBR_PRB_usage p_dL_GBR_PRB_usage,
                                                                                        in template (value) EUTRAN_RadioResourceStatus.uL_GBR_PRB_usage p_uL_GBR_PRB_usage,
                                                                                        in template (value) EUTRAN_RadioResourceStatus.dL_non_GBR_PRB_usage p_dL_non_GBR_PRB_usage,
                                                                                        in template (value) EUTRAN_RadioResourceStatus.uL_non_GBR_PRB_usage p_uL_non_GBR_PRB_usage,
                                                                                        in template (value) EUTRAN_RadioResourceStatus.dL_Total_PRB_usage p_dL_Total_PRB_usage,
                                                                                        in template (value) EUTRAN_RadioResourceStatus.uL_Total_PRB_usage p_uL_Total_PRB_usage,
                                                                                        in template (omit) EUTRAN_RadioResourceStatus.dL_scheduling_PDCCH_CCE_usage p_dL_scheduling_PDCCH_CCE_usage := omit,
                                                                                        in template (omit) EUTRAN_RadioResourceStatus.uL_scheduling_PDCCH_CCE_usage p_uL_scheduling_PDCCH_CCE_usage := omit,
                                                                                        in template (omit) EUTRAN_RadioResourceStatus.iE_Extensions p_iE_Extensions := omit
                                                                                        ) := {
                    dL_GBR_PRB_usage              := p_dL_GBR_PRB_usage,
                    uL_GBR_PRB_usage              := p_uL_GBR_PRB_usage,
                    dL_non_GBR_PRB_usage          := p_dL_non_GBR_PRB_usage,
                    uL_non_GBR_PRB_usage          := p_uL_non_GBR_PRB_usage,
                    dL_Total_PRB_usage            := p_dL_Total_PRB_usage,
                    uL_Total_PRB_usage            := p_uL_Total_PRB_usage,
                    dL_scheduling_PDCCH_CCE_usage := p_dL_scheduling_PDCCH_CCE_usage,
                    uL_scheduling_PDCCH_CCE_usage := p_uL_scheduling_PDCCH_CCE_usage,
                    iE_Extensions                 := p_iE_Extensions
                } // End of template m_eUTRAN_RadioResourceStatus

                template (omit) NGRAN_ReportingStatusIEs m_nGRAN_ReportingStatusIEs(
                                                                                    in template (value) NGRAN_CellReportList p_nGRAN_CellReportList,
                                                                                    in template (omit) NGRAN_ReportingStatusIEs.iE_Extensions p_iE_Extensions := omit
                                                                                    ) := {
                    nGRAN_CellReportList := p_nGRAN_CellReportList,
                    iE_Extensions        := p_iE_Extensions
                } // End of template m_nGRAN_ReportingStatusIEs

                template (omit) NGRAN_CellReportItem m_nGRAN_CellReportItem(
                                                                            in template (value) NGRAN_CGI p_nGRAN_CGI,
                                                                            in template (value) EUTRAN_CompositeAvailableCapacityGroup p_nGRAN_CompositeAvailableCapacityGroup,
                                                                            in template (omit) NGRAN_NumberOfActiveUEs p_nGRAN_NumberOfActiveUEs := omit,
                                                                            in template (omit) NGRAN_NoofRRCConnections p_nGRAN_NoofRRCConnections := omit,
                                                                            in template (omit) NGRAN_RadioResourceStatus p_nGRAN_RadioResourceStatus := omit,
                                                                            in template (omit) NGRAN_CellReportItem.iE_Extensions p_iE_Extensions := omit
                                                                            ) := {
                    nGRAN_CGI                             := p_nGRAN_CGI,
                    nGRAN_CompositeAvailableCapacityGroup := p_nGRAN_CompositeAvailableCapacityGroup,
                    nGRAN_NumberOfActiveUEs               := p_nGRAN_NumberOfActiveUEs,
                    nGRAN_NoofRRCConnections              := p_nGRAN_NoofRRCConnections,
                    nGRAN_RadioResourceStatus             := p_nGRAN_RadioResourceStatus,
                    iE_Extensions                         := p_iE_Extensions
                } // End of template m_nGRAN_CellReportItem

                template (omit) NGRAN_RadioResourceStatus m_nGRAN_RadioResourceStatus(
                                                                                    in template (value) NGRAN_RadioResourceStatus.dL_GBR_PRB_usage_for_MIMO p_dL_GBR_PRB_usage_for_MIMO,
                                                                                    in template (value) NGRAN_RadioResourceStatus.uL_GBR_PRB_usage_for_MIMO p_uL_GBR_PRB_usage_for_MIMO,
                                                                                    in template (value) NGRAN_RadioResourceStatus.dL_non_GBR_PRB_usage_for_MIMO p_dL_non_GBR_PRB_usage_for_MIMO,
                                                                                    in template (value) NGRAN_RadioResourceStatus.uL_non_GBR_PRB_usage_for_MIMO p_uL_non_GBR_PRB_usage_for_MIMO,
                                                                                    in template (value) NGRAN_RadioResourceStatus.dL_Total_PRB_usage_for_MIMO p_dL_Total_PRB_usage_for_MIMO,
                                                                                    in template (value) NGRAN_RadioResourceStatus.uL_Total_PRB_usage_for_MIMO p_uL_Total_PRB_usage_for_MIMO,
                                                                                    in template (omit) NGRAN_RadioResourceStatus.iE_Extensions p_iE_Extensions := omit
                                                                                    ) := {
                    dL_GBR_PRB_usage_for_MIMO     := p_dL_GBR_PRB_usage_for_MIMO,
                    uL_GBR_PRB_usage_for_MIMO     := p_uL_GBR_PRB_usage_for_MIMO,
                    dL_non_GBR_PRB_usage_for_MIMO := p_dL_non_GBR_PRB_usage_for_MIMO,
                    uL_non_GBR_PRB_usage_for_MIMO := p_uL_non_GBR_PRB_usage_for_MIMO,
                    dL_Total_PRB_usage_for_MIMO   := p_dL_Total_PRB_usage_for_MIMO,
                    uL_Total_PRB_usage_for_MIMO   := p_uL_Total_PRB_usage_for_MIMO,
                    iE_Extensions                 := p_iE_Extensions
                } // End of template m_nGRAN_RadioResourceStatus

                template (omit) InterSystemHOReport m_interSystemHOReport(
                                                                        in template (value) InterSystemHandoverReportType p_handoverReportType,
                                                                        in template (omit) InterSystemHOReport.iE_Extensions p_iE_Extensions := omit
                                                                        ) := {
                    handoverReportType := p_handoverReportType,
                    iE_Extensions      := p_iE_Extensions
                } // End of template m_interSystemHOReport

                template (value) InterSystemHandoverReportType m_interSystemHandoverReportType_tooearlyIntersystemHO(
                                                                                                                    in template (value) TooearlyIntersystemHO p_tooearlyIntersystemHO
                                                                                                                    ) := {
                    tooearlyIntersystemHO := p_tooearlyIntersystemHO
                } // End of template m_interSystemHandoverReportType_tooearlyIntersystemHO

                template (value) InterSystemHandoverReportType m_interSystemHandoverReportType_intersystemUnnecessaryHO(
                                                                                                                        in template (value) IntersystemUnnecessaryHO p_intersystemUnnecessaryHO
                                                                                                                        ) := {
                    intersystemUnnecessaryHO := p_intersystemUnnecessaryHO
                } // End of template m_interSystemHandoverReportType_intersystemUnnecessaryHO

                template (value) InterSystemHandoverReportType m_interSystemHandoverReportType_choice_Extensions(
                                                                                                                in template (value) InterSystemHandoverReportType.choice_Extensions p_choice_Extensions
                                                                                                                ) := {
                    choice_Extensions := p_choice_Extensions
                } // End of template m_interSystemHandoverReportType_choice_Extensions

                template (omit) IntersystemUnnecessaryHO m_intersystemUnnecessaryHO(
                                                                                    in template (value) NGRAN_CGI p_sourcecellID,
                                                                                    in template (value) EUTRA_CGI p_targetcellID,
                                                                                    in template (value) IntersystemUnnecessaryHO.earlyIRATHO p_earlyIRATHO := true_,
                                                                                    in template (value) CandidateCellList p_candidateCellList,
                                                                                    in template (omit) IntersystemUnnecessaryHO.iE_Extensions p_iE_Extensions := omit
                                                                                    ) := {
                    sourcecellID      := p_sourcecellID,
                    targetcellID      := p_targetcellID,
                    earlyIRATHO       := p_earlyIRATHO,
                    candidateCellList := p_candidateCellList,
                    iE_Extensions     := p_iE_Extensions
                } // End of template m_intersystemUnnecessaryHO

                template (omit) LAI m_lai(
                                        in template (value) PLMNIdentity p_pLMNidentity,
                                        in template (value) LAC p_lAC,
                                        in template (omit) LAI.iE_Extensions p_iE_Extensions := omit
                                        ) := {
                    pLMNidentity  := p_pLMNidentity,
                    lAC           := p_lAC,
                    iE_Extensions := p_iE_Extensions
                } // End of template m_lai

                template (value) LastVisitedCellInformation m_interSystemHandoverReportType_nGRANCell(
                                                                                                    in template (value) LastVisitedNGRANCellInformation p_nGRANCell
                                                                                                    ) := {
                    nGRANCell := p_nGRANCell
                } // End of template m_interSystemHandoverReportType_nGRANCell

                template (value) LastVisitedCellInformation m_interSystemHandoverReportType_eUTRANCell(
                                                                                                    in template (value) LastVisitedEUTRANCellInformation p_eUTRANCell
                                                                                                    ) := {
                    eUTRANCell := p_eUTRANCell
                } // End of template m_interSystemHandoverReportType_eUTRANCell

                template (value) LastVisitedCellInformation m_interSystemHandoverReportType_uTRANCell(
                                                                                                    in template (value) LastVisitedUTRANCellInformation p_uTRANCell
                                                                                                    ) := {
                    uTRANCell := p_uTRANCell
                } // End of template m_interSystemHandoverReportType_uTRANCell

                template (value) LastVisitedCellInformation m_interSystemHandoverReportType_gERANCell(
                                                                                                    in template (value) LastVisitedGERANCellInformation p_gERANCell
                                                                                                    ) := {
                    gERANCell := p_gERANCell
                } // End of template m_interSystemHandoverReportType_gERANCell

                template (value) LastVisitedCellInformation m_lastVisitedCellInformation_choice_Extensions(
                                                                                                        in template (value) LastVisitedCellInformation.choice_Extensions p_choice_Extensions
                                                                                                        ) := {
                    choice_Extensions := p_choice_Extensions
                } // End of template m_lastVisitedCellInformation_choice_Extensions

                template (omit) LastVisitedCellItem m_lastVisitedCellItem(
                                                                        in template (value) LastVisitedCellInformation p_lastVisitedCellInformation,
                                                                        in template (omit) LastVisitedCellItem.iE_Extensions p_iE_Extensions := omit
                                                                        ) := {
                    lastVisitedCellInformation := p_lastVisitedCellInformation,
                    iE_Extensions              := p_iE_Extensions
                } // End of template m_lastVisitedCellItem

                template (omit) LastVisitedNGRANCellInformation m_lastVisitedNGRANCellInformation(
                                                                                                in template (value) NGRAN_CGI p_globalCellID,
                                                                                                in template (value) CellType p_cellType,
                                                                                                in template (value) TimeUEStayedInCell p_timeUEStayedInCell,
                                                                                                in template (omit) TimeUEStayedInCellEnhancedGranularity p_timeUEStayedInCellEnhancedGranularity := omit,
                                                                                                in template (omit) Cause p_hOCauseValue := omit,
                                                                                                in template (omit) LastVisitedNGRANCellInformation.iE_Extensions p_iE_Extensions := omit
                                                                                                ) := {
                    globalCellID                          := p_globalCellID,
                    cellType                              := p_cellType,
                    timeUEStayedInCell                    := p_timeUEStayedInCell,
                    timeUEStayedInCellEnhancedGranularity := p_timeUEStayedInCellEnhancedGranularity,
                    hOCauseValue                          := p_hOCauseValue,
                    iE_Extensions                         := p_iE_Extensions
                } // End of template m_lastVisitedNGRANCellInformation

                template (value) LastVisitedNGRANCellInformation.iE_Extensions m_lastVisitedNGRANCellInformation_id_LastVisitedPSCellList(
                                                                                                                                        in template (value) LastVisitedPSCellList p_lastVisitedPSCellList
                                                                                                                                        ) := {
                    { 
                        id             := id_LastVisitedPSCellList,
                        criticality    := ignore,
                        extensionValue := { LastVisitedPSCellList := p_lastVisitedPSCellList }    
                    }
                } // End of template m_lastVisitedNGRANCellInformation_id_LastVisitedPSCellList

                template (omit) LastVisitedPSCellInformation m_LastVisitedPSCellInformation(
                                                                                            in template (value) NGRAN_CGI p_pSCellID,
                                                                                            in template (value) LastVisitedPSCellInformation.timeStay p_timeStay,
                                                                                            in template (omit) LastVisitedPSCellInformation.iE_Extensions p_iE_Extensions := omit
                                                                                            ) := {
                    pSCellID      := p_pSCellID,
                    timeStay      := p_timeStay,
                    iE_Extensions := p_iE_Extensions
                } // End of template m_LastVisitedPSCellInformation

                template (value) LineType m_lineType(in LineType p_value := pon) := p_value;

                template (value) LocationReportingAdditionalInfo m_locationReportingAdditionalInfo(in LocationReportingAdditionalInfo p_value := includePSCell) := p_value;

                template (omit) LocationReportingRequestType m_locationReportingRequestType(
                                                                                            in template (value) EventType p_eventType,
                                                                                            in template (value) ReportArea p_reportArea,
                                                                                            in template (omit) AreaOfInterestList p_areaOfInterestList := omit,
                                                                                            in template (omit) LocationReportingReferenceID p_locationReportingReferenceIDToBeCancelled := omit,
                                                                                            in template (omit) LocationReportingRequestType.iE_Extensions p_iE_Extensions := omit
                                                                                            ) := {
                    eventType                                 := p_eventType,
                    reportArea                                := p_reportArea,
                    areaOfInterestList                        := p_areaOfInterestList,
                    locationReportingReferenceIDToBeCancelled := p_locationReportingReferenceIDToBeCancelled,
                    // The above IE shall be present if the event type is set to “stop reporting UE presence in the area of interest”
                    iE_Extensions                             := p_iE_Extensions
                } // End of template m_locationReportingRequestType

                template (value) LocationReportingRequestType.iE_Extensions m_locationReportingRequestType_id_LocationReportingAdditionalInfo(
                                                                                                                                            in template (value) LocationReportingAdditionalInfo p_locationReportingAdditionalInfo
                                                                                                                                            ) := {
                    { 
                        id             := id_LocationReportingAdditionalInfo,
                        criticality    := ignore,
                        extensionValue := { LocationReportingAdditionalInfo := p_locationReportingAdditionalInfo }    
                    }
                } // End of template m_locationReportingRequestType_id_LocationReportingAdditionalInfo

                template (omit) LoggedMDTNr m_loggedMDTNr(
                                                        in template (value) LoggingInterval p_loggingInterval,
                                                        in template (value) LoggingDuration p_loggingDuration,
                                                        in template (value) LoggedMDTTrigger p_loggedMDTTrigger,
                                                        in template (omit) BluetoothMeasurementConfiguration p_bluetoothMeasurementConfiguration := omit,
                                                        in template (omit) WLANMeasurementConfiguration p_wLANMeasurementConfiguration := omit,
                                                        in template (omit) SensorMeasurementConfiguration p_sensorMeasurementConfiguration := omit,
                                                        in template (omit) AreaScopeOfNeighCellsList p_areaScopeOfNeighCellsList := omit,
                                                        in template (omit) LoggedMDTNr.iE_Extensions p_iE_Extensions := omit
                                                        ) := {
                    loggingInterval                   := p_loggingInterval,
                    loggingDuration                   := p_loggingDuration,
                    loggedMDTTrigger                  := p_loggedMDTTrigger,
                    bluetoothMeasurementConfiguration := p_bluetoothMeasurementConfiguration,
                    wLANMeasurementConfiguration      := p_wLANMeasurementConfiguration,
                    sensorMeasurementConfiguration    := p_sensorMeasurementConfiguration,
                    areaScopeOfNeighCellsList         := p_areaScopeOfNeighCellsList,
                    iE_Extensions                     := p_iE_Extensions
                } // End of template m_loggedMDTNr

                template (value) LoggingInterval m_loggingInterval(in LoggingInterval p_value := ms320) := p_value;

                template (value) LoggingDuration m_loggingDuration(in LoggingDuration p_value := m10) := p_value;

                template (value) Links_to_log m_Links_to_log(in Links_to_log p_value := uplink) := p_value;

                template (value) LoggedMDTTrigger m_loggedMDTTrigger_gERANCell(
                                                                            in template (value) EventTrigger p_eventTrigger
                                                                            ) := {
                    eventTrigger := p_eventTrigger
                } // End of template m_loggedMDTTrigger_gERANCell

                template (value) LoggedMDTTrigger m_loggedMDTTrigger_choice_Extensions(
                                                                                    in template (value) LoggedMDTTrigger.choice_Extensions p_choice_Extensions
                                                                                    ) := {
                    choice_Extensions := p_choice_Extensions
                } // End of template m_loggedMDTTrigger_choice_Extensions

                template (value) LTEM_Indication m_lTEM_Indication(in LTEM_Indication p_value := lte_m) := p_value;

                template (omit) LTEV2XServicesAuthorized m_lTEV2XServicesAuthorized(
                                                                                    in template (omit) VehicleUE p_vehicleUE := omit,
                                                                                    in template (omit) PedestrianUE p_pedestrianUE:= omit,
                                                                                    in template (omit) LTEV2XServicesAuthorized.iE_Extensions p_iE_Extensions := omit
                                                                                    ) := {
                    vehicleUE     := p_vehicleUE,
                    pedestrianUE  := p_pedestrianUE,
                    iE_Extensions := p_iE_Extensions
                } // End of template m_lTEV2XServicesAuthorized

                template (omit) LTEUESidelinkAggregateMaximumBitrate m_lTEUESidelinkAggregateMaximumBitrate(
                                                                                                            in template (value) BitRate p_uESidelinkAggregateMaximumBitRate,
                                                                                                            in template (omit) LTEUESidelinkAggregateMaximumBitrate.iE_Extensions p_iE_Extensions := omit
                                                                                                            ) := {
                    uESidelinkAggregateMaximumBitRate := p_uESidelinkAggregateMaximumBitRate,
                    iE_Extensions                     := p_iE_Extensions
                } // End of template m_lTEUESidelinkAggregateMaximumBitrate

                template (value) MaximumIntegrityProtectedDataRate m_maximumIntegrityProtectedDataRate(in MaximumIntegrityProtectedDataRate p_value := bitrate64kbs) := p_value;

                template (omit) MBS_DataForwardingResponseMRBItem m_mBS_DataForwardingResponseMRBItem(
                                                                                                    in template (value) MRB_ID p_mRB_ID,
                                                                                                    in template (value) UPTransportLayerInformation p_dL_Forwarding_UPTNLInformation,
                                                                                                    in template (omit) MRB_ProgressInformation p_mRB_ProgressInformation := omit,
                                                                                                    in template (omit) MBS_DataForwardingResponseMRBItem.iE_Extensions p_iE_Extensions := omit
                                                                                                    ) := {
                    mRB_ID                         := p_mRB_ID,
                    dL_Forwarding_UPTNLInformation := p_dL_Forwarding_UPTNLInformation,
                    mRB_ProgressInformation        := p_mRB_ProgressInformation,
                    iE_Extensions                  := p_iE_Extensions
                } // End of template m_mBS_DataForwardingResponseMRBItem

                template (omit) MBS_MappingandDataForwardingRequestItem m_mBS_MappingandDataForwardingRequestItem(
                                                                                                                in template (value) MRB_ID p_mRB_ID,
                                                                                                                in template (value) MBS_QoSFlowList p_mBS_QoSFlowList,
                                                                                                                in template (omit) MRB_ProgressInformation p_mRB_ProgressInformation := omit,
                                                                                                                in template (omit) MBS_MappingandDataForwardingRequestItem.iE_Extensions p_iE_Extensions := omit
                                                                                                                ) := {
                    mRB_ID                  := p_mRB_ID,
                    mBS_QoSFlowList         := p_mBS_QoSFlowList,
                    mRB_ProgressInformation := p_mRB_ProgressInformation,
                    iE_Extensions           := p_iE_Extensions
                } // End of template m_mBS_MappingandDataForwardingRequestItem

                template (value) MRB_ProgressInformation m_mRB_ProgressInformation_pDCP_SN_Length12(
                                                                                                    in template (value) MRB_ProgressInformation.pDCP_SN_Length12 p_pDCP_SN_Length12
                                                                                                    ) := {
                    pDCP_SN_Length12 := p_pDCP_SN_Length12
                } // End of template m_mRB_ProgressInformation_pDCP_SN_Length12

                template (value) MRB_ProgressInformation m_mRB_ProgressInformation_pDCP_SN_Length18(
                                                                                                    in template (value) MRB_ProgressInformation.pDCP_SN_Length18 p_pDCP_SN_Length18
                                                                                                    ) := {
                    pDCP_SN_Length18 := p_pDCP_SN_Length18
                } // End of template m_mRB_ProgressInformation_pDCP_SN_Length18

                template (value) MRB_ProgressInformation m_mRB_ProgressInformation_choice_Extensions(
                                                                                                    in template (value) MRB_ProgressInformation.choice_Extensions p_choice_Extensions
                                                                                                    ) := {
                    choice_Extensions := p_choice_Extensions
                } // End of template m_mRB_ProgressInformation_choice_Extensions

                template (omit) MBS_QoSFlowsToBeSetupItem m_mBS_QoSFlowsToBeSetupItem(
                                                                                    in template (value)QosFlowIdentifier p_mBSqosFlowIdentifier,
                                                                                    in template (value)QosFlowLevelQosParameters p_mBSqosFlowLevelQosParameters,
                                                                                    in template (omit) MBS_QoSFlowsToBeSetupItem.iE_Extensions p_iE_Extensions := omit
                                                                                    ) := {
                    mBSqosFlowIdentifier         := p_mBSqosFlowIdentifier,
                    mBSqosFlowLevelQosParameters := p_mBSqosFlowLevelQosParameters,
                    iE_Extensions                := p_iE_Extensions
                } // End of template m_mBS_QoSFlowsToBeSetupItem

                template (value) MBS_ServiceArea m_mBS_ServiceArea_locationindependent(
                                                                                    in template (value) MBS_ServiceAreaInformation p_locationindependent
                                                                                    ) := {
                    locationindependent := p_locationindependent
                } // End of template m_mBS_ServiceArea_locationindependent

                template (value) MBS_ServiceArea m_mBS_ServiceArea_locationdependent(
                                                                                    in template (value) MBS_ServiceAreaInformationList p_locationdependent
                                                                                    ) := {
                    locationdependent := p_locationdependent
                } // End of template m_mBS_ServiceArea_locationdependent

                template (value) MBS_ServiceArea m_mBS_ServiceArea_choice_Extensions(
                                                                                    in template (value) MBS_ServiceArea.choice_Extensions p_choice_Extensions
                                                                                    ) := {
                    choice_Extensions := p_choice_Extensions
                } // End of template m_mBS_ServiceArea_choice_Extensions

                template (omit) MBS_ServiceAreaInformationItem m_mBS_ServiceAreaInformationItem(
                                                                                                in template (value) MBS_AreaSessionID p_mBS_AreaSessionID,
                                                                                                in template (value) MBS_ServiceAreaInformation p_mBS_ServiceAreaInformation,
                                                                                                in template (omit) MBS_ServiceAreaInformationItem.iE_Extensions p_iE_Extensions := omit
                                                                                                ) := {
                    mBS_AreaSessionID          := p_mBS_AreaSessionID,
                    mBS_ServiceAreaInformation := p_mBS_ServiceAreaInformation,
                    iE_Extensions              := p_iE_Extensions
                } // End of template m_mBS_ServiceAreaInformationItem

                template (omit) MBS_ServiceAreaInformation m_mBS_ServiceAreaInformation(
                                                                                        in template (omit) MBS_ServiceAreaCellList p_mBS_ServiceAreaCellList := omit,
                                                                                        in template (omit) MBS_ServiceAreaTAIList p_mBS_ServiceAreaTAIList := omit,
                                                                                        in template (omit) MBS_ServiceAreaInformation.iE_Extensions p_iE_Extensions := omit
                                                                                        ) := {
                    mBS_ServiceAreaCellList := p_mBS_ServiceAreaCellList,
                    mBS_ServiceAreaTAIList  := p_mBS_ServiceAreaTAIList,
                    iE_Extensions           := p_iE_Extensions
                } // End of template m_mBS_ServiceAreaInformation

                template (omit) MBS_SessionID m_mBS_SessionID(
                                                            in template (value) TMGI p_tMGI,
                                                            in template (omit) NID p_nID := omit,
                                                            in template (omit) MBS_SessionID.iE_Extensions p_iE_Extensions := omit
                                                            ) := {
                    tMGI          := p_tMGI,
                    nID           := p_nID,
                    iE_Extensions := p_iE_Extensions
                } // End of template m_mBS_SessionID

                template (omit) MBSSessionFailedtoSetupItem m_mBSSessionFailedtoSetupItem(
                                                                                        in template (value) MBS_SessionID p_mBS_SessionID,
                                                                                        in template (value) Cause p_cause,
                                                                                        in template (omit) MBS_AreaSessionID p_mBS_AreaSessionID := omit,
                                                                                        in template (omit) MBSSessionFailedtoSetupItem.iE_Extensions p_iE_Extensions := omit
                                                                                        ) := {
                    mBS_SessionID     := p_mBS_SessionID,
                    mBS_AreaSessionID := p_mBS_AreaSessionID,
                    cause             := p_cause,
                    iE_Extensions     := p_iE_Extensions
                } // End of template m_mBSSessionFailedtoSetupItem

                template (omit) MBS_ActiveSessionInformation_SourcetoTargetItem m_mBS_ActiveSessionInformation_SourcetoTargetItem(
                                                                                                                                in template (value) MBS_SessionID p_mBS_SessionID,
                                                                                                                                in template (value) MBS_QoSFlowsToBeSetupList p_mBS_QoSFlowsToBeSetupList,
                                                                                                                                in template (omit) MBS_AreaSessionID p_mBS_AreaSessionID := omit,
                                                                                                                                in template (omit) MBS_ServiceArea p_mBS_ServiceArea := omit,
                                                                                                                                in template (omit) MBS_MappingandDataForwardingRequestList p_mBS_MappingandDataForwardingRequestList := omit,
                                                                                                                                in template (omit) MBS_ActiveSessionInformation_SourcetoTargetItem.iE_Extensions p_iE_Extensions := omit
                                                                                                                                ):= {
                    mBS_SessionID                           := p_mBS_SessionID,
                    mBS_AreaSessionID                       := p_mBS_AreaSessionID,
                    mBS_ServiceArea                         := p_mBS_ServiceArea,
                    mBS_QoSFlowsToBeSetupList               := p_mBS_QoSFlowsToBeSetupList,
                    mBS_MappingandDataForwardingRequestList := p_mBS_MappingandDataForwardingRequestList,
                    iE_Extensions                           := p_iE_Extensions
                } // End of template m_mBS_ActiveSessionInformation_SourcetoTargetItem

                template (omit) MBS_ActiveSessionInformation_TargettoSourceItem m_mBS_ActiveSessionInformation_TargettoSourceItem(
                                                                                                                                in template (value) MBS_SessionID p_mBS_SessionID,
                                                                                                                                in template (omit) MBS_DataForwardingResponseMRBList p_mBS_DataForwardingResponseMRBList := omit,
                                                                                                                                in template (omit) MBS_ActiveSessionInformation_TargettoSourceItem.iE_Extensions p_iE_Extensions := omit
                                                                                                                                ) := {
                    mBS_SessionID                     := p_mBS_SessionID,
                    mBS_DataForwardingResponseMRBList := p_mBS_DataForwardingResponseMRBList,
                    iE_Extensions                     := p_iE_Extensions
                } // End of template m_mBS_ActiveSessionInformation_TargettoSourceItem

                template (omit) MBSSessionSetupOrModFailureTransfer m_mBSSessionSetupOrModFailureTransfer(
                                                                                                        in template (value) Cause p_cause,
                                                                                                        in template (omit) CriticalityDiagnostics p_criticalityDiagnostics := omit,
                                                                                                        in template (omit) MBSSessionSetupOrModFailureTransfer.iE_Extensions p_iE_Extensions := omit
                                                                                                        ) := {
                    cause                  := p_cause,
                    criticalityDiagnostics := p_criticalityDiagnostics,
                    iE_Extensions          := p_iE_Extensions
                } // End of template m_mBSSessionSetupOrModFailureTransfer

                template (omit) MBSSessionSetupResponseItem m_mBSSessionSetupResponseItem(
                                                                                        in template (value) MBS_SessionID p_mBS_SessionID,
                                                                                        in template (omit) MBS_AreaSessionID p_mBS_AreaSessionID := omit,
                                                                                        in template (omit) MBSSessionSetupResponseItem.iE_Extensions p_iE_Extensions := omit
                                                                                        ) := {
                    mBS_SessionID     := p_mBS_SessionID,
                    mBS_AreaSessionID := p_mBS_AreaSessionID,
                    iE_Extensions     := p_iE_Extensions
                } // End of template m_mBSSessionSetupResponseItem

                template (value) MBSSessionSetupOrModRequestTransfer m_mBSSessionSetupOrModRequestTransfer(
                                                                                                        in template (value) MBSSessionSetupOrModRequestTransfer.protocolIEs p_protocolIEs
                                                                                                        ) := {
                    protocolIEs := p_protocolIEs
                } // End of template m_mBSSessionSetupOrModRequestTransfer

                template (value) MBSSessionSetupOrModRequestTransfer.protocolIEs m_mBSSessionSetupOrModRequestTransfer_id_MBS_SessionTNLInfo5GC(
                                                                                                                                                in template (value) MBS_SessionTNLInfo5GC p_mBS_SessionTNLInfo5GC
                                                                                                                                                ) := {
                    { 
                        id          := id_MBS_SessionTNLInfo5GC,
                        criticality := reject,
                        value_      := { MBS_SessionTNLInfo5GC := p_mBS_SessionTNLInfo5GC }    
                    }
                } // End of template m_mBSSessionSetupOrModRequestTransfer_id_MBS_SessionTNLInfo5GC

                template (value) MBSSessionSetupOrModRequestTransfer.protocolIEs m_mBSSessionSetupOrModRequestTransfer_id_MBS_QoSFlowsToBeSetupModList(
                                                                                                                                                    in template (value) MBS_QoSFlowsToBeSetupList p_mBS_QoSFlowsToBeSetupList
                                                                                                                                                    ) := {
                    { 
                        id          := id_MBS_QoSFlowsToBeSetupModList,
                        criticality := reject,
                        value_      := { MBS_QoSFlowsToBeSetupList := p_mBS_QoSFlowsToBeSetupList }    
                    }
                } // End of template m_mBSSessionSetupOrModRequestTransfer_id_MBS_QoSFlowsToBeSetupModList

                template (value) MBSSessionSetupOrModRequestTransfer.protocolIEs m_mBSSessionSetupOrModRequestTransfer_id_MBS_SessionFSAIDList(
                                                                                                                                            in template (value) MBS_SessionFSAIDList p_mBS_SessionFSAIDList
                                                                                                                                            ) := {
                    { 
                        id          := id_MBS_SessionFSAIDList,
                        criticality := ignore,
                        value_      := { MBS_SessionFSAIDList := p_mBS_SessionFSAIDList }    
                    }
                } // End of template m_mBSSessionSetupOrModRequestTransfer_id_MBS_SessionFSAIDList

                template (omit) MBSSessionReleaseResponseTransfer m_mBSSessionReleaseResponseTransfer(
                                                                                                    in template (omit) MBS_SessionTNLInfoNGRAN p_mBS_SessionTNLInfoNGRAN := omit,
                                                                                                    in template (omit) MBSSessionReleaseResponseTransfer.iE_Extensions p_iE_Extensions := omit
                                                                                                    ) := {
                    mBS_SessionTNLInfoNGRAN := p_mBS_SessionTNLInfoNGRAN,
                    iE_Extensions           := p_iE_Extensions
                } // End of template m_mBSSessionReleaseResponseTransfer

                template (omit) MBSSessionSetupOrModResponseTransfer m_mBSSessionSetupOrModResponseTransfer(
                                                                                                            in template (omit) MBS_SessionTNLInfoNGRAN p_mBS_SessionTNLInfoNGRAN := omit,
                                                                                                            in template (omit) MBSSessionSetupOrModResponseTransfer.iE_Extensions p_iE_Extensions := omit
                                                                                                            ) := {
                    mBS_SessionTNLInfoNGRAN := p_mBS_SessionTNLInfoNGRAN,
                    iE_Extensions           := p_iE_Extensions
                } // End of template m_mBSSessionSetupOrModResponseTransfer

                template (value) MBS_SupportIndicator m_mBS_SupportIndicator(in MBS_SupportIndicator p_value := true_) := p_value;

                template (value) MBS_SessionTNLInfo5GC m_mBS_SessionTNLInfo5GC_locationindependent(
                                                                                                in template (value) SharedNGU_MulticastTNLInformation p_locationindependent
                                                                                                ) := {
                    locationindependent := p_locationindependent
                } // End of template m_mBS_SessionTNLInfo5GC_locationindependent

                template (value) MBS_SessionTNLInfo5GC m_mBS_SessionTNLInfo5GC_locationdependent(
                                                                                                in template (value) MBS_SessionTNLInfo5GCList p_locationdependent
                                                                                                ) := {
                    locationdependent := p_locationdependent
                } // End of template m_mBS_SessionTNLInfo5GC_locationdependent

                template (value) MBS_SessionTNLInfo5GC m_mBS_SessionTNLInfo5GC_choice_Extensions(
                                                                                                in template (value) MBS_SessionTNLInfo5GC.choice_Extensions p_choice_Extensions
                                                                                                ) := {
                    choice_Extensions := p_choice_Extensions
                } // End of template m_mBS_SessionTNLInfo5GC_choice_Extensions

                template (omit) MBS_SessionTNLInfo5GCItem m_mBS_SessionTNLInfo5GCItem(
                                                                                    in template (value) MBS_AreaSessionID p_mBS_AreaSessionID,
                                                                                    in template (value) SharedNGU_MulticastTNLInformation p_sharedNGU_MulticastTNLInformation,
                                                                                    in template (omit) MBS_SessionTNLInfo5GCItem.iE_Extensions p_iE_Extensions := omit
                                                                                    ) := {
                    mBS_AreaSessionID                 := p_mBS_AreaSessionID,
                    sharedNGU_MulticastTNLInformation := p_sharedNGU_MulticastTNLInformation,
                    iE_Extensions                     := p_iE_Extensions
                } // End of template m_mBS_SessionTNLInfo5GCItem

                template (value) MBS_SessionTNLInfoNGRAN m_mBS_SessionTNLInfoNGRAN_locationindependent(
                                                                                                    in template (value) UPTransportLayerInformation p_locationindependent
                                                                                                    ) := {
                    locationindependent := p_locationindependent
                } // End of template m_mBS_SessionTNLInfoNGRAN_locationindependent

                template (value) MBS_SessionTNLInfoNGRAN m_mBS_SessionTNLInfoNGRAN_locationdependent(
                                                                                                    in template (value) MBS_SessionTNLInfoNGRANList p_locationdependent
                                                                                                    ) := {
                    locationdependent := p_locationdependent
                } // End of template m_mBS_SessionTNLInfoNGRAN_locationdependent

                template (value) MBS_SessionTNLInfoNGRAN m_mBS_SessionTNLInfoNGRAN_choice_Extensions(
                                                                                                    in template (value) MBS_SessionTNLInfoNGRAN.choice_Extensions p_choice_Extensions
                                                                                                    ) := {
                    choice_Extensions := p_choice_Extensions
                } // End of template m_mBS_SessionTNLInfoNGRAN_choice_Extensions

                template (omit) MBS_SessionTNLInfoNGRANItem m_mBS_SessionTNLInfoNGRANItem(
                                                                                        in template (value) MBS_AreaSessionID p_mBS_AreaSessionID,
                                                                                        in template (omit) UPTransportLayerInformation p_sharedNGU_UnicastTNLInformation := omit,
                                                                                        in template (omit) MBS_SessionTNLInfoNGRANItem.iE_Extensions p_iE_Extensions := omit
                                                                                        ) := {
                    mBS_AreaSessionID               := p_mBS_AreaSessionID,
                    sharedNGU_UnicastTNLInformation := p_sharedNGU_UnicastTNLInformation,
                    iE_Extensions                   := p_iE_Extensions
                } // End of template m_mBS_SessionTNLInfoNGRANItem

                template (omit) MBS_DistributionReleaseRequestTransfer m_mBS_DistributionReleaseRequestTransfer(
                                                                                                                in template (value) MBS_SessionID p_mBS_SessionID,
                                                                                                                in template (value) Cause p_cause,
                                                                                                                in template (omit) MBS_AreaSessionID p_mBS_AreaSessionID := omit,
                                                                                                                in template (omit) UPTransportLayerInformation p_sharedNGU_UnicastTNLInformation := omit,
                                                                                                                in template (omit) MBS_DistributionReleaseRequestTransfer.iE_Extensions p_iE_Extensions := omit
                                                                                                                ) := {
                    mBS_SessionID                   := p_mBS_SessionID,
                    mBS_AreaSessionID               := p_mBS_AreaSessionID,
                    sharedNGU_UnicastTNLInformation := p_sharedNGU_UnicastTNLInformation,
                    cause                           := p_cause,
                    iE_Extensions                   := p_iE_Extensions
                } // End of template m_mBS_DistributionReleaseRequestTransfer

                template (omit) MBS_DistributionSetupRequestTransfer m_mBS_DistributionSetupRequestTransfer(
                                                                                                            in template (value) MBS_SessionID p_mBS_SessionID,
                                                                                                            in template (omit) MBS_AreaSessionID p_mBS_AreaSessionID := omit,
                                                                                                            in template (omit) UPTransportLayerInformation p_sharedNGU_UnicastTNLInformation := omit,
                                                                                                            in template (omit) MBS_DistributionSetupRequestTransfer.iE_Extensions p_iE_Extensions := omit
                                                                                                            ) := {
                    mBS_SessionID                   := p_mBS_SessionID,
                    mBS_AreaSessionID               := p_mBS_AreaSessionID,
                    sharedNGU_UnicastTNLInformation := p_sharedNGU_UnicastTNLInformation,
                    iE_Extensions                   := p_iE_Extensions
                } // End of template m_mBS_DistributionSetupRequestTransfer

                template (omit) MBS_DistributionSetupResponseTransfer m_mBS_DistributionSetupResponseTransfer(
                                                                                                            in template (value) MBS_SessionID p_mBS_SessionID,
                                                                                                            in template (value) MBS_QoSFlowsToBeSetupList p_mBS_QoSFlowsToBeSetupList,
                                                                                                            in template (value) MBSSessionStatus p_mBSSessionStatus,
                                                                                                            in template (omit) MBS_AreaSessionID p_mBS_AreaSessionID := omit,
                                                                                                            in template (omit) MBS_SessionTNLInfo5GCItem p_sharedNGU_MulticastTNLInformation := omit,
                                                                                                            in template (omit) MBS_ServiceArea p_mBS_ServiceArea := omit,
                                                                                                            in template (omit) MBS_DistributionSetupResponseTransfer.iE_Extensions p_iE_Extensions := omit
                                                                                                            ) := {
                    mBS_SessionID                     := p_mBS_SessionID,
                    mBS_AreaSessionID                 := p_mBS_AreaSessionID,
                    sharedNGU_MulticastTNLInformation := p_sharedNGU_MulticastTNLInformation,
                    mBS_QoSFlowsToBeSetupList         := p_mBS_QoSFlowsToBeSetupList,
                    mBSSessionStatus                  := p_mBSSessionStatus,
                    mBS_ServiceArea                   := p_mBS_ServiceArea,
                    iE_Extensions                     := p_iE_Extensions
                } // End of template m_mBS_DistributionSetupResponseTransfer

                template (omit) MBS_DistributionSetupUnsuccessfulTransfer m_mBS_DistributionSetupUnsuccessfulTransfer(
                                                                                                                    in template (value) MBS_SessionID p_mBS_SessionID,
                                                                                                                    in template (value) Cause p_cause,
                                                                                                                    in template (omit) MBS_AreaSessionID p_mBS_AreaSessionID := omit,
                                                                                                                    in template (omit) CriticalityDiagnostics p_criticalityDiagnostics := omit,
                                                                                                                    in template (omit) MBS_DistributionSetupUnsuccessfulTransfer.iE_Extensions p_iE_Extensions := omit
                                                                                                                    ) := {
                    mBS_SessionID          := p_mBS_SessionID,
                    mBS_AreaSessionID      := p_mBS_AreaSessionID,
                    cause                  := p_cause,
                    criticalityDiagnostics := p_criticalityDiagnostics,
                    iE_Extensions          := p_iE_Extensions
                } // End of template m_mBS_DistributionSetupUnsuccessfulTransfer

                template (omit) MBSSessionSetupRequestItem m_mBSSessionSetupRequestItem(
                                                                                    in template (value) MBS_SessionID p_mBS_SessionID,
                                                                                    in template (omit) MBS_AreaSessionID p_mBS_AreaSessionID := omit,
                                                                                    in template (omit) AssociatedMBSQosFlowSetupRequestList p_associatedMBSQosFlowSetupRequestList := omit,
                                                                                    in template (omit) MBSSessionSetupRequestItem.iE_Extensions p_iE_Extensions := omit
                                                                                    ):= {
                    mBS_SessionID                        := p_mBS_SessionID,
                    mBS_AreaSessionID                    := p_mBS_AreaSessionID,
                    associatedMBSQosFlowSetupRequestList := p_associatedMBSQosFlowSetupRequestList,
                    iE_Extensions                        := p_iE_Extensions
                } // End of template m_mBSSessionSetupRequestItem

                template (omit) MBSSessionSetuporModifyRequestItem m_mBSSessionSetuporModifyRequestItem(
                                                                                                        in template (value) MBS_SessionID p_mBS_SessionID,
                                                                                                        in template (omit) MBS_AreaSessionID p_mBS_AreaSessionID := omit,
                                                                                                        in template (omit) AssociatedMBSQosFlowSetuporModifyRequestList p_associatedMBSQosFlowSetuporModifyRequestList := omit,
                                                                                                        in template (omit) QosFlowListWithCause p_mBS_QosFlowToReleaseList := omit,
                                                                                                        in template (omit) MBSSessionSetuporModifyRequestItem.iE_Extensions p_iE_Extensions := omit
                                                                                                        ) := {
                    mBS_SessionID                                := p_mBS_SessionID,
                    mBS_AreaSessionID                            := p_mBS_AreaSessionID,
                    associatedMBSQosFlowSetuporModifyRequestList := p_associatedMBSQosFlowSetuporModifyRequestList,
                    mBS_QosFlowToReleaseList                     := p_mBS_QosFlowToReleaseList,
                    iE_Extensions                                := p_iE_Extensions
                } // End of template m_mBSSessionSetuporModifyRequestItem

                template (omit) MBSSessionToReleaseItem m_mBSSessionToReleaseItem(
                                                                                in template (value) MBS_SessionID p_mBS_SessionID,
                                                                                in template (value) Cause p_cause,
                                                                                in template (omit) MBSSessionToReleaseItem.iE_Extensions p_iE_Extensions := omit
                                                                                ):= {
                    mBS_SessionID := p_mBS_SessionID,
                    cause         := p_cause,
                    iE_Extensions := p_iE_Extensions
                } // End of template m_mBSSessionToReleaseItem

                template (value) MBSSessionStatus m_mBSSessionStatus(in MBSSessionStatus p_value := activated) := p_value;

                template (value) MicoAllPLMN m_micoAllPLMN(in MicoAllPLMN p_value := true_) := p_value;

                template (value) MICOModeIndication m_mICOModeIndication(in MICOModeIndication p_value := true_) := p_value;

                template (omit) MobilityRestrictionList m_mobilityRestrictionList(
                                                                                in template (value) PLMNIdentity p_servingPLMN,
                                                                                in template (omit) EquivalentPLMNs p_equivalentPLMNs := omit,
                                                                                in template (omit) RATRestrictions p_rATRestrictions := omit,
                                                                                in template (omit) ForbiddenAreaInformation p_forbiddenAreaInformation := omit,
                                                                                in template (omit) ServiceAreaInformation p_serviceAreaInformation := omit,
                                                                                in template (omit) MobilityRestrictionList.iE_Extensions p_iE_Extensions := omit
                                                                                ) := {
                    servingPLMN              := p_servingPLMN,
                    equivalentPLMNs          := p_equivalentPLMNs,
                    rATRestrictions          := p_rATRestrictions,
                    forbiddenAreaInformation := p_forbiddenAreaInformation,
                    serviceAreaInformation   := p_serviceAreaInformation,
                    iE_Extensions            := p_iE_Extensions
                } // End of template m_mobilityRestrictionList

                template (value) MobilityRestrictionList.iE_Extensions m_mobilityRestrictionList_id_LastEUTRAN_PLMNIdentity(
                                                                                                                            in template (value) PLMNIdentity p_pLMNIdentity
                                                                                                                            ) := {
                    { 
                        id             := id_LastEUTRAN_PLMNIdentity,
                        criticality    := ignore,
                        extensionValue := { PLMNIdentity := p_pLMNIdentity }    
                    }
                } // End of template m_mobilityRestrictionList_id_LastEUTRAN_PLMNIdentity

                template (value) MobilityRestrictionList.iE_Extensions m_mobilityRestrictionList_id_CNTypeRestrictionsForServing(
                                                                                                                                in template (value) CNTypeRestrictionsForServing p_cNTypeRestrictionsForServing
                                                                                                                                ) := {
                    { 
                        id             := id_CNTypeRestrictionsForServing,
                        criticality    := ignore,
                        extensionValue := { CNTypeRestrictionsForServing := p_cNTypeRestrictionsForServing }    
                    }
                } // End of template m_mobilityRestrictionList_id_CNTypeRestrictionsForServing

                template (value) MobilityRestrictionList.iE_Extensions m_mobilityRestrictionList_id_CNTypeRestrictionsForEquivalent(
                                                                                                                                    in template (value) CNTypeRestrictionsForEquivalent p_cNTypeRestrictionsForEquivalent
                                                                                                                                    ) := {
                    { 
                        id             := id_CNTypeRestrictionsForEquivalent,
                        criticality    := ignore,
                        extensionValue := { CNTypeRestrictionsForEquivalent := p_cNTypeRestrictionsForEquivalent }    
                    }
                } // End of template m_mobilityRestrictionList_id_CNTypeRestrictionsForEquivalent

                template (value) MobilityRestrictionList.iE_Extensions m_mobilityRestrictionList_id_NPN_MobilityInformation(
                                                                                                                            in template (value) NPN_MobilityInformation p_nPN_MobilityInformation
                                                                                                                            ) := {
                    { 
                        id             := id_NPN_MobilityInformation,
                        criticality    := reject,
                        extensionValue := { NPN_MobilityInformation := p_nPN_MobilityInformation }    
                    }
                } // End of template m_mobilityRestrictionList_id_NPN_MobilityInformation

                template (value) MDT_AlignmentInfo m_mDT_AlignmentInfo_s_basedMDT(
                                                                                in template (value) NGRANTraceID p_s_basedMDT
                                                                                ) := {
                    s_basedMDT := p_s_basedMDT
                } // End of template m_mDT_AlignmentInfo_s_basedMDT

                template (value) MDT_AlignmentInfo m_mDT_AlignmentInfo_choice_Extensions(
                                                                                        in template (value) MDT_AlignmentInfo.choice_Extensions p_choice_Extensions
                                                                                        ) := {
                    choice_Extensions := p_choice_Extensions
                } // End of template m_mDT_AlignmentInfo_choice_Extensions

                template (omit) MDT_Configuration m_mDT_Configuration(
                                                                    in template (omit) MDT_Configuration_NR p_mdt_Config_NR := omit,
                                                                    in template (omit) MDT_Configuration_EUTRA p_mdt_Config_EUTRA := omit,
                                                                    in template (omit) MDT_Configuration.iE_Extensions p_iE_Extensions := omit
                                                                    ) := {
                    mdt_Config_NR    := p_mdt_Config_NR,
                    mdt_Config_EUTRA := p_mdt_Config_EUTRA,
                    iE_Extensions    := p_iE_Extensions
                } // End of template m_mDT_Configuration

                template (omit) MDT_Configuration_NR m_mDT_Configuration_NR(
                                                                            in template (value) MDT_Activation p_mdt_Activation,
                                                                            in template (value) AreaScopeOfMDT_NR p_areaScopeOfMDT,
                                                                            in template (value) MDTModeNr p_mDTModeNr,
                                                                            in template (omit) MDTPLMNList p_signallingBasedMDTPLMNList := omit,
                                                                            in template (omit) MDT_Configuration_NR.iE_Extensions p_iE_Extensions := omit
                                                                            ) := {
                    mdt_Activation             := p_mdt_Activation,