From f400858adc89e2ca2856d1e993b731c828b8a6ea Mon Sep 17 00:00:00 2001 From: wanghhan1 Date: Fri, 1 Aug 2025 07:50:27 +0000 Subject: [PATCH 01/20] Rel-19 CR 32.298 Addition on NSPA charging information --- ASN/TS32298_CHFChargingDataTypes.asn | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ASN/TS32298_CHFChargingDataTypes.asn b/ASN/TS32298_CHFChargingDataTypes.asn index 6dae6a4..051533a 100644 --- a/ASN/TS32298_CHFChargingDataTypes.asn +++ b/ASN/TS32298_CHFChargingDataTypes.asn @@ -1695,6 +1695,7 @@ NetworkFunctionality ::= ENUMERATED mB-SMF (22), aIOTF (23) -- AIOTF is applicable only as API Target NF in NEF charging + nWDAF (24) } NgApCause ::= SEQUENCE @@ -1750,6 +1751,9 @@ NSPAContainerInformation ::= SEQUENCE maximumPacketLossRateUL [12] INTEGER OPTIONAL, maximumPacketLossRateDL [13] INTEGER OPTIONAL, estimatedEnergyConsumption [14] INTEGER OPTIONAL + sourceNFInformaton [15] NetworkFunctionInformation OPTIONAL, + startTimeStamp [16] TimeStamp OPTIONAL, + stopTimeStamp [17] TimeStamp OPTIONAL } NSSAIMap ::= SEQUENCE -- GitLab From fe9dc7699b6d2b282990e055b7ec33179cb53b9b Mon Sep 17 00:00:00 2001 From: wanghhan1 Date: Tue, 12 Aug 2025 01:29:05 +0000 Subject: [PATCH 02/20] Rel-19 CR 32.298 Addition on NSPA charging information 0812 --- ASN/TS32298_CHFChargingDataTypes.asn | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ASN/TS32298_CHFChargingDataTypes.asn b/ASN/TS32298_CHFChargingDataTypes.asn index 051533a..9e77829 100644 --- a/ASN/TS32298_CHFChargingDataTypes.asn +++ b/ASN/TS32298_CHFChargingDataTypes.asn @@ -1751,7 +1751,7 @@ NSPAContainerInformation ::= SEQUENCE maximumPacketLossRateUL [12] INTEGER OPTIONAL, maximumPacketLossRateDL [13] INTEGER OPTIONAL, estimatedEnergyConsumption [14] INTEGER OPTIONAL - sourceNFInformaton [15] NetworkFunctionInformation OPTIONAL, + sourceNFIdentification [15] NetworkFunctionInformation OPTIONAL, startTimeStamp [16] TimeStamp OPTIONAL, stopTimeStamp [17] TimeStamp OPTIONAL } -- GitLab From cff4311e45bf0df2766fa7e06d6e337a907f3547 Mon Sep 17 00:00:00 2001 From: Robert Tornkvist Date: Fri, 15 Aug 2025 10:57:26 +0000 Subject: [PATCH 03/20] Edit TS32298_CHFChargingDataTypes.asn --- ASN/TS32298_CHFChargingDataTypes.asn | 58 ++++++++++++++-------------- 1 file changed, 30 insertions(+), 28 deletions(-) diff --git a/ASN/TS32298_CHFChargingDataTypes.asn b/ASN/TS32298_CHFChargingDataTypes.asn index 6dae6a4..21b6e02 100644 --- a/ASN/TS32298_CHFChargingDataTypes.asn +++ b/ASN/TS32298_CHFChargingDataTypes.asn @@ -17,6 +17,7 @@ EnhancedDiagnostics, DynamicAddressFlag, InvolvedParty, IPAddress, +LCSClientIdentity, LocalSequenceNumber, ManagementExtensions, MessageClass, @@ -28,6 +29,7 @@ Ncgi, Nid, NodeAddress, PLMN-Id, +PositioningData, PriorityType, PSCellInformation, RANNASCause, @@ -542,7 +544,7 @@ IMSChargingInformation ::= SET tadIdentifier [56] TADIdentifier OPTIONAL, feIdentifierList [57] FEIdentifierList OPTIONAL, imsDCAppInfo [58] IMSDCAppInfo OPTIONAL, - satelliteIDList [110] SEQUENCE Of SatelliteID OPTIONAL + satelliteIDList [110] SEQUENCE OF SatelliteID OPTIONAL } @@ -743,14 +745,14 @@ RangingSLChargingInformation ::= SET sLPositioningServerUEID [2] SubscriptionID OPTIONAL, locatedUEID [3] SubscriptionID OPTIONAL, locationType [4] LocationType OPTIONAL, - locationEstimate [5] UserLocation OPTIONAL + locationEstimate [5] UserLocationInformationStructured OPTIONAL } LCSInformation ::= SET { lCSClientID [0] LCSClientIdentity OPTIONAL, locationType [1] LocationType OPTIONAL, - locationEstimate [2] UserLocation OPTIONAL, + locationEstimate [2] UserLocationInformationStructured OPTIONAL, positioningData [3] PositioningData OPTIONAL, targetUEID [4] SubscriptionID OPTIONAL } @@ -2047,6 +2049,31 @@ Sac ::= UTF8String -- See 3GPP TS 29.571 [249] for details -- + +SatelliteBackhaulInformation ::= SEQUENCE +{ + satelliteBackhaulCategory [0] SatelliteBackhaulCategory OPTIONAL, + gEOSatelliteID [1] UTF8String OPTIONAL + +} +-- See 3GPP TS 29.571 [249] for details. + +SatelliteBackhaulCategory ::= ENUMERATED +{ + gEO (0), + mEO (1), + lEO (2), + oTHERSAT (3), + dYNAMICGEO (4), + dYNAMICMEO (5), + dYNAMICLEO (6), + dYNAMICOTHERSAT (7), + nONSATELLITE (8) + +} + +SatelliteID ::= UTF8String + ServiceArea ::= SEQUENCE { mBSServiceArea [0] MbsServiceArea OPTIONAL, @@ -2350,31 +2377,6 @@ SynchronizationState ::= ENUMERATED } -SatelliteBackhaulInformation ::= SEQUENCE -{ - satelliteBackhaulCategory [0] SatelliteBackhaulCategory OPTIONAL, - gEOSatelliteID [1] UTF8String OPTIONAL - -} --- See 3GPP TS 29.571 [249] for details. - - -SatelliteBackhaulCategory ::= ENUMERATED -{ - gEO (0), - mEO (1), - lEO (2), - oTHERSAT (3), - dYNAMICGEO (4), - dYNAMICMEO (5), - dYNAMICLEO (6), - dYNAMICOTHERSAT (7), - nONSATELLITE (8) - -} - -SatelliteID ::= UTF8String OPTIONAL - -- -- T -- -- GitLab From 11b11a366cab540a32c065677ddbe4d286546b23 Mon Sep 17 00:00:00 2001 From: Robert Tornkvist Date: Fri, 15 Aug 2025 11:14:10 +0000 Subject: [PATCH 04/20] Update 3 files - /ASN/TS32298_IMSChargingDataTypes.asn - /ASN/TS32298_ProSeChargingDataTypes.asn - /ASN/TS32298_SMSChargingDataTypes.asn --- ASN/TS32298_IMSChargingDataTypes.asn | 4 ++-- ASN/TS32298_ProSeChargingDataTypes.asn | 18 ++++++++++-------- ASN/TS32298_SMSChargingDataTypes.asn | 7 ++++--- 3 files changed, 16 insertions(+), 13 deletions(-) diff --git a/ASN/TS32298_IMSChargingDataTypes.asn b/ASN/TS32298_IMSChargingDataTypes.asn index 8ad4698..2b89028 100644 --- a/ASN/TS32298_IMSChargingDataTypes.asn +++ b/ASN/TS32298_IMSChargingDataTypes.asn @@ -185,7 +185,7 @@ PCSCFRecord ::= SET relatedICID [107] IMS-Charging-Identifier OPTIONAL, relatedICIDGenerationNode [108] NodeAddress OPTIONAL, fEIdentifierList [109] FEIdentifierList OPTIONAL, - satelliteIDList [110] SEQUENCE Of SatelliteID OPTIONAL + satelliteIDList [110] SEQUENCE OF SatelliteID OPTIONAL } @@ -1016,7 +1016,7 @@ Status ::= ENUMERATED time-out (2) } -SatelliteID ::= UTF8String OPTIONAL +SatelliteID ::= UTF8String -- -- T diff --git a/ASN/TS32298_ProSeChargingDataTypes.asn b/ASN/TS32298_ProSeChargingDataTypes.asn index 3ffbc7e..932f3db 100644 --- a/ASN/TS32298_ProSeChargingDataTypes.asn +++ b/ASN/TS32298_ProSeChargingDataTypes.asn @@ -143,12 +143,12 @@ PFDCRecord ::= SET listOfReceptionData [23] SEQUENCE OF ChangeOfProSeCondition OPTIONAL, causeForRecClosing [24] ProSeCauseForRecClosing, listOfAppSpecificData [25] SEQUENCE OF AppSpecificData, -targetIPaddress [26] IPAddress OPTIONAL, + targetIPaddress [26] IPAddress OPTIONAL, relayIPaddress [27] IPAddress OPTIONAL, -proSeUEtoNetworkRelayUEID [28] OCTET STRING OPTIONAL, -proSeTargetLayerTwoID [29] OCTET STRING OPTIONAL - hopCount [30] INTEGER OPTIONAL - intermediateRelayInformationContainer [31] SEQUENCE OF intermediateRelayInformation OPTIONAL + proSeUEtoNetworkRelayUEID [28] OCTET STRING OPTIONAL, + proSeTargetLayerTwoID [29] OCTET STRING OPTIONAL, + hopCount [30] INTEGER OPTIONAL, + intermediateRelayInformationContainer [31] SEQUENCE OF IntermediateRelayInformation OPTIONAL } -- @@ -195,11 +195,13 @@ CoverageStatus ::= ENUMERATED -- -- I -- -intermediateRelayInformation ::= SEQUENCE + +IntermediateRelayInformation ::= SEQUENCE { - intermediateRelayIPAddress [0] IPAddress OPTIONAL - proSeUEtoNetworkIntermediateRelayUEID [1] OCTET STRING OPTIONAL, + intermediateRelayIPAddress [0] IPAddress OPTIONAL, + proSeUEtoNetworkIntermediateRelayUEID [1] OCTET STRING OPTIONAL } + -- -- L -- diff --git a/ASN/TS32298_SMSChargingDataTypes.asn b/ASN/TS32298_SMSChargingDataTypes.asn index 4a111f0..b4995ab 100644 --- a/ASN/TS32298_SMSChargingDataTypes.asn +++ b/ASN/TS32298_SMSChargingDataTypes.asn @@ -267,7 +267,8 @@ RecipientInfo ::= SEQUENCE sMRecipientProtocolID [6] OCTET STRING OPTIONAL, recipientOtherAddresses [7] SEQUENCE OF SMAddressInfo OPTIONAL, -- included for backwards compatibility - recipientOtherAddresses [8] SEQUENCE OF RecipientAddress OPTIONAL + recipientOtherAddressList [8] SEQUENCE OF RecipientAddress OPTIONAL + -- used if type different from IMSI and MSISDN } RecipientAddress ::= SEQUENCE @@ -388,13 +389,13 @@ SMSStatus ::= OCTET STRING (SIZE(1)) SatelliteStoreAndForwardInformation ::= SEQUENCE { storeAndForwardIndicator [0] BOOLEAN OPTIONAL, - satelliteIDList [1] SEQUENCE Of SatelliteID OPTIONAL, + satelliteIDList [1] SEQUENCE OF SatelliteID OPTIONAL, storeDuration [2] CallDuration OPTIONAL, storeDataVolume [3] DataVolume OPTIONAL } -SatelliteID ::= UTF8String OPTIONAL +SatelliteID ::= UTF8String END \ No newline at end of file -- GitLab From 49dd9ae39fdd4aed94777ccac8c89d0e77af7980 Mon Sep 17 00:00:00 2001 From: Robert Tornkvist Date: Fri, 15 Aug 2025 11:19:41 +0000 Subject: [PATCH 05/20] Update 2 files - /ASN/TS32298_CSChargingDataTypes.asn - /ASN/TS32298_GPRSChargingDataTypes.asn --- ASN/TS32298_CSChargingDataTypes.asn | 2 +- ASN/TS32298_GPRSChargingDataTypes.asn | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ASN/TS32298_CSChargingDataTypes.asn b/ASN/TS32298_CSChargingDataTypes.asn index 6661dd8..3f2212a 100644 --- a/ASN/TS32298_CSChargingDataTypes.asn +++ b/ASN/TS32298_CSChargingDataTypes.asn @@ -51,7 +51,7 @@ FROM MAP-SS-Code { itu-t identified-organization (4) etsi (0) mobileDomain (0) g -- from TS 29.002 [214] MOLR-Type -FROM SS-DataTypes {itu-t identified-organization (4) etsi (0) mobileDomain (0) gsm-Access (2) modules (3) ss-DataTypes (2) version17 (17)} +FROM SS-DataTypes {itu-t identified-organization (4) etsi (0) mobileDomain (0) gsm-Access (2) modules (3) ss-DataTypes (2) version18 (18)} -- from TS 24.080 [209] DefaultCallHandling, diff --git a/ASN/TS32298_GPRSChargingDataTypes.asn b/ASN/TS32298_GPRSChargingDataTypes.asn index 9d0228f..9052555 100644 --- a/ASN/TS32298_GPRSChargingDataTypes.asn +++ b/ASN/TS32298_GPRSChargingDataTypes.asn @@ -77,7 +77,7 @@ FROM MAP-LCS-DataTypes {itu-t identified-organization (4) etsi (0) mobileDomain -- from TS 29.002 [214] LocationMethod -FROM SS-DataTypes {itu-t identified-organization (4) etsi (0) mobileDomain (0) gsm-Access (2) modules (3) ss-DataTypes (2) version17 (17)} +FROM SS-DataTypes {itu-t identified-organization (4) etsi (0) mobileDomain (0) gsm-Access (2) modules (3) ss-DataTypes (2) version18 (18)} -- from TS 24.080 [209] ; -- GitLab From a9fb78c55258df578837b1e8651d54d5d1bee73b Mon Sep 17 00:00:00 2001 From: Robert Tornkvist Date: Fri, 15 Aug 2025 11:37:58 +0000 Subject: [PATCH 06/20] Edit TS32298_CHFChargingDataTypes.asn --- ASN/TS32298_CHFChargingDataTypes.asn | 23 +++++++++++++++++++++-- 1 file changed, 21 insertions(+), 2 deletions(-) diff --git a/ASN/TS32298_CHFChargingDataTypes.asn b/ASN/TS32298_CHFChargingDataTypes.asn index 6dae6a4..ffd2299 100644 --- a/ASN/TS32298_CHFChargingDataTypes.asn +++ b/ASN/TS32298_CHFChargingDataTypes.asn @@ -174,7 +174,8 @@ ChargingRecord ::= SET interCHFInformation [44] InterCHFInformation OPTIONAL, nSSAAChargingInformation [45] NSSAAChargingInformation OPTIONAL, rangingSLChargingInformation [46] RangingSLChargingInformation OPTIONAL, - lCSInformation [47] LCSInformation OPTIONAL + lCSInformation [47] LCSInformation OPTIONAL, + networkSharingChargingInformation [48] NetworkSharingChargingInformation OPTIONAL } @@ -437,6 +438,15 @@ NSPAChargingInformation ::= SET singelNSSAI [0] SingleNSSAI } +-- +-- Network Sharing charging Information +-- + +NetworkSharingChargingInformation ::= SET +{ + plmnId [0] PLMN-Id, + singelNSSAI [1] SingleNSSAI OPTIONAL +} -- -- NSM charging Information @@ -1564,6 +1574,14 @@ NcgiTai ::= SEQUENCE cellList [1] SEQUENCE OF Ncgi } +NetworkSharingContainerInformation ::= SEQUENCE +{ + uplinkVolume [0] INTEGER OPTIONAL, + downlinkVolume [1] INTEGER OPTIONAL, + numberOfPDUSessionsReq [2] INTEGER OPTIONAL, + numberOfPDUSessionsSuccess [3] INTEGER OPTIONAL +} + NetworkSliceEE ::= SEQUENCE { networkSliceType [1] NetworkSliceType OPTIONAL, @@ -2518,7 +2536,8 @@ UsedUnitContainer ::= SEQUENCE nSPAContainerInformation [14] NSPAContainerInformation OPTIONAL, eventTimeStampExt [15] SEQUENCE OF TimeStamp OPTIONAL, pC5ContainerInformation [16] PC5ContainerInformation OPTIONAL, - mBSContainerInformation [17] MbsContainerInformation OPTIONAL + mBSContainerInformation [17] MbsContainerInformation OPTIONAL, + networkSharingContainerInformation [18] NetworkSharingContainerInformation OPTIONAL } -- -- GitLab From 3ffe798fa735b41277ac95ff5261e53a9644b8d3 Mon Sep 17 00:00:00 2001 From: Robert Tornkvist Date: Fri, 15 Aug 2025 11:45:22 +0000 Subject: [PATCH 07/20] Edit TS32298_CHFChargingDataTypes.asn --- ASN/TS32298_CHFChargingDataTypes.asn | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/ASN/TS32298_CHFChargingDataTypes.asn b/ASN/TS32298_CHFChargingDataTypes.asn index 6dae6a4..e6a7268 100644 --- a/ASN/TS32298_CHFChargingDataTypes.asn +++ b/ASN/TS32298_CHFChargingDataTypes.asn @@ -239,8 +239,8 @@ PDUSessionChargingInformation ::= SET fiveGSBridgeInformation [51] FiveGSBridgeInformation OPTIONAL, fiveGMulticastService [52] FiveGMulticastService OPTIONAL, satelliteAccessIndicator [53] BOOLEAN OPTIONAL, - satelliteBackhaulInformation [54] SatelliteBackhaulInformation OPTIONAL - + satelliteBackhaulInformation [54] SatelliteBackhaulInformation OPTIONAL, + userDisasterRoamingInd [55] BOOLEAN OPTIONAL } @@ -359,7 +359,8 @@ RegistrationChargingInformation ::= SET aMFIdentifier [24] AMFID OPTIONAL, cAGIDList [25] SEQUENCE OF CagId OPTIONAL, alternativeNSSAIMap [26] SEQUENCE OF AlternativeNSSAIMap OPTIONAL, - satelliteAccessIndicator [27] BOOLEAN OPTIONAL + satelliteAccessIndicator [27] BOOLEAN OPTIONAL, + userDisasterRoamingInd [28] BOOLEAN OPTIONAL } -- GitLab From e9d0b385d7d066718019991acfdf16c33d585e0f Mon Sep 17 00:00:00 2001 From: liuyiyingyi Date: Fri, 15 Aug 2025 12:35:38 +0000 Subject: [PATCH 08/20] --- ASN/TS32298_CPDTChargingDataTypes.asn | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/ASN/TS32298_CPDTChargingDataTypes.asn b/ASN/TS32298_CPDTChargingDataTypes.asn index 1346c5d..5565781 100644 --- a/ASN/TS32298_CPDTChargingDataTypes.asn +++ b/ASN/TS32298_CPDTChargingDataTypes.asn @@ -113,7 +113,8 @@ CPDTSNNRecord ::= SET aPNRateControl [22] APNRateControl OPTIONAL, rATType [23] RATType OPTIONAL, servingNodePLMNIdentifier [24] PLMN-Id OPTIONAL, - servedIMEI [25] IMEI OPTIONAL + servedIMEI [25] IMEI OPTIONAL, + satelliteStoreAndForwardInformation [28] SatelliteStoreAndForwardInformation OPTIONAL } @@ -173,4 +174,11 @@ SubmissionResultCode ::= INTEGER -- for MO/MT data transfer -- -END \ No newline at end of file +SatelliteStoreAndForwardInformation ::= SEQUENCE +{ + storeAndForwardIndicator [0] BOOLEAN OPTIONAL, + satelliteIDList [1] SEQUENCE Of SatelliteID OPTIONAL + +} + +END \ No newline at end of file -- GitLab From ca6313b5c51493b8b61236346a6f295455f035ae Mon Sep 17 00:00:00 2001 From: liuyiyingyi Date: Fri, 15 Aug 2025 13:07:51 +0000 Subject: [PATCH 09/20] Update file TS32298_CPDTChargingDataTypes.asn --- ASN/TS32298_CPDTChargingDataTypes.asn | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/ASN/TS32298_CPDTChargingDataTypes.asn b/ASN/TS32298_CPDTChargingDataTypes.asn index 1346c5d..ece5df4 100644 --- a/ASN/TS32298_CPDTChargingDataTypes.asn +++ b/ASN/TS32298_CPDTChargingDataTypes.asn @@ -113,7 +113,8 @@ CPDTSNNRecord ::= SET aPNRateControl [22] APNRateControl OPTIONAL, rATType [23] RATType OPTIONAL, servingNodePLMNIdentifier [24] PLMN-Id OPTIONAL, - servedIMEI [25] IMEI OPTIONAL + servedIMEI [25] IMEI OPTIONAL, + satelliteStoreAndForwardInformation [26] SatelliteStoreAndForwardInformation OPTIONAL } @@ -173,4 +174,11 @@ SubmissionResultCode ::= INTEGER -- for MO/MT data transfer -- +SatelliteStoreAndForwardInformation ::= SEQUENCE +{ + storeAndForwardIndicator [0] BOOLEAN OPTIONAL, + satelliteIDList [1] SEQUENCE Of SatelliteID OPTIONAL + +} + END \ No newline at end of file -- GitLab From e07c436772f7e8a2c5cbdbc80a130f83b77425b9 Mon Sep 17 00:00:00 2001 From: Robert Tornkvist Date: Fri, 15 Aug 2025 15:18:23 +0000 Subject: [PATCH 10/20] Edit TS32298_CPDTChargingDataTypes.asn --- ASN/TS32298_CPDTChargingDataTypes.asn | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/ASN/TS32298_CPDTChargingDataTypes.asn b/ASN/TS32298_CPDTChargingDataTypes.asn index 5565781..bb217f1 100644 --- a/ASN/TS32298_CPDTChargingDataTypes.asn +++ b/ASN/TS32298_CPDTChargingDataTypes.asn @@ -113,8 +113,7 @@ CPDTSNNRecord ::= SET aPNRateControl [22] APNRateControl OPTIONAL, rATType [23] RATType OPTIONAL, servingNodePLMNIdentifier [24] PLMN-Id OPTIONAL, - servedIMEI [25] IMEI OPTIONAL, - satelliteStoreAndForwardInformation [28] SatelliteStoreAndForwardInformation OPTIONAL + servedIMEI [25] IMEI OPTIONAL } @@ -174,11 +173,5 @@ SubmissionResultCode ::= INTEGER -- for MO/MT data transfer -- -SatelliteStoreAndForwardInformation ::= SEQUENCE -{ - storeAndForwardIndicator [0] BOOLEAN OPTIONAL, - satelliteIDList [1] SEQUENCE Of SatelliteID OPTIONAL - -} END \ No newline at end of file -- GitLab From e78cbab314e4a3a2ca77172aca274235e730e7d4 Mon Sep 17 00:00:00 2001 From: liuyiyingyi Date: Tue, 26 Aug 2025 15:08:07 +0000 Subject: [PATCH 11/20] Edit TS32298_GPRSChargingDataTypes.asn --- ASN/TS32298_GPRSChargingDataTypes.asn | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/ASN/TS32298_GPRSChargingDataTypes.asn b/ASN/TS32298_GPRSChargingDataTypes.asn index 9d0228f..91121e0 100644 --- a/ASN/TS32298_GPRSChargingDataTypes.asn +++ b/ASN/TS32298_GPRSChargingDataTypes.asn @@ -608,7 +608,8 @@ SGSNMTLCSRecord ::= SET recordExtensions [26] ManagementExtensions OPTIONAL, causeForRecClosing [27] CauseForRecClosing, servingNodePLMNIdentifier [28] PLMN-Id OPTIONAL, - cNOperatorSelectionEnt [29] CNOperatorSelectionEntity OPTIONAL + cNOperatorSelectionEnt [29] CNOperatorSelectionEntity OPTIONAL, + satelliteStoreAndForwardInformation [30] SatelliteStoreAndForwardInformation OPTIONAL } SGSNMOLCSRecord ::= SET @@ -640,7 +641,8 @@ SGSNMOLCSRecord ::= SET recordExtensions [24] ManagementExtensions OPTIONAL, causeForRecClosing [25] CauseForRecClosing, servingNodePLMNIdentifier [26] PLMN-Id OPTIONAL, - cNOperatorSelectionEnt [27] CNOperatorSelectionEntity OPTIONAL + cNOperatorSelectionEnt [27] CNOperatorSelectionEntity OPTIONAL, + satelliteStoreAndForwardInformation [30] SatelliteStoreAndForwardInformation OPTIONAL } SGSNNILCSRecord ::= SET @@ -1296,6 +1298,13 @@ ResultCode ::= INTEGER -- see Result-Code AVP as used in 32.299 [40] -- +SatelliteStoreAndForwardInformation ::= SEQUENCE +{ + storeAndForwardIndicator [0] BOOLEAN OPTIONAL, + satelliteIDList [1] SEQUENCE Of SatelliteID OPTIONAL + +} + SecondaryRATType ::= INTEGER { nR (0) -- New Radio 5G -- GitLab From 07a5699c066152b39c893fcb378d0879823d5ad0 Mon Sep 17 00:00:00 2001 From: liuyiyingyi Date: Wed, 27 Aug 2025 15:44:40 +0000 Subject: [PATCH 12/20] Edit TS32298_CPDTChargingDataTypes.asn --- ASN/TS32298_CPDTChargingDataTypes.asn | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/ASN/TS32298_CPDTChargingDataTypes.asn b/ASN/TS32298_CPDTChargingDataTypes.asn index ece5df4..9e28593 100644 --- a/ASN/TS32298_CPDTChargingDataTypes.asn +++ b/ASN/TS32298_CPDTChargingDataTypes.asn @@ -113,8 +113,7 @@ CPDTSNNRecord ::= SET aPNRateControl [22] APNRateControl OPTIONAL, rATType [23] RATType OPTIONAL, servingNodePLMNIdentifier [24] PLMN-Id OPTIONAL, - servedIMEI [25] IMEI OPTIONAL, - satelliteStoreAndForwardInformation [26] SatelliteStoreAndForwardInformation OPTIONAL + servedIMEI [25] IMEI OPTIONAL } @@ -174,11 +173,5 @@ SubmissionResultCode ::= INTEGER -- for MO/MT data transfer -- -SatelliteStoreAndForwardInformation ::= SEQUENCE -{ - storeAndForwardIndicator [0] BOOLEAN OPTIONAL, - satelliteIDList [1] SEQUENCE Of SatelliteID OPTIONAL - -} END \ No newline at end of file -- GitLab From f26fe16d9217f0dedaf3fe2eb7aa4645ba410115 Mon Sep 17 00:00:00 2001 From: liuyiyingyi Date: Wed, 27 Aug 2025 15:52:50 +0000 Subject: [PATCH 13/20] Edit TS32298_CPDTChargingDataTypes.asn --- ASN/TS32298_CPDTChargingDataTypes.asn | 1 - 1 file changed, 1 deletion(-) diff --git a/ASN/TS32298_CPDTChargingDataTypes.asn b/ASN/TS32298_CPDTChargingDataTypes.asn index 9e28593..1346c5d 100644 --- a/ASN/TS32298_CPDTChargingDataTypes.asn +++ b/ASN/TS32298_CPDTChargingDataTypes.asn @@ -173,5 +173,4 @@ SubmissionResultCode ::= INTEGER -- for MO/MT data transfer -- - END \ No newline at end of file -- GitLab From 15c5f96d70039534b3e5cb0aca832f26a7a26d9b Mon Sep 17 00:00:00 2001 From: XIAOQIAN JIA Date: Thu, 28 Aug 2025 13:58:55 +0000 Subject: [PATCH 14/20] Edit TS32298_CHFChargingDataTypes.asn --- ASN/TS32298_CHFChargingDataTypes.asn | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/ASN/TS32298_CHFChargingDataTypes.asn b/ASN/TS32298_CHFChargingDataTypes.asn index 6dae6a4..388733f 100644 --- a/ASN/TS32298_CHFChargingDataTypes.asn +++ b/ASN/TS32298_CHFChargingDataTypes.asn @@ -616,7 +616,12 @@ ProseChargingInformation ::= SET proseDestinationLayer2ID [30] OCTET STRING OPTIONAL, pFIContainerInformation [31] SEQUENCE OF PFIContainerInformation OPTIONAL, transmissionDataContainer [32] SEQUENCE OF ChangeOfProSeCondition OPTIONAL, - receptionDataContainer [33] SEQUENCE OF ChangeOfProSeCondition OPTIONAL + receptionDataContainer [33] SEQUENCE OF ChangeOfProSeCondition OPTIONAL, + hopCount [34] INTEGER OPTIONAL, + intermediateRelayInformationContainer [35] SEQUENCE OF IntermeidateRelayInformation OPTIONAL, + proSeUEtoUERelayUEID [36] UTF8String OPTIONAL, + proSeUEtoUETargetEndUEIPAddress [37] IPAddress OPTIONAL + } @@ -1244,6 +1249,13 @@ InternalGroupIdentifier ::= UTF8String -- See 3GPP TS 29.571 [249] for details -- +IntermeidateRelayInformation ::= SEQUENCE +{ + intermediateRelayIPAddress [0] IPAddress OPTIONAL, + proSeUEtoNetworkIntermediateRelayUEID [1] UTF8String OPTIONAL + +} + -- -- K -- -- GitLab From 466ab85bddb6ea033a16cce0805cc57718958c98 Mon Sep 17 00:00:00 2001 From: liuyiyingyi Date: Thu, 28 Aug 2025 14:19:30 +0000 Subject: [PATCH 15/20] Edit TS32298_GPRSChargingDataTypes.asn --- ASN/TS32298_GPRSChargingDataTypes.asn | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ASN/TS32298_GPRSChargingDataTypes.asn b/ASN/TS32298_GPRSChargingDataTypes.asn index 91121e0..ade60be 100644 --- a/ASN/TS32298_GPRSChargingDataTypes.asn +++ b/ASN/TS32298_GPRSChargingDataTypes.asn @@ -1301,7 +1301,7 @@ ResultCode ::= INTEGER SatelliteStoreAndForwardInformation ::= SEQUENCE { storeAndForwardIndicator [0] BOOLEAN OPTIONAL, - satelliteIDList [1] SEQUENCE Of SatelliteID OPTIONAL + satelliteIDList [1] SEQUENCE OF SatelliteID OPTIONAL } -- GitLab From ae96f2fe7bddeb4b9775be5e0201f4a61a087348 Mon Sep 17 00:00:00 2001 From: wanghhan1 Date: Thu, 28 Aug 2025 19:44:10 +0000 Subject: [PATCH 16/20] Rel-19 CR 32.298 Addition on NSPA charging information-0829 --- ASN/TS32298_CHFChargingDataTypes.asn | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/ASN/TS32298_CHFChargingDataTypes.asn b/ASN/TS32298_CHFChargingDataTypes.asn index 9e77829..f5f9075 100644 --- a/ASN/TS32298_CHFChargingDataTypes.asn +++ b/ASN/TS32298_CHFChargingDataTypes.asn @@ -1750,10 +1750,8 @@ NSPAContainerInformation ::= SEQUENCE downlinkThroughput [11] Throughput OPTIONAL, maximumPacketLossRateUL [12] INTEGER OPTIONAL, maximumPacketLossRateDL [13] INTEGER OPTIONAL, - estimatedEnergyConsumption [14] INTEGER OPTIONAL - sourceNFIdentification [15] NetworkFunctionInformation OPTIONAL, - startTimeStamp [16] TimeStamp OPTIONAL, - stopTimeStamp [17] TimeStamp OPTIONAL + estimatedEnergyConsumption [14] INTEGER OPTIONAL, + sourceNFIdentification [15] NetworkFunctionInformation OPTIONAL } NSSAIMap ::= SEQUENCE -- GitLab From a97e1102550bc71dc9d634bdc2bcb12a53bd7e70 Mon Sep 17 00:00:00 2001 From: Robert Tornkvist Date: Fri, 29 Aug 2025 06:28:37 +0000 Subject: [PATCH 17/20] Update file TS32298_ProSeChargingDataTypes.asn --- ASN/TS32298_ProSeChargingDataTypes.asn | 2 -- 1 file changed, 2 deletions(-) diff --git a/ASN/TS32298_ProSeChargingDataTypes.asn b/ASN/TS32298_ProSeChargingDataTypes.asn index 932f3db..374d4d3 100644 --- a/ASN/TS32298_ProSeChargingDataTypes.asn +++ b/ASN/TS32298_ProSeChargingDataTypes.asn @@ -147,8 +147,6 @@ PFDCRecord ::= SET relayIPaddress [27] IPAddress OPTIONAL, proSeUEtoNetworkRelayUEID [28] OCTET STRING OPTIONAL, proSeTargetLayerTwoID [29] OCTET STRING OPTIONAL, - hopCount [30] INTEGER OPTIONAL, - intermediateRelayInformationContainer [31] SEQUENCE OF IntermediateRelayInformation OPTIONAL } -- -- GitLab From 89e9efca5d72ab67f4e2b06f37ffaa2ccb8f4a9a Mon Sep 17 00:00:00 2001 From: Robert Tornkvist Date: Fri, 29 Aug 2025 06:32:38 +0000 Subject: [PATCH 18/20] Update file TS32298_ProSeChargingDataTypes.asn --- ASN/TS32298_ProSeChargingDataTypes.asn | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ASN/TS32298_ProSeChargingDataTypes.asn b/ASN/TS32298_ProSeChargingDataTypes.asn index 374d4d3..f0eb654 100644 --- a/ASN/TS32298_ProSeChargingDataTypes.asn +++ b/ASN/TS32298_ProSeChargingDataTypes.asn @@ -146,7 +146,7 @@ PFDCRecord ::= SET targetIPaddress [26] IPAddress OPTIONAL, relayIPaddress [27] IPAddress OPTIONAL, proSeUEtoNetworkRelayUEID [28] OCTET STRING OPTIONAL, - proSeTargetLayerTwoID [29] OCTET STRING OPTIONAL, + proSeTargetLayerTwoID [29] OCTET STRING OPTIONAL } -- -- GitLab From 16eea24404e371d27bc9f2cd0ccdedf99d2bd7d0 Mon Sep 17 00:00:00 2001 From: chenaai Date: Fri, 12 Sep 2025 09:06:35 +0000 Subject: [PATCH 19/20] 32.298 rel19 cr1044 Charging information for Avatar communication charging --- ASN/TS32298_CHFChargingDataTypes.asn | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/ASN/TS32298_CHFChargingDataTypes.asn b/ASN/TS32298_CHFChargingDataTypes.asn index f5f9075..293186d 100644 --- a/ASN/TS32298_CHFChargingDataTypes.asn +++ b/ASN/TS32298_CHFChargingDataTypes.asn @@ -542,6 +542,7 @@ IMSChargingInformation ::= SET tadIdentifier [56] TADIdentifier OPTIONAL, feIdentifierList [57] FEIdentifierList OPTIONAL, imsDCAppInfo [58] IMSDCAppInfo OPTIONAL, + mediaResource [59] MediaResource OPTIONAL, satelliteIDList [110] SEQUENCE Of SatelliteID OPTIONAL } @@ -867,7 +868,11 @@ AuthorizedQoSInformation ::= SEQUENCE averWindow [4] INTEGER OPTIONAL, maxDataBurstVol [5] INTEGER OPTIONAL } - +AvatarMedia ::= SEQUENCE +{ + resourceURL [0] UTF8String OPTIONAL, + mediaProcessingSpecification [1] UTF8String OPTIONAL +} -- -- B -- @@ -1438,7 +1443,19 @@ MAPDUSteeringMode ::= SEQUENCE prioAcc [4] AccessType OPTIONAL } +MediaResource ::= SEQUENCE +{ + mediaID [0] UTF8String, + mediaResourceCapability [1] MediaResourceType, + avatarMedia [2] AvatarMedia OPTIONAL +} +MediaResourceType ::= ENUMERATED +{ + dc (0), + audio (1), + video (2) +} MICOModeIndication ::= ENUMERATED { -- GitLab From ace2f35c57335a7f11cdecde0322396b49a9fb7f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20T=C3=B6rnkvist?= Date: Fri, 26 Sep 2025 14:45:12 +0200 Subject: [PATCH 20/20] Local rebase and merge https://forge.3gpp.org/rep/sa5/CH/-/merge_requests/98 --- ASN/TS32298_CHFChargingDataTypes.asn | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ASN/TS32298_CHFChargingDataTypes.asn b/ASN/TS32298_CHFChargingDataTypes.asn index 33f5b81..2d0ee0b 100644 --- a/ASN/TS32298_CHFChargingDataTypes.asn +++ b/ASN/TS32298_CHFChargingDataTypes.asn @@ -243,6 +243,7 @@ PDUSessionChargingInformation ::= SET fiveGMulticastService [52] FiveGMulticastService OPTIONAL, satelliteAccessIndicator [53] BOOLEAN OPTIONAL, satelliteBackhaulInformation [54] SatelliteBackhaulInformation OPTIONAL, + serviceLevelAA [55] UTF8String OPTIONAL userDisasterRoamingInd [55] BOOLEAN OPTIONAL } @@ -363,6 +364,7 @@ RegistrationChargingInformation ::= SET cAGIDList [25] SEQUENCE OF CagId OPTIONAL, alternativeNSSAIMap [26] SEQUENCE OF AlternativeNSSAIMap OPTIONAL, satelliteAccessIndicator [27] BOOLEAN OPTIONAL, + serviceLevelAA [28] UTF8String OPTIONAL userDisasterRoamingInd [28] BOOLEAN OPTIONAL } -- GitLab