From 8340adb428e3ec2224ba8b2d08ce99e6f24d1870 Mon Sep 17 00:00:00 2001 From: handymenny Date: Sun, 10 Nov 2024 15:55:00 +0100 Subject: [PATCH 1/3] capabilityInformation: initial ul tx switch support --- .../uecapabilityparser/extension/Component.kt | 8 +++ .../importer/ImportCapabilityInformation.kt | 72 ++++++++++++++++++- .../model/UplinkTxSwitchOption.kt | 34 +++++++++ .../uecapabilityparser/model/combo/ComboNr.kt | 5 +- .../model/component/ComponentNr.kt | 1 + 5 files changed, 117 insertions(+), 3 deletions(-) create mode 100644 src/main/java/it/smartphonecombo/uecapabilityparser/extension/Component.kt create mode 100644 src/main/java/it/smartphonecombo/uecapabilityparser/model/UplinkTxSwitchOption.kt diff --git a/src/main/java/it/smartphonecombo/uecapabilityparser/extension/Component.kt b/src/main/java/it/smartphonecombo/uecapabilityparser/extension/Component.kt new file mode 100644 index 00000000..ff27a8bf --- /dev/null +++ b/src/main/java/it/smartphonecombo/uecapabilityparser/extension/Component.kt @@ -0,0 +1,8 @@ +package it.smartphonecombo.uecapabilityparser.extension + +import it.smartphonecombo.uecapabilityparser.model.Duplex +import it.smartphonecombo.uecapabilityparser.model.band.DuplexBandTable +import it.smartphonecombo.uecapabilityparser.model.component.ComponentNr + +val ComponentNr.isSUL + get() = DuplexBandTable.getNrDuplex(this.band) == Duplex.SUL diff --git a/src/main/java/it/smartphonecombo/uecapabilityparser/importer/ImportCapabilityInformation.kt b/src/main/java/it/smartphonecombo/uecapabilityparser/importer/ImportCapabilityInformation.kt index 75483b99..b705f2b0 100644 --- a/src/main/java/it/smartphonecombo/uecapabilityparser/importer/ImportCapabilityInformation.kt +++ b/src/main/java/it/smartphonecombo/uecapabilityparser/importer/ImportCapabilityInformation.kt @@ -10,6 +10,7 @@ import it.smartphonecombo.uecapabilityparser.extension.getInt import it.smartphonecombo.uecapabilityparser.extension.getObject import it.smartphonecombo.uecapabilityparser.extension.getObjectAtPath import it.smartphonecombo.uecapabilityparser.extension.getString +import it.smartphonecombo.uecapabilityparser.extension.isSUL import it.smartphonecombo.uecapabilityparser.extension.merge import it.smartphonecombo.uecapabilityparser.extension.mutableListWithCapacity import it.smartphonecombo.uecapabilityparser.extension.typedList @@ -25,6 +26,9 @@ import it.smartphonecombo.uecapabilityparser.model.Mimo import it.smartphonecombo.uecapabilityparser.model.PowerClass import it.smartphonecombo.uecapabilityparser.model.Rat import it.smartphonecombo.uecapabilityparser.model.SingleBCS +import it.smartphonecombo.uecapabilityparser.model.UplinkTxSwitchConfig +import it.smartphonecombo.uecapabilityparser.model.UplinkTxSwitchOption +import it.smartphonecombo.uecapabilityparser.model.UplinkTxSwitchType import it.smartphonecombo.uecapabilityparser.model.band.BandBoxed import it.smartphonecombo.uecapabilityparser.model.band.BandLteDetails import it.smartphonecombo.uecapabilityparser.model.band.BandNrDetails @@ -145,7 +149,9 @@ object ImportCapabilityInformation : ImportCapabilities { nrBandsMap = getNrBands(nr, ueType).associateBy({ it.band }, { it }) nrFeatures = getNRFeatureSet(nr) val featureSetCombination = getFeatureSetCombinations(nr) - val saCombos = getNrBandCombinations(nr).typedList() + val nrCaCombos = getNrBandCombinations(nr).typedList() + val saUlTxSwitchCombos = getUlTxSwitchBandCombinations(nr) + val saCombos = nrCaCombos + saUlTxSwitchCombos comboList.nrCombos = linkFeaturesAndCarrier( saCombos, @@ -156,7 +162,8 @@ object ImportCapabilityInformation : ImportCapabilities { nrBandsMap, ) .typedList() - val nrDcCombos = getNrDcBandCombinations(nr, saCombos) + + val nrDcCombos = getNrDcBandCombinations(nr, nrCaCombos) val nrDcComboWithFeatures = linkFeaturesAndCarrier( nrDcCombos, @@ -172,6 +179,7 @@ object ImportCapabilityInformation : ImportCapabilities { val (fr2, fr1) = combo.masterComponents.partition { it.isFR2 } ComboNrDc(fr1, fr2, combo.featureSet, combo.bcs) } + filterList.add(getUeNrCapabilityFilters(nr)) val release = parseAccessRelease(nrCapability) val segSupported = parseSegSupportedNr(nr, release) @@ -1600,6 +1608,66 @@ object ImportCapabilityInformation : ImportCapabilities { return ueCapFilter } + // R16 ul tx switch NRCA parsing. NRDC, ENDC, ul tx switch R17 and R18 not supported for lack of + // samples + private fun getUlTxSwitchBandCombinations(nrCapability: UENrCapabilityJson): List { + val bandCombinationsPath = "rf-Parameters.supportedBandCombinationList-UplinkTxSwitch-r16" + val bandCombinationsList = nrCapability.rootJson.getArrayAtPath(bandCombinationsPath) + + if (bandCombinationsList == null) return emptyList() + + val list = mutableListWithCapacity(bandCombinationsList.size) + for (bandCombination in bandCombinationsList) { + val bandCombinationR16 = bandCombination.getObject("bandCombination-r16") + val bandList = bandCombinationR16?.getArray("bandList") ?: continue + val nrBands = mutableListWithCapacity(bandList.size) + + for (bandParameters in bandList) { + val component = parse5gBandParameters(bandParameters) + if (component is ComponentNr) { + nrBands.add(component) + } + } + + val featureSetCombination = bandCombinationR16.getInt("featureSetCombination") ?: 0 + val bcsString = bandCombinationR16.getString("supportedBandwidthCombinationSet") ?: "1" + val bcs = BCS.fromBinaryString(bcsString) + + val bandPairs = bandCombination.getArray("supportedBandPairListNR-r16") ?: continue + val optionR16Str = bandCombination.getString("uplinkTxSwitching-OptionSupport-r16") + val optionR16 = UplinkTxSwitchOption.valueOf(optionR16Str) + + for (pairs in bandPairs) { + // -1 because index start from 1 + val ul1 = pairs.getInt("bandIndexUL1-r16")?.minus(1) + val ul2 = pairs.getInt("bandIndexUL2-r16")?.minus(1) + + if (ul1 == null || ul2 == null) continue + + var isSUL = false + val newBands = + nrBands.mapIndexed { index, band -> + if (index == ul1 || index == ul2) { + if (band.isSUL) isSUL = true + band.copy(ulTxSwitch = true) + } else { + band + } + } + + // sul supports only option 1 + val ulTxSwitchOption = if (isSUL) UplinkTxSwitchOption.SWITCHED_UL else optionR16 + + val type = UplinkTxSwitchType.R16 + val ulTxSwitchConfig = UplinkTxSwitchConfig(type, ulTxSwitchOption) + + val combo = ComboNr(newBands, featureSetCombination, bcs, listOf(ulTxSwitchConfig)) + list.add(combo) + } + } + return list + } + private fun parseReceivedFilters( receivedFilters: JsonObject, ueCapFilter: IUeCapabilityFilter, diff --git a/src/main/java/it/smartphonecombo/uecapabilityparser/model/UplinkTxSwitchOption.kt b/src/main/java/it/smartphonecombo/uecapabilityparser/model/UplinkTxSwitchOption.kt new file mode 100644 index 00000000..13a0481b --- /dev/null +++ b/src/main/java/it/smartphonecombo/uecapabilityparser/model/UplinkTxSwitchOption.kt @@ -0,0 +1,34 @@ +package it.smartphonecombo.uecapabilityparser.model + +import kotlinx.serialization.Serializable + +@Serializable +enum class UplinkTxSwitchOption { + NONE, + SWITCHED_UL, + DUAL_UL, + BOTH; + + companion object { + fun valueOf(name: String?): UplinkTxSwitchOption { + return when (name) { + "switchedUL" -> SWITCHED_UL + "dualUL" -> DUAL_UL + "both" -> BOTH + else -> NONE + } + } + } +} + +@Serializable +enum class UplinkTxSwitchType { + R16, // 1Tx-2Tx across 2 carriers + R17_1T2T, // 1Tx-2Tx across 3 carriers (1 + 2 contiguous) + R17_2T2T, // 2Tx-2Tx across 3 carriers (1 + 2 contiguous) + R18_1T, // 1Tx-1Tx, 1Tx-2Tx across 4 carriers + R18_2T, // 2Tx-2Tx across 4 carriers +} + +@Serializable +data class UplinkTxSwitchConfig(val type: UplinkTxSwitchType, val option: UplinkTxSwitchOption) diff --git a/src/main/java/it/smartphonecombo/uecapabilityparser/model/combo/ComboNr.kt b/src/main/java/it/smartphonecombo/uecapabilityparser/model/combo/ComboNr.kt index ee313e4e..670dd28f 100644 --- a/src/main/java/it/smartphonecombo/uecapabilityparser/model/combo/ComboNr.kt +++ b/src/main/java/it/smartphonecombo/uecapabilityparser/model/combo/ComboNr.kt @@ -3,6 +3,7 @@ package it.smartphonecombo.uecapabilityparser.model.combo import it.smartphonecombo.uecapabilityparser.extension.populateCsvStringBuilders import it.smartphonecombo.uecapabilityparser.model.BCS import it.smartphonecombo.uecapabilityparser.model.EmptyBCS +import it.smartphonecombo.uecapabilityparser.model.UplinkTxSwitchConfig import it.smartphonecombo.uecapabilityparser.model.component.ComponentNr import it.smartphonecombo.uecapabilityparser.model.component.IComponent import kotlinx.serialization.SerialName @@ -13,6 +14,7 @@ import kotlinx.serialization.Transient data class ComboNr( @SerialName("components") override val masterComponents: List, override val bcs: BCS = EmptyBCS, + val uplinkTxSwitch: List = emptyList(), ) : ICombo { @Transient override var featureSet: Int = 0 @@ -22,7 +24,8 @@ data class ComboNr( masterComponents: List, featureSet: Int, bcs: BCS, - ) : this(masterComponents, bcs) { + uplinkTxSwitch: List = emptyList(), + ) : this(masterComponents, bcs, uplinkTxSwitch) { this.featureSet = featureSet } diff --git a/src/main/java/it/smartphonecombo/uecapabilityparser/model/component/ComponentNr.kt b/src/main/java/it/smartphonecombo/uecapabilityparser/model/component/ComponentNr.kt index 2cf44737..3a666b41 100644 --- a/src/main/java/it/smartphonecombo/uecapabilityparser/model/component/ComponentNr.kt +++ b/src/main/java/it/smartphonecombo/uecapabilityparser/model/component/ComponentNr.kt @@ -24,6 +24,7 @@ data class ComponentNr( @SerialName("maxScs") var scs: Int = 0, @SerialName("maxBwDl") var maxBandwidthDl: Bandwidth = EmptyBandwidth, @SerialName("maxBwUl") var maxBandwidthUl: Bandwidth = EmptyBandwidth, + @SerialName("ulTxSwitch") var ulTxSwitch: Boolean = false, ) : IComponent { override fun compareTo(other: IComponent): Int { From 3a851b2dad3ce9a73387dee0b4aa6af8d9526c04 Mon Sep 17 00:00:00 2001 From: handymenny Date: Sun, 10 Nov 2024 15:55:21 +0100 Subject: [PATCH 2/3] tests: add uecapability with ul tx switch combos --- .../ImportCapabilityInformationTest.kt | 10 + .../input/ueCapNrUlTxSwitchR16.json | 1672 ++ .../input/ueCapNrUlTxSwitchR16_2.json | 19379 ++++++++++++++++ .../oracle/ueCapNrUlTxSwitchR16.json | 588 + .../oracle/ueCapNrUlTxSwitchR16_2.json | 12520 ++++++++++ 5 files changed, 34169 insertions(+) create mode 100644 src/test/resources/capabilityInformation/input/ueCapNrUlTxSwitchR16.json create mode 100644 src/test/resources/capabilityInformation/input/ueCapNrUlTxSwitchR16_2.json create mode 100644 src/test/resources/capabilityInformation/oracle/ueCapNrUlTxSwitchR16.json create mode 100644 src/test/resources/capabilityInformation/oracle/ueCapNrUlTxSwitchR16_2.json diff --git a/src/test/java/it/smartphonecombo/uecapabilityparser/importer/ImportCapabilityInformationTest.kt b/src/test/java/it/smartphonecombo/uecapabilityparser/importer/ImportCapabilityInformationTest.kt index 7c563d40..46a0175d 100644 --- a/src/test/java/it/smartphonecombo/uecapabilityparser/importer/ImportCapabilityInformationTest.kt +++ b/src/test/java/it/smartphonecombo/uecapabilityparser/importer/ImportCapabilityInformationTest.kt @@ -177,4 +177,14 @@ internal class ImportCapabilityInformationTest : fun ueRedCapTDD() { parse("ueRedCapTDD.json", "ueRedCapTDD.json") } + + @Test + fun ueCapNrUlTxSwitchR16() { + parse("ueCapNrUlTxSwitchR16.json", "ueCapNrUlTxSwitchR16.json") + } + + @Test + fun ueCapNrUlTxSwitchR16_2() { + parse("ueCapNrUlTxSwitchR16_2.json", "ueCapNrUlTxSwitchR16_2.json") + } } diff --git a/src/test/resources/capabilityInformation/input/ueCapNrUlTxSwitchR16.json b/src/test/resources/capabilityInformation/input/ueCapNrUlTxSwitchR16.json new file mode 100644 index 00000000..aa6b158c --- /dev/null +++ b/src/test/resources/capabilityInformation/input/ueCapNrUlTxSwitchR16.json @@ -0,0 +1,1672 @@ +{ + "nr": { + "accessStratumRelease": "rel17", + "pdcp-Parameters": { + "supportedROHC-Profiles": { + "profile0x0000": true, + "profile0x0001": true, + "profile0x0002": true, + "profile0x0003": false, + "profile0x0004": false, + "profile0x0006": false, + "profile0x0101": false, + "profile0x0102": false, + "profile0x0103": false, + "profile0x0104": false + }, + "maxNumberROHC-ContextSessions": "cs24", + "continueROHC-Context": "supported", + "shortSN": "supported" + }, + "rlc-Parameters": { + "am-WithShortSN": "supported", + "um-WithShortSN": "supported", + "um-WithLongSN": "supported" + }, + "mac-Parameters": { + "mac-ParametersCommon": { + "recommendedBitRate": "supported", + "recommendedBitRateQuery": "supported" + }, + "mac-ParametersXDD-Diff": { + "logicalChannelSR-DelayTimer": "supported", + "longDRX-Cycle": "supported", + "shortDRX-Cycle": "supported" + } + }, + "phy-Parameters": { + "phy-ParametersCommon": { + "dynamicHARQ-ACK-Codebook": "supported", + "semiStaticHARQ-ACK-Codebook": "supported", + "dynamicBetaOffsetInd-HARQ-ACK-CSI": "supported", + "ra-Type0-PUSCH": "supported", + "dynamicSwitchRA-Type0-1-PUSCH": "supported", + "pdsch-MappingTypeA": "supported", + "interSlotFreqHopping-PUSCH": "supported", + "pusch-RepetitionMultiSlots": "supported", + "rateMatchingResrcSetSemi-Static": "supported", + "rateMatchingResrcSetDynamic": "supported", + "bwp-SwitchingDelay": "type2", + "rateMatchingCtrlResrcSetDynamic": "supported", + "maxLayersMIMO-Indication": "supported", + "codebookVariantsList-r16": [ + { + "maxNumberTxPortsPerResource": "p2", + "maxNumberResourcesPerBand": 2, + "totalNumberTxPortsPerBand": 4 + }, + { + "maxNumberTxPortsPerResource": "p8", + "maxNumberResourcesPerBand": 4, + "totalNumberTxPortsPerBand": 32 + }, + { + "maxNumberTxPortsPerResource": "p16", + "maxNumberResourcesPerBand": 2, + "totalNumberTxPortsPerBand": 32 + }, + { + "maxNumberTxPortsPerResource": "p32", + "maxNumberResourcesPerBand": 1, + "totalNumberTxPortsPerBand": 32 + }, + { + "maxNumberTxPortsPerResource": "p2", + "maxNumberResourcesPerBand": 20, + "totalNumberTxPortsPerBand": 40 + }, + { + "maxNumberTxPortsPerResource": "p8", + "maxNumberResourcesPerBand": 8, + "totalNumberTxPortsPerBand": 64 + }, + { + "maxNumberTxPortsPerResource": "p8", + "maxNumberResourcesPerBand": 12, + "totalNumberTxPortsPerBand": 96 + }, + { + "maxNumberTxPortsPerResource": "p16", + "maxNumberResourcesPerBand": 6, + "totalNumberTxPortsPerBand": 96 + }, + { + "maxNumberTxPortsPerResource": "p32", + "maxNumberResourcesPerBand": 3, + "totalNumberTxPortsPerBand": 96 + }, + { + "maxNumberTxPortsPerResource": "p16", + "maxNumberResourcesPerBand": 4, + "totalNumberTxPortsPerBand": 64 + }, + { + "maxNumberTxPortsPerResource": "p32", + "maxNumberResourcesPerBand": 2, + "totalNumberTxPortsPerBand": 64 + }, + { + "maxNumberTxPortsPerResource": "p2", + "maxNumberResourcesPerBand": 16, + "totalNumberTxPortsPerBand": 32 + }, + { + "maxNumberTxPortsPerResource": "p4", + "maxNumberResourcesPerBand": 8, + "totalNumberTxPortsPerBand": 32 + }, + { + "maxNumberTxPortsPerResource": "p8", + "maxNumberResourcesPerBand": 16, + "totalNumberTxPortsPerBand": 64 + }, + { + "maxNumberTxPortsPerResource": "p32", + "maxNumberResourcesPerBand": 16, + "totalNumberTxPortsPerBand": 64 + }, + { + "maxNumberTxPortsPerResource": "p32", + "maxNumberResourcesPerBand": 2, + "totalNumberTxPortsPerBand": 40 + }, + { + "maxNumberTxPortsPerResource": "p8", + "maxNumberResourcesPerBand": 16, + "totalNumberTxPortsPerBand": 128 + }, + { + "maxNumberTxPortsPerResource": "p16", + "maxNumberResourcesPerBand": 8, + "totalNumberTxPortsPerBand": 128 + }, + { + "maxNumberTxPortsPerResource": "p32", + "maxNumberResourcesPerBand": 4, + "totalNumberTxPortsPerBand": 128 + }, + { + "maxNumberTxPortsPerResource": "p32", + "maxNumberResourcesPerBand": 3, + "totalNumberTxPortsPerBand": 72 + }, + { + "maxNumberTxPortsPerResource": "p32", + "maxNumberResourcesPerBand": 14, + "totalNumberTxPortsPerBand": 64 + }, + { + "maxNumberTxPortsPerResource": "p32", + "maxNumberResourcesPerBand": 17, + "totalNumberTxPortsPerBand": 64 + }, + { + "maxNumberTxPortsPerResource": "p32", + "maxNumberResourcesPerBand": 3, + "totalNumberTxPortsPerBand": 80 + }, + { + "maxNumberTxPortsPerResource": "p32", + "maxNumberResourcesPerBand": 4, + "totalNumberTxPortsPerBand": 80 + }, + { + "maxNumberTxPortsPerResource": "p32", + "maxNumberResourcesPerBand": 4, + "totalNumberTxPortsPerBand": 96 + }, + { + "maxNumberTxPortsPerResource": "p32", + "maxNumberResourcesPerBand": 12, + "totalNumberTxPortsPerBand": 64 + }, + { + "maxNumberTxPortsPerResource": "p32", + "maxNumberResourcesPerBand": 5, + "totalNumberTxPortsPerBand": 160 + }, + { + "maxNumberTxPortsPerResource": "p32", + "maxNumberResourcesPerBand": 6, + "totalNumberTxPortsPerBand": 164 + }, + { + "maxNumberTxPortsPerResource": "p32", + "maxNumberResourcesPerBand": 12, + "totalNumberTxPortsPerBand": 96 + }, + { + "maxNumberTxPortsPerResource": "p8", + "maxNumberResourcesPerBand": 16, + "totalNumberTxPortsPerBand": 96 + } + ] + }, + "phy-ParametersXDD-Diff": { + "dl-SchedulingOffset-PDSCH-TypeA": "supported" + }, + "phy-ParametersFRX-Diff": { + "twoFL-DMRS": "11", + "supportedDMRS-TypeDL": "type1And2", + "supportedDMRS-TypeUL": "type1And2", + "onePortsPTRS": "01", + "pucch-F2-WithFH": "supported", + "pucch-F3-WithFH": "supported", + "pucch-F4-WithFH": "supported", + "pdcch-BlindDetectionCA": 6, + "tpc-SRS-RNTI": "supported", + "absoluteTPC-Command": "supported", + "pusch-HalfPi-BPSK": "supported", + "pucch-F3-4-HalfPi-BPSK": "supported", + "almostContiguousCP-OFDM-UL": "supported", + "mux-SR-HARQ-ACK-CSI-PUCCH-OncePerSlot": { + "sameSymbol": "supported" + }, + "dl-SchedulingOffset-PDSCH-TypeA": "supported", + "oneFL-DMRS-TwoAdditionalDMRS-UL": "supported", + "twoFL-DMRS-TwoAdditionalDMRS-UL": "supported", + "maxLayersMIMO-Adaptation-r16": "supported" + }, + "phy-ParametersFR1": { + "pdsch-256QAM-FR1": "supported", + "pdsch-RE-MappingFR1-PerSymbol": "n10", + "pdsch-RE-MappingFR1-PerSlot": "n32" + } + }, + "rf-Parameters": { + "supportedBandListNR": [ + { + "bandNR": 41, + "modifiedMPR-Behaviour": "11000000", + "mimo-ParametersPerBand": { + "tci-StatePDSCH": { + "maxNumberConfiguredTCI-StatesPerCC": "n16", + "maxNumberActiveTCI-PerBWP": "n1" + }, + "pusch-TransCoherence": "nonCoherent", + "periodicBeamReport": "supported", + "aperiodicBeamReport": "supported", + "maxNumberNonGroupBeamReporting": "n4", + "maxNumberSSB-BFD": 2, + "maxNumberCSI-RS-SSB-CBD": 8, + "beamReportTiming": { + "scs-30kHz": "sym14" + }, + "beamManagementSSB-CSI-RS": { + "maxNumberSSB-CSI-RS-ResourceOneTx": "n16", + "maxNumberCSI-RS-Resource": "n64", + "maxNumberCSI-RS-ResourceTwoTx": "n0", + "supportedCSI-RS-Density": "oneAndThree", + "maxNumberAperiodicCSI-RS-Resource": "n32" + }, + "codebookParameters": { + "type1": { + "singlePanel": { + "supportedCSI-RS-ResourceList": [ + { + "maxNumberTxPortsPerResource": "p8", + "maxNumberResourcesPerBand": 12, + "totalNumberTxPortsPerBand": 96 + }, + { + "maxNumberTxPortsPerResource": "p16", + "maxNumberResourcesPerBand": 6, + "totalNumberTxPortsPerBand": 96 + }, + { + "maxNumberTxPortsPerResource": "p32", + "maxNumberResourcesPerBand": 3, + "totalNumberTxPortsPerBand": 96 + } + ], + "modes": "mode1", + "maxNumberCSI-RS-PerResourceSet": 4 + } + } + }, + "csi-RS-IM-ReceptionForFeedback": { + "maxConfigNumberNZP-CSI-RS-PerCC": 8, + "maxConfigNumberPortsAcrossNZP-CSI-RS-PerCC": 64, + "maxConfigNumberCSI-IM-PerCC": "n8", + "maxNumberSimultaneousNZP-CSI-RS-PerCC": 4, + "totalNumberPortsSimultaneousNZP-CSI-RS-PerCC": 32 + }, + "csi-ReportFramework": { + "maxNumberPeriodicCSI-PerBWP-ForCSI-Report": 2, + "maxNumberAperiodicCSI-PerBWP-ForCSI-Report": 2, + "maxNumberSemiPersistentCSI-PerBWP-ForCSI-Report": 0, + "maxNumberPeriodicCSI-PerBWP-ForBeamReport": 2, + "maxNumberAperiodicCSI-PerBWP-ForBeamReport": 2, + "maxNumberAperiodicCSI-triggeringStatePerCC": "n63", + "maxNumberSemiPersistentCSI-PerBWP-ForBeamReport": 0, + "simultaneousCSI-ReportsPerCC": 4 + }, + "csi-RS-ForTracking": { + "maxBurstLength": 2, + "maxSimultaneousResourceSetsPerCC": 1, + "maxConfiguredResourceSetsPerCC": 8, + "maxConfiguredResourceSetsAllCC": 32 + }, + "codebookParametersPerBand-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 6, + 7, + 8 + ] + } + } + }, + "multipleTCI": "supported", + "bwp-SameNumerology": "upto2", + "pusch-256QAM": "supported", + "ue-PowerClass": "pc2", + "channelBWs-DL": { + "fr1": { + "scs-15kHz": "0000000000", + "scs-30kHz": "0101011111", + "scs-60kHz": "0000000000" + } + }, + "channelBWs-UL": { + "fr1": { + "scs-15kHz": "0000000000", + "scs-30kHz": "0101011111", + "scs-60kHz": "0000000000" + } + }, + "channelBWs-DL-v1590": { + "fr1": { + "scs-30kHz": "1000000000000000" + } + }, + "channelBWs-UL-v1590": { + "fr1": { + "scs-30kHz": "1000000000000000" + } + }, + "ue-PowerClass-v1610": "pc1dot5", + "condHandover-r16": "supported", + "condHandoverTwoTriggerEvents-r16": "supported", + "txDiversity-r16": "supported", + "pdsch-1024QAM-FR1-r17": "supported" + }, + { + "bandNR": 28, + "mimo-ParametersPerBand": { + "tci-StatePDSCH": { + "maxNumberConfiguredTCI-StatesPerCC": "n16", + "maxNumberActiveTCI-PerBWP": "n1" + }, + "pusch-TransCoherence": "nonCoherent", + "periodicBeamReport": "supported", + "aperiodicBeamReport": "supported", + "maxNumberNonGroupBeamReporting": "n4", + "maxNumberSSB-BFD": 2, + "maxNumberCSI-RS-SSB-CBD": 8, + "beamReportTiming": { + "scs-15kHz": "sym8" + }, + "beamManagementSSB-CSI-RS": { + "maxNumberSSB-CSI-RS-ResourceOneTx": "n16", + "maxNumberCSI-RS-Resource": "n64", + "maxNumberCSI-RS-ResourceTwoTx": "n0", + "supportedCSI-RS-Density": "oneAndThree", + "maxNumberAperiodicCSI-RS-Resource": "n32" + }, + "codebookParameters": { + "type1": { + "singlePanel": { + "supportedCSI-RS-ResourceList": [ + { + "maxNumberTxPortsPerResource": "p8", + "maxNumberResourcesPerBand": 12, + "totalNumberTxPortsPerBand": 96 + } + ], + "modes": "mode1", + "maxNumberCSI-RS-PerResourceSet": 4 + } + } + }, + "csi-RS-IM-ReceptionForFeedback": { + "maxConfigNumberNZP-CSI-RS-PerCC": 8, + "maxConfigNumberPortsAcrossNZP-CSI-RS-PerCC": 64, + "maxConfigNumberCSI-IM-PerCC": "n8", + "maxNumberSimultaneousNZP-CSI-RS-PerCC": 4, + "totalNumberPortsSimultaneousNZP-CSI-RS-PerCC": 64 + }, + "csi-ReportFramework": { + "maxNumberPeriodicCSI-PerBWP-ForCSI-Report": 2, + "maxNumberAperiodicCSI-PerBWP-ForCSI-Report": 2, + "maxNumberSemiPersistentCSI-PerBWP-ForCSI-Report": 0, + "maxNumberPeriodicCSI-PerBWP-ForBeamReport": 2, + "maxNumberAperiodicCSI-PerBWP-ForBeamReport": 2, + "maxNumberAperiodicCSI-triggeringStatePerCC": "n63", + "maxNumberSemiPersistentCSI-PerBWP-ForBeamReport": 0, + "simultaneousCSI-ReportsPerCC": 4 + }, + "csi-RS-ForTracking": { + "maxBurstLength": 2, + "maxSimultaneousResourceSetsPerCC": 1, + "maxConfiguredResourceSetsPerCC": 8, + "maxConfiguredResourceSetsAllCC": 32 + }, + "codebookParametersPerBand-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 6, + 7, + 8 + ] + } + } + }, + "multipleTCI": "supported", + "pusch-256QAM": "supported", + "ue-PowerClass": "pc3", + "rateMatchingLTE-CRS": "supported", + "channelBWs-DL": { + "fr1": { + "scs-15kHz": "1111110000", + "scs-30kHz": "0000000000", + "scs-60kHz": "0000000000" + } + }, + "channelBWs-UL": { + "fr1": { + "scs-15kHz": "1111110000", + "scs-30kHz": "0000000000", + "scs-60kHz": "0000000000" + } + }, + "condHandover-r16": "supported", + "condHandoverTwoTriggerEvents-r16": "supported" + }, + { + "bandNR": 79, + "mimo-ParametersPerBand": { + "tci-StatePDSCH": { + "maxNumberConfiguredTCI-StatesPerCC": "n16", + "maxNumberActiveTCI-PerBWP": "n1" + }, + "pusch-TransCoherence": "nonCoherent", + "periodicBeamReport": "supported", + "aperiodicBeamReport": "supported", + "maxNumberNonGroupBeamReporting": "n4", + "maxNumberSSB-BFD": 2, + "maxNumberCSI-RS-SSB-CBD": 8, + "beamReportTiming": { + "scs-30kHz": "sym14" + }, + "beamManagementSSB-CSI-RS": { + "maxNumberSSB-CSI-RS-ResourceOneTx": "n16", + "maxNumberCSI-RS-Resource": "n64", + "maxNumberCSI-RS-ResourceTwoTx": "n0", + "supportedCSI-RS-Density": "oneAndThree", + "maxNumberAperiodicCSI-RS-Resource": "n32" + }, + "codebookParameters": { + "type1": { + "singlePanel": { + "supportedCSI-RS-ResourceList": [ + { + "maxNumberTxPortsPerResource": "p8", + "maxNumberResourcesPerBand": 12, + "totalNumberTxPortsPerBand": 96 + }, + { + "maxNumberTxPortsPerResource": "p16", + "maxNumberResourcesPerBand": 6, + "totalNumberTxPortsPerBand": 96 + }, + { + "maxNumberTxPortsPerResource": "p32", + "maxNumberResourcesPerBand": 3, + "totalNumberTxPortsPerBand": 96 + } + ], + "modes": "mode1", + "maxNumberCSI-RS-PerResourceSet": 4 + } + } + }, + "csi-RS-IM-ReceptionForFeedback": { + "maxConfigNumberNZP-CSI-RS-PerCC": 8, + "maxConfigNumberPortsAcrossNZP-CSI-RS-PerCC": 64, + "maxConfigNumberCSI-IM-PerCC": "n8", + "maxNumberSimultaneousNZP-CSI-RS-PerCC": 4, + "totalNumberPortsSimultaneousNZP-CSI-RS-PerCC": 32 + }, + "csi-ReportFramework": { + "maxNumberPeriodicCSI-PerBWP-ForCSI-Report": 2, + "maxNumberAperiodicCSI-PerBWP-ForCSI-Report": 2, + "maxNumberSemiPersistentCSI-PerBWP-ForCSI-Report": 0, + "maxNumberPeriodicCSI-PerBWP-ForBeamReport": 2, + "maxNumberAperiodicCSI-PerBWP-ForBeamReport": 2, + "maxNumberAperiodicCSI-triggeringStatePerCC": "n63", + "maxNumberSemiPersistentCSI-PerBWP-ForBeamReport": 0, + "simultaneousCSI-ReportsPerCC": 4 + }, + "csi-RS-ForTracking": { + "maxBurstLength": 2, + "maxSimultaneousResourceSetsPerCC": 1, + "maxConfiguredResourceSetsPerCC": 8, + "maxConfiguredResourceSetsAllCC": 32 + }, + "codebookParametersPerBand-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 6, + 7, + 8 + ] + } + } + }, + "multipleTCI": "supported", + "bwp-SameNumerology": "upto2", + "pusch-256QAM": "supported", + "ue-PowerClass": "pc2", + "channelBWs-DL": { + "fr1": { + "scs-15kHz": "0000000000", + "scs-30kHz": "0000001111", + "scs-60kHz": "0000000000" + } + }, + "channelBWs-UL": { + "fr1": { + "scs-15kHz": "0000000000", + "scs-30kHz": "0000001111", + "scs-60kHz": "0000000000" + } + }, + "channelBWs-DL-v1590": { + "fr1": { + "scs-30kHz": "1000000000000000" + } + }, + "channelBWs-UL-v1590": { + "fr1": { + "scs-30kHz": "1000000000000000" + } + }, + "condHandover-r16": "supported", + "condHandoverTwoTriggerEvents-r16": "supported", + "pdsch-1024QAM-FR1-r17": "supported" + }, + { + "bandNR": 83, + "mimo-ParametersPerBand": { + "pusch-TransCoherence": "nonCoherent", + "periodicBeamReport": "supported", + "aperiodicBeamReport": "supported", + "maxNumberNonGroupBeamReporting": "n4", + "maxNumberSSB-BFD": 2, + "maxNumberCSI-RS-SSB-CBD": 8, + "beamReportTiming": { + "scs-15kHz": "sym8" + }, + "beamManagementSSB-CSI-RS": { + "maxNumberSSB-CSI-RS-ResourceOneTx": "n16", + "maxNumberCSI-RS-Resource": "n64", + "maxNumberCSI-RS-ResourceTwoTx": "n0", + "supportedCSI-RS-Density": "oneAndThree", + "maxNumberAperiodicCSI-RS-Resource": "n32" + }, + "codebookParameters": { + "type1": { + "singlePanel": { + "supportedCSI-RS-ResourceList": [ + { + "maxNumberTxPortsPerResource": "p8", + "maxNumberResourcesPerBand": 12, + "totalNumberTxPortsPerBand": 96 + } + ], + "modes": "mode1", + "maxNumberCSI-RS-PerResourceSet": 4 + } + } + }, + "csi-RS-IM-ReceptionForFeedback": { + "maxConfigNumberNZP-CSI-RS-PerCC": 8, + "maxConfigNumberPortsAcrossNZP-CSI-RS-PerCC": 64, + "maxConfigNumberCSI-IM-PerCC": "n8", + "maxNumberSimultaneousNZP-CSI-RS-PerCC": 4, + "totalNumberPortsSimultaneousNZP-CSI-RS-PerCC": 64 + }, + "csi-ReportFramework": { + "maxNumberPeriodicCSI-PerBWP-ForCSI-Report": 2, + "maxNumberAperiodicCSI-PerBWP-ForCSI-Report": 2, + "maxNumberSemiPersistentCSI-PerBWP-ForCSI-Report": 0, + "maxNumberPeriodicCSI-PerBWP-ForBeamReport": 2, + "maxNumberAperiodicCSI-PerBWP-ForBeamReport": 2, + "maxNumberAperiodicCSI-triggeringStatePerCC": "n63", + "maxNumberSemiPersistentCSI-PerBWP-ForBeamReport": 0, + "simultaneousCSI-ReportsPerCC": 4 + }, + "csi-RS-ForTracking": { + "maxBurstLength": 2, + "maxSimultaneousResourceSetsPerCC": 1, + "maxConfiguredResourceSetsPerCC": 8, + "maxConfiguredResourceSetsAllCC": 32 + }, + "codebookParametersPerBand-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 6, + 7, + 8 + ] + } + } + }, + "multipleTCI": "supported", + "pusch-256QAM": "supported", + "ue-PowerClass": "pc3", + "channelBWs-UL": { + "fr1": { + "scs-15kHz": "1111010000", + "scs-30kHz": "0000000000", + "scs-60kHz": "0000000000" + } + }, + "condHandover-r16": "supported", + "condHandoverTwoTriggerEvents-r16": "supported" + } + ], + "supportedBandCombinationList": [ + { + "bandList": [ + { + "nr": { + "bandNR": 28, + "ca-BandwidthClassDL-NR": "a", + "ca-BandwidthClassUL-NR": "a" + } + }, + { + "nr": { + "bandNR": 41, + "ca-BandwidthClassDL-NR": "a", + "ca-BandwidthClassUL-NR": "a" + } + } + ], + "featureSetCombination": 2, + "ca-ParametersNR": { + "parallelTxSRS-PUCCH-PUSCH": "supported", + "parallelTxPRACH-SRS-PUCCH-PUSCH": "supported", + "simultaneousRxTxInterBandCA": "supported", + "diffNumerologyWithinPUCCH-GroupSmallerSCS": "supported", + "supportedNumberTAG": "n2" + }, + "supportedBandwidthCombinationSet": "11001", + "powerClass-v1530": "pc2" + }, + { + "bandList": [ + { + "nr": { + "bandNR": 28, + "ca-BandwidthClassDL-NR": "a" + } + }, + { + "nr": { + "bandNR": 41, + "ca-BandwidthClassDL-NR": "c", + "ca-BandwidthClassUL-NR": "a" + } + } + ], + "featureSetCombination": 3, + "ca-ParametersNR": { + "simultaneousRxTxInterBandCA": "supported", + "supportedNumberTAG": "n2" + }, + "supportedBandwidthCombinationSet": "10001", + "powerClass-v1530": "pc2" + }, + { + "bandList": [ + { + "nr": { + "bandNR": 28, + "ca-BandwidthClassDL-NR": "a", + "ca-BandwidthClassUL-NR": "a" + } + }, + { + "nr": { + "bandNR": 41, + "ca-BandwidthClassDL-NR": "c" + } + } + ], + "featureSetCombination": 4, + "ca-ParametersNR": { + "simultaneousRxTxInterBandCA": "supported", + "diffNumerologyWithinPUCCH-GroupSmallerSCS": "supported", + "supportedNumberTAG": "n2" + }, + "supportedBandwidthCombinationSet": "10001" + } + ], + "appliedFreqBandListFilter": [ + { + "bandInformationNR": { + "bandNR": 41, + "maxCarriersRequestedDL": 3, + "maxCarriersRequestedUL": 3 + } + }, + { + "bandInformationNR": { + "bandNR": 28, + "maxCarriersRequestedDL": 2, + "maxCarriersRequestedUL": 2 + } + }, + { + "bandInformationNR": { + "bandNR": 5, + "maxCarriersRequestedDL": 1, + "maxCarriersRequestedUL": 1 + } + }, + { + "bandInformationNR": { + "bandNR": 8, + "maxCarriersRequestedDL": 1, + "maxCarriersRequestedUL": 1 + } + }, + { + "bandInformationNR": { + "bandNR": 1, + "maxCarriersRequestedDL": 1, + "maxCarriersRequestedUL": 1 + } + }, + { + "bandInformationNR": { + "bandNR": 78, + "maxCarriersRequestedDL": 1, + "maxCarriersRequestedUL": 1 + } + }, + { + "bandInformationNR": { + "bandNR": 77, + "maxCarriersRequestedDL": 1, + "maxCarriersRequestedUL": 1 + } + }, + { + "bandInformationNR": { + "bandNR": 80, + "maxCarriersRequestedDL": 1, + "maxCarriersRequestedUL": 1 + } + }, + { + "bandInformationNR": { + "bandNR": 81, + "maxCarriersRequestedDL": 1, + "maxCarriersRequestedUL": 1 + } + }, + { + "bandInformationNR": { + "bandNR": 82, + "maxCarriersRequestedDL": 1, + "maxCarriersRequestedUL": 1 + } + }, + { + "bandInformationNR": { + "bandNR": 83, + "maxCarriersRequestedDL": 1, + "maxCarriersRequestedUL": 1 + } + }, + { + "bandInformationNR": { + "bandNR": 84, + "maxCarriersRequestedDL": 1, + "maxCarriersRequestedUL": 1 + } + }, + { + "bandInformationNR": { + "bandNR": 86, + "maxCarriersRequestedDL": 1, + "maxCarriersRequestedUL": 1 + } + } + ], + "supportedBandCombinationList-v1540": [ + { + "bandList-v1540": [ + { + "srs-CarrierSwitch": { + "nr": { + "srs-SwitchingTimesListNR": [ + {}, + { + "switchingTimeDL": "n0us", + "switchingTimeUL": "n30us" + } + ] + } + }, + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + }, + { + "srs-CarrierSwitch": { + "nr": { + "srs-SwitchingTimesListNR": [ + {} + ] + } + }, + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "t1r4" + } + } + ], + "ca-ParametersNR-v1540": { + "csi-RS-IM-ReceptionForFeedbackPerBandComb": { + "maxNumberSimultaneousNZP-CSI-RS-ActBWP-AllCC": 16, + "totalNumberPortsSimultaneousNZP-CSI-RS-ActBWP-AllCC": 164 + }, + "simultaneousCSI-ReportsAllCC": 16 + } + }, + { + "bandList-v1540": [ + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + }, + { + "srs-CarrierSwitch": { + "nr": { + "srs-SwitchingTimesListNR": [ + { + "switchingTimeDL": "n0us", + "switchingTimeUL": "n100us" + } + ] + } + }, + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "t2r4" + } + } + ], + "ca-ParametersNR-v1540": { + "csi-RS-IM-ReceptionForFeedbackPerBandComb": { + "maxNumberSimultaneousNZP-CSI-RS-ActBWP-AllCC": 16, + "totalNumberPortsSimultaneousNZP-CSI-RS-ActBWP-AllCC": 164 + }, + "simultaneousCSI-ReportsAllCC": 16 + } + }, + { + "bandList-v1540": [ + { + "srs-CarrierSwitch": { + "nr": { + "srs-SwitchingTimesListNR": [ + {}, + { + "switchingTimeDL": "n0us", + "switchingTimeUL": "n100us" + } + ] + } + }, + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + }, + { + "srs-CarrierSwitch": { + "nr": { + "srs-SwitchingTimesListNR": [ + {} + ] + } + }, + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "t1r4" + } + } + ], + "ca-ParametersNR-v1540": { + "csi-RS-IM-ReceptionForFeedbackPerBandComb": { + "maxNumberSimultaneousNZP-CSI-RS-ActBWP-AllCC": 16, + "totalNumberPortsSimultaneousNZP-CSI-RS-ActBWP-AllCC": 164 + }, + "simultaneousCSI-ReportsAllCC": 16 + } + } + ], + "srs-SwitchingTimeRequested": "true", + "supportedBandCombinationList-v1560": [ + { + "ca-ParametersNR-v1560": { + "diffNumerologyWithinPUCCH-GroupLargerSCS": "supported" + } + }, + { + "ca-ParametersNR-v1560": { + "diffNumerologyWithinPUCCH-GroupLargerSCS": "supported" + } + }, + { + "ca-ParametersNR-v1560": {} + } + ], + "supportedBandCombinationList-v1610": [ + { + "ca-ParametersNR-v1610": { + "codebookParametersPerBC-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 6, + 7, + 8 + ] + } + } + } + }, + { + "ca-ParametersNR-v1610": { + "codebookParametersPerBC-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 16, + 17, + 18 + ] + } + } + }, + "powerClass-v1610": "pc1dot5" + }, + { + "ca-ParametersNR-v1610": { + "codebookParametersPerBC-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 16, + 17, + 18 + ] + } + } + } + } + ], + "supportedBandCombinationList-UplinkTxSwitch-r16": [ + { + "bandCombination-r16": { + "bandList": [ + { + "nr": { + "bandNR": 28, + "ca-BandwidthClassDL-NR": "a", + "ca-BandwidthClassUL-NR": "a" + } + }, + { + "nr": { + "bandNR": 41, + "ca-BandwidthClassDL-NR": "a", + "ca-BandwidthClassUL-NR": "a" + } + } + ], + "featureSetCombination": 1, + "ca-ParametersNR": { + "parallelTxSRS-PUCCH-PUSCH": "supported", + "parallelTxPRACH-SRS-PUCCH-PUSCH": "supported", + "simultaneousRxTxInterBandCA": "supported", + "diffNumerologyWithinPUCCH-GroupSmallerSCS": "supported" + }, + "supportedBandwidthCombinationSet": "11001", + "powerClass-v1530": "pc2" + }, + "bandCombination-v1540": { + "bandList-v1540": [ + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "t2r4" + } + } + ], + "ca-ParametersNR-v1540": { + "csi-RS-IM-ReceptionForFeedbackPerBandComb": { + "maxNumberSimultaneousNZP-CSI-RS-ActBWP-AllCC": 16, + "totalNumberPortsSimultaneousNZP-CSI-RS-ActBWP-AllCC": 164 + }, + "simultaneousCSI-ReportsAllCC": 16 + } + }, + "bandCombination-v1560": { + "ca-ParametersNR-v1560": { + "diffNumerologyWithinPUCCH-GroupLargerSCS": "supported" + } + }, + "bandCombination-v1610": { + "ca-ParametersNR-v1610": { + "codebookParametersPerBC-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 6, + 7, + 8 + ] + } + } + } + }, + "supportedBandPairListNR-r16": [ + { + "bandIndexUL1-r16": 1, + "bandIndexUL2-r16": 2, + "uplinkTxSwitchingPeriod-r16": "n140us" + } + ], + "uplinkTxSwitching-OptionSupport-r16": "switchedUL" + }, + { + "bandCombination-r16": { + "bandList": [ + { + "nr": { + "bandNR": 41, + "ca-BandwidthClassDL-NR": "a", + "ca-BandwidthClassUL-NR": "a" + } + }, + { + "nr": { + "bandNR": 83, + "ca-BandwidthClassUL-NR": "a" + } + } + ], + "featureSetCombination": 0, + "ca-ParametersNR": { + "simultaneousRxTxSUL": "supported" + }, + "supportedBandwidthCombinationSet": "10001", + "powerClass-v1530": "pc2" + }, + "bandCombination-v1540": { + "bandList-v1540": [ + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "t2r4" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + } + ], + "ca-ParametersNR-v1540": { + "csi-RS-IM-ReceptionForFeedbackPerBandComb": { + "maxNumberSimultaneousNZP-CSI-RS-ActBWP-AllCC": 16, + "totalNumberPortsSimultaneousNZP-CSI-RS-ActBWP-AllCC": 164 + }, + "simultaneousCSI-ReportsAllCC": 16 + } + }, + "bandCombination-v1560": { + "ca-ParametersNR-v1560": {} + }, + "bandCombination-v1610": { + "ca-ParametersNR-v1610": { + "codebookParametersPerBC-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 6, + 7, + 8 + ] + } + } + } + }, + "supportedBandPairListNR-r16": [ + { + "bandIndexUL1-r16": 1, + "bandIndexUL2-r16": 2, + "uplinkTxSwitchingPeriod-r16": "n140us" + } + ] + } + ] + }, + "measAndMobParameters": { + "measAndMobParametersCommon": { + "ssb-RLM": "supported", + "eventB-MeasAndReport": "supported", + "handoverFDD-TDD": "supported", + "eutra-CGI-Reporting": "supported", + "nr-CGI-Reporting": "supported", + "periodicEUTRA-MeasAndReport": "supported", + "nr-CGI-Reporting-ENDC": "supported", + "reportAddNeighMeasForPeriodic-r16": "supported", + "condHandoverParametersCommon-r16": { + "condHandoverFDD-TDD-r16": "supported" + }, + "supportedGapPattern-NRonly-r16": "1101000001" + }, + "measAndMobParametersXDD-Diff": { + "intraAndInterF-MeasAndReport": "supported", + "eventA-MeasAndReport": "supported", + "handoverInterF": "supported", + "handoverLTE-EPC": "supported" + }, + "measAndMobParametersFRX-Diff": { + "ss-SINR-Meas": "supported", + "handoverInterF": "supported", + "handoverLTE-EPC": "supported", + "simultaneousRxDataSSB-DiffNumerology": "supported" + } + }, + "featureSets": { + "featureSetsDownlink": [ + { + "featureSetListPerDownlinkCC": [ + 1 + ], + "ue-SpecificUL-DL-Assignment": "supported" + }, + { + "featureSetListPerDownlinkCC": [ + 2 + ], + "ue-SpecificUL-DL-Assignment": "supported" + }, + { + "featureSetListPerDownlinkCC": [ + 1, + 3 + ], + "ue-SpecificUL-DL-Assignment": "supported" + }, + { + "featureSetListPerDownlinkCC": [ + 1, + 3 + ], + "ue-SpecificUL-DL-Assignment": "supported" + } + ], + "featureSetsDownlinkPerCC": [ + { + "supportedSubcarrierSpacingDL": "kHz30", + "supportedBandwidthDL": { + "fr1": "mhz100" + }, + "channelBW-90mhz": "supported", + "maxNumberMIMO-LayersPDSCH": "fourLayers" + }, + { + "supportedSubcarrierSpacingDL": "kHz15", + "supportedBandwidthDL": { + "fr1": "mhz30" + }, + "maxNumberMIMO-LayersPDSCH": "fourLayers", + "supportedModulationOrderDL": "qam256" + }, + { + "supportedSubcarrierSpacingDL": "kHz30", + "supportedBandwidthDL": { + "fr1": "mhz80" + }, + "channelBW-90mhz": "supported", + "maxNumberMIMO-LayersPDSCH": "fourLayers" + } + ], + "featureSetsUplink": [ + { + "featureSetListPerUplinkCC": [ + 1 + ], + "supportedSRS-Resources": { + "maxNumberAperiodicSRS-PerBWP": "n1", + "maxNumberAperiodicSRS-PerBWP-PerSlot": 1, + "maxNumberPeriodicSRS-PerBWP": "n8", + "maxNumberPeriodicSRS-PerBWP-PerSlot": 4, + "maxNumberSemiPersistentSRS-PerBWP": "n1", + "maxNumberSemiPersistentSRS-PerBWP-PerSlot": 1, + "maxNumberSRS-Ports-PerResource": "n2" + }, + "dynamicSwitchSUL": "supported" + }, + { + "featureSetListPerUplinkCC": [ + 2 + ], + "supportedSRS-Resources": { + "maxNumberAperiodicSRS-PerBWP": "n1", + "maxNumberAperiodicSRS-PerBWP-PerSlot": 1, + "maxNumberPeriodicSRS-PerBWP": "n1", + "maxNumberPeriodicSRS-PerBWP-PerSlot": 1, + "maxNumberSemiPersistentSRS-PerBWP": "n1", + "maxNumberSemiPersistentSRS-PerBWP-PerSlot": 1, + "maxNumberSRS-Ports-PerResource": "n1" + }, + "dynamicSwitchSUL": "supported" + }, + { + "featureSetListPerUplinkCC": [ + 2 + ], + "supportedSRS-Resources": { + "maxNumberAperiodicSRS-PerBWP": "n1", + "maxNumberAperiodicSRS-PerBWP-PerSlot": 1, + "maxNumberPeriodicSRS-PerBWP": "n1", + "maxNumberPeriodicSRS-PerBWP-PerSlot": 1, + "maxNumberSemiPersistentSRS-PerBWP": "n1", + "maxNumberSemiPersistentSRS-PerBWP-PerSlot": 1, + "maxNumberSRS-Ports-PerResource": "n1" + } + }, + { + "featureSetListPerUplinkCC": [ + 1 + ], + "supportedSRS-Resources": { + "maxNumberAperiodicSRS-PerBWP": "n1", + "maxNumberAperiodicSRS-PerBWP-PerSlot": 1, + "maxNumberPeriodicSRS-PerBWP": "n8", + "maxNumberPeriodicSRS-PerBWP-PerSlot": 4, + "maxNumberSemiPersistentSRS-PerBWP": "n1", + "maxNumberSemiPersistentSRS-PerBWP-PerSlot": 1, + "maxNumberSRS-Ports-PerResource": "n2" + } + }, + { + "featureSetListPerUplinkCC": [ + 3 + ], + "supportedSRS-Resources": { + "maxNumberAperiodicSRS-PerBWP": "n1", + "maxNumberAperiodicSRS-PerBWP-PerSlot": 1, + "maxNumberPeriodicSRS-PerBWP": "n8", + "maxNumberPeriodicSRS-PerBWP-PerSlot": 4, + "maxNumberSemiPersistentSRS-PerBWP": "n1", + "maxNumberSemiPersistentSRS-PerBWP-PerSlot": 1, + "maxNumberSRS-Ports-PerResource": "n1" + } + }, + { + "featureSetListPerUplinkCC": [ + 1 + ], + "supportedSRS-Resources": { + "maxNumberAperiodicSRS-PerBWP": "n1", + "maxNumberAperiodicSRS-PerBWP-PerSlot": 1, + "maxNumberPeriodicSRS-PerBWP": "n8", + "maxNumberPeriodicSRS-PerBWP-PerSlot": 4, + "maxNumberSemiPersistentSRS-PerBWP": "n1", + "maxNumberSemiPersistentSRS-PerBWP-PerSlot": 1, + "maxNumberSRS-Ports-PerResource": "n2" + } + }, + { + "featureSetListPerUplinkCC": [ + 2 + ], + "supportedSRS-Resources": { + "maxNumberAperiodicSRS-PerBWP": "n1", + "maxNumberAperiodicSRS-PerBWP-PerSlot": 1, + "maxNumberPeriodicSRS-PerBWP": "n1", + "maxNumberPeriodicSRS-PerBWP-PerSlot": 1, + "maxNumberSemiPersistentSRS-PerBWP": "n1", + "maxNumberSemiPersistentSRS-PerBWP-PerSlot": 1, + "maxNumberSRS-Ports-PerResource": "n1" + } + } + ], + "featureSetsUplinkPerCC": [ + { + "supportedSubcarrierSpacingUL": "kHz30", + "supportedBandwidthUL": { + "fr1": "mhz100" + }, + "channelBW-90mhz": "supported", + "mimo-CB-PUSCH": { + "maxNumberMIMO-LayersCB-PUSCH": "twoLayers", + "maxNumberSRS-ResourcePerSet": 1 + }, + "supportedModulationOrderUL": "qam256" + }, + { + "supportedSubcarrierSpacingUL": "kHz15", + "supportedBandwidthUL": { + "fr1": "mhz30" + }, + "mimo-CB-PUSCH": { + "maxNumberMIMO-LayersCB-PUSCH": "oneLayer", + "maxNumberSRS-ResourcePerSet": 1 + }, + "supportedModulationOrderUL": "qam256" + }, + { + "supportedSubcarrierSpacingUL": "kHz30", + "supportedBandwidthUL": { + "fr1": "mhz100" + }, + "channelBW-90mhz": "supported", + "mimo-CB-PUSCH": { + "maxNumberMIMO-LayersCB-PUSCH": "oneLayer", + "maxNumberSRS-ResourcePerSet": 1 + }, + "supportedModulationOrderUL": "qam256" + } + ], + "featureSetsDownlink-v1540": [ + { + "oneFL-DMRS-TwoAdditionalDMRS-DL": "supported", + "twoFL-DMRS-TwoAdditionalDMRS-DL": "supported" + }, + { + "oneFL-DMRS-TwoAdditionalDMRS-DL": "supported", + "additionalDMRS-DL-Alt": "supported", + "twoFL-DMRS-TwoAdditionalDMRS-DL": "supported" + }, + { + "oneFL-DMRS-TwoAdditionalDMRS-DL": "supported", + "twoFL-DMRS-TwoAdditionalDMRS-DL": "supported" + }, + { + "oneFL-DMRS-TwoAdditionalDMRS-DL": "supported", + "twoFL-DMRS-TwoAdditionalDMRS-DL": "supported" + } + ], + "featureSetsUplink-v1540": [ + { + "pa-PhaseDiscontinuityImpacts": "supported" + }, + { + "pa-PhaseDiscontinuityImpacts": "supported" + }, + { + "pa-PhaseDiscontinuityImpacts": "supported" + }, + { + "pa-PhaseDiscontinuityImpacts": "supported" + }, + { + "pa-PhaseDiscontinuityImpacts": "supported" + }, + { + "pa-PhaseDiscontinuityImpacts": "supported" + }, + { + "pa-PhaseDiscontinuityImpacts": "supported" + } + ], + "featureSetsDownlink-v15a0": [ + {}, + {}, + {}, + { + "supportedSRS-Resources": { + "maxNumberAperiodicSRS-PerBWP": "n1", + "maxNumberAperiodicSRS-PerBWP-PerSlot": 1, + "maxNumberPeriodicSRS-PerBWP": "n8", + "maxNumberPeriodicSRS-PerBWP-PerSlot": 4, + "maxNumberSemiPersistentSRS-PerBWP": "n1", + "maxNumberSemiPersistentSRS-PerBWP-PerSlot": 1, + "maxNumberSRS-Ports-PerResource": "n1" + } + } + ], + "featureSetsUplink-v1610": [ + { + "ul-FullPwrMode-r16": "supported" + }, + {}, + {}, + { + "ul-FullPwrMode-r16": "supported" + }, + {}, + { + "ul-FullPwrMode1-r16": "supported" + }, + {} + ], + "featureSetsUplink-v1630": [ + { + "offsetSRS-CB-PUSCH-Ant-Switch-fr1-r16": "supported" + }, + { + "offsetSRS-CB-PUSCH-Ant-Switch-fr1-r16": "supported" + }, + { + "offsetSRS-CB-PUSCH-Ant-Switch-fr1-r16": "supported" + }, + { + "offsetSRS-CB-PUSCH-Ant-Switch-fr1-r16": "supported" + }, + { + "offsetSRS-CB-PUSCH-Ant-Switch-fr1-r16": "supported" + }, + { + "offsetSRS-CB-PUSCH-Ant-Switch-fr1-r16": "supported" + }, + { + "offsetSRS-CB-PUSCH-Ant-Switch-fr1-r16": "supported" + } + ], + "featureSetsDownlinkPerCC-v1700": [ + { + "supportedBandwidthDL-v1710": { + "fr1-r17": "mhz100" + } + }, + { + "supportedBandwidthDL-v1710": { + "fr1-r17": "mhz30" + } + }, + { + "supportedBandwidthDL-v1710": { + "fr1-r17": "mhz90" + } + } + ], + "featureSetsUplink-v1710": [ + { + "ue-PowerClassPerBandPerBC-r17": "pc2" + }, + { + "ue-PowerClassPerBandPerBC-r17": "pc3" + }, + { + "ue-PowerClassPerBandPerBC-r17": "pc3" + }, + { + "ue-PowerClassPerBandPerBC-r17": "pc2" + }, + { + "ue-PowerClassPerBandPerBC-r17": "pc2" + }, + {}, + {} + ], + "featureSetsUplinkPerCC-v1700": [ + { + "supportedBandwidthUL-v1710": { + "fr1-r17": "mhz100" + } + }, + { + "supportedBandwidthUL-v1710": { + "fr1-r17": "mhz30" + } + }, + { + "supportedBandwidthUL-v1710": { + "fr1-r17": "mhz100" + } + } + ] + }, + "featureSetCombinations": [ + [ + [ + { + "nr": { + "downlinkSetNR": 1, + "uplinkSetNR": 1 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 0, + "uplinkSetNR": 2 + } + } + ] + ], + [ + [ + { + "nr": { + "downlinkSetNR": 2, + "uplinkSetNR": 3 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 1, + "uplinkSetNR": 4 + } + } + ] + ], + [ + [ + { + "nr": { + "downlinkSetNR": 2, + "uplinkSetNR": 3 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 1, + "uplinkSetNR": 5 + } + } + ] + ], + [ + [ + { + "nr": { + "downlinkSetNR": 2, + "uplinkSetNR": 0 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 3, + "uplinkSetNR": 6 + } + } + ] + ], + [ + [ + { + "nr": { + "downlinkSetNR": 2, + "uplinkSetNR": 7 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 4, + "uplinkSetNR": 0 + } + } + ] + ] + ], + "nonCriticalExtension": { + "interRAT-Parameters": { + "eutra": { + "supportedBandListEUTRA": [ + 3, + 8, + 34, + 38, + 39, + 40, + 41 + ], + "eutra-ParametersCommon": { + "mfbi-EUTRA": "supported" + } + } + }, + "nonCriticalExtension": { + "overheatingInd": "supported", + "ims-Parameters": { + "ims-ParametersCommon": { + "voiceFallbackIndicationEPS-r16": "supported" + }, + "ims-ParametersFRX-Diff": { + "voiceOverNR": "supported" + } + }, + "nonCriticalExtension": { + "nonCriticalExtension": { + "receivedFilters": { + "capabilityRequestFilterCommon": { + "uplinkTxSwitchRequest-r16": "true" + } + }, + "nonCriticalExtension": { + "nonCriticalExtension": { + "powSav-Parameters-r16": { + "powSav-ParametersCommon-r16": { + "maxCC-Preference-r16": "supported", + "releasePreference-r16": "supported" + }, + "powSav-ParametersFRX-Diff-r16": { + "maxMIMO-LayerPreference-r16": "supported" + } + }, + "highSpeedParameters-r16": { + "measurementEnhancement-r16": "supported", + "demodulationEnhancement-r16": "supported" + }, + "mac-Parameters-v1610": { + "mac-ParametersFRX-Diff-r16": { + "drx-Adaptation-r16": { + "non-SharedSpectrumChAccess-r16": { + "scs-15kHz-r16": "sl3", + "scs-30kHz-r16": "sl6" + } + } + } + }, + "ue-BasedPerfMeas-Parameters-r16": { + "loggedMeasurements-r16": "supported", + "gnss-Location-r16": "supported" + }, + "son-Parameters-r16": { + "rach-Report-r16": "supported" + }, + "nonCriticalExtension": { + "nonCriticalExtension": { + "nonCriticalExtension": { + "ul-RRC-Segmentation-r16": "supported" + } + } + } + } + } + } + } + } + } + } +} diff --git a/src/test/resources/capabilityInformation/input/ueCapNrUlTxSwitchR16_2.json b/src/test/resources/capabilityInformation/input/ueCapNrUlTxSwitchR16_2.json new file mode 100644 index 00000000..73bc9739 --- /dev/null +++ b/src/test/resources/capabilityInformation/input/ueCapNrUlTxSwitchR16_2.json @@ -0,0 +1,19379 @@ +{ + "nr": { + "accessStratumRelease": "rel17", + "pdcp-Parameters": { + "supportedROHC-Profiles": { + "profile0x0000": false, + "profile0x0001": false, + "profile0x0002": false, + "profile0x0003": false, + "profile0x0004": false, + "profile0x0006": false, + "profile0x0101": false, + "profile0x0102": false, + "profile0x0103": false, + "profile0x0104": false + }, + "maxNumberROHC-ContextSessions": "cs24", + "continueROHC-Context": "supported", + "shortSN": "supported" + }, + "rlc-Parameters": { + "am-WithShortSN": "supported", + "um-WithShortSN": "supported", + "um-WithLongSN": "supported" + }, + "mac-Parameters": { + "mac-ParametersCommon": { + "lch-ToSCellRestriction": "supported", + "lastTransmissionUL-r17": "supported" + }, + "mac-ParametersXDD-Diff": { + "logicalChannelSR-DelayTimer": "supported", + "longDRX-Cycle": "supported", + "shortDRX-Cycle": "supported" + } + }, + "phy-Parameters": { + "phy-ParametersCommon": { + "dynamicHARQ-ACK-Codebook": "supported", + "semiStaticHARQ-ACK-Codebook": "supported", + "dynamicBetaOffsetInd-HARQ-ACK-CSI": "supported", + "ra-Type0-PUSCH": "supported", + "dynamicSwitchRA-Type0-1-PDSCH": "supported", + "dynamicSwitchRA-Type0-1-PUSCH": "supported", + "pdsch-MappingTypeA": "supported", + "pdsch-MappingTypeB": "supported", + "downlinkSPS": "supported", + "rateMatchingResrcSetSemi-Static": "supported", + "rateMatchingResrcSetDynamic": "supported", + "bwp-SwitchingDelay": "type2", + "rateMatchingCtrlResrcSetDynamic": "supported", + "maxLayersMIMO-Indication": "supported", + "type2-CG-ReleaseDCI-0-1-r16": "supported", + "codebookVariantsList-r16": [ + { + "maxNumberTxPortsPerResource": "p2", + "maxNumberResourcesPerBand": 2, + "totalNumberTxPortsPerBand": 4 + }, + { + "maxNumberTxPortsPerResource": "p8", + "maxNumberResourcesPerBand": 4, + "totalNumberTxPortsPerBand": 32 + }, + { + "maxNumberTxPortsPerResource": "p16", + "maxNumberResourcesPerBand": 2, + "totalNumberTxPortsPerBand": 32 + }, + { + "maxNumberTxPortsPerResource": "p32", + "maxNumberResourcesPerBand": 1, + "totalNumberTxPortsPerBand": 32 + }, + { + "maxNumberTxPortsPerResource": "p2", + "maxNumberResourcesPerBand": 20, + "totalNumberTxPortsPerBand": 40 + }, + { + "maxNumberTxPortsPerResource": "p8", + "maxNumberResourcesPerBand": 8, + "totalNumberTxPortsPerBand": 64 + }, + { + "maxNumberTxPortsPerResource": "p8", + "maxNumberResourcesPerBand": 12, + "totalNumberTxPortsPerBand": 96 + }, + { + "maxNumberTxPortsPerResource": "p16", + "maxNumberResourcesPerBand": 6, + "totalNumberTxPortsPerBand": 96 + }, + { + "maxNumberTxPortsPerResource": "p32", + "maxNumberResourcesPerBand": 3, + "totalNumberTxPortsPerBand": 96 + }, + { + "maxNumberTxPortsPerResource": "p16", + "maxNumberResourcesPerBand": 4, + "totalNumberTxPortsPerBand": 64 + }, + { + "maxNumberTxPortsPerResource": "p32", + "maxNumberResourcesPerBand": 2, + "totalNumberTxPortsPerBand": 64 + }, + { + "maxNumberTxPortsPerResource": "p2", + "maxNumberResourcesPerBand": 16, + "totalNumberTxPortsPerBand": 32 + }, + { + "maxNumberTxPortsPerResource": "p4", + "maxNumberResourcesPerBand": 8, + "totalNumberTxPortsPerBand": 32 + }, + { + "maxNumberTxPortsPerResource": "p8", + "maxNumberResourcesPerBand": 16, + "totalNumberTxPortsPerBand": 64 + }, + { + "maxNumberTxPortsPerResource": "p32", + "maxNumberResourcesPerBand": 16, + "totalNumberTxPortsPerBand": 64 + }, + { + "maxNumberTxPortsPerResource": "p32", + "maxNumberResourcesPerBand": 2, + "totalNumberTxPortsPerBand": 40 + }, + { + "maxNumberTxPortsPerResource": "p8", + "maxNumberResourcesPerBand": 16, + "totalNumberTxPortsPerBand": 128 + }, + { + "maxNumberTxPortsPerResource": "p16", + "maxNumberResourcesPerBand": 8, + "totalNumberTxPortsPerBand": 128 + }, + { + "maxNumberTxPortsPerResource": "p32", + "maxNumberResourcesPerBand": 4, + "totalNumberTxPortsPerBand": 128 + }, + { + "maxNumberTxPortsPerResource": "p32", + "maxNumberResourcesPerBand": 3, + "totalNumberTxPortsPerBand": 72 + }, + { + "maxNumberTxPortsPerResource": "p32", + "maxNumberResourcesPerBand": 14, + "totalNumberTxPortsPerBand": 64 + }, + { + "maxNumberTxPortsPerResource": "p32", + "maxNumberResourcesPerBand": 17, + "totalNumberTxPortsPerBand": 64 + }, + { + "maxNumberTxPortsPerResource": "p32", + "maxNumberResourcesPerBand": 3, + "totalNumberTxPortsPerBand": 80 + }, + { + "maxNumberTxPortsPerResource": "p32", + "maxNumberResourcesPerBand": 4, + "totalNumberTxPortsPerBand": 80 + }, + { + "maxNumberTxPortsPerResource": "p32", + "maxNumberResourcesPerBand": 4, + "totalNumberTxPortsPerBand": 96 + }, + { + "maxNumberTxPortsPerResource": "p32", + "maxNumberResourcesPerBand": 12, + "totalNumberTxPortsPerBand": 64 + }, + { + "maxNumberTxPortsPerResource": "p32", + "maxNumberResourcesPerBand": 5, + "totalNumberTxPortsPerBand": 160 + }, + { + "maxNumberTxPortsPerResource": "p32", + "maxNumberResourcesPerBand": 6, + "totalNumberTxPortsPerBand": 164 + }, + { + "maxNumberTxPortsPerResource": "p32", + "maxNumberResourcesPerBand": 12, + "totalNumberTxPortsPerBand": 96 + }, + { + "maxNumberTxPortsPerResource": "p8", + "maxNumberResourcesPerBand": 16, + "totalNumberTxPortsPerBand": 96 + } + ] + }, + "phy-ParametersXDD-Diff": { + "dl-SchedulingOffset-PDSCH-TypeA": "supported" + }, + "phy-ParametersFRX-Diff": { + "twoFL-DMRS": "11", + "supportedDMRS-TypeUL": "type1And2", + "pucch-F2-WithFH": "supported", + "pucch-F3-WithFH": "supported", + "pdcch-BlindDetectionCA": 6, + "absoluteTPC-Command": "supported", + "pusch-HalfPi-BPSK": "supported", + "pucch-F3-4-HalfPi-BPSK": "supported", + "mux-SR-HARQ-ACK-CSI-PUCCH-OncePerSlot": { + "sameSymbol": "supported" + }, + "dl-SchedulingOffset-PDSCH-TypeA": "supported", + "oneFL-DMRS-TwoAdditionalDMRS-UL": "supported", + "twoFL-DMRS-TwoAdditionalDMRS-UL": "supported", + "pdcch-BlindDetectionNRDC": { + "pdcch-BlindDetectionMCG-UE": 2, + "pdcch-BlindDetectionSCG-UE": 5 + } + }, + "phy-ParametersFR1": { + "pdsch-256QAM-FR1": "supported", + "pdsch-RE-MappingFR1-PerSymbol": "n10", + "pdsch-RE-MappingFR1-PerSlot": "n32", + "pdcch-MonitoringSingleSpanFirst4Sym-r16": "supported" + }, + "phy-ParametersFR2": { + "pdsch-RE-MappingFR2-PerSymbol": "n6", + "pdsch-RE-MappingFR2-PerSlot": "n64" + } + }, + "rf-Parameters": { + "supportedBandListNR": [ + { + "bandNR": 78, + "mimo-ParametersPerBand": { + "tci-StatePDSCH": { + "maxNumberConfiguredTCI-StatesPerCC": "n16", + "maxNumberActiveTCI-PerBWP": "n1" + }, + "pusch-TransCoherence": "nonCoherent", + "periodicBeamReport": "supported", + "aperiodicBeamReport": "supported", + "maxNumberNonGroupBeamReporting": "n4", + "maxNumberSSB-BFD": 2, + "maxNumberCSI-RS-SSB-CBD": 8, + "beamReportTiming": { + "scs-30kHz": "sym14" + }, + "beamManagementSSB-CSI-RS": { + "maxNumberSSB-CSI-RS-ResourceOneTx": "n16", + "maxNumberCSI-RS-Resource": "n64", + "maxNumberCSI-RS-ResourceTwoTx": "n0", + "supportedCSI-RS-Density": "oneAndThree", + "maxNumberAperiodicCSI-RS-Resource": "n32" + }, + "codebookParameters": { + "type1": { + "singlePanel": { + "supportedCSI-RS-ResourceList": [ + { + "maxNumberTxPortsPerResource": "p8", + "maxNumberResourcesPerBand": 12, + "totalNumberTxPortsPerBand": 96 + }, + { + "maxNumberTxPortsPerResource": "p16", + "maxNumberResourcesPerBand": 6, + "totalNumberTxPortsPerBand": 96 + }, + { + "maxNumberTxPortsPerResource": "p32", + "maxNumberResourcesPerBand": 3, + "totalNumberTxPortsPerBand": 96 + } + ], + "modes": "mode1", + "maxNumberCSI-RS-PerResourceSet": 4 + } + } + }, + "csi-RS-IM-ReceptionForFeedback": { + "maxConfigNumberNZP-CSI-RS-PerCC": 8, + "maxConfigNumberPortsAcrossNZP-CSI-RS-PerCC": 64, + "maxConfigNumberCSI-IM-PerCC": "n8", + "maxNumberSimultaneousNZP-CSI-RS-PerCC": 4, + "totalNumberPortsSimultaneousNZP-CSI-RS-PerCC": 32 + }, + "csi-ReportFramework": { + "maxNumberPeriodicCSI-PerBWP-ForCSI-Report": 2, + "maxNumberAperiodicCSI-PerBWP-ForCSI-Report": 2, + "maxNumberSemiPersistentCSI-PerBWP-ForCSI-Report": 0, + "maxNumberPeriodicCSI-PerBWP-ForBeamReport": 2, + "maxNumberAperiodicCSI-PerBWP-ForBeamReport": 2, + "maxNumberAperiodicCSI-triggeringStatePerCC": "n63", + "maxNumberSemiPersistentCSI-PerBWP-ForBeamReport": 0, + "simultaneousCSI-ReportsPerCC": 4 + }, + "csi-RS-ForTracking": { + "maxBurstLength": 2, + "maxSimultaneousResourceSetsPerCC": 1, + "maxConfiguredResourceSetsPerCC": 8, + "maxConfiguredResourceSetsAllCC": 32 + }, + "codebookParametersPerBand-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 6, + 7, + 8 + ] + } + }, + "lowPAPR-DMRS-PDSCH-r16": "supported", + "lowPAPR-DMRS-PUSCHwithoutPrecoding-r16": "supported", + "lowPAPR-DMRS-PUCCH-r16": "supported", + "lowPAPR-DMRS-PUSCHwithPrecoding-r16": "supported" + }, + "multipleTCI": "supported", + "bwp-SameNumerology": "upto2", + "pusch-256QAM": "supported", + "ue-PowerClass": "pc2", + "channelBWs-DL": { + "fr1": { + "scs-15kHz": "0000000000", + "scs-30kHz": "0111111111", + "scs-60kHz": "0000000000" + } + }, + "channelBWs-UL": { + "fr1": { + "scs-15kHz": "0000000000", + "scs-30kHz": "0111111111", + "scs-60kHz": "0000000000" + } + }, + "channelBWs-DL-v1590": { + "fr1": { + "scs-30kHz": "1000000000000000" + } + }, + "channelBWs-UL-v1590": { + "fr1": { + "scs-30kHz": "1000000000000000" + } + }, + "ue-PowerClass-v1610": "pc1dot5", + "condHandover-r16": "supported", + "condHandoverTwoTriggerEvents-r16": "supported", + "type2-PUSCH-RepetitionMultiSlots-v1650": "supported", + "configuredUL-GrantType2-v1650": "supported", + "enhancedSkipUplinkTxConfigured-v1660": "supported", + "enhancedSkipUplinkTxDynamic-v1660": "supported", + "txDiversity-r16": "supported", + "pdsch-1024QAM-FR1-r17": "supported", + "pdcch-SkippingWithoutSSSG-r17": "supported" + }, + { + "bandNR": 25, + "mimo-ParametersPerBand": { + "tci-StatePDSCH": { + "maxNumberConfiguredTCI-StatesPerCC": "n16", + "maxNumberActiveTCI-PerBWP": "n1" + }, + "pusch-TransCoherence": "nonCoherent", + "periodicBeamReport": "supported", + "aperiodicBeamReport": "supported", + "maxNumberNonGroupBeamReporting": "n4", + "maxNumberSSB-BFD": 2, + "maxNumberCSI-RS-SSB-CBD": 8, + "beamReportTiming": { + "scs-15kHz": "sym8" + }, + "beamManagementSSB-CSI-RS": { + "maxNumberSSB-CSI-RS-ResourceOneTx": "n16", + "maxNumberCSI-RS-Resource": "n64", + "maxNumberCSI-RS-ResourceTwoTx": "n0", + "supportedCSI-RS-Density": "oneAndThree", + "maxNumberAperiodicCSI-RS-Resource": "n32" + }, + "codebookParameters": { + "type1": { + "singlePanel": { + "supportedCSI-RS-ResourceList": [ + { + "maxNumberTxPortsPerResource": "p8", + "maxNumberResourcesPerBand": 12, + "totalNumberTxPortsPerBand": 96 + } + ], + "modes": "mode1", + "maxNumberCSI-RS-PerResourceSet": 4 + } + }, + "type2": { + "supportedCSI-RS-ResourceList": [ + { + "maxNumberTxPortsPerResource": "p32", + "maxNumberResourcesPerBand": 1, + "totalNumberTxPortsPerBand": 32 + } + ], + "parameterLx": 4, + "amplitudeScalingType": "widebandAndSubband" + } + }, + "csi-RS-IM-ReceptionForFeedback": { + "maxConfigNumberNZP-CSI-RS-PerCC": 8, + "maxConfigNumberPortsAcrossNZP-CSI-RS-PerCC": 64, + "maxConfigNumberCSI-IM-PerCC": "n8", + "maxNumberSimultaneousNZP-CSI-RS-PerCC": 4, + "totalNumberPortsSimultaneousNZP-CSI-RS-PerCC": 64 + }, + "csi-ReportFramework": { + "maxNumberPeriodicCSI-PerBWP-ForCSI-Report": 2, + "maxNumberAperiodicCSI-PerBWP-ForCSI-Report": 2, + "maxNumberSemiPersistentCSI-PerBWP-ForCSI-Report": 0, + "maxNumberPeriodicCSI-PerBWP-ForBeamReport": 2, + "maxNumberAperiodicCSI-PerBWP-ForBeamReport": 2, + "maxNumberAperiodicCSI-triggeringStatePerCC": "n63", + "maxNumberSemiPersistentCSI-PerBWP-ForBeamReport": 0, + "simultaneousCSI-ReportsPerCC": 4 + }, + "csi-RS-ForTracking": { + "maxBurstLength": 2, + "maxSimultaneousResourceSetsPerCC": 1, + "maxConfiguredResourceSetsPerCC": 8, + "maxConfiguredResourceSetsAllCC": 32 + }, + "codebookParametersPerBand-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 6, + 7, + 8 + ], + "type2-r16": [ + 3 + ] + } + }, + "lowPAPR-DMRS-PDSCH-r16": "supported", + "lowPAPR-DMRS-PUSCHwithoutPrecoding-r16": "supported", + "lowPAPR-DMRS-PUCCH-r16": "supported", + "lowPAPR-DMRS-PUSCHwithPrecoding-r16": "supported", + "codebookParametersAddition-r16": { + "etype2-r16": { + "etype2R1-r16": { + "supportedCSI-RS-ResourceListAdd-r16": [ + 3 + ] + }, + "rank3-4-r16": "supported" + } + }, + "codebookComboParametersAddition-r16": { + "type1SP-Type2-null-r16": { + "supportedCSI-RS-ResourceListAdd-r16": [ + 10 + ] + }, + "type1SP-eType2R1-null-r16": { + "supportedCSI-RS-ResourceListAdd-r16": [ + 10 + ] + } + } + }, + "multipleTCI": "supported", + "bwp-SameNumerology": "upto2", + "pusch-256QAM": "supported", + "ue-PowerClass": "pc2", + "rateMatchingLTE-CRS": "supported", + "channelBWs-DL": { + "fr1": { + "scs-15kHz": "1111111000", + "scs-30kHz": "0000000000", + "scs-60kHz": "0000000000" + } + }, + "channelBWs-UL": { + "fr1": { + "scs-15kHz": "1111111000", + "scs-30kHz": "0000000000", + "scs-60kHz": "0000000000" + } + }, + "channelBWs-DL-v1590": { + "fr1": { + "scs-15kHz": "0110000000000000" + } + }, + "channelBWs-UL-v1590": { + "fr1": { + "scs-15kHz": "0010000000000000" + } + }, + "pdsch-MappingTypeB-Alt-r16": "supported", + "condHandover-r16": "supported", + "condHandoverTwoTriggerEvents-r16": "supported", + "trs-AdditionalBandwidth-r16": "trs-AddBW-Set1", + "type2-PUSCH-RepetitionMultiSlots-v1650": "supported", + "configuredUL-GrantType2-v1650": "supported", + "enhancedSkipUplinkTxConfigured-v1660": "supported", + "enhancedSkipUplinkTxDynamic-v1660": "supported", + "txDiversity-r16": "supported", + "pdsch-1024QAM-FR1-r17": "supported" + }, + { + "bandNR": 41, + "modifiedMPR-Behaviour": "11000000", + "mimo-ParametersPerBand": { + "tci-StatePDSCH": { + "maxNumberConfiguredTCI-StatesPerCC": "n16", + "maxNumberActiveTCI-PerBWP": "n1" + }, + "pusch-TransCoherence": "nonCoherent", + "periodicBeamReport": "supported", + "aperiodicBeamReport": "supported", + "maxNumberNonGroupBeamReporting": "n4", + "maxNumberSSB-BFD": 2, + "maxNumberCSI-RS-SSB-CBD": 8, + "beamReportTiming": { + "scs-30kHz": "sym14" + }, + "beamManagementSSB-CSI-RS": { + "maxNumberSSB-CSI-RS-ResourceOneTx": "n16", + "maxNumberCSI-RS-Resource": "n64", + "maxNumberCSI-RS-ResourceTwoTx": "n0", + "supportedCSI-RS-Density": "oneAndThree", + "maxNumberAperiodicCSI-RS-Resource": "n32" + }, + "codebookParameters": { + "type1": { + "singlePanel": { + "supportedCSI-RS-ResourceList": [ + { + "maxNumberTxPortsPerResource": "p8", + "maxNumberResourcesPerBand": 12, + "totalNumberTxPortsPerBand": 96 + }, + { + "maxNumberTxPortsPerResource": "p16", + "maxNumberResourcesPerBand": 6, + "totalNumberTxPortsPerBand": 96 + }, + { + "maxNumberTxPortsPerResource": "p32", + "maxNumberResourcesPerBand": 3, + "totalNumberTxPortsPerBand": 96 + } + ], + "modes": "mode1", + "maxNumberCSI-RS-PerResourceSet": 4 + } + } + }, + "csi-RS-IM-ReceptionForFeedback": { + "maxConfigNumberNZP-CSI-RS-PerCC": 8, + "maxConfigNumberPortsAcrossNZP-CSI-RS-PerCC": 64, + "maxConfigNumberCSI-IM-PerCC": "n8", + "maxNumberSimultaneousNZP-CSI-RS-PerCC": 4, + "totalNumberPortsSimultaneousNZP-CSI-RS-PerCC": 32 + }, + "csi-ReportFramework": { + "maxNumberPeriodicCSI-PerBWP-ForCSI-Report": 2, + "maxNumberAperiodicCSI-PerBWP-ForCSI-Report": 2, + "maxNumberSemiPersistentCSI-PerBWP-ForCSI-Report": 0, + "maxNumberPeriodicCSI-PerBWP-ForBeamReport": 2, + "maxNumberAperiodicCSI-PerBWP-ForBeamReport": 2, + "maxNumberAperiodicCSI-triggeringStatePerCC": "n63", + "maxNumberSemiPersistentCSI-PerBWP-ForBeamReport": 0, + "simultaneousCSI-ReportsPerCC": 4 + }, + "csi-RS-ForTracking": { + "maxBurstLength": 2, + "maxSimultaneousResourceSetsPerCC": 1, + "maxConfiguredResourceSetsPerCC": 8, + "maxConfiguredResourceSetsAllCC": 32 + }, + "codebookParametersPerBand-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 6, + 7, + 8 + ] + } + }, + "lowPAPR-DMRS-PDSCH-r16": "supported", + "lowPAPR-DMRS-PUSCHwithoutPrecoding-r16": "supported", + "lowPAPR-DMRS-PUCCH-r16": "supported", + "lowPAPR-DMRS-PUSCHwithPrecoding-r16": "supported" + }, + "multipleTCI": "supported", + "bwp-SameNumerology": "upto2", + "pusch-256QAM": "supported", + "ue-PowerClass": "pc2", + "channelBWs-DL": { + "fr1": { + "scs-15kHz": "0000000000", + "scs-30kHz": "1111111111", + "scs-60kHz": "0000000000" + } + }, + "channelBWs-UL": { + "fr1": { + "scs-15kHz": "0000000000", + "scs-30kHz": "1111111111", + "scs-60kHz": "0000000000" + } + }, + "channelBWs-DL-v1590": { + "fr1": { + "scs-30kHz": "1110000000000000" + } + }, + "channelBWs-UL-v1590": { + "fr1": { + "scs-30kHz": "1110000000000000" + } + }, + "ue-PowerClass-v1610": "pc1dot5", + "condHandover-r16": "supported", + "condHandoverTwoTriggerEvents-r16": "supported", + "type2-PUSCH-RepetitionMultiSlots-v1650": "supported", + "configuredUL-GrantType2-v1650": "supported", + "enhancedSkipUplinkTxConfigured-v1660": "supported", + "enhancedSkipUplinkTxDynamic-v1660": "supported", + "txDiversity-r16": "supported", + "pdsch-1024QAM-FR1-r17": "supported", + "pdcch-SkippingWithoutSSSG-r17": "supported" + }, + { + "bandNR": 2, + "mimo-ParametersPerBand": { + "tci-StatePDSCH": { + "maxNumberConfiguredTCI-StatesPerCC": "n16", + "maxNumberActiveTCI-PerBWP": "n1" + }, + "pusch-TransCoherence": "nonCoherent", + "periodicBeamReport": "supported", + "aperiodicBeamReport": "supported", + "maxNumberNonGroupBeamReporting": "n4", + "maxNumberSSB-BFD": 2, + "maxNumberCSI-RS-SSB-CBD": 8, + "beamReportTiming": { + "scs-15kHz": "sym8" + }, + "beamManagementSSB-CSI-RS": { + "maxNumberSSB-CSI-RS-ResourceOneTx": "n16", + "maxNumberCSI-RS-Resource": "n64", + "maxNumberCSI-RS-ResourceTwoTx": "n0", + "supportedCSI-RS-Density": "oneAndThree", + "maxNumberAperiodicCSI-RS-Resource": "n32" + }, + "codebookParameters": { + "type1": { + "singlePanel": { + "supportedCSI-RS-ResourceList": [ + { + "maxNumberTxPortsPerResource": "p8", + "maxNumberResourcesPerBand": 12, + "totalNumberTxPortsPerBand": 96 + } + ], + "modes": "mode1", + "maxNumberCSI-RS-PerResourceSet": 4 + } + }, + "type2": { + "supportedCSI-RS-ResourceList": [ + { + "maxNumberTxPortsPerResource": "p32", + "maxNumberResourcesPerBand": 1, + "totalNumberTxPortsPerBand": 32 + } + ], + "parameterLx": 4, + "amplitudeScalingType": "widebandAndSubband" + } + }, + "csi-RS-IM-ReceptionForFeedback": { + "maxConfigNumberNZP-CSI-RS-PerCC": 8, + "maxConfigNumberPortsAcrossNZP-CSI-RS-PerCC": 64, + "maxConfigNumberCSI-IM-PerCC": "n8", + "maxNumberSimultaneousNZP-CSI-RS-PerCC": 4, + "totalNumberPortsSimultaneousNZP-CSI-RS-PerCC": 64 + }, + "csi-ReportFramework": { + "maxNumberPeriodicCSI-PerBWP-ForCSI-Report": 2, + "maxNumberAperiodicCSI-PerBWP-ForCSI-Report": 2, + "maxNumberSemiPersistentCSI-PerBWP-ForCSI-Report": 0, + "maxNumberPeriodicCSI-PerBWP-ForBeamReport": 2, + "maxNumberAperiodicCSI-PerBWP-ForBeamReport": 2, + "maxNumberAperiodicCSI-triggeringStatePerCC": "n63", + "maxNumberSemiPersistentCSI-PerBWP-ForBeamReport": 0, + "simultaneousCSI-ReportsPerCC": 4 + }, + "csi-RS-ForTracking": { + "maxBurstLength": 2, + "maxSimultaneousResourceSetsPerCC": 1, + "maxConfiguredResourceSetsPerCC": 8, + "maxConfiguredResourceSetsAllCC": 32 + }, + "codebookParametersPerBand-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 6, + 7, + 8 + ], + "type2-r16": [ + 3 + ] + } + }, + "lowPAPR-DMRS-PDSCH-r16": "supported", + "lowPAPR-DMRS-PUSCHwithoutPrecoding-r16": "supported", + "lowPAPR-DMRS-PUCCH-r16": "supported", + "lowPAPR-DMRS-PUSCHwithPrecoding-r16": "supported", + "codebookParametersAddition-r16": { + "etype2-r16": { + "etype2R1-r16": { + "supportedCSI-RS-ResourceListAdd-r16": [ + 3 + ] + }, + "rank3-4-r16": "supported" + } + }, + "codebookComboParametersAddition-r16": { + "type1SP-Type2-null-r16": { + "supportedCSI-RS-ResourceListAdd-r16": [ + 10 + ] + }, + "type1SP-eType2R1-null-r16": { + "supportedCSI-RS-ResourceListAdd-r16": [ + 10 + ] + } + } + }, + "multipleTCI": "supported", + "bwp-SameNumerology": "upto2", + "pusch-256QAM": "supported", + "ue-PowerClass": "pc2", + "rateMatchingLTE-CRS": "supported", + "channelBWs-DL": { + "fr1": { + "scs-15kHz": "1111111000", + "scs-30kHz": "0000000000", + "scs-60kHz": "0000000000" + } + }, + "channelBWs-UL": { + "fr1": { + "scs-15kHz": "1111111000", + "scs-30kHz": "0000000000", + "scs-60kHz": "0000000000" + } + }, + "channelBWs-DL-v1590": { + "fr1": { + "scs-15kHz": "0010000000000000" + } + }, + "channelBWs-UL-v1590": { + "fr1": { + "scs-15kHz": "0010000000000000" + } + }, + "pdsch-MappingTypeB-Alt-r16": "supported", + "condHandover-r16": "supported", + "condHandoverTwoTriggerEvents-r16": "supported", + "trs-AdditionalBandwidth-r16": "trs-AddBW-Set1", + "type2-PUSCH-RepetitionMultiSlots-v1650": "supported", + "configuredUL-GrantType2-v1650": "supported", + "enhancedSkipUplinkTxConfigured-v1660": "supported", + "enhancedSkipUplinkTxDynamic-v1660": "supported", + "txDiversity-r16": "supported", + "pdsch-1024QAM-FR1-r17": "supported" + }, + { + "bandNR": 77, + "mimo-ParametersPerBand": { + "tci-StatePDSCH": { + "maxNumberConfiguredTCI-StatesPerCC": "n16", + "maxNumberActiveTCI-PerBWP": "n1" + }, + "pusch-TransCoherence": "nonCoherent", + "periodicBeamReport": "supported", + "aperiodicBeamReport": "supported", + "maxNumberNonGroupBeamReporting": "n4", + "maxNumberSSB-BFD": 2, + "maxNumberCSI-RS-SSB-CBD": 8, + "beamReportTiming": { + "scs-30kHz": "sym14" + }, + "beamManagementSSB-CSI-RS": { + "maxNumberSSB-CSI-RS-ResourceOneTx": "n16", + "maxNumberCSI-RS-Resource": "n64", + "maxNumberCSI-RS-ResourceTwoTx": "n0", + "supportedCSI-RS-Density": "oneAndThree", + "maxNumberAperiodicCSI-RS-Resource": "n32" + }, + "codebookParameters": { + "type1": { + "singlePanel": { + "supportedCSI-RS-ResourceList": [ + { + "maxNumberTxPortsPerResource": "p8", + "maxNumberResourcesPerBand": 12, + "totalNumberTxPortsPerBand": 96 + }, + { + "maxNumberTxPortsPerResource": "p16", + "maxNumberResourcesPerBand": 6, + "totalNumberTxPortsPerBand": 96 + }, + { + "maxNumberTxPortsPerResource": "p32", + "maxNumberResourcesPerBand": 3, + "totalNumberTxPortsPerBand": 96 + } + ], + "modes": "mode1", + "maxNumberCSI-RS-PerResourceSet": 4 + } + } + }, + "csi-RS-IM-ReceptionForFeedback": { + "maxConfigNumberNZP-CSI-RS-PerCC": 8, + "maxConfigNumberPortsAcrossNZP-CSI-RS-PerCC": 64, + "maxConfigNumberCSI-IM-PerCC": "n8", + "maxNumberSimultaneousNZP-CSI-RS-PerCC": 4, + "totalNumberPortsSimultaneousNZP-CSI-RS-PerCC": 32 + }, + "csi-ReportFramework": { + "maxNumberPeriodicCSI-PerBWP-ForCSI-Report": 2, + "maxNumberAperiodicCSI-PerBWP-ForCSI-Report": 2, + "maxNumberSemiPersistentCSI-PerBWP-ForCSI-Report": 0, + "maxNumberPeriodicCSI-PerBWP-ForBeamReport": 2, + "maxNumberAperiodicCSI-PerBWP-ForBeamReport": 2, + "maxNumberAperiodicCSI-triggeringStatePerCC": "n63", + "maxNumberSemiPersistentCSI-PerBWP-ForBeamReport": 0, + "simultaneousCSI-ReportsPerCC": 4 + }, + "csi-RS-ForTracking": { + "maxBurstLength": 2, + "maxSimultaneousResourceSetsPerCC": 1, + "maxConfiguredResourceSetsPerCC": 8, + "maxConfiguredResourceSetsAllCC": 32 + }, + "codebookParametersPerBand-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 6, + 7, + 8 + ] + } + }, + "lowPAPR-DMRS-PDSCH-r16": "supported", + "lowPAPR-DMRS-PUSCHwithoutPrecoding-r16": "supported", + "lowPAPR-DMRS-PUCCH-r16": "supported", + "lowPAPR-DMRS-PUSCHwithPrecoding-r16": "supported" + }, + "multipleTCI": "supported", + "bwp-SameNumerology": "upto2", + "pusch-256QAM": "supported", + "ue-PowerClass": "pc2", + "channelBWs-DL": { + "fr1": { + "scs-15kHz": "0000000000", + "scs-30kHz": "0111111111", + "scs-60kHz": "0000000000" + } + }, + "channelBWs-UL": { + "fr1": { + "scs-15kHz": "0000000000", + "scs-30kHz": "0111111111", + "scs-60kHz": "0000000000" + } + }, + "channelBWs-DL-v1590": { + "fr1": { + "scs-30kHz": "1000000000000000" + } + }, + "channelBWs-UL-v1590": { + "fr1": { + "scs-30kHz": "1000000000000000" + } + }, + "ue-PowerClass-v1610": "pc1dot5", + "condHandover-r16": "supported", + "condHandoverTwoTriggerEvents-r16": "supported", + "type2-PUSCH-RepetitionMultiSlots-v1650": "supported", + "configuredUL-GrantType2-v1650": "supported", + "enhancedSkipUplinkTxConfigured-v1660": "supported", + "enhancedSkipUplinkTxDynamic-v1660": "supported", + "txDiversity-r16": "supported", + "pdsch-1024QAM-FR1-r17": "supported", + "pdcch-SkippingWithoutSSSG-r17": "supported" + }, + { + "bandNR": 1, + "mimo-ParametersPerBand": { + "tci-StatePDSCH": { + "maxNumberConfiguredTCI-StatesPerCC": "n16", + "maxNumberActiveTCI-PerBWP": "n1" + }, + "pusch-TransCoherence": "nonCoherent", + "periodicBeamReport": "supported", + "aperiodicBeamReport": "supported", + "maxNumberNonGroupBeamReporting": "n4", + "maxNumberSSB-BFD": 2, + "maxNumberCSI-RS-SSB-CBD": 8, + "beamReportTiming": { + "scs-15kHz": "sym8" + }, + "beamManagementSSB-CSI-RS": { + "maxNumberSSB-CSI-RS-ResourceOneTx": "n16", + "maxNumberCSI-RS-Resource": "n64", + "maxNumberCSI-RS-ResourceTwoTx": "n0", + "supportedCSI-RS-Density": "oneAndThree", + "maxNumberAperiodicCSI-RS-Resource": "n32" + }, + "codebookParameters": { + "type1": { + "singlePanel": { + "supportedCSI-RS-ResourceList": [ + { + "maxNumberTxPortsPerResource": "p8", + "maxNumberResourcesPerBand": 12, + "totalNumberTxPortsPerBand": 96 + } + ], + "modes": "mode1", + "maxNumberCSI-RS-PerResourceSet": 4 + } + }, + "type2": { + "supportedCSI-RS-ResourceList": [ + { + "maxNumberTxPortsPerResource": "p32", + "maxNumberResourcesPerBand": 1, + "totalNumberTxPortsPerBand": 32 + } + ], + "parameterLx": 4, + "amplitudeScalingType": "widebandAndSubband" + } + }, + "csi-RS-IM-ReceptionForFeedback": { + "maxConfigNumberNZP-CSI-RS-PerCC": 8, + "maxConfigNumberPortsAcrossNZP-CSI-RS-PerCC": 64, + "maxConfigNumberCSI-IM-PerCC": "n8", + "maxNumberSimultaneousNZP-CSI-RS-PerCC": 4, + "totalNumberPortsSimultaneousNZP-CSI-RS-PerCC": 64 + }, + "csi-ReportFramework": { + "maxNumberPeriodicCSI-PerBWP-ForCSI-Report": 2, + "maxNumberAperiodicCSI-PerBWP-ForCSI-Report": 2, + "maxNumberSemiPersistentCSI-PerBWP-ForCSI-Report": 0, + "maxNumberPeriodicCSI-PerBWP-ForBeamReport": 2, + "maxNumberAperiodicCSI-PerBWP-ForBeamReport": 2, + "maxNumberAperiodicCSI-triggeringStatePerCC": "n63", + "maxNumberSemiPersistentCSI-PerBWP-ForBeamReport": 0, + "simultaneousCSI-ReportsPerCC": 4 + }, + "csi-RS-ForTracking": { + "maxBurstLength": 2, + "maxSimultaneousResourceSetsPerCC": 1, + "maxConfiguredResourceSetsPerCC": 8, + "maxConfiguredResourceSetsAllCC": 32 + }, + "codebookParametersPerBand-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 6, + 7, + 8 + ], + "type2-r16": [ + 3 + ] + } + }, + "lowPAPR-DMRS-PDSCH-r16": "supported", + "lowPAPR-DMRS-PUSCHwithoutPrecoding-r16": "supported", + "lowPAPR-DMRS-PUCCH-r16": "supported", + "lowPAPR-DMRS-PUSCHwithPrecoding-r16": "supported", + "codebookParametersAddition-r16": { + "etype2-r16": { + "etype2R1-r16": { + "supportedCSI-RS-ResourceListAdd-r16": [ + 3 + ] + }, + "rank3-4-r16": "supported" + } + }, + "codebookComboParametersAddition-r16": { + "type1SP-Type2-null-r16": { + "supportedCSI-RS-ResourceListAdd-r16": [ + 10 + ] + }, + "type1SP-eType2R1-null-r16": { + "supportedCSI-RS-ResourceListAdd-r16": [ + 10 + ] + } + } + }, + "multipleTCI": "supported", + "bwp-SameNumerology": "upto2", + "pusch-256QAM": "supported", + "ue-PowerClass": "pc2", + "rateMatchingLTE-CRS": "supported", + "channelBWs-DL": { + "fr1": { + "scs-15kHz": "1111111100", + "scs-30kHz": "0000000000", + "scs-60kHz": "0000000000" + } + }, + "channelBWs-UL": { + "fr1": { + "scs-15kHz": "1111111100", + "scs-30kHz": "0000000000", + "scs-60kHz": "0000000000" + } + }, + "channelBWs-DL-v1590": { + "fr1": { + "scs-15kHz": "0100000000000000" + } + }, + "channelBWs-UL-v1590": { + "fr1": { + "scs-15kHz": "0100000000000000" + } + }, + "pdsch-MappingTypeB-Alt-r16": "supported", + "condHandover-r16": "supported", + "condHandoverTwoTriggerEvents-r16": "supported", + "trs-AdditionalBandwidth-r16": "trs-AddBW-Set1", + "type2-PUSCH-RepetitionMultiSlots-v1650": "supported", + "configuredUL-GrantType2-v1650": "supported", + "enhancedSkipUplinkTxConfigured-v1660": "supported", + "enhancedSkipUplinkTxDynamic-v1660": "supported", + "txDiversity-r16": "supported", + "pdsch-1024QAM-FR1-r17": "supported" + }, + { + "bandNR": 3, + "mimo-ParametersPerBand": { + "tci-StatePDSCH": { + "maxNumberConfiguredTCI-StatesPerCC": "n16", + "maxNumberActiveTCI-PerBWP": "n1" + }, + "pusch-TransCoherence": "nonCoherent", + "periodicBeamReport": "supported", + "aperiodicBeamReport": "supported", + "maxNumberNonGroupBeamReporting": "n4", + "maxNumberSSB-BFD": 2, + "maxNumberCSI-RS-SSB-CBD": 8, + "beamReportTiming": { + "scs-15kHz": "sym8" + }, + "beamManagementSSB-CSI-RS": { + "maxNumberSSB-CSI-RS-ResourceOneTx": "n16", + "maxNumberCSI-RS-Resource": "n64", + "maxNumberCSI-RS-ResourceTwoTx": "n0", + "supportedCSI-RS-Density": "oneAndThree", + "maxNumberAperiodicCSI-RS-Resource": "n32" + }, + "codebookParameters": { + "type1": { + "singlePanel": { + "supportedCSI-RS-ResourceList": [ + { + "maxNumberTxPortsPerResource": "p8", + "maxNumberResourcesPerBand": 12, + "totalNumberTxPortsPerBand": 96 + } + ], + "modes": "mode1", + "maxNumberCSI-RS-PerResourceSet": 4 + } + }, + "type2": { + "supportedCSI-RS-ResourceList": [ + { + "maxNumberTxPortsPerResource": "p32", + "maxNumberResourcesPerBand": 1, + "totalNumberTxPortsPerBand": 32 + } + ], + "parameterLx": 4, + "amplitudeScalingType": "widebandAndSubband" + } + }, + "csi-RS-IM-ReceptionForFeedback": { + "maxConfigNumberNZP-CSI-RS-PerCC": 8, + "maxConfigNumberPortsAcrossNZP-CSI-RS-PerCC": 64, + "maxConfigNumberCSI-IM-PerCC": "n8", + "maxNumberSimultaneousNZP-CSI-RS-PerCC": 4, + "totalNumberPortsSimultaneousNZP-CSI-RS-PerCC": 64 + }, + "csi-ReportFramework": { + "maxNumberPeriodicCSI-PerBWP-ForCSI-Report": 2, + "maxNumberAperiodicCSI-PerBWP-ForCSI-Report": 2, + "maxNumberSemiPersistentCSI-PerBWP-ForCSI-Report": 0, + "maxNumberPeriodicCSI-PerBWP-ForBeamReport": 2, + "maxNumberAperiodicCSI-PerBWP-ForBeamReport": 2, + "maxNumberAperiodicCSI-triggeringStatePerCC": "n63", + "maxNumberSemiPersistentCSI-PerBWP-ForBeamReport": 0, + "simultaneousCSI-ReportsPerCC": 4 + }, + "csi-RS-ForTracking": { + "maxBurstLength": 2, + "maxSimultaneousResourceSetsPerCC": 1, + "maxConfiguredResourceSetsPerCC": 8, + "maxConfiguredResourceSetsAllCC": 32 + }, + "codebookParametersPerBand-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 6, + 7, + 8 + ], + "type2-r16": [ + 3 + ] + } + }, + "lowPAPR-DMRS-PDSCH-r16": "supported", + "lowPAPR-DMRS-PUSCHwithoutPrecoding-r16": "supported", + "lowPAPR-DMRS-PUCCH-r16": "supported", + "lowPAPR-DMRS-PUSCHwithPrecoding-r16": "supported", + "codebookParametersAddition-r16": { + "etype2-r16": { + "etype2R1-r16": { + "supportedCSI-RS-ResourceListAdd-r16": [ + 3 + ] + }, + "rank3-4-r16": "supported" + } + }, + "codebookComboParametersAddition-r16": { + "type1SP-Type2-null-r16": { + "supportedCSI-RS-ResourceListAdd-r16": [ + 10 + ] + }, + "type1SP-eType2R1-null-r16": { + "supportedCSI-RS-ResourceListAdd-r16": [ + 10 + ] + } + } + }, + "multipleTCI": "supported", + "bwp-SameNumerology": "upto2", + "pusch-256QAM": "supported", + "ue-PowerClass": "pc2", + "rateMatchingLTE-CRS": "supported", + "channelBWs-DL": { + "fr1": { + "scs-15kHz": "1111111100", + "scs-30kHz": "0000000000", + "scs-60kHz": "0000000000" + } + }, + "channelBWs-UL": { + "fr1": { + "scs-15kHz": "1111111100", + "scs-30kHz": "0000000000", + "scs-60kHz": "0000000000" + } + }, + "channelBWs-DL-v1590": { + "fr1": { + "scs-15kHz": "0110000000000000" + } + }, + "channelBWs-UL-v1590": { + "fr1": { + "scs-15kHz": "0110000000000000" + } + }, + "pdsch-MappingTypeB-Alt-r16": "supported", + "condHandover-r16": "supported", + "condHandoverTwoTriggerEvents-r16": "supported", + "trs-AdditionalBandwidth-r16": "trs-AddBW-Set1", + "type2-PUSCH-RepetitionMultiSlots-v1650": "supported", + "configuredUL-GrantType2-v1650": "supported", + "enhancedSkipUplinkTxConfigured-v1660": "supported", + "enhancedSkipUplinkTxDynamic-v1660": "supported", + "txDiversity-r16": "supported", + "pdsch-1024QAM-FR1-r17": "supported" + }, + { + "bandNR": 7, + "mimo-ParametersPerBand": { + "tci-StatePDSCH": { + "maxNumberConfiguredTCI-StatesPerCC": "n16", + "maxNumberActiveTCI-PerBWP": "n1" + }, + "pusch-TransCoherence": "nonCoherent", + "periodicBeamReport": "supported", + "aperiodicBeamReport": "supported", + "maxNumberNonGroupBeamReporting": "n4", + "maxNumberSSB-BFD": 2, + "maxNumberCSI-RS-SSB-CBD": 8, + "beamReportTiming": { + "scs-15kHz": "sym8" + }, + "beamManagementSSB-CSI-RS": { + "maxNumberSSB-CSI-RS-ResourceOneTx": "n16", + "maxNumberCSI-RS-Resource": "n64", + "maxNumberCSI-RS-ResourceTwoTx": "n0", + "supportedCSI-RS-Density": "oneAndThree", + "maxNumberAperiodicCSI-RS-Resource": "n32" + }, + "codebookParameters": { + "type1": { + "singlePanel": { + "supportedCSI-RS-ResourceList": [ + { + "maxNumberTxPortsPerResource": "p8", + "maxNumberResourcesPerBand": 12, + "totalNumberTxPortsPerBand": 96 + } + ], + "modes": "mode1", + "maxNumberCSI-RS-PerResourceSet": 4 + } + }, + "type2": { + "supportedCSI-RS-ResourceList": [ + { + "maxNumberTxPortsPerResource": "p32", + "maxNumberResourcesPerBand": 1, + "totalNumberTxPortsPerBand": 32 + } + ], + "parameterLx": 4, + "amplitudeScalingType": "widebandAndSubband" + } + }, + "csi-RS-IM-ReceptionForFeedback": { + "maxConfigNumberNZP-CSI-RS-PerCC": 8, + "maxConfigNumberPortsAcrossNZP-CSI-RS-PerCC": 64, + "maxConfigNumberCSI-IM-PerCC": "n8", + "maxNumberSimultaneousNZP-CSI-RS-PerCC": 4, + "totalNumberPortsSimultaneousNZP-CSI-RS-PerCC": 64 + }, + "csi-ReportFramework": { + "maxNumberPeriodicCSI-PerBWP-ForCSI-Report": 2, + "maxNumberAperiodicCSI-PerBWP-ForCSI-Report": 2, + "maxNumberSemiPersistentCSI-PerBWP-ForCSI-Report": 0, + "maxNumberPeriodicCSI-PerBWP-ForBeamReport": 2, + "maxNumberAperiodicCSI-PerBWP-ForBeamReport": 2, + "maxNumberAperiodicCSI-triggeringStatePerCC": "n63", + "maxNumberSemiPersistentCSI-PerBWP-ForBeamReport": 0, + "simultaneousCSI-ReportsPerCC": 4 + }, + "csi-RS-ForTracking": { + "maxBurstLength": 2, + "maxSimultaneousResourceSetsPerCC": 1, + "maxConfiguredResourceSetsPerCC": 8, + "maxConfiguredResourceSetsAllCC": 32 + }, + "codebookParametersPerBand-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 6, + 7, + 8 + ], + "type2-r16": [ + 3 + ] + } + }, + "lowPAPR-DMRS-PDSCH-r16": "supported", + "lowPAPR-DMRS-PUSCHwithoutPrecoding-r16": "supported", + "lowPAPR-DMRS-PUCCH-r16": "supported", + "lowPAPR-DMRS-PUSCHwithPrecoding-r16": "supported", + "codebookParametersAddition-r16": { + "etype2-r16": { + "etype2R1-r16": { + "supportedCSI-RS-ResourceListAdd-r16": [ + 3 + ] + }, + "rank3-4-r16": "supported" + } + }, + "codebookComboParametersAddition-r16": { + "type1SP-Type2-null-r16": { + "supportedCSI-RS-ResourceListAdd-r16": [ + 10 + ] + }, + "type1SP-eType2R1-null-r16": { + "supportedCSI-RS-ResourceListAdd-r16": [ + 10 + ] + } + } + }, + "multipleTCI": "supported", + "bwp-SameNumerology": "upto2", + "pusch-256QAM": "supported", + "ue-PowerClass": "pc2", + "rateMatchingLTE-CRS": "supported", + "channelBWs-DL": { + "fr1": { + "scs-15kHz": "1111111100", + "scs-30kHz": "0000000000", + "scs-60kHz": "0000000000" + } + }, + "channelBWs-UL": { + "fr1": { + "scs-15kHz": "1111111100", + "scs-30kHz": "0000000000", + "scs-60kHz": "0000000000" + } + }, + "channelBWs-DL-v1590": { + "fr1": { + "scs-15kHz": "0010000000000000" + } + }, + "channelBWs-UL-v1590": { + "fr1": { + "scs-15kHz": "0010000000000000" + } + }, + "pdsch-MappingTypeB-Alt-r16": "supported", + "condHandover-r16": "supported", + "condHandoverTwoTriggerEvents-r16": "supported", + "trs-AdditionalBandwidth-r16": "trs-AddBW-Set1", + "type2-PUSCH-RepetitionMultiSlots-v1650": "supported", + "configuredUL-GrantType2-v1650": "supported", + "enhancedSkipUplinkTxConfigured-v1660": "supported", + "enhancedSkipUplinkTxDynamic-v1660": "supported", + "txDiversity-r16": "supported", + "pdsch-1024QAM-FR1-r17": "supported" + }, + { + "bandNR": 5, + "mimo-ParametersPerBand": { + "tci-StatePDSCH": { + "maxNumberConfiguredTCI-StatesPerCC": "n16", + "maxNumberActiveTCI-PerBWP": "n1" + }, + "pusch-TransCoherence": "nonCoherent", + "periodicBeamReport": "supported", + "aperiodicBeamReport": "supported", + "maxNumberNonGroupBeamReporting": "n4", + "maxNumberSSB-BFD": 2, + "maxNumberCSI-RS-SSB-CBD": 8, + "beamReportTiming": { + "scs-15kHz": "sym8" + }, + "beamManagementSSB-CSI-RS": { + "maxNumberSSB-CSI-RS-ResourceOneTx": "n16", + "maxNumberCSI-RS-Resource": "n64", + "maxNumberCSI-RS-ResourceTwoTx": "n0", + "supportedCSI-RS-Density": "oneAndThree", + "maxNumberAperiodicCSI-RS-Resource": "n32" + }, + "codebookParameters": { + "type1": { + "singlePanel": { + "supportedCSI-RS-ResourceList": [ + { + "maxNumberTxPortsPerResource": "p8", + "maxNumberResourcesPerBand": 12, + "totalNumberTxPortsPerBand": 96 + } + ], + "modes": "mode1", + "maxNumberCSI-RS-PerResourceSet": 4 + } + }, + "type2": { + "supportedCSI-RS-ResourceList": [ + { + "maxNumberTxPortsPerResource": "p32", + "maxNumberResourcesPerBand": 1, + "totalNumberTxPortsPerBand": 32 + } + ], + "parameterLx": 4, + "amplitudeScalingType": "widebandAndSubband" + } + }, + "csi-RS-IM-ReceptionForFeedback": { + "maxConfigNumberNZP-CSI-RS-PerCC": 8, + "maxConfigNumberPortsAcrossNZP-CSI-RS-PerCC": 64, + "maxConfigNumberCSI-IM-PerCC": "n8", + "maxNumberSimultaneousNZP-CSI-RS-PerCC": 4, + "totalNumberPortsSimultaneousNZP-CSI-RS-PerCC": 64 + }, + "csi-ReportFramework": { + "maxNumberPeriodicCSI-PerBWP-ForCSI-Report": 2, + "maxNumberAperiodicCSI-PerBWP-ForCSI-Report": 2, + "maxNumberSemiPersistentCSI-PerBWP-ForCSI-Report": 0, + "maxNumberPeriodicCSI-PerBWP-ForBeamReport": 2, + "maxNumberAperiodicCSI-PerBWP-ForBeamReport": 2, + "maxNumberAperiodicCSI-triggeringStatePerCC": "n63", + "maxNumberSemiPersistentCSI-PerBWP-ForBeamReport": 0, + "simultaneousCSI-ReportsPerCC": 4 + }, + "csi-RS-ForTracking": { + "maxBurstLength": 2, + "maxSimultaneousResourceSetsPerCC": 1, + "maxConfiguredResourceSetsPerCC": 8, + "maxConfiguredResourceSetsAllCC": 32 + }, + "codebookParametersPerBand-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 6, + 7, + 8 + ], + "type2-r16": [ + 3 + ] + } + }, + "lowPAPR-DMRS-PDSCH-r16": "supported", + "lowPAPR-DMRS-PUSCHwithoutPrecoding-r16": "supported", + "lowPAPR-DMRS-PUCCH-r16": "supported", + "lowPAPR-DMRS-PUSCHwithPrecoding-r16": "supported", + "codebookParametersAddition-r16": { + "etype2-r16": { + "etype2R1-r16": { + "supportedCSI-RS-ResourceListAdd-r16": [ + 3 + ] + }, + "rank3-4-r16": "supported" + } + }, + "codebookComboParametersAddition-r16": { + "type1SP-Type2-null-r16": { + "supportedCSI-RS-ResourceListAdd-r16": [ + 10 + ] + }, + "type1SP-eType2R1-null-r16": { + "supportedCSI-RS-ResourceListAdd-r16": [ + 10 + ] + } + } + }, + "multipleTCI": "supported", + "bwp-SameNumerology": "upto2", + "pusch-256QAM": "supported", + "ue-PowerClass": "pc2", + "rateMatchingLTE-CRS": "supported", + "channelBWs-DL": { + "fr1": { + "scs-15kHz": "1111100000", + "scs-30kHz": "0000000000", + "scs-60kHz": "0000000000" + } + }, + "channelBWs-UL": { + "fr1": { + "scs-15kHz": "1111000000", + "scs-30kHz": "0000000000", + "scs-60kHz": "0000000000" + } + }, + "pdsch-MappingTypeB-Alt-r16": "supported", + "condHandover-r16": "supported", + "condHandoverTwoTriggerEvents-r16": "supported", + "trs-AdditionalBandwidth-r16": "trs-AddBW-Set1", + "type2-PUSCH-RepetitionMultiSlots-v1650": "supported", + "configuredUL-GrantType2-v1650": "supported", + "enhancedSkipUplinkTxConfigured-v1660": "supported", + "enhancedSkipUplinkTxDynamic-v1660": "supported", + "txDiversity-r16": "supported", + "pdsch-1024QAM-FR1-r17": "supported" + }, + { + "bandNR": 8, + "mimo-ParametersPerBand": { + "tci-StatePDSCH": { + "maxNumberConfiguredTCI-StatesPerCC": "n16", + "maxNumberActiveTCI-PerBWP": "n1" + }, + "pusch-TransCoherence": "nonCoherent", + "periodicBeamReport": "supported", + "aperiodicBeamReport": "supported", + "maxNumberNonGroupBeamReporting": "n4", + "maxNumberSSB-BFD": 2, + "maxNumberCSI-RS-SSB-CBD": 8, + "beamReportTiming": { + "scs-15kHz": "sym8" + }, + "beamManagementSSB-CSI-RS": { + "maxNumberSSB-CSI-RS-ResourceOneTx": "n16", + "maxNumberCSI-RS-Resource": "n64", + "maxNumberCSI-RS-ResourceTwoTx": "n0", + "supportedCSI-RS-Density": "oneAndThree", + "maxNumberAperiodicCSI-RS-Resource": "n32" + }, + "codebookParameters": { + "type1": { + "singlePanel": { + "supportedCSI-RS-ResourceList": [ + { + "maxNumberTxPortsPerResource": "p8", + "maxNumberResourcesPerBand": 12, + "totalNumberTxPortsPerBand": 96 + } + ], + "modes": "mode1", + "maxNumberCSI-RS-PerResourceSet": 4 + } + }, + "type2": { + "supportedCSI-RS-ResourceList": [ + { + "maxNumberTxPortsPerResource": "p32", + "maxNumberResourcesPerBand": 1, + "totalNumberTxPortsPerBand": 32 + } + ], + "parameterLx": 4, + "amplitudeScalingType": "widebandAndSubband" + } + }, + "csi-RS-IM-ReceptionForFeedback": { + "maxConfigNumberNZP-CSI-RS-PerCC": 8, + "maxConfigNumberPortsAcrossNZP-CSI-RS-PerCC": 64, + "maxConfigNumberCSI-IM-PerCC": "n8", + "maxNumberSimultaneousNZP-CSI-RS-PerCC": 4, + "totalNumberPortsSimultaneousNZP-CSI-RS-PerCC": 64 + }, + "csi-ReportFramework": { + "maxNumberPeriodicCSI-PerBWP-ForCSI-Report": 2, + "maxNumberAperiodicCSI-PerBWP-ForCSI-Report": 2, + "maxNumberSemiPersistentCSI-PerBWP-ForCSI-Report": 0, + "maxNumberPeriodicCSI-PerBWP-ForBeamReport": 2, + "maxNumberAperiodicCSI-PerBWP-ForBeamReport": 2, + "maxNumberAperiodicCSI-triggeringStatePerCC": "n63", + "maxNumberSemiPersistentCSI-PerBWP-ForBeamReport": 0, + "simultaneousCSI-ReportsPerCC": 4 + }, + "csi-RS-ForTracking": { + "maxBurstLength": 2, + "maxSimultaneousResourceSetsPerCC": 1, + "maxConfiguredResourceSetsPerCC": 8, + "maxConfiguredResourceSetsAllCC": 32 + }, + "codebookParametersPerBand-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 6, + 7, + 8 + ], + "type2-r16": [ + 3 + ] + } + }, + "lowPAPR-DMRS-PDSCH-r16": "supported", + "lowPAPR-DMRS-PUSCHwithoutPrecoding-r16": "supported", + "lowPAPR-DMRS-PUCCH-r16": "supported", + "lowPAPR-DMRS-PUSCHwithPrecoding-r16": "supported", + "codebookParametersAddition-r16": { + "etype2-r16": { + "etype2R1-r16": { + "supportedCSI-RS-ResourceListAdd-r16": [ + 3 + ] + }, + "rank3-4-r16": "supported" + } + }, + "codebookComboParametersAddition-r16": { + "type1SP-Type2-null-r16": { + "supportedCSI-RS-ResourceListAdd-r16": [ + 10 + ] + }, + "type1SP-eType2R1-null-r16": { + "supportedCSI-RS-ResourceListAdd-r16": [ + 10 + ] + } + } + }, + "multipleTCI": "supported", + "bwp-SameNumerology": "upto2", + "pusch-256QAM": "supported", + "ue-PowerClass": "pc3", + "rateMatchingLTE-CRS": "supported", + "channelBWs-DL": { + "fr1": { + "scs-15kHz": "1111100000", + "scs-30kHz": "0000000000", + "scs-60kHz": "0000000000" + } + }, + "channelBWs-UL": { + "fr1": { + "scs-15kHz": "1111000000", + "scs-30kHz": "0000000000", + "scs-60kHz": "0000000000" + } + }, + "channelBWs-DL-v1590": { + "fr1": { + "scs-15kHz": "0010000000000000" + } + }, + "pdsch-MappingTypeB-Alt-r16": "supported", + "condHandover-r16": "supported", + "condHandoverTwoTriggerEvents-r16": "supported", + "trs-AdditionalBandwidth-r16": "trs-AddBW-Set1", + "type2-PUSCH-RepetitionMultiSlots-v1650": "supported", + "configuredUL-GrantType2-v1650": "supported", + "enhancedSkipUplinkTxConfigured-v1660": "supported", + "enhancedSkipUplinkTxDynamic-v1660": "supported", + "pdsch-1024QAM-FR1-r17": "supported" + }, + { + "bandNR": 28, + "mimo-ParametersPerBand": { + "tci-StatePDSCH": { + "maxNumberConfiguredTCI-StatesPerCC": "n16", + "maxNumberActiveTCI-PerBWP": "n1" + }, + "pusch-TransCoherence": "nonCoherent", + "periodicBeamReport": "supported", + "aperiodicBeamReport": "supported", + "maxNumberNonGroupBeamReporting": "n4", + "maxNumberSSB-BFD": 2, + "maxNumberCSI-RS-SSB-CBD": 8, + "beamReportTiming": { + "scs-15kHz": "sym8" + }, + "beamManagementSSB-CSI-RS": { + "maxNumberSSB-CSI-RS-ResourceOneTx": "n16", + "maxNumberCSI-RS-Resource": "n64", + "maxNumberCSI-RS-ResourceTwoTx": "n0", + "supportedCSI-RS-Density": "oneAndThree", + "maxNumberAperiodicCSI-RS-Resource": "n32" + }, + "codebookParameters": { + "type1": { + "singlePanel": { + "supportedCSI-RS-ResourceList": [ + { + "maxNumberTxPortsPerResource": "p8", + "maxNumberResourcesPerBand": 12, + "totalNumberTxPortsPerBand": 96 + } + ], + "modes": "mode1", + "maxNumberCSI-RS-PerResourceSet": 4 + } + }, + "type2": { + "supportedCSI-RS-ResourceList": [ + { + "maxNumberTxPortsPerResource": "p32", + "maxNumberResourcesPerBand": 1, + "totalNumberTxPortsPerBand": 32 + } + ], + "parameterLx": 4, + "amplitudeScalingType": "widebandAndSubband" + } + }, + "csi-RS-IM-ReceptionForFeedback": { + "maxConfigNumberNZP-CSI-RS-PerCC": 8, + "maxConfigNumberPortsAcrossNZP-CSI-RS-PerCC": 64, + "maxConfigNumberCSI-IM-PerCC": "n8", + "maxNumberSimultaneousNZP-CSI-RS-PerCC": 4, + "totalNumberPortsSimultaneousNZP-CSI-RS-PerCC": 64 + }, + "csi-ReportFramework": { + "maxNumberPeriodicCSI-PerBWP-ForCSI-Report": 2, + "maxNumberAperiodicCSI-PerBWP-ForCSI-Report": 2, + "maxNumberSemiPersistentCSI-PerBWP-ForCSI-Report": 0, + "maxNumberPeriodicCSI-PerBWP-ForBeamReport": 2, + "maxNumberAperiodicCSI-PerBWP-ForBeamReport": 2, + "maxNumberAperiodicCSI-triggeringStatePerCC": "n63", + "maxNumberSemiPersistentCSI-PerBWP-ForBeamReport": 0, + "simultaneousCSI-ReportsPerCC": 4 + }, + "csi-RS-ForTracking": { + "maxBurstLength": 2, + "maxSimultaneousResourceSetsPerCC": 1, + "maxConfiguredResourceSetsPerCC": 8, + "maxConfiguredResourceSetsAllCC": 32 + }, + "codebookParametersPerBand-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 6, + 7, + 8 + ], + "type2-r16": [ + 3 + ] + } + }, + "lowPAPR-DMRS-PDSCH-r16": "supported", + "lowPAPR-DMRS-PUSCHwithoutPrecoding-r16": "supported", + "lowPAPR-DMRS-PUCCH-r16": "supported", + "lowPAPR-DMRS-PUSCHwithPrecoding-r16": "supported", + "codebookParametersAddition-r16": { + "etype2-r16": { + "etype2R1-r16": { + "supportedCSI-RS-ResourceListAdd-r16": [ + 3 + ] + }, + "rank3-4-r16": "supported" + } + }, + "codebookComboParametersAddition-r16": { + "type1SP-Type2-null-r16": { + "supportedCSI-RS-ResourceListAdd-r16": [ + 10 + ] + }, + "type1SP-eType2R1-null-r16": { + "supportedCSI-RS-ResourceListAdd-r16": [ + 10 + ] + } + } + }, + "multipleTCI": "supported", + "bwp-SameNumerology": "upto2", + "pusch-256QAM": "supported", + "ue-PowerClass": "pc2", + "rateMatchingLTE-CRS": "supported", + "channelBWs-DL": { + "fr1": { + "scs-15kHz": "1111110000", + "scs-30kHz": "0000000000", + "scs-60kHz": "0000000000" + } + }, + "channelBWs-UL": { + "fr1": { + "scs-15kHz": "1111110000", + "scs-30kHz": "0000000000", + "scs-60kHz": "0000000000" + } + }, + "pdsch-MappingTypeB-Alt-r16": "supported", + "condHandover-r16": "supported", + "condHandoverTwoTriggerEvents-r16": "supported", + "trs-AdditionalBandwidth-r16": "trs-AddBW-Set1", + "type2-PUSCH-RepetitionMultiSlots-v1650": "supported", + "configuredUL-GrantType2-v1650": "supported", + "enhancedSkipUplinkTxConfigured-v1660": "supported", + "enhancedSkipUplinkTxDynamic-v1660": "supported", + "txDiversity-r16": "supported", + "pdsch-1024QAM-FR1-r17": "supported" + }, + { + "bandNR": 26, + "mimo-ParametersPerBand": { + "tci-StatePDSCH": { + "maxNumberConfiguredTCI-StatesPerCC": "n16", + "maxNumberActiveTCI-PerBWP": "n1" + }, + "pusch-TransCoherence": "nonCoherent", + "periodicBeamReport": "supported", + "aperiodicBeamReport": "supported", + "maxNumberNonGroupBeamReporting": "n4", + "maxNumberSSB-BFD": 2, + "maxNumberCSI-RS-SSB-CBD": 8, + "beamReportTiming": { + "scs-15kHz": "sym8" + }, + "beamManagementSSB-CSI-RS": { + "maxNumberSSB-CSI-RS-ResourceOneTx": "n16", + "maxNumberCSI-RS-Resource": "n64", + "maxNumberCSI-RS-ResourceTwoTx": "n0", + "supportedCSI-RS-Density": "oneAndThree", + "maxNumberAperiodicCSI-RS-Resource": "n32" + }, + "codebookParameters": { + "type1": { + "singlePanel": { + "supportedCSI-RS-ResourceList": [ + { + "maxNumberTxPortsPerResource": "p8", + "maxNumberResourcesPerBand": 12, + "totalNumberTxPortsPerBand": 96 + } + ], + "modes": "mode1", + "maxNumberCSI-RS-PerResourceSet": 4 + } + }, + "type2": { + "supportedCSI-RS-ResourceList": [ + { + "maxNumberTxPortsPerResource": "p32", + "maxNumberResourcesPerBand": 1, + "totalNumberTxPortsPerBand": 32 + } + ], + "parameterLx": 4, + "amplitudeScalingType": "widebandAndSubband" + } + }, + "csi-RS-IM-ReceptionForFeedback": { + "maxConfigNumberNZP-CSI-RS-PerCC": 8, + "maxConfigNumberPortsAcrossNZP-CSI-RS-PerCC": 64, + "maxConfigNumberCSI-IM-PerCC": "n8", + "maxNumberSimultaneousNZP-CSI-RS-PerCC": 4, + "totalNumberPortsSimultaneousNZP-CSI-RS-PerCC": 64 + }, + "csi-ReportFramework": { + "maxNumberPeriodicCSI-PerBWP-ForCSI-Report": 2, + "maxNumberAperiodicCSI-PerBWP-ForCSI-Report": 2, + "maxNumberSemiPersistentCSI-PerBWP-ForCSI-Report": 0, + "maxNumberPeriodicCSI-PerBWP-ForBeamReport": 2, + "maxNumberAperiodicCSI-PerBWP-ForBeamReport": 2, + "maxNumberAperiodicCSI-triggeringStatePerCC": "n63", + "maxNumberSemiPersistentCSI-PerBWP-ForBeamReport": 0, + "simultaneousCSI-ReportsPerCC": 4 + }, + "csi-RS-ForTracking": { + "maxBurstLength": 2, + "maxSimultaneousResourceSetsPerCC": 1, + "maxConfiguredResourceSetsPerCC": 8, + "maxConfiguredResourceSetsAllCC": 32 + }, + "codebookParametersPerBand-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 6, + 7, + 8 + ], + "type2-r16": [ + 3 + ] + } + }, + "lowPAPR-DMRS-PDSCH-r16": "supported", + "lowPAPR-DMRS-PUSCHwithoutPrecoding-r16": "supported", + "lowPAPR-DMRS-PUCCH-r16": "supported", + "lowPAPR-DMRS-PUSCHwithPrecoding-r16": "supported", + "codebookParametersAddition-r16": { + "etype2-r16": { + "etype2R1-r16": { + "supportedCSI-RS-ResourceListAdd-r16": [ + 3 + ] + }, + "rank3-4-r16": "supported" + } + }, + "codebookComboParametersAddition-r16": { + "type1SP-Type2-null-r16": { + "supportedCSI-RS-ResourceListAdd-r16": [ + 10 + ] + }, + "type1SP-eType2R1-null-r16": { + "supportedCSI-RS-ResourceListAdd-r16": [ + 10 + ] + } + } + }, + "multipleTCI": "supported", + "bwp-SameNumerology": "upto2", + "pusch-256QAM": "supported", + "ue-PowerClass": "pc3", + "rateMatchingLTE-CRS": "supported", + "channelBWs-DL": { + "fr1": { + "scs-15kHz": "1111110000", + "scs-30kHz": "0000000000", + "scs-60kHz": "0000000000" + } + }, + "channelBWs-UL": { + "fr1": { + "scs-15kHz": "1111000000", + "scs-30kHz": "0000000000", + "scs-60kHz": "0000000000" + } + }, + "pdsch-MappingTypeB-Alt-r16": "supported", + "condHandover-r16": "supported", + "condHandoverTwoTriggerEvents-r16": "supported", + "trs-AdditionalBandwidth-r16": "trs-AddBW-Set1", + "type2-PUSCH-RepetitionMultiSlots-v1650": "supported", + "configuredUL-GrantType2-v1650": "supported", + "enhancedSkipUplinkTxConfigured-v1660": "supported", + "enhancedSkipUplinkTxDynamic-v1660": "supported", + "pdsch-1024QAM-FR1-r17": "supported" + }, + { + "bandNR": 20, + "mimo-ParametersPerBand": { + "tci-StatePDSCH": { + "maxNumberConfiguredTCI-StatesPerCC": "n16", + "maxNumberActiveTCI-PerBWP": "n1" + }, + "pusch-TransCoherence": "nonCoherent", + "periodicBeamReport": "supported", + "aperiodicBeamReport": "supported", + "maxNumberNonGroupBeamReporting": "n4", + "maxNumberSSB-BFD": 2, + "maxNumberCSI-RS-SSB-CBD": 8, + "beamReportTiming": { + "scs-15kHz": "sym8" + }, + "beamManagementSSB-CSI-RS": { + "maxNumberSSB-CSI-RS-ResourceOneTx": "n16", + "maxNumberCSI-RS-Resource": "n64", + "maxNumberCSI-RS-ResourceTwoTx": "n0", + "supportedCSI-RS-Density": "oneAndThree", + "maxNumberAperiodicCSI-RS-Resource": "n32" + }, + "codebookParameters": { + "type1": { + "singlePanel": { + "supportedCSI-RS-ResourceList": [ + { + "maxNumberTxPortsPerResource": "p8", + "maxNumberResourcesPerBand": 12, + "totalNumberTxPortsPerBand": 96 + } + ], + "modes": "mode1", + "maxNumberCSI-RS-PerResourceSet": 4 + } + }, + "type2": { + "supportedCSI-RS-ResourceList": [ + { + "maxNumberTxPortsPerResource": "p32", + "maxNumberResourcesPerBand": 1, + "totalNumberTxPortsPerBand": 32 + } + ], + "parameterLx": 4, + "amplitudeScalingType": "widebandAndSubband" + } + }, + "csi-RS-IM-ReceptionForFeedback": { + "maxConfigNumberNZP-CSI-RS-PerCC": 8, + "maxConfigNumberPortsAcrossNZP-CSI-RS-PerCC": 64, + "maxConfigNumberCSI-IM-PerCC": "n8", + "maxNumberSimultaneousNZP-CSI-RS-PerCC": 4, + "totalNumberPortsSimultaneousNZP-CSI-RS-PerCC": 64 + }, + "csi-ReportFramework": { + "maxNumberPeriodicCSI-PerBWP-ForCSI-Report": 2, + "maxNumberAperiodicCSI-PerBWP-ForCSI-Report": 2, + "maxNumberSemiPersistentCSI-PerBWP-ForCSI-Report": 0, + "maxNumberPeriodicCSI-PerBWP-ForBeamReport": 2, + "maxNumberAperiodicCSI-PerBWP-ForBeamReport": 2, + "maxNumberAperiodicCSI-triggeringStatePerCC": "n63", + "maxNumberSemiPersistentCSI-PerBWP-ForBeamReport": 0, + "simultaneousCSI-ReportsPerCC": 4 + }, + "csi-RS-ForTracking": { + "maxBurstLength": 2, + "maxSimultaneousResourceSetsPerCC": 1, + "maxConfiguredResourceSetsPerCC": 8, + "maxConfiguredResourceSetsAllCC": 32 + }, + "codebookParametersPerBand-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 6, + 7, + 8 + ], + "type2-r16": [ + 3 + ] + } + }, + "lowPAPR-DMRS-PDSCH-r16": "supported", + "lowPAPR-DMRS-PUSCHwithoutPrecoding-r16": "supported", + "lowPAPR-DMRS-PUCCH-r16": "supported", + "lowPAPR-DMRS-PUSCHwithPrecoding-r16": "supported", + "codebookParametersAddition-r16": { + "etype2-r16": { + "etype2R1-r16": { + "supportedCSI-RS-ResourceListAdd-r16": [ + 3 + ] + }, + "rank3-4-r16": "supported" + } + }, + "codebookComboParametersAddition-r16": { + "type1SP-Type2-null-r16": { + "supportedCSI-RS-ResourceListAdd-r16": [ + 10 + ] + }, + "type1SP-eType2R1-null-r16": { + "supportedCSI-RS-ResourceListAdd-r16": [ + 10 + ] + } + } + }, + "multipleTCI": "supported", + "bwp-SameNumerology": "upto2", + "pusch-256QAM": "supported", + "ue-PowerClass": "pc3", + "rateMatchingLTE-CRS": "supported", + "channelBWs-DL": { + "fr1": { + "scs-15kHz": "1111000000", + "scs-30kHz": "0000000000", + "scs-60kHz": "0000000000" + } + }, + "channelBWs-UL": { + "fr1": { + "scs-15kHz": "1111000000", + "scs-30kHz": "0000000000", + "scs-60kHz": "0000000000" + } + }, + "pdsch-MappingTypeB-Alt-r16": "supported", + "condHandover-r16": "supported", + "condHandoverTwoTriggerEvents-r16": "supported", + "trs-AdditionalBandwidth-r16": "trs-AddBW-Set1", + "type2-PUSCH-RepetitionMultiSlots-v1650": "supported", + "configuredUL-GrantType2-v1650": "supported", + "enhancedSkipUplinkTxConfigured-v1660": "supported", + "enhancedSkipUplinkTxDynamic-v1660": "supported", + "pdsch-1024QAM-FR1-r17": "supported" + }, + { + "bandNR": 79, + "mimo-ParametersPerBand": { + "tci-StatePDSCH": { + "maxNumberConfiguredTCI-StatesPerCC": "n16", + "maxNumberActiveTCI-PerBWP": "n1" + }, + "pusch-TransCoherence": "nonCoherent", + "periodicBeamReport": "supported", + "aperiodicBeamReport": "supported", + "maxNumberNonGroupBeamReporting": "n4", + "maxNumberSSB-BFD": 2, + "maxNumberCSI-RS-SSB-CBD": 8, + "beamReportTiming": { + "scs-30kHz": "sym14" + }, + "beamManagementSSB-CSI-RS": { + "maxNumberSSB-CSI-RS-ResourceOneTx": "n16", + "maxNumberCSI-RS-Resource": "n64", + "maxNumberCSI-RS-ResourceTwoTx": "n0", + "supportedCSI-RS-Density": "oneAndThree", + "maxNumberAperiodicCSI-RS-Resource": "n32" + }, + "codebookParameters": { + "type1": { + "singlePanel": { + "supportedCSI-RS-ResourceList": [ + { + "maxNumberTxPortsPerResource": "p8", + "maxNumberResourcesPerBand": 12, + "totalNumberTxPortsPerBand": 96 + }, + { + "maxNumberTxPortsPerResource": "p16", + "maxNumberResourcesPerBand": 6, + "totalNumberTxPortsPerBand": 96 + }, + { + "maxNumberTxPortsPerResource": "p32", + "maxNumberResourcesPerBand": 3, + "totalNumberTxPortsPerBand": 96 + } + ], + "modes": "mode1", + "maxNumberCSI-RS-PerResourceSet": 4 + } + } + }, + "csi-RS-IM-ReceptionForFeedback": { + "maxConfigNumberNZP-CSI-RS-PerCC": 8, + "maxConfigNumberPortsAcrossNZP-CSI-RS-PerCC": 64, + "maxConfigNumberCSI-IM-PerCC": "n8", + "maxNumberSimultaneousNZP-CSI-RS-PerCC": 4, + "totalNumberPortsSimultaneousNZP-CSI-RS-PerCC": 32 + }, + "csi-ReportFramework": { + "maxNumberPeriodicCSI-PerBWP-ForCSI-Report": 2, + "maxNumberAperiodicCSI-PerBWP-ForCSI-Report": 2, + "maxNumberSemiPersistentCSI-PerBWP-ForCSI-Report": 0, + "maxNumberPeriodicCSI-PerBWP-ForBeamReport": 2, + "maxNumberAperiodicCSI-PerBWP-ForBeamReport": 2, + "maxNumberAperiodicCSI-triggeringStatePerCC": "n63", + "maxNumberSemiPersistentCSI-PerBWP-ForBeamReport": 0, + "simultaneousCSI-ReportsPerCC": 4 + }, + "csi-RS-ForTracking": { + "maxBurstLength": 2, + "maxSimultaneousResourceSetsPerCC": 1, + "maxConfiguredResourceSetsPerCC": 8, + "maxConfiguredResourceSetsAllCC": 32 + }, + "codebookParametersPerBand-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 6, + 7, + 8 + ] + } + }, + "lowPAPR-DMRS-PDSCH-r16": "supported", + "lowPAPR-DMRS-PUSCHwithoutPrecoding-r16": "supported", + "lowPAPR-DMRS-PUCCH-r16": "supported", + "lowPAPR-DMRS-PUSCHwithPrecoding-r16": "supported" + }, + "multipleTCI": "supported", + "bwp-SameNumerology": "upto2", + "pusch-256QAM": "supported", + "ue-PowerClass": "pc2", + "channelBWs-DL": { + "fr1": { + "scs-15kHz": "0000000000", + "scs-30kHz": "0101011111", + "scs-60kHz": "0000000000" + } + }, + "channelBWs-UL": { + "fr1": { + "scs-15kHz": "0000000000", + "scs-30kHz": "0101011111", + "scs-60kHz": "0000000000" + } + }, + "channelBWs-DL-v1590": { + "fr1": { + "scs-30kHz": "1000000000000000" + } + }, + "channelBWs-UL-v1590": { + "fr1": { + "scs-30kHz": "1000000000000000" + } + }, + "ue-PowerClass-v1610": "pc1dot5", + "condHandover-r16": "supported", + "condHandoverTwoTriggerEvents-r16": "supported", + "type2-PUSCH-RepetitionMultiSlots-v1650": "supported", + "configuredUL-GrantType2-v1650": "supported", + "enhancedSkipUplinkTxConfigured-v1660": "supported", + "enhancedSkipUplinkTxDynamic-v1660": "supported", + "txDiversity-r16": "supported", + "pdsch-1024QAM-FR1-r17": "supported", + "pdcch-SkippingWithoutSSSG-r17": "supported" + }, + { + "bandNR": 40, + "mimo-ParametersPerBand": { + "tci-StatePDSCH": { + "maxNumberConfiguredTCI-StatesPerCC": "n16", + "maxNumberActiveTCI-PerBWP": "n1" + }, + "pusch-TransCoherence": "nonCoherent", + "periodicBeamReport": "supported", + "aperiodicBeamReport": "supported", + "maxNumberNonGroupBeamReporting": "n4", + "maxNumberSSB-BFD": 2, + "maxNumberCSI-RS-SSB-CBD": 8, + "beamReportTiming": { + "scs-30kHz": "sym14" + }, + "beamManagementSSB-CSI-RS": { + "maxNumberSSB-CSI-RS-ResourceOneTx": "n16", + "maxNumberCSI-RS-Resource": "n64", + "maxNumberCSI-RS-ResourceTwoTx": "n0", + "supportedCSI-RS-Density": "oneAndThree", + "maxNumberAperiodicCSI-RS-Resource": "n32" + }, + "codebookParameters": { + "type1": { + "singlePanel": { + "supportedCSI-RS-ResourceList": [ + { + "maxNumberTxPortsPerResource": "p8", + "maxNumberResourcesPerBand": 12, + "totalNumberTxPortsPerBand": 96 + }, + { + "maxNumberTxPortsPerResource": "p16", + "maxNumberResourcesPerBand": 6, + "totalNumberTxPortsPerBand": 96 + }, + { + "maxNumberTxPortsPerResource": "p32", + "maxNumberResourcesPerBand": 3, + "totalNumberTxPortsPerBand": 96 + } + ], + "modes": "mode1", + "maxNumberCSI-RS-PerResourceSet": 4 + } + } + }, + "csi-RS-IM-ReceptionForFeedback": { + "maxConfigNumberNZP-CSI-RS-PerCC": 8, + "maxConfigNumberPortsAcrossNZP-CSI-RS-PerCC": 64, + "maxConfigNumberCSI-IM-PerCC": "n8", + "maxNumberSimultaneousNZP-CSI-RS-PerCC": 4, + "totalNumberPortsSimultaneousNZP-CSI-RS-PerCC": 32 + }, + "csi-ReportFramework": { + "maxNumberPeriodicCSI-PerBWP-ForCSI-Report": 2, + "maxNumberAperiodicCSI-PerBWP-ForCSI-Report": 2, + "maxNumberSemiPersistentCSI-PerBWP-ForCSI-Report": 0, + "maxNumberPeriodicCSI-PerBWP-ForBeamReport": 2, + "maxNumberAperiodicCSI-PerBWP-ForBeamReport": 2, + "maxNumberAperiodicCSI-triggeringStatePerCC": "n63", + "maxNumberSemiPersistentCSI-PerBWP-ForBeamReport": 0, + "simultaneousCSI-ReportsPerCC": 4 + }, + "csi-RS-ForTracking": { + "maxBurstLength": 2, + "maxSimultaneousResourceSetsPerCC": 1, + "maxConfiguredResourceSetsPerCC": 8, + "maxConfiguredResourceSetsAllCC": 32 + }, + "codebookParametersPerBand-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 6, + 7, + 8 + ] + } + }, + "lowPAPR-DMRS-PDSCH-r16": "supported", + "lowPAPR-DMRS-PUSCHwithoutPrecoding-r16": "supported", + "lowPAPR-DMRS-PUCCH-r16": "supported", + "lowPAPR-DMRS-PUSCHwithPrecoding-r16": "supported" + }, + "multipleTCI": "supported", + "bwp-SameNumerology": "upto2", + "pusch-256QAM": "supported", + "ue-PowerClass": "pc2", + "channelBWs-DL": { + "fr1": { + "scs-15kHz": "0000000000", + "scs-30kHz": "0111111111", + "scs-60kHz": "0000000000" + } + }, + "channelBWs-UL": { + "fr1": { + "scs-15kHz": "0000000000", + "scs-30kHz": "0111111111", + "scs-60kHz": "0000000000" + } + }, + "channelBWs-DL-v1590": { + "fr1": { + "scs-30kHz": "1001000000000000" + } + }, + "channelBWs-UL-v1590": { + "fr1": { + "scs-30kHz": "1001000000000000" + } + }, + "ue-PowerClass-v1610": "pc1dot5", + "condHandover-r16": "supported", + "condHandoverTwoTriggerEvents-r16": "supported", + "type2-PUSCH-RepetitionMultiSlots-v1650": "supported", + "configuredUL-GrantType2-v1650": "supported", + "enhancedSkipUplinkTxConfigured-v1660": "supported", + "enhancedSkipUplinkTxDynamic-v1660": "supported", + "txDiversity-r16": "supported", + "pdsch-1024QAM-FR1-r17": "supported", + "pdcch-SkippingWithoutSSSG-r17": "supported" + }, + { + "bandNR": 75, + "mimo-ParametersPerBand": { + "tci-StatePDSCH": { + "maxNumberConfiguredTCI-StatesPerCC": "n16", + "maxNumberActiveTCI-PerBWP": "n1" + }, + "maxNumberSSB-BFD": 2, + "maxNumberCSI-RS-SSB-CBD": 8, + "beamManagementSSB-CSI-RS": { + "maxNumberSSB-CSI-RS-ResourceOneTx": "n16", + "maxNumberCSI-RS-Resource": "n64", + "maxNumberCSI-RS-ResourceTwoTx": "n0", + "supportedCSI-RS-Density": "oneAndThree", + "maxNumberAperiodicCSI-RS-Resource": "n32" + }, + "codebookParameters": { + "type1": { + "singlePanel": { + "supportedCSI-RS-ResourceList": [ + { + "maxNumberTxPortsPerResource": "p8", + "maxNumberResourcesPerBand": 12, + "totalNumberTxPortsPerBand": 96 + } + ], + "modes": "mode1", + "maxNumberCSI-RS-PerResourceSet": 4 + } + }, + "type2": { + "supportedCSI-RS-ResourceList": [ + { + "maxNumberTxPortsPerResource": "p32", + "maxNumberResourcesPerBand": 1, + "totalNumberTxPortsPerBand": 32 + } + ], + "parameterLx": 4, + "amplitudeScalingType": "widebandAndSubband" + } + }, + "csi-RS-IM-ReceptionForFeedback": { + "maxConfigNumberNZP-CSI-RS-PerCC": 8, + "maxConfigNumberPortsAcrossNZP-CSI-RS-PerCC": 64, + "maxConfigNumberCSI-IM-PerCC": "n8", + "maxNumberSimultaneousNZP-CSI-RS-PerCC": 4, + "totalNumberPortsSimultaneousNZP-CSI-RS-PerCC": 64 + }, + "csi-RS-ForTracking": { + "maxBurstLength": 2, + "maxSimultaneousResourceSetsPerCC": 1, + "maxConfiguredResourceSetsPerCC": 8, + "maxConfiguredResourceSetsAllCC": 32 + }, + "codebookParametersPerBand-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 6, + 7, + 8 + ], + "type2-r16": [ + 3 + ] + } + }, + "lowPAPR-DMRS-PDSCH-r16": "supported", + "codebookParametersAddition-r16": { + "etype2-r16": { + "etype2R1-r16": { + "supportedCSI-RS-ResourceListAdd-r16": [ + 3 + ] + }, + "rank3-4-r16": "supported" + } + }, + "codebookComboParametersAddition-r16": { + "type1SP-Type2-null-r16": { + "supportedCSI-RS-ResourceListAdd-r16": [ + 10 + ] + }, + "type1SP-eType2R1-null-r16": { + "supportedCSI-RS-ResourceListAdd-r16": [ + 10 + ] + } + } + }, + "multipleTCI": "supported", + "bwp-SameNumerology": "upto2", + "channelBWs-DL": { + "fr1": { + "scs-15kHz": "1111111100", + "scs-30kHz": "0000000000", + "scs-60kHz": "0000000000" + } + }, + "pdsch-MappingTypeB-Alt-r16": "supported", + "pdsch-1024QAM-FR1-r17": "supported" + }, + { + "bandNR": 80, + "mimo-ParametersPerBand": { + "pusch-TransCoherence": "nonCoherent", + "periodicBeamReport": "supported", + "aperiodicBeamReport": "supported", + "maxNumberNonGroupBeamReporting": "n4", + "maxNumberSSB-BFD": 2, + "maxNumberCSI-RS-SSB-CBD": 8, + "beamReportTiming": { + "scs-15kHz": "sym8" + }, + "beamManagementSSB-CSI-RS": { + "maxNumberSSB-CSI-RS-ResourceOneTx": "n16", + "maxNumberCSI-RS-Resource": "n64", + "maxNumberCSI-RS-ResourceTwoTx": "n0", + "supportedCSI-RS-Density": "oneAndThree", + "maxNumberAperiodicCSI-RS-Resource": "n32" + }, + "codebookParameters": { + "type1": { + "singlePanel": { + "supportedCSI-RS-ResourceList": [ + { + "maxNumberTxPortsPerResource": "p8", + "maxNumberResourcesPerBand": 12, + "totalNumberTxPortsPerBand": 96 + } + ], + "modes": "mode1", + "maxNumberCSI-RS-PerResourceSet": 4 + } + }, + "type2": { + "supportedCSI-RS-ResourceList": [ + { + "maxNumberTxPortsPerResource": "p32", + "maxNumberResourcesPerBand": 1, + "totalNumberTxPortsPerBand": 32 + } + ], + "parameterLx": 4, + "amplitudeScalingType": "widebandAndSubband" + } + }, + "csi-RS-IM-ReceptionForFeedback": { + "maxConfigNumberNZP-CSI-RS-PerCC": 8, + "maxConfigNumberPortsAcrossNZP-CSI-RS-PerCC": 64, + "maxConfigNumberCSI-IM-PerCC": "n8", + "maxNumberSimultaneousNZP-CSI-RS-PerCC": 4, + "totalNumberPortsSimultaneousNZP-CSI-RS-PerCC": 64 + }, + "csi-ReportFramework": { + "maxNumberPeriodicCSI-PerBWP-ForCSI-Report": 2, + "maxNumberAperiodicCSI-PerBWP-ForCSI-Report": 2, + "maxNumberSemiPersistentCSI-PerBWP-ForCSI-Report": 0, + "maxNumberPeriodicCSI-PerBWP-ForBeamReport": 2, + "maxNumberAperiodicCSI-PerBWP-ForBeamReport": 2, + "maxNumberAperiodicCSI-triggeringStatePerCC": "n63", + "maxNumberSemiPersistentCSI-PerBWP-ForBeamReport": 0, + "simultaneousCSI-ReportsPerCC": 4 + }, + "csi-RS-ForTracking": { + "maxBurstLength": 2, + "maxSimultaneousResourceSetsPerCC": 1, + "maxConfiguredResourceSetsPerCC": 8, + "maxConfiguredResourceSetsAllCC": 32 + }, + "codebookParametersPerBand-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 6, + 7, + 8 + ], + "type2-r16": [ + 3 + ] + } + }, + "lowPAPR-DMRS-PDSCH-r16": "supported", + "lowPAPR-DMRS-PUSCHwithoutPrecoding-r16": "supported", + "lowPAPR-DMRS-PUCCH-r16": "supported", + "lowPAPR-DMRS-PUSCHwithPrecoding-r16": "supported", + "codebookParametersAddition-r16": { + "etype2-r16": { + "etype2R1-r16": { + "supportedCSI-RS-ResourceListAdd-r16": [ + 3 + ] + }, + "rank3-4-r16": "supported" + } + }, + "codebookComboParametersAddition-r16": { + "type1SP-Type2-null-r16": { + "supportedCSI-RS-ResourceListAdd-r16": [ + 10 + ] + }, + "type1SP-eType2R1-null-r16": { + "supportedCSI-RS-ResourceListAdd-r16": [ + 10 + ] + } + } + }, + "multipleTCI": "supported", + "bwp-SameNumerology": "upto2", + "pusch-256QAM": "supported", + "ue-PowerClass": "pc3", + "channelBWs-UL": { + "fr1": { + "scs-15kHz": "1111111000", + "scs-30kHz": "0000000000", + "scs-60kHz": "0000000000" + } + }, + "condHandover-r16": "supported", + "condHandoverTwoTriggerEvents-r16": "supported", + "type2-PUSCH-RepetitionMultiSlots-v1650": "supported", + "configuredUL-GrantType2-v1650": "supported", + "enhancedSkipUplinkTxConfigured-v1660": "supported", + "enhancedSkipUplinkTxDynamic-v1660": "supported", + "pdsch-1024QAM-FR1-r17": "supported" + }, + { + "bandNR": 81, + "mimo-ParametersPerBand": { + "pusch-TransCoherence": "nonCoherent", + "periodicBeamReport": "supported", + "aperiodicBeamReport": "supported", + "maxNumberNonGroupBeamReporting": "n4", + "maxNumberSSB-BFD": 2, + "maxNumberCSI-RS-SSB-CBD": 8, + "beamReportTiming": { + "scs-15kHz": "sym8" + }, + "beamManagementSSB-CSI-RS": { + "maxNumberSSB-CSI-RS-ResourceOneTx": "n16", + "maxNumberCSI-RS-Resource": "n64", + "maxNumberCSI-RS-ResourceTwoTx": "n0", + "supportedCSI-RS-Density": "oneAndThree", + "maxNumberAperiodicCSI-RS-Resource": "n32" + }, + "codebookParameters": { + "type1": { + "singlePanel": { + "supportedCSI-RS-ResourceList": [ + { + "maxNumberTxPortsPerResource": "p8", + "maxNumberResourcesPerBand": 12, + "totalNumberTxPortsPerBand": 96 + } + ], + "modes": "mode1", + "maxNumberCSI-RS-PerResourceSet": 4 + } + }, + "type2": { + "supportedCSI-RS-ResourceList": [ + { + "maxNumberTxPortsPerResource": "p32", + "maxNumberResourcesPerBand": 1, + "totalNumberTxPortsPerBand": 32 + } + ], + "parameterLx": 4, + "amplitudeScalingType": "widebandAndSubband" + } + }, + "csi-RS-IM-ReceptionForFeedback": { + "maxConfigNumberNZP-CSI-RS-PerCC": 8, + "maxConfigNumberPortsAcrossNZP-CSI-RS-PerCC": 64, + "maxConfigNumberCSI-IM-PerCC": "n8", + "maxNumberSimultaneousNZP-CSI-RS-PerCC": 4, + "totalNumberPortsSimultaneousNZP-CSI-RS-PerCC": 64 + }, + "csi-ReportFramework": { + "maxNumberPeriodicCSI-PerBWP-ForCSI-Report": 2, + "maxNumberAperiodicCSI-PerBWP-ForCSI-Report": 2, + "maxNumberSemiPersistentCSI-PerBWP-ForCSI-Report": 0, + "maxNumberPeriodicCSI-PerBWP-ForBeamReport": 2, + "maxNumberAperiodicCSI-PerBWP-ForBeamReport": 2, + "maxNumberAperiodicCSI-triggeringStatePerCC": "n63", + "maxNumberSemiPersistentCSI-PerBWP-ForBeamReport": 0, + "simultaneousCSI-ReportsPerCC": 4 + }, + "csi-RS-ForTracking": { + "maxBurstLength": 2, + "maxSimultaneousResourceSetsPerCC": 1, + "maxConfiguredResourceSetsPerCC": 8, + "maxConfiguredResourceSetsAllCC": 32 + }, + "codebookParametersPerBand-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 6, + 7, + 8 + ], + "type2-r16": [ + 3 + ] + } + }, + "lowPAPR-DMRS-PDSCH-r16": "supported", + "lowPAPR-DMRS-PUSCHwithoutPrecoding-r16": "supported", + "lowPAPR-DMRS-PUCCH-r16": "supported", + "lowPAPR-DMRS-PUSCHwithPrecoding-r16": "supported", + "codebookParametersAddition-r16": { + "etype2-r16": { + "etype2R1-r16": { + "supportedCSI-RS-ResourceListAdd-r16": [ + 3 + ] + }, + "rank3-4-r16": "supported" + } + }, + "codebookComboParametersAddition-r16": { + "type1SP-Type2-null-r16": { + "supportedCSI-RS-ResourceListAdd-r16": [ + 10 + ] + }, + "type1SP-eType2R1-null-r16": { + "supportedCSI-RS-ResourceListAdd-r16": [ + 10 + ] + } + } + }, + "multipleTCI": "supported", + "bwp-SameNumerology": "upto2", + "pusch-256QAM": "supported", + "ue-PowerClass": "pc3", + "channelBWs-UL": { + "fr1": { + "scs-15kHz": "1111000000", + "scs-30kHz": "0000000000", + "scs-60kHz": "0000000000" + } + }, + "condHandover-r16": "supported", + "condHandoverTwoTriggerEvents-r16": "supported", + "type2-PUSCH-RepetitionMultiSlots-v1650": "supported", + "configuredUL-GrantType2-v1650": "supported", + "enhancedSkipUplinkTxConfigured-v1660": "supported", + "enhancedSkipUplinkTxDynamic-v1660": "supported", + "pdsch-1024QAM-FR1-r17": "supported" + }, + { + "bandNR": 84, + "mimo-ParametersPerBand": { + "pusch-TransCoherence": "nonCoherent", + "periodicBeamReport": "supported", + "aperiodicBeamReport": "supported", + "maxNumberNonGroupBeamReporting": "n4", + "maxNumberSSB-BFD": 2, + "maxNumberCSI-RS-SSB-CBD": 8, + "beamReportTiming": { + "scs-15kHz": "sym8" + }, + "beamManagementSSB-CSI-RS": { + "maxNumberSSB-CSI-RS-ResourceOneTx": "n16", + "maxNumberCSI-RS-Resource": "n64", + "maxNumberCSI-RS-ResourceTwoTx": "n0", + "supportedCSI-RS-Density": "oneAndThree", + "maxNumberAperiodicCSI-RS-Resource": "n32" + }, + "codebookParameters": { + "type1": { + "singlePanel": { + "supportedCSI-RS-ResourceList": [ + { + "maxNumberTxPortsPerResource": "p8", + "maxNumberResourcesPerBand": 12, + "totalNumberTxPortsPerBand": 96 + } + ], + "modes": "mode1", + "maxNumberCSI-RS-PerResourceSet": 4 + } + }, + "type2": { + "supportedCSI-RS-ResourceList": [ + { + "maxNumberTxPortsPerResource": "p32", + "maxNumberResourcesPerBand": 1, + "totalNumberTxPortsPerBand": 32 + } + ], + "parameterLx": 4, + "amplitudeScalingType": "widebandAndSubband" + } + }, + "csi-RS-IM-ReceptionForFeedback": { + "maxConfigNumberNZP-CSI-RS-PerCC": 8, + "maxConfigNumberPortsAcrossNZP-CSI-RS-PerCC": 64, + "maxConfigNumberCSI-IM-PerCC": "n8", + "maxNumberSimultaneousNZP-CSI-RS-PerCC": 4, + "totalNumberPortsSimultaneousNZP-CSI-RS-PerCC": 64 + }, + "csi-ReportFramework": { + "maxNumberPeriodicCSI-PerBWP-ForCSI-Report": 2, + "maxNumberAperiodicCSI-PerBWP-ForCSI-Report": 2, + "maxNumberSemiPersistentCSI-PerBWP-ForCSI-Report": 0, + "maxNumberPeriodicCSI-PerBWP-ForBeamReport": 2, + "maxNumberAperiodicCSI-PerBWP-ForBeamReport": 2, + "maxNumberAperiodicCSI-triggeringStatePerCC": "n63", + "maxNumberSemiPersistentCSI-PerBWP-ForBeamReport": 0, + "simultaneousCSI-ReportsPerCC": 4 + }, + "csi-RS-ForTracking": { + "maxBurstLength": 2, + "maxSimultaneousResourceSetsPerCC": 1, + "maxConfiguredResourceSetsPerCC": 8, + "maxConfiguredResourceSetsAllCC": 32 + }, + "codebookParametersPerBand-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 6, + 7, + 8 + ], + "type2-r16": [ + 3 + ] + } + }, + "lowPAPR-DMRS-PDSCH-r16": "supported", + "lowPAPR-DMRS-PUSCHwithoutPrecoding-r16": "supported", + "lowPAPR-DMRS-PUCCH-r16": "supported", + "lowPAPR-DMRS-PUSCHwithPrecoding-r16": "supported", + "codebookParametersAddition-r16": { + "etype2-r16": { + "etype2R1-r16": { + "supportedCSI-RS-ResourceListAdd-r16": [ + 3 + ] + }, + "rank3-4-r16": "supported" + } + }, + "codebookComboParametersAddition-r16": { + "type1SP-Type2-null-r16": { + "supportedCSI-RS-ResourceListAdd-r16": [ + 10 + ] + }, + "type1SP-eType2R1-null-r16": { + "supportedCSI-RS-ResourceListAdd-r16": [ + 10 + ] + } + } + }, + "multipleTCI": "supported", + "bwp-SameNumerology": "upto2", + "pusch-256QAM": "supported", + "ue-PowerClass": "pc3", + "channelBWs-UL": { + "fr1": { + "scs-15kHz": "1111111100", + "scs-30kHz": "0000000000", + "scs-60kHz": "0000000000" + } + }, + "condHandover-r16": "supported", + "condHandoverTwoTriggerEvents-r16": "supported", + "type2-PUSCH-RepetitionMultiSlots-v1650": "supported", + "configuredUL-GrantType2-v1650": "supported", + "enhancedSkipUplinkTxConfigured-v1660": "supported", + "enhancedSkipUplinkTxDynamic-v1660": "supported", + "pdsch-1024QAM-FR1-r17": "supported" + }, + { + "bandNR": 12, + "mimo-ParametersPerBand": { + "tci-StatePDSCH": { + "maxNumberConfiguredTCI-StatesPerCC": "n16", + "maxNumberActiveTCI-PerBWP": "n1" + }, + "pusch-TransCoherence": "nonCoherent", + "periodicBeamReport": "supported", + "aperiodicBeamReport": "supported", + "maxNumberNonGroupBeamReporting": "n4", + "maxNumberSSB-BFD": 2, + "maxNumberCSI-RS-SSB-CBD": 8, + "beamReportTiming": { + "scs-15kHz": "sym8" + }, + "beamManagementSSB-CSI-RS": { + "maxNumberSSB-CSI-RS-ResourceOneTx": "n16", + "maxNumberCSI-RS-Resource": "n64", + "maxNumberCSI-RS-ResourceTwoTx": "n0", + "supportedCSI-RS-Density": "oneAndThree", + "maxNumberAperiodicCSI-RS-Resource": "n32" + }, + "codebookParameters": { + "type1": { + "singlePanel": { + "supportedCSI-RS-ResourceList": [ + { + "maxNumberTxPortsPerResource": "p8", + "maxNumberResourcesPerBand": 12, + "totalNumberTxPortsPerBand": 96 + } + ], + "modes": "mode1", + "maxNumberCSI-RS-PerResourceSet": 4 + } + }, + "type2": { + "supportedCSI-RS-ResourceList": [ + { + "maxNumberTxPortsPerResource": "p32", + "maxNumberResourcesPerBand": 1, + "totalNumberTxPortsPerBand": 32 + } + ], + "parameterLx": 4, + "amplitudeScalingType": "widebandAndSubband" + } + }, + "csi-RS-IM-ReceptionForFeedback": { + "maxConfigNumberNZP-CSI-RS-PerCC": 8, + "maxConfigNumberPortsAcrossNZP-CSI-RS-PerCC": 64, + "maxConfigNumberCSI-IM-PerCC": "n8", + "maxNumberSimultaneousNZP-CSI-RS-PerCC": 4, + "totalNumberPortsSimultaneousNZP-CSI-RS-PerCC": 64 + }, + "csi-ReportFramework": { + "maxNumberPeriodicCSI-PerBWP-ForCSI-Report": 2, + "maxNumberAperiodicCSI-PerBWP-ForCSI-Report": 2, + "maxNumberSemiPersistentCSI-PerBWP-ForCSI-Report": 0, + "maxNumberPeriodicCSI-PerBWP-ForBeamReport": 2, + "maxNumberAperiodicCSI-PerBWP-ForBeamReport": 2, + "maxNumberAperiodicCSI-triggeringStatePerCC": "n63", + "maxNumberSemiPersistentCSI-PerBWP-ForBeamReport": 0, + "simultaneousCSI-ReportsPerCC": 4 + }, + "csi-RS-ForTracking": { + "maxBurstLength": 2, + "maxSimultaneousResourceSetsPerCC": 1, + "maxConfiguredResourceSetsPerCC": 8, + "maxConfiguredResourceSetsAllCC": 32 + }, + "codebookParametersPerBand-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 6, + 7, + 8 + ], + "type2-r16": [ + 3 + ] + } + }, + "lowPAPR-DMRS-PDSCH-r16": "supported", + "lowPAPR-DMRS-PUSCHwithoutPrecoding-r16": "supported", + "lowPAPR-DMRS-PUCCH-r16": "supported", + "lowPAPR-DMRS-PUSCHwithPrecoding-r16": "supported", + "codebookParametersAddition-r16": { + "etype2-r16": { + "etype2R1-r16": { + "supportedCSI-RS-ResourceListAdd-r16": [ + 3 + ] + }, + "rank3-4-r16": "supported" + } + }, + "codebookComboParametersAddition-r16": { + "type1SP-Type2-null-r16": { + "supportedCSI-RS-ResourceListAdd-r16": [ + 10 + ] + }, + "type1SP-eType2R1-null-r16": { + "supportedCSI-RS-ResourceListAdd-r16": [ + 10 + ] + } + } + }, + "multipleTCI": "supported", + "bwp-SameNumerology": "upto2", + "pusch-256QAM": "supported", + "ue-PowerClass": "pc3", + "rateMatchingLTE-CRS": "supported", + "channelBWs-DL": { + "fr1": { + "scs-15kHz": "1110000000", + "scs-30kHz": "0000000000", + "scs-60kHz": "0000000000" + } + }, + "channelBWs-UL": { + "fr1": { + "scs-15kHz": "1110000000", + "scs-30kHz": "0000000000", + "scs-60kHz": "0000000000" + } + }, + "pdsch-MappingTypeB-Alt-r16": "supported", + "condHandover-r16": "supported", + "condHandoverTwoTriggerEvents-r16": "supported", + "trs-AdditionalBandwidth-r16": "trs-AddBW-Set1", + "type2-PUSCH-RepetitionMultiSlots-v1650": "supported", + "configuredUL-GrantType2-v1650": "supported", + "enhancedSkipUplinkTxConfigured-v1660": "supported", + "enhancedSkipUplinkTxDynamic-v1660": "supported", + "pdsch-1024QAM-FR1-r17": "supported" + }, + { + "bandNR": 30, + "mimo-ParametersPerBand": { + "tci-StatePDSCH": { + "maxNumberConfiguredTCI-StatesPerCC": "n16", + "maxNumberActiveTCI-PerBWP": "n1" + }, + "pusch-TransCoherence": "nonCoherent", + "periodicBeamReport": "supported", + "aperiodicBeamReport": "supported", + "maxNumberNonGroupBeamReporting": "n4", + "maxNumberSSB-BFD": 2, + "maxNumberCSI-RS-SSB-CBD": 8, + "beamReportTiming": { + "scs-15kHz": "sym8" + }, + "beamManagementSSB-CSI-RS": { + "maxNumberSSB-CSI-RS-ResourceOneTx": "n16", + "maxNumberCSI-RS-Resource": "n64", + "maxNumberCSI-RS-ResourceTwoTx": "n0", + "supportedCSI-RS-Density": "oneAndThree", + "maxNumberAperiodicCSI-RS-Resource": "n32" + }, + "codebookParameters": { + "type1": { + "singlePanel": { + "supportedCSI-RS-ResourceList": [ + { + "maxNumberTxPortsPerResource": "p8", + "maxNumberResourcesPerBand": 12, + "totalNumberTxPortsPerBand": 96 + } + ], + "modes": "mode1", + "maxNumberCSI-RS-PerResourceSet": 4 + } + }, + "type2": { + "supportedCSI-RS-ResourceList": [ + { + "maxNumberTxPortsPerResource": "p32", + "maxNumberResourcesPerBand": 1, + "totalNumberTxPortsPerBand": 32 + } + ], + "parameterLx": 4, + "amplitudeScalingType": "widebandAndSubband" + } + }, + "csi-RS-IM-ReceptionForFeedback": { + "maxConfigNumberNZP-CSI-RS-PerCC": 8, + "maxConfigNumberPortsAcrossNZP-CSI-RS-PerCC": 64, + "maxConfigNumberCSI-IM-PerCC": "n8", + "maxNumberSimultaneousNZP-CSI-RS-PerCC": 4, + "totalNumberPortsSimultaneousNZP-CSI-RS-PerCC": 64 + }, + "csi-ReportFramework": { + "maxNumberPeriodicCSI-PerBWP-ForCSI-Report": 2, + "maxNumberAperiodicCSI-PerBWP-ForCSI-Report": 2, + "maxNumberSemiPersistentCSI-PerBWP-ForCSI-Report": 0, + "maxNumberPeriodicCSI-PerBWP-ForBeamReport": 2, + "maxNumberAperiodicCSI-PerBWP-ForBeamReport": 2, + "maxNumberAperiodicCSI-triggeringStatePerCC": "n63", + "maxNumberSemiPersistentCSI-PerBWP-ForBeamReport": 0, + "simultaneousCSI-ReportsPerCC": 4 + }, + "csi-RS-ForTracking": { + "maxBurstLength": 2, + "maxSimultaneousResourceSetsPerCC": 1, + "maxConfiguredResourceSetsPerCC": 8, + "maxConfiguredResourceSetsAllCC": 32 + }, + "codebookParametersPerBand-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 6, + 7, + 8 + ], + "type2-r16": [ + 3 + ] + } + }, + "lowPAPR-DMRS-PDSCH-r16": "supported", + "lowPAPR-DMRS-PUSCHwithoutPrecoding-r16": "supported", + "lowPAPR-DMRS-PUCCH-r16": "supported", + "lowPAPR-DMRS-PUSCHwithPrecoding-r16": "supported", + "codebookParametersAddition-r16": { + "etype2-r16": { + "etype2R1-r16": { + "supportedCSI-RS-ResourceListAdd-r16": [ + 3 + ] + }, + "rank3-4-r16": "supported" + } + }, + "codebookComboParametersAddition-r16": { + "type1SP-Type2-null-r16": { + "supportedCSI-RS-ResourceListAdd-r16": [ + 10 + ] + }, + "type1SP-eType2R1-null-r16": { + "supportedCSI-RS-ResourceListAdd-r16": [ + 10 + ] + } + } + }, + "multipleTCI": "supported", + "bwp-SameNumerology": "upto2", + "pusch-256QAM": "supported", + "ue-PowerClass": "pc3", + "rateMatchingLTE-CRS": "supported", + "channelBWs-DL": { + "fr1": { + "scs-15kHz": "1100000000", + "scs-30kHz": "0000000000", + "scs-60kHz": "0000000000" + } + }, + "channelBWs-UL": { + "fr1": { + "scs-15kHz": "1100000000", + "scs-30kHz": "0000000000", + "scs-60kHz": "0000000000" + } + }, + "pdsch-MappingTypeB-Alt-r16": "supported", + "condHandover-r16": "supported", + "condHandoverTwoTriggerEvents-r16": "supported", + "trs-AdditionalBandwidth-r16": "trs-AddBW-Set1", + "type2-PUSCH-RepetitionMultiSlots-v1650": "supported", + "configuredUL-GrantType2-v1650": "supported", + "enhancedSkipUplinkTxConfigured-v1660": "supported", + "enhancedSkipUplinkTxDynamic-v1660": "supported", + "pdsch-1024QAM-FR1-r17": "supported" + }, + { + "bandNR": 66, + "mimo-ParametersPerBand": { + "tci-StatePDSCH": { + "maxNumberConfiguredTCI-StatesPerCC": "n16", + "maxNumberActiveTCI-PerBWP": "n1" + }, + "pusch-TransCoherence": "nonCoherent", + "periodicBeamReport": "supported", + "aperiodicBeamReport": "supported", + "maxNumberNonGroupBeamReporting": "n4", + "maxNumberSSB-BFD": 2, + "maxNumberCSI-RS-SSB-CBD": 8, + "beamReportTiming": { + "scs-15kHz": "sym8" + }, + "beamManagementSSB-CSI-RS": { + "maxNumberSSB-CSI-RS-ResourceOneTx": "n16", + "maxNumberCSI-RS-Resource": "n64", + "maxNumberCSI-RS-ResourceTwoTx": "n0", + "supportedCSI-RS-Density": "oneAndThree", + "maxNumberAperiodicCSI-RS-Resource": "n32" + }, + "codebookParameters": { + "type1": { + "singlePanel": { + "supportedCSI-RS-ResourceList": [ + { + "maxNumberTxPortsPerResource": "p8", + "maxNumberResourcesPerBand": 12, + "totalNumberTxPortsPerBand": 96 + } + ], + "modes": "mode1", + "maxNumberCSI-RS-PerResourceSet": 4 + } + }, + "type2": { + "supportedCSI-RS-ResourceList": [ + { + "maxNumberTxPortsPerResource": "p32", + "maxNumberResourcesPerBand": 1, + "totalNumberTxPortsPerBand": 32 + } + ], + "parameterLx": 4, + "amplitudeScalingType": "widebandAndSubband" + } + }, + "csi-RS-IM-ReceptionForFeedback": { + "maxConfigNumberNZP-CSI-RS-PerCC": 8, + "maxConfigNumberPortsAcrossNZP-CSI-RS-PerCC": 64, + "maxConfigNumberCSI-IM-PerCC": "n8", + "maxNumberSimultaneousNZP-CSI-RS-PerCC": 4, + "totalNumberPortsSimultaneousNZP-CSI-RS-PerCC": 64 + }, + "csi-ReportFramework": { + "maxNumberPeriodicCSI-PerBWP-ForCSI-Report": 2, + "maxNumberAperiodicCSI-PerBWP-ForCSI-Report": 2, + "maxNumberSemiPersistentCSI-PerBWP-ForCSI-Report": 0, + "maxNumberPeriodicCSI-PerBWP-ForBeamReport": 2, + "maxNumberAperiodicCSI-PerBWP-ForBeamReport": 2, + "maxNumberAperiodicCSI-triggeringStatePerCC": "n63", + "maxNumberSemiPersistentCSI-PerBWP-ForBeamReport": 0, + "simultaneousCSI-ReportsPerCC": 4 + }, + "csi-RS-ForTracking": { + "maxBurstLength": 2, + "maxSimultaneousResourceSetsPerCC": 1, + "maxConfiguredResourceSetsPerCC": 8, + "maxConfiguredResourceSetsAllCC": 32 + }, + "codebookParametersPerBand-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 6, + 7, + 8 + ], + "type2-r16": [ + 3 + ] + } + }, + "lowPAPR-DMRS-PDSCH-r16": "supported", + "lowPAPR-DMRS-PUSCHwithoutPrecoding-r16": "supported", + "lowPAPR-DMRS-PUCCH-r16": "supported", + "lowPAPR-DMRS-PUSCHwithPrecoding-r16": "supported", + "codebookParametersAddition-r16": { + "etype2-r16": { + "etype2R1-r16": { + "supportedCSI-RS-ResourceListAdd-r16": [ + 3 + ] + }, + "rank3-4-r16": "supported" + } + }, + "codebookComboParametersAddition-r16": { + "type1SP-Type2-null-r16": { + "supportedCSI-RS-ResourceListAdd-r16": [ + 10 + ] + }, + "type1SP-eType2R1-null-r16": { + "supportedCSI-RS-ResourceListAdd-r16": [ + 10 + ] + } + } + }, + "multipleTCI": "supported", + "bwp-SameNumerology": "upto2", + "pusch-256QAM": "supported", + "ue-PowerClass": "pc2", + "rateMatchingLTE-CRS": "supported", + "channelBWs-DL": { + "fr1": { + "scs-15kHz": "1111111000", + "scs-30kHz": "0000000000", + "scs-60kHz": "0000000000" + } + }, + "channelBWs-UL": { + "fr1": { + "scs-15kHz": "1111111000", + "scs-30kHz": "0000000000", + "scs-60kHz": "0000000000" + } + }, + "channelBWs-DL-v1590": { + "fr1": { + "scs-15kHz": "0110000000000000" + } + }, + "channelBWs-UL-v1590": { + "fr1": { + "scs-15kHz": "0110000000000000" + } + }, + "asymmetricBandwidthCombinationSet": "1", + "pdsch-MappingTypeB-Alt-r16": "supported", + "condHandover-r16": "supported", + "condHandoverTwoTriggerEvents-r16": "supported", + "trs-AdditionalBandwidth-r16": "trs-AddBW-Set1", + "type2-PUSCH-RepetitionMultiSlots-v1650": "supported", + "configuredUL-GrantType2-v1650": "supported", + "enhancedSkipUplinkTxConfigured-v1660": "supported", + "enhancedSkipUplinkTxDynamic-v1660": "supported", + "txDiversity-r16": "supported", + "pdsch-1024QAM-FR1-r17": "supported" + }, + { + "bandNR": 71, + "mimo-ParametersPerBand": { + "tci-StatePDSCH": { + "maxNumberConfiguredTCI-StatesPerCC": "n16", + "maxNumberActiveTCI-PerBWP": "n1" + }, + "pusch-TransCoherence": "nonCoherent", + "periodicBeamReport": "supported", + "aperiodicBeamReport": "supported", + "maxNumberNonGroupBeamReporting": "n4", + "maxNumberSSB-BFD": 2, + "maxNumberCSI-RS-SSB-CBD": 8, + "beamReportTiming": { + "scs-15kHz": "sym8" + }, + "beamManagementSSB-CSI-RS": { + "maxNumberSSB-CSI-RS-ResourceOneTx": "n16", + "maxNumberCSI-RS-Resource": "n64", + "maxNumberCSI-RS-ResourceTwoTx": "n0", + "supportedCSI-RS-Density": "oneAndThree", + "maxNumberAperiodicCSI-RS-Resource": "n32" + }, + "codebookParameters": { + "type1": { + "singlePanel": { + "supportedCSI-RS-ResourceList": [ + { + "maxNumberTxPortsPerResource": "p8", + "maxNumberResourcesPerBand": 12, + "totalNumberTxPortsPerBand": 96 + } + ], + "modes": "mode1", + "maxNumberCSI-RS-PerResourceSet": 4 + } + }, + "type2": { + "supportedCSI-RS-ResourceList": [ + { + "maxNumberTxPortsPerResource": "p32", + "maxNumberResourcesPerBand": 1, + "totalNumberTxPortsPerBand": 32 + } + ], + "parameterLx": 4, + "amplitudeScalingType": "widebandAndSubband" + } + }, + "csi-RS-IM-ReceptionForFeedback": { + "maxConfigNumberNZP-CSI-RS-PerCC": 8, + "maxConfigNumberPortsAcrossNZP-CSI-RS-PerCC": 64, + "maxConfigNumberCSI-IM-PerCC": "n8", + "maxNumberSimultaneousNZP-CSI-RS-PerCC": 4, + "totalNumberPortsSimultaneousNZP-CSI-RS-PerCC": 64 + }, + "csi-ReportFramework": { + "maxNumberPeriodicCSI-PerBWP-ForCSI-Report": 2, + "maxNumberAperiodicCSI-PerBWP-ForCSI-Report": 2, + "maxNumberSemiPersistentCSI-PerBWP-ForCSI-Report": 0, + "maxNumberPeriodicCSI-PerBWP-ForBeamReport": 2, + "maxNumberAperiodicCSI-PerBWP-ForBeamReport": 2, + "maxNumberAperiodicCSI-triggeringStatePerCC": "n63", + "maxNumberSemiPersistentCSI-PerBWP-ForBeamReport": 0, + "simultaneousCSI-ReportsPerCC": 4 + }, + "csi-RS-ForTracking": { + "maxBurstLength": 2, + "maxSimultaneousResourceSetsPerCC": 1, + "maxConfiguredResourceSetsPerCC": 8, + "maxConfiguredResourceSetsAllCC": 32 + }, + "codebookParametersPerBand-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 6, + 7, + 8 + ], + "type2-r16": [ + 3 + ] + } + }, + "lowPAPR-DMRS-PDSCH-r16": "supported", + "lowPAPR-DMRS-PUSCHwithoutPrecoding-r16": "supported", + "lowPAPR-DMRS-PUCCH-r16": "supported", + "lowPAPR-DMRS-PUSCHwithPrecoding-r16": "supported", + "codebookParametersAddition-r16": { + "etype2-r16": { + "etype2R1-r16": { + "supportedCSI-RS-ResourceListAdd-r16": [ + 3 + ] + }, + "rank3-4-r16": "supported" + } + }, + "codebookComboParametersAddition-r16": { + "type1SP-Type2-null-r16": { + "supportedCSI-RS-ResourceListAdd-r16": [ + 10 + ] + }, + "type1SP-eType2R1-null-r16": { + "supportedCSI-RS-ResourceListAdd-r16": [ + 10 + ] + } + } + }, + "multipleTCI": "supported", + "bwp-SameNumerology": "upto2", + "pusch-256QAM": "supported", + "ue-PowerClass": "pc3", + "rateMatchingLTE-CRS": "supported", + "channelBWs-DL": { + "fr1": { + "scs-15kHz": "1111110000", + "scs-30kHz": "0000000000", + "scs-60kHz": "0000000000" + } + }, + "channelBWs-UL": { + "fr1": { + "scs-15kHz": "1111110000", + "scs-30kHz": "0000000000", + "scs-60kHz": "0000000000" + } + }, + "channelBWs-DL-v1590": { + "fr1": { + "scs-15kHz": "0010000000000000" + } + }, + "channelBWs-UL-v1590": { + "fr1": { + "scs-15kHz": "0010000000000000" + } + }, + "asymmetricBandwidthCombinationSet": "11", + "pdsch-MappingTypeB-Alt-r16": "supported", + "condHandover-r16": "supported", + "condHandoverTwoTriggerEvents-r16": "supported", + "trs-AdditionalBandwidth-r16": "trs-AddBW-Set1", + "type2-PUSCH-RepetitionMultiSlots-v1650": "supported", + "configuredUL-GrantType2-v1650": "supported", + "enhancedSkipUplinkTxConfigured-v1660": "supported", + "enhancedSkipUplinkTxDynamic-v1660": "supported", + "pdsch-1024QAM-FR1-r17": "supported" + }, + { + "bandNR": 48, + "mimo-ParametersPerBand": { + "tci-StatePDSCH": { + "maxNumberConfiguredTCI-StatesPerCC": "n16", + "maxNumberActiveTCI-PerBWP": "n1" + }, + "pusch-TransCoherence": "nonCoherent", + "periodicBeamReport": "supported", + "aperiodicBeamReport": "supported", + "maxNumberNonGroupBeamReporting": "n4", + "maxNumberSSB-BFD": 2, + "maxNumberCSI-RS-SSB-CBD": 8, + "beamReportTiming": { + "scs-30kHz": "sym14" + }, + "beamManagementSSB-CSI-RS": { + "maxNumberSSB-CSI-RS-ResourceOneTx": "n16", + "maxNumberCSI-RS-Resource": "n64", + "maxNumberCSI-RS-ResourceTwoTx": "n0", + "supportedCSI-RS-Density": "oneAndThree", + "maxNumberAperiodicCSI-RS-Resource": "n32" + }, + "codebookParameters": { + "type1": { + "singlePanel": { + "supportedCSI-RS-ResourceList": [ + { + "maxNumberTxPortsPerResource": "p8", + "maxNumberResourcesPerBand": 12, + "totalNumberTxPortsPerBand": 96 + }, + { + "maxNumberTxPortsPerResource": "p16", + "maxNumberResourcesPerBand": 6, + "totalNumberTxPortsPerBand": 96 + }, + { + "maxNumberTxPortsPerResource": "p32", + "maxNumberResourcesPerBand": 3, + "totalNumberTxPortsPerBand": 96 + } + ], + "modes": "mode1", + "maxNumberCSI-RS-PerResourceSet": 4 + } + } + }, + "csi-RS-IM-ReceptionForFeedback": { + "maxConfigNumberNZP-CSI-RS-PerCC": 8, + "maxConfigNumberPortsAcrossNZP-CSI-RS-PerCC": 64, + "maxConfigNumberCSI-IM-PerCC": "n8", + "maxNumberSimultaneousNZP-CSI-RS-PerCC": 4, + "totalNumberPortsSimultaneousNZP-CSI-RS-PerCC": 32 + }, + "csi-ReportFramework": { + "maxNumberPeriodicCSI-PerBWP-ForCSI-Report": 2, + "maxNumberAperiodicCSI-PerBWP-ForCSI-Report": 2, + "maxNumberSemiPersistentCSI-PerBWP-ForCSI-Report": 0, + "maxNumberPeriodicCSI-PerBWP-ForBeamReport": 2, + "maxNumberAperiodicCSI-PerBWP-ForBeamReport": 2, + "maxNumberAperiodicCSI-triggeringStatePerCC": "n63", + "maxNumberSemiPersistentCSI-PerBWP-ForBeamReport": 0, + "simultaneousCSI-ReportsPerCC": 4 + }, + "csi-RS-ForTracking": { + "maxBurstLength": 2, + "maxSimultaneousResourceSetsPerCC": 1, + "maxConfiguredResourceSetsPerCC": 8, + "maxConfiguredResourceSetsAllCC": 32 + }, + "codebookParametersPerBand-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 6, + 7, + 8 + ] + } + }, + "lowPAPR-DMRS-PDSCH-r16": "supported", + "lowPAPR-DMRS-PUSCHwithoutPrecoding-r16": "supported", + "lowPAPR-DMRS-PUCCH-r16": "supported", + "lowPAPR-DMRS-PUSCHwithPrecoding-r16": "supported" + }, + "multipleTCI": "supported", + "bwp-SameNumerology": "upto2", + "pusch-256QAM": "supported", + "ue-PowerClass": "pc3", + "channelBWs-DL": { + "fr1": { + "scs-15kHz": "0000000000", + "scs-30kHz": "0111011111", + "scs-60kHz": "0000000000" + } + }, + "channelBWs-UL": { + "fr1": { + "scs-15kHz": "0000000000", + "scs-30kHz": "0111011000", + "scs-60kHz": "0000000000" + } + }, + "channelBWs-DL-v1590": { + "fr1": { + "scs-30kHz": "1000000000000000" + } + }, + "condHandover-r16": "supported", + "condHandoverTwoTriggerEvents-r16": "supported", + "type2-PUSCH-RepetitionMultiSlots-v1650": "supported", + "configuredUL-GrantType2-v1650": "supported", + "enhancedSkipUplinkTxConfigured-v1660": "supported", + "enhancedSkipUplinkTxDynamic-v1660": "supported", + "pdsch-1024QAM-FR1-r17": "supported", + "pdcch-SkippingWithoutSSSG-r17": "supported" + }, + { + "bandNR": 70, + "mimo-ParametersPerBand": { + "tci-StatePDSCH": { + "maxNumberConfiguredTCI-StatesPerCC": "n16", + "maxNumberActiveTCI-PerBWP": "n1" + }, + "pusch-TransCoherence": "nonCoherent", + "periodicBeamReport": "supported", + "aperiodicBeamReport": "supported", + "maxNumberNonGroupBeamReporting": "n4", + "maxNumberSSB-BFD": 2, + "maxNumberCSI-RS-SSB-CBD": 8, + "beamReportTiming": { + "scs-15kHz": "sym8" + }, + "beamManagementSSB-CSI-RS": { + "maxNumberSSB-CSI-RS-ResourceOneTx": "n16", + "maxNumberCSI-RS-Resource": "n64", + "maxNumberCSI-RS-ResourceTwoTx": "n0", + "supportedCSI-RS-Density": "oneAndThree", + "maxNumberAperiodicCSI-RS-Resource": "n32" + }, + "codebookParameters": { + "type1": { + "singlePanel": { + "supportedCSI-RS-ResourceList": [ + { + "maxNumberTxPortsPerResource": "p8", + "maxNumberResourcesPerBand": 12, + "totalNumberTxPortsPerBand": 96 + } + ], + "modes": "mode1", + "maxNumberCSI-RS-PerResourceSet": 4 + } + }, + "type2": { + "supportedCSI-RS-ResourceList": [ + { + "maxNumberTxPortsPerResource": "p32", + "maxNumberResourcesPerBand": 1, + "totalNumberTxPortsPerBand": 32 + } + ], + "parameterLx": 4, + "amplitudeScalingType": "widebandAndSubband" + } + }, + "csi-RS-IM-ReceptionForFeedback": { + "maxConfigNumberNZP-CSI-RS-PerCC": 8, + "maxConfigNumberPortsAcrossNZP-CSI-RS-PerCC": 64, + "maxConfigNumberCSI-IM-PerCC": "n8", + "maxNumberSimultaneousNZP-CSI-RS-PerCC": 4, + "totalNumberPortsSimultaneousNZP-CSI-RS-PerCC": 64 + }, + "csi-ReportFramework": { + "maxNumberPeriodicCSI-PerBWP-ForCSI-Report": 2, + "maxNumberAperiodicCSI-PerBWP-ForCSI-Report": 2, + "maxNumberSemiPersistentCSI-PerBWP-ForCSI-Report": 0, + "maxNumberPeriodicCSI-PerBWP-ForBeamReport": 2, + "maxNumberAperiodicCSI-PerBWP-ForBeamReport": 2, + "maxNumberAperiodicCSI-triggeringStatePerCC": "n63", + "maxNumberSemiPersistentCSI-PerBWP-ForBeamReport": 0, + "simultaneousCSI-ReportsPerCC": 4 + }, + "csi-RS-ForTracking": { + "maxBurstLength": 2, + "maxSimultaneousResourceSetsPerCC": 1, + "maxConfiguredResourceSetsPerCC": 8, + "maxConfiguredResourceSetsAllCC": 32 + }, + "codebookParametersPerBand-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 6, + 7, + 8 + ], + "type2-r16": [ + 3 + ] + } + }, + "lowPAPR-DMRS-PDSCH-r16": "supported", + "lowPAPR-DMRS-PUSCHwithoutPrecoding-r16": "supported", + "lowPAPR-DMRS-PUCCH-r16": "supported", + "lowPAPR-DMRS-PUSCHwithPrecoding-r16": "supported", + "codebookParametersAddition-r16": { + "etype2-r16": { + "etype2R1-r16": { + "supportedCSI-RS-ResourceListAdd-r16": [ + 3 + ] + }, + "rank3-4-r16": "supported" + } + }, + "codebookComboParametersAddition-r16": { + "type1SP-Type2-null-r16": { + "supportedCSI-RS-ResourceListAdd-r16": [ + 10 + ] + }, + "type1SP-eType2R1-null-r16": { + "supportedCSI-RS-ResourceListAdd-r16": [ + 10 + ] + } + } + }, + "multipleTCI": "supported", + "bwp-SameNumerology": "upto2", + "pusch-256QAM": "supported", + "ue-PowerClass": "pc3", + "rateMatchingLTE-CRS": "supported", + "channelBWs-DL": { + "fr1": { + "scs-15kHz": "0011100000", + "scs-30kHz": "0000000000", + "scs-60kHz": "0000000000" + } + }, + "channelBWs-UL": { + "fr1": { + "scs-15kHz": "1110000000", + "scs-30kHz": "0000000000", + "scs-60kHz": "0000000000" + } + }, + "pdsch-MappingTypeB-Alt-r16": "supported", + "condHandover-r16": "supported", + "condHandoverTwoTriggerEvents-r16": "supported", + "trs-AdditionalBandwidth-r16": "trs-AddBW-Set1", + "type2-PUSCH-RepetitionMultiSlots-v1650": "supported", + "configuredUL-GrantType2-v1650": "supported", + "enhancedSkipUplinkTxConfigured-v1660": "supported", + "enhancedSkipUplinkTxDynamic-v1660": "supported", + "pdsch-1024QAM-FR1-r17": "supported" + }, + { + "bandNR": 83, + "mimo-ParametersPerBand": { + "pusch-TransCoherence": "nonCoherent", + "periodicBeamReport": "supported", + "aperiodicBeamReport": "supported", + "maxNumberNonGroupBeamReporting": "n4", + "maxNumberSSB-BFD": 2, + "maxNumberCSI-RS-SSB-CBD": 8, + "beamReportTiming": { + "scs-15kHz": "sym8" + }, + "beamManagementSSB-CSI-RS": { + "maxNumberSSB-CSI-RS-ResourceOneTx": "n16", + "maxNumberCSI-RS-Resource": "n64", + "maxNumberCSI-RS-ResourceTwoTx": "n0", + "supportedCSI-RS-Density": "oneAndThree", + "maxNumberAperiodicCSI-RS-Resource": "n32" + }, + "codebookParameters": { + "type1": { + "singlePanel": { + "supportedCSI-RS-ResourceList": [ + { + "maxNumberTxPortsPerResource": "p8", + "maxNumberResourcesPerBand": 12, + "totalNumberTxPortsPerBand": 96 + } + ], + "modes": "mode1", + "maxNumberCSI-RS-PerResourceSet": 4 + } + }, + "type2": { + "supportedCSI-RS-ResourceList": [ + { + "maxNumberTxPortsPerResource": "p32", + "maxNumberResourcesPerBand": 1, + "totalNumberTxPortsPerBand": 32 + } + ], + "parameterLx": 4, + "amplitudeScalingType": "widebandAndSubband" + } + }, + "csi-RS-IM-ReceptionForFeedback": { + "maxConfigNumberNZP-CSI-RS-PerCC": 8, + "maxConfigNumberPortsAcrossNZP-CSI-RS-PerCC": 64, + "maxConfigNumberCSI-IM-PerCC": "n8", + "maxNumberSimultaneousNZP-CSI-RS-PerCC": 4, + "totalNumberPortsSimultaneousNZP-CSI-RS-PerCC": 64 + }, + "csi-ReportFramework": { + "maxNumberPeriodicCSI-PerBWP-ForCSI-Report": 2, + "maxNumberAperiodicCSI-PerBWP-ForCSI-Report": 2, + "maxNumberSemiPersistentCSI-PerBWP-ForCSI-Report": 0, + "maxNumberPeriodicCSI-PerBWP-ForBeamReport": 2, + "maxNumberAperiodicCSI-PerBWP-ForBeamReport": 2, + "maxNumberAperiodicCSI-triggeringStatePerCC": "n63", + "maxNumberSemiPersistentCSI-PerBWP-ForBeamReport": 0, + "simultaneousCSI-ReportsPerCC": 4 + }, + "csi-RS-ForTracking": { + "maxBurstLength": 2, + "maxSimultaneousResourceSetsPerCC": 1, + "maxConfiguredResourceSetsPerCC": 8, + "maxConfiguredResourceSetsAllCC": 32 + }, + "codebookParametersPerBand-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 6, + 7, + 8 + ], + "type2-r16": [ + 3 + ] + } + }, + "lowPAPR-DMRS-PDSCH-r16": "supported", + "lowPAPR-DMRS-PUSCHwithoutPrecoding-r16": "supported", + "lowPAPR-DMRS-PUCCH-r16": "supported", + "lowPAPR-DMRS-PUSCHwithPrecoding-r16": "supported", + "codebookParametersAddition-r16": { + "etype2-r16": { + "etype2R1-r16": { + "supportedCSI-RS-ResourceListAdd-r16": [ + 3 + ] + }, + "rank3-4-r16": "supported" + } + }, + "codebookComboParametersAddition-r16": { + "type1SP-Type2-null-r16": { + "supportedCSI-RS-ResourceListAdd-r16": [ + 10 + ] + }, + "type1SP-eType2R1-null-r16": { + "supportedCSI-RS-ResourceListAdd-r16": [ + 10 + ] + } + } + }, + "multipleTCI": "supported", + "bwp-SameNumerology": "upto2", + "pusch-256QAM": "supported", + "ue-PowerClass": "pc3", + "channelBWs-UL": { + "fr1": { + "scs-15kHz": "1111110000", + "scs-30kHz": "0000000000", + "scs-60kHz": "0000000000" + } + }, + "condHandover-r16": "supported", + "condHandoverTwoTriggerEvents-r16": "supported", + "type2-PUSCH-RepetitionMultiSlots-v1650": "supported", + "configuredUL-GrantType2-v1650": "supported", + "enhancedSkipUplinkTxConfigured-v1660": "supported", + "enhancedSkipUplinkTxDynamic-v1660": "supported", + "pdsch-1024QAM-FR1-r17": "supported" + }, + { + "bandNR": 258, + "modifiedMPR-Behaviour": "11000000", + "mimo-ParametersPerBand": { + "tci-StatePDSCH": { + "maxNumberConfiguredTCI-StatesPerCC": "n64", + "maxNumberActiveTCI-PerBWP": "n1" + }, + "pusch-TransCoherence": "nonCoherent", + "beamCorrespondenceWithoutUL-BeamSweeping": "supported", + "periodicBeamReport": "supported", + "aperiodicBeamReport": "supported", + "maxNumberRxBeam": 2, + "maxNumberRxTxBeamSwitchDL": { + "scs-120kHz": "n14" + }, + "maxNumberNonGroupBeamReporting": "n4", + "maxNumberSSB-BFD": 16, + "maxNumberCSI-RS-SSB-CBD": 64, + "beamReportTiming": { + "scs-120kHz": "sym28" + }, + "dummy6": "true", + "beamManagementSSB-CSI-RS": { + "maxNumberSSB-CSI-RS-ResourceOneTx": "n8", + "maxNumberCSI-RS-Resource": "n32", + "maxNumberCSI-RS-ResourceTwoTx": "n0", + "supportedCSI-RS-Density": "oneAndThree", + "maxNumberAperiodicCSI-RS-Resource": "n32" + }, + "beamSwitchTiming": { + "scs-120kHz": "sym28" + }, + "codebookParameters": { + "type1": { + "singlePanel": { + "supportedCSI-RS-ResourceList": [ + { + "maxNumberTxPortsPerResource": "p4", + "maxNumberResourcesPerBand": 8, + "totalNumberTxPortsPerBand": 32 + } + ], + "modes": "mode1", + "maxNumberCSI-RS-PerResourceSet": 1 + } + } + }, + "csi-RS-IM-ReceptionForFeedback": { + "maxConfigNumberNZP-CSI-RS-PerCC": 2, + "maxConfigNumberPortsAcrossNZP-CSI-RS-PerCC": 16, + "maxConfigNumberCSI-IM-PerCC": "n2", + "maxNumberSimultaneousNZP-CSI-RS-PerCC": 1, + "totalNumberPortsSimultaneousNZP-CSI-RS-PerCC": 4 + }, + "csi-ReportFramework": { + "maxNumberPeriodicCSI-PerBWP-ForCSI-Report": 1, + "maxNumberAperiodicCSI-PerBWP-ForCSI-Report": 2, + "maxNumberSemiPersistentCSI-PerBWP-ForCSI-Report": 0, + "maxNumberPeriodicCSI-PerBWP-ForBeamReport": 3, + "maxNumberAperiodicCSI-PerBWP-ForBeamReport": 3, + "maxNumberAperiodicCSI-triggeringStatePerCC": "n63", + "maxNumberSemiPersistentCSI-PerBWP-ForBeamReport": 0, + "simultaneousCSI-ReportsPerCC": 3 + }, + "csi-RS-ForTracking": { + "maxBurstLength": 2, + "maxSimultaneousResourceSetsPerCC": 1, + "maxConfiguredResourceSetsPerCC": 64, + "maxConfiguredResourceSetsAllCC": 256 + }, + "spatialRelations": { + "maxNumberConfiguredSpatialRelations": "n16", + "maxNumberActiveSpatialRelations": "n1", + "maxNumberDL-RS-QCL-TypeD": "n2" + }, + "codebookParametersPerBand-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 12 + ] + } + }, + "lowPAPR-DMRS-PUCCH-r16": "supported" + }, + "multipleTCI": "supported", + "pdsch-256QAM-FR2": "supported", + "ue-PowerClass": "pc3", + "channelBWs-DL": { + "fr2": { + "scs-60kHz": "000", + "scs-120kHz": "111" + } + }, + "channelBWs-UL": { + "fr2": { + "scs-60kHz": "000", + "scs-120kHz": "111" + } + }, + "pucch-SpatialRelInfoMAC-CE": "supported", + "condHandoverTwoTriggerEvents-r16": "supported" + }, + { + "bandNR": 257, + "mimo-ParametersPerBand": { + "tci-StatePDSCH": { + "maxNumberConfiguredTCI-StatesPerCC": "n64", + "maxNumberActiveTCI-PerBWP": "n1" + }, + "pusch-TransCoherence": "nonCoherent", + "beamCorrespondenceWithoutUL-BeamSweeping": "supported", + "periodicBeamReport": "supported", + "aperiodicBeamReport": "supported", + "maxNumberRxBeam": 2, + "maxNumberRxTxBeamSwitchDL": { + "scs-120kHz": "n14" + }, + "maxNumberNonGroupBeamReporting": "n4", + "maxNumberSSB-BFD": 16, + "maxNumberCSI-RS-SSB-CBD": 64, + "beamReportTiming": { + "scs-120kHz": "sym28" + }, + "dummy6": "true", + "beamManagementSSB-CSI-RS": { + "maxNumberSSB-CSI-RS-ResourceOneTx": "n8", + "maxNumberCSI-RS-Resource": "n32", + "maxNumberCSI-RS-ResourceTwoTx": "n0", + "supportedCSI-RS-Density": "oneAndThree", + "maxNumberAperiodicCSI-RS-Resource": "n32" + }, + "beamSwitchTiming": { + "scs-120kHz": "sym28" + }, + "codebookParameters": { + "type1": { + "singlePanel": { + "supportedCSI-RS-ResourceList": [ + { + "maxNumberTxPortsPerResource": "p4", + "maxNumberResourcesPerBand": 8, + "totalNumberTxPortsPerBand": 32 + } + ], + "modes": "mode1", + "maxNumberCSI-RS-PerResourceSet": 1 + } + } + }, + "csi-RS-IM-ReceptionForFeedback": { + "maxConfigNumberNZP-CSI-RS-PerCC": 2, + "maxConfigNumberPortsAcrossNZP-CSI-RS-PerCC": 16, + "maxConfigNumberCSI-IM-PerCC": "n2", + "maxNumberSimultaneousNZP-CSI-RS-PerCC": 1, + "totalNumberPortsSimultaneousNZP-CSI-RS-PerCC": 4 + }, + "csi-ReportFramework": { + "maxNumberPeriodicCSI-PerBWP-ForCSI-Report": 1, + "maxNumberAperiodicCSI-PerBWP-ForCSI-Report": 2, + "maxNumberSemiPersistentCSI-PerBWP-ForCSI-Report": 0, + "maxNumberPeriodicCSI-PerBWP-ForBeamReport": 3, + "maxNumberAperiodicCSI-PerBWP-ForBeamReport": 3, + "maxNumberAperiodicCSI-triggeringStatePerCC": "n63", + "maxNumberSemiPersistentCSI-PerBWP-ForBeamReport": 0, + "simultaneousCSI-ReportsPerCC": 3 + }, + "csi-RS-ForTracking": { + "maxBurstLength": 2, + "maxSimultaneousResourceSetsPerCC": 1, + "maxConfiguredResourceSetsPerCC": 64, + "maxConfiguredResourceSetsAllCC": 256 + }, + "spatialRelations": { + "maxNumberConfiguredSpatialRelations": "n16", + "maxNumberActiveSpatialRelations": "n1", + "maxNumberDL-RS-QCL-TypeD": "n2" + }, + "codebookParametersPerBand-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 12 + ] + } + }, + "lowPAPR-DMRS-PUCCH-r16": "supported" + }, + "multipleTCI": "supported", + "pdsch-256QAM-FR2": "supported", + "ue-PowerClass": "pc3", + "channelBWs-DL": { + "fr2": { + "scs-60kHz": "000", + "scs-120kHz": "111" + } + }, + "channelBWs-UL": { + "fr2": { + "scs-60kHz": "000", + "scs-120kHz": "111" + } + }, + "pucch-SpatialRelInfoMAC-CE": "supported", + "condHandoverTwoTriggerEvents-r16": "supported" + }, + { + "bandNR": 260, + "mimo-ParametersPerBand": { + "tci-StatePDSCH": { + "maxNumberConfiguredTCI-StatesPerCC": "n64", + "maxNumberActiveTCI-PerBWP": "n1" + }, + "pusch-TransCoherence": "nonCoherent", + "beamCorrespondenceWithoutUL-BeamSweeping": "supported", + "periodicBeamReport": "supported", + "aperiodicBeamReport": "supported", + "maxNumberRxBeam": 2, + "maxNumberRxTxBeamSwitchDL": { + "scs-120kHz": "n14" + }, + "maxNumberNonGroupBeamReporting": "n4", + "maxNumberSSB-BFD": 16, + "maxNumberCSI-RS-SSB-CBD": 64, + "beamReportTiming": { + "scs-120kHz": "sym28" + }, + "dummy6": "true", + "beamManagementSSB-CSI-RS": { + "maxNumberSSB-CSI-RS-ResourceOneTx": "n8", + "maxNumberCSI-RS-Resource": "n32", + "maxNumberCSI-RS-ResourceTwoTx": "n0", + "supportedCSI-RS-Density": "oneAndThree", + "maxNumberAperiodicCSI-RS-Resource": "n32" + }, + "beamSwitchTiming": { + "scs-120kHz": "sym28" + }, + "codebookParameters": { + "type1": { + "singlePanel": { + "supportedCSI-RS-ResourceList": [ + { + "maxNumberTxPortsPerResource": "p4", + "maxNumberResourcesPerBand": 8, + "totalNumberTxPortsPerBand": 32 + } + ], + "modes": "mode1", + "maxNumberCSI-RS-PerResourceSet": 1 + } + } + }, + "csi-RS-IM-ReceptionForFeedback": { + "maxConfigNumberNZP-CSI-RS-PerCC": 2, + "maxConfigNumberPortsAcrossNZP-CSI-RS-PerCC": 16, + "maxConfigNumberCSI-IM-PerCC": "n2", + "maxNumberSimultaneousNZP-CSI-RS-PerCC": 1, + "totalNumberPortsSimultaneousNZP-CSI-RS-PerCC": 4 + }, + "csi-ReportFramework": { + "maxNumberPeriodicCSI-PerBWP-ForCSI-Report": 1, + "maxNumberAperiodicCSI-PerBWP-ForCSI-Report": 2, + "maxNumberSemiPersistentCSI-PerBWP-ForCSI-Report": 0, + "maxNumberPeriodicCSI-PerBWP-ForBeamReport": 3, + "maxNumberAperiodicCSI-PerBWP-ForBeamReport": 3, + "maxNumberAperiodicCSI-triggeringStatePerCC": "n63", + "maxNumberSemiPersistentCSI-PerBWP-ForBeamReport": 0, + "simultaneousCSI-ReportsPerCC": 3 + }, + "csi-RS-ForTracking": { + "maxBurstLength": 2, + "maxSimultaneousResourceSetsPerCC": 1, + "maxConfiguredResourceSetsPerCC": 64, + "maxConfiguredResourceSetsAllCC": 256 + }, + "spatialRelations": { + "maxNumberConfiguredSpatialRelations": "n16", + "maxNumberActiveSpatialRelations": "n1", + "maxNumberDL-RS-QCL-TypeD": "n2" + }, + "codebookParametersPerBand-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 12 + ] + } + }, + "lowPAPR-DMRS-PUCCH-r16": "supported" + }, + "multipleTCI": "supported", + "pdsch-256QAM-FR2": "supported", + "ue-PowerClass": "pc3", + "channelBWs-DL": { + "fr2": { + "scs-60kHz": "000", + "scs-120kHz": "111" + } + }, + "channelBWs-UL": { + "fr2": { + "scs-60kHz": "000", + "scs-120kHz": "111" + } + }, + "pucch-SpatialRelInfoMAC-CE": "supported", + "condHandoverTwoTriggerEvents-r16": "supported" + }, + { + "bandNR": 261, + "mimo-ParametersPerBand": { + "tci-StatePDSCH": { + "maxNumberConfiguredTCI-StatesPerCC": "n64", + "maxNumberActiveTCI-PerBWP": "n1" + }, + "pusch-TransCoherence": "nonCoherent", + "beamCorrespondenceWithoutUL-BeamSweeping": "supported", + "periodicBeamReport": "supported", + "aperiodicBeamReport": "supported", + "maxNumberRxBeam": 2, + "maxNumberRxTxBeamSwitchDL": { + "scs-120kHz": "n14" + }, + "maxNumberNonGroupBeamReporting": "n4", + "maxNumberSSB-BFD": 16, + "maxNumberCSI-RS-SSB-CBD": 64, + "beamReportTiming": { + "scs-120kHz": "sym28" + }, + "dummy6": "true", + "beamManagementSSB-CSI-RS": { + "maxNumberSSB-CSI-RS-ResourceOneTx": "n8", + "maxNumberCSI-RS-Resource": "n32", + "maxNumberCSI-RS-ResourceTwoTx": "n0", + "supportedCSI-RS-Density": "oneAndThree", + "maxNumberAperiodicCSI-RS-Resource": "n32" + }, + "beamSwitchTiming": { + "scs-120kHz": "sym28" + }, + "codebookParameters": { + "type1": { + "singlePanel": { + "supportedCSI-RS-ResourceList": [ + { + "maxNumberTxPortsPerResource": "p4", + "maxNumberResourcesPerBand": 8, + "totalNumberTxPortsPerBand": 32 + } + ], + "modes": "mode1", + "maxNumberCSI-RS-PerResourceSet": 1 + } + } + }, + "csi-RS-IM-ReceptionForFeedback": { + "maxConfigNumberNZP-CSI-RS-PerCC": 2, + "maxConfigNumberPortsAcrossNZP-CSI-RS-PerCC": 16, + "maxConfigNumberCSI-IM-PerCC": "n2", + "maxNumberSimultaneousNZP-CSI-RS-PerCC": 1, + "totalNumberPortsSimultaneousNZP-CSI-RS-PerCC": 4 + }, + "csi-ReportFramework": { + "maxNumberPeriodicCSI-PerBWP-ForCSI-Report": 1, + "maxNumberAperiodicCSI-PerBWP-ForCSI-Report": 2, + "maxNumberSemiPersistentCSI-PerBWP-ForCSI-Report": 0, + "maxNumberPeriodicCSI-PerBWP-ForBeamReport": 3, + "maxNumberAperiodicCSI-PerBWP-ForBeamReport": 3, + "maxNumberAperiodicCSI-triggeringStatePerCC": "n63", + "maxNumberSemiPersistentCSI-PerBWP-ForBeamReport": 0, + "simultaneousCSI-ReportsPerCC": 3 + }, + "csi-RS-ForTracking": { + "maxBurstLength": 2, + "maxSimultaneousResourceSetsPerCC": 1, + "maxConfiguredResourceSetsPerCC": 64, + "maxConfiguredResourceSetsAllCC": 256 + }, + "spatialRelations": { + "maxNumberConfiguredSpatialRelations": "n16", + "maxNumberActiveSpatialRelations": "n1", + "maxNumberDL-RS-QCL-TypeD": "n2" + }, + "codebookParametersPerBand-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 12 + ] + } + }, + "lowPAPR-DMRS-PUCCH-r16": "supported" + }, + "multipleTCI": "supported", + "pdsch-256QAM-FR2": "supported", + "ue-PowerClass": "pc3", + "channelBWs-DL": { + "fr2": { + "scs-60kHz": "000", + "scs-120kHz": "111" + } + }, + "channelBWs-UL": { + "fr2": { + "scs-60kHz": "000", + "scs-120kHz": "111" + } + }, + "pucch-SpatialRelInfoMAC-CE": "supported", + "condHandoverTwoTriggerEvents-r16": "supported" + }, + { + "bandNR": 89, + "mimo-ParametersPerBand": { + "pusch-TransCoherence": "nonCoherent", + "periodicBeamReport": "supported", + "aperiodicBeamReport": "supported", + "maxNumberNonGroupBeamReporting": "n4", + "maxNumberSSB-BFD": 2, + "maxNumberCSI-RS-SSB-CBD": 8, + "beamReportTiming": { + "scs-15kHz": "sym8" + }, + "beamManagementSSB-CSI-RS": { + "maxNumberSSB-CSI-RS-ResourceOneTx": "n16", + "maxNumberCSI-RS-Resource": "n64", + "maxNumberCSI-RS-ResourceTwoTx": "n0", + "supportedCSI-RS-Density": "oneAndThree", + "maxNumberAperiodicCSI-RS-Resource": "n32" + }, + "codebookParameters": { + "type1": { + "singlePanel": { + "supportedCSI-RS-ResourceList": [ + { + "maxNumberTxPortsPerResource": "p8", + "maxNumberResourcesPerBand": 12, + "totalNumberTxPortsPerBand": 96 + } + ], + "modes": "mode1", + "maxNumberCSI-RS-PerResourceSet": 4 + } + }, + "type2": { + "supportedCSI-RS-ResourceList": [ + { + "maxNumberTxPortsPerResource": "p32", + "maxNumberResourcesPerBand": 1, + "totalNumberTxPortsPerBand": 32 + } + ], + "parameterLx": 4, + "amplitudeScalingType": "widebandAndSubband" + } + }, + "csi-RS-IM-ReceptionForFeedback": { + "maxConfigNumberNZP-CSI-RS-PerCC": 8, + "maxConfigNumberPortsAcrossNZP-CSI-RS-PerCC": 64, + "maxConfigNumberCSI-IM-PerCC": "n8", + "maxNumberSimultaneousNZP-CSI-RS-PerCC": 4, + "totalNumberPortsSimultaneousNZP-CSI-RS-PerCC": 64 + }, + "csi-ReportFramework": { + "maxNumberPeriodicCSI-PerBWP-ForCSI-Report": 2, + "maxNumberAperiodicCSI-PerBWP-ForCSI-Report": 2, + "maxNumberSemiPersistentCSI-PerBWP-ForCSI-Report": 0, + "maxNumberPeriodicCSI-PerBWP-ForBeamReport": 2, + "maxNumberAperiodicCSI-PerBWP-ForBeamReport": 2, + "maxNumberAperiodicCSI-triggeringStatePerCC": "n63", + "maxNumberSemiPersistentCSI-PerBWP-ForBeamReport": 0, + "simultaneousCSI-ReportsPerCC": 4 + }, + "csi-RS-ForTracking": { + "maxBurstLength": 2, + "maxSimultaneousResourceSetsPerCC": 1, + "maxConfiguredResourceSetsPerCC": 8, + "maxConfiguredResourceSetsAllCC": 32 + }, + "codebookParametersPerBand-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 6, + 7, + 8 + ], + "type2-r16": [ + 3 + ] + } + }, + "lowPAPR-DMRS-PDSCH-r16": "supported", + "lowPAPR-DMRS-PUSCHwithoutPrecoding-r16": "supported", + "lowPAPR-DMRS-PUCCH-r16": "supported", + "lowPAPR-DMRS-PUSCHwithPrecoding-r16": "supported", + "codebookParametersAddition-r16": { + "etype2-r16": { + "etype2R1-r16": { + "supportedCSI-RS-ResourceListAdd-r16": [ + 3 + ] + }, + "rank3-4-r16": "supported" + } + }, + "codebookComboParametersAddition-r16": { + "type1SP-Type2-null-r16": { + "supportedCSI-RS-ResourceListAdd-r16": [ + 10 + ] + }, + "type1SP-eType2R1-null-r16": { + "supportedCSI-RS-ResourceListAdd-r16": [ + 10 + ] + } + } + }, + "multipleTCI": "supported", + "bwp-SameNumerology": "upto2", + "pusch-256QAM": "supported", + "ue-PowerClass": "pc3", + "channelBWs-UL": { + "fr1": { + "scs-15kHz": "1111000000", + "scs-30kHz": "0000000000", + "scs-60kHz": "0000000000" + } + }, + "condHandover-r16": "supported", + "condHandoverTwoTriggerEvents-r16": "supported", + "type2-PUSCH-RepetitionMultiSlots-v1650": "supported", + "configuredUL-GrantType2-v1650": "supported", + "enhancedSkipUplinkTxConfigured-v1660": "supported", + "enhancedSkipUplinkTxDynamic-v1660": "supported", + "pdsch-1024QAM-FR1-r17": "supported" + } + ], + "supportedBandCombinationList": [ + { + "bandList": [ + { + "nr": { + "bandNR": 1, + "ca-BandwidthClassDL-NR": "b", + "ca-BandwidthClassUL-NR": "a" + } + } + ], + "featureSetCombination": 39, + "ca-ParametersNR": { + "simultaneousRxTxInterBandCA": "supported" + }, + "supportedBandwidthCombinationSet": "10001" + }, + { + "bandList": [ + { + "nr": { + "bandNR": 1, + "ca-BandwidthClassDL-NR": "a", + "ca-BandwidthClassUL-NR": "a" + } + }, + { + "nr": { + "bandNR": 41, + "ca-BandwidthClassDL-NR": "a", + "ca-BandwidthClassUL-NR": "a" + } + } + ], + "featureSetCombination": 24, + "ca-ParametersNR": { + "parallelTxSRS-PUCCH-PUSCH": "supported", + "parallelTxPRACH-SRS-PUCCH-PUSCH": "supported", + "simultaneousRxTxInterBandCA": "supported", + "diffNumerologyWithinPUCCH-GroupSmallerSCS": "supported", + "supportedNumberTAG": "n2" + }, + "supportedBandwidthCombinationSet": "11001", + "powerClass-v1530": "pc2" + }, + { + "bandList": [ + { + "nr": { + "bandNR": 1, + "ca-BandwidthClassDL-NR": "a", + "ca-BandwidthClassUL-NR": "a" + } + }, + { + "nr": { + "bandNR": 41, + "ca-BandwidthClassDL-NR": "a", + "ca-BandwidthClassUL-NR": "a" + } + }, + { + "nr": { + "bandNR": 78, + "ca-BandwidthClassDL-NR": "a" + } + } + ], + "featureSetCombination": 6, + "ca-ParametersNR": { + "parallelTxSRS-PUCCH-PUSCH": "supported", + "parallelTxPRACH-SRS-PUCCH-PUSCH": "supported", + "simultaneousRxTxInterBandCA": "supported", + "diffNumerologyWithinPUCCH-GroupSmallerSCS": "supported", + "supportedNumberTAG": "n2" + }, + "supportedBandwidthCombinationSet": "10001" + }, + { + "bandList": [ + { + "nr": { + "bandNR": 1, + "ca-BandwidthClassDL-NR": "a", + "ca-BandwidthClassUL-NR": "a" + } + }, + { + "nr": { + "bandNR": 41, + "ca-BandwidthClassDL-NR": "a" + } + }, + { + "nr": { + "bandNR": 78, + "ca-BandwidthClassDL-NR": "a", + "ca-BandwidthClassUL-NR": "a" + } + } + ], + "featureSetCombination": 3, + "ca-ParametersNR": { + "parallelTxSRS-PUCCH-PUSCH": "supported", + "parallelTxPRACH-SRS-PUCCH-PUSCH": "supported", + "simultaneousRxTxInterBandCA": "supported", + "diffNumerologyWithinPUCCH-GroupSmallerSCS": "supported", + "supportedNumberTAG": "n2" + }, + "supportedBandwidthCombinationSet": "10001" + }, + { + "bandList": [ + { + "nr": { + "bandNR": 1, + "ca-BandwidthClassDL-NR": "a", + "ca-BandwidthClassUL-NR": "a" + } + }, + { + "nr": { + "bandNR": 41, + "ca-BandwidthClassDL-NR": "a" + } + }, + { + "nr": { + "bandNR": 78, + "ca-BandwidthClassDL-NR": "a" + } + } + ], + "featureSetCombination": 31, + "ca-ParametersNR": { + "simultaneousRxTxInterBandCA": "supported", + "diffNumerologyWithinPUCCH-GroupSmallerSCS": "supported" + }, + "supportedBandwidthCombinationSet": "10001" + }, + { + "bandList": [ + { + "nr": { + "bandNR": 1, + "ca-BandwidthClassDL-NR": "a", + "ca-BandwidthClassUL-NR": "a" + } + }, + { + "nr": { + "bandNR": 78, + "ca-BandwidthClassDL-NR": "a", + "ca-BandwidthClassUL-NR": "a" + } + } + ], + "featureSetCombination": 14, + "ca-ParametersNR": { + "parallelTxSRS-PUCCH-PUSCH": "supported", + "parallelTxPRACH-SRS-PUCCH-PUSCH": "supported", + "simultaneousRxTxInterBandCA": "supported", + "diffNumerologyWithinPUCCH-GroupSmallerSCS": "supported", + "supportedNumberTAG": "n2" + }, + "supportedBandwidthCombinationSet": "11111", + "powerClass-v1530": "pc2" + }, + { + "bandList": [ + { + "nr": { + "bandNR": 1, + "ca-BandwidthClassDL-NR": "a", + "ca-BandwidthClassUL-NR": "a" + } + }, + { + "nr": { + "bandNR": 78, + "ca-BandwidthClassDL-NR": "c", + "ca-BandwidthClassUL-NR": "a" + } + } + ], + "featureSetCombination": 16, + "ca-ParametersNR": { + "parallelTxSRS-PUCCH-PUSCH": "supported", + "parallelTxPRACH-SRS-PUCCH-PUSCH": "supported", + "simultaneousRxTxInterBandCA": "supported", + "diffNumerologyWithinPUCCH-GroupSmallerSCS": "supported", + "supportedNumberTAG": "n2" + }, + "supportedBandwidthCombinationSet": "11101" + }, + { + "bandList": [ + { + "nr": { + "bandNR": 1, + "ca-BandwidthClassDL-NR": "a", + "ca-BandwidthClassUL-NR": "a" + } + }, + { + "nr": { + "bandNR": 78, + "ca-BandwidthClassDL-NR": "a", + "ca-BandwidthClassUL-NR": "a" + } + }, + { + "nr": { + "bandNR": 78, + "ca-BandwidthClassDL-NR": "a" + } + } + ], + "featureSetCombination": 6, + "ca-ParametersNR": { + "parallelTxSRS-PUCCH-PUSCH": "supported", + "parallelTxPRACH-SRS-PUCCH-PUSCH": "supported", + "simultaneousRxTxInterBandCA": "supported", + "diffNumerologyWithinPUCCH-GroupSmallerSCS": "supported", + "supportedNumberTAG": "n2" + }, + "supportedBandwidthCombinationSet": "11101" + }, + { + "bandList": [ + { + "nr": { + "bandNR": 1, + "ca-BandwidthClassDL-NR": "a", + "ca-BandwidthClassUL-NR": "a" + } + }, + { + "nr": { + "bandNR": 1, + "ca-BandwidthClassDL-NR": "a" + } + }, + { + "nr": { + "bandNR": 78, + "ca-BandwidthClassDL-NR": "a", + "ca-BandwidthClassUL-NR": "a" + } + } + ], + "featureSetCombination": 8, + "ca-ParametersNR": { + "parallelTxSRS-PUCCH-PUSCH": "supported", + "parallelTxPRACH-SRS-PUCCH-PUSCH": "supported", + "simultaneousRxTxInterBandCA": "supported", + "diffNumerologyWithinPUCCH-GroupSmallerSCS": "supported", + "supportedNumberTAG": "n2" + }, + "supportedBandwidthCombinationSet": "10001" + }, + { + "bandList": [ + { + "nr": { + "bandNR": 1, + "ca-BandwidthClassDL-NR": "a", + "ca-BandwidthClassUL-NR": "a" + } + }, + { + "nr": { + "bandNR": 78, + "ca-BandwidthClassDL-NR": "c" + } + } + ], + "featureSetCombination": 38, + "ca-ParametersNR": { + "simultaneousRxTxInterBandCA": "supported", + "diffNumerologyWithinPUCCH-GroupSmallerSCS": "supported", + "supportedNumberTAG": "n2" + }, + "supportedBandwidthCombinationSet": "11101" + }, + { + "bandList": [ + { + "nr": { + "bandNR": 1, + "ca-BandwidthClassDL-NR": "a", + "ca-BandwidthClassUL-NR": "a" + } + }, + { + "nr": { + "bandNR": 78, + "ca-BandwidthClassDL-NR": "a" + } + } + ], + "featureSetCombination": 37, + "ca-ParametersNR": { + "simultaneousRxTxInterBandCA": "supported", + "diffNumerologyWithinPUCCH-GroupSmallerSCS": "supported" + }, + "supportedBandwidthCombinationSet": "11111", + "powerClass-v1530": "pc2" + }, + { + "bandList": [ + { + "nr": { + "bandNR": 1, + "ca-BandwidthClassDL-NR": "a", + "ca-BandwidthClassUL-NR": "a" + } + }, + { + "nr": { + "bandNR": 78, + "ca-BandwidthClassDL-NR": "c" + } + } + ], + "featureSetCombination": 36, + "ca-ParametersNR": { + "simultaneousRxTxInterBandCA": "supported", + "diffNumerologyWithinPUCCH-GroupSmallerSCS": "supported" + }, + "supportedBandwidthCombinationSet": "11101" + }, + { + "bandList": [ + { + "nr": { + "bandNR": 1, + "ca-BandwidthClassDL-NR": "a", + "ca-BandwidthClassUL-NR": "a" + } + }, + { + "nr": { + "bandNR": 1, + "ca-BandwidthClassDL-NR": "a" + } + }, + { + "nr": { + "bandNR": 78, + "ca-BandwidthClassDL-NR": "a" + } + } + ], + "featureSetCombination": 32, + "ca-ParametersNR": { + "simultaneousRxTxInterBandCA": "supported", + "diffNumerologyWithinPUCCH-GroupSmallerSCS": "supported" + }, + "supportedBandwidthCombinationSet": "10001" + }, + { + "bandList": [ + { + "nr": { + "bandNR": 1, + "ca-BandwidthClassDL-NR": "a", + "ca-BandwidthClassUL-NR": "a" + } + }, + { + "nr": { + "bandNR": 78, + "ca-BandwidthClassDL-NR": "a" + } + }, + { + "nr": { + "bandNR": 78, + "ca-BandwidthClassDL-NR": "a" + } + } + ], + "featureSetCombination": 31, + "ca-ParametersNR": { + "simultaneousRxTxInterBandCA": "supported", + "diffNumerologyWithinPUCCH-GroupSmallerSCS": "supported" + }, + "supportedBandwidthCombinationSet": "11101" + }, + { + "bandList": [ + { + "nr": { + "bandNR": 1, + "ca-BandwidthClassDL-NR": "a", + "ca-BandwidthClassUL-NR": "a" + } + }, + { + "nr": { + "bandNR": 78, + "ca-BandwidthClassDL-NR": "a" + } + }, + { + "nr": { + "bandNR": 78, + "ca-BandwidthClassDL-NR": "a" + } + } + ], + "featureSetCombination": 33, + "ca-ParametersNR": { + "simultaneousRxTxInterBandCA": "supported", + "diffNumerologyWithinPUCCH-GroupSmallerSCS": "supported", + "supportedNumberTAG": "n2" + }, + "supportedBandwidthCombinationSet": "11101" + }, + { + "bandList": [ + { + "nr": { + "bandNR": 1, + "ca-BandwidthClassDL-NR": "a", + "ca-BandwidthClassUL-NR": "a" + } + }, + { + "nr": { + "bandNR": 1, + "ca-BandwidthClassDL-NR": "a" + } + } + ], + "featureSetCombination": 34, + "ca-ParametersNR": { + "simultaneousRxTxInterBandCA": "supported" + }, + "supportedBandwidthCombinationSet": "10001" + }, + { + "bandList": [ + { + "nr": { + "bandNR": 1, + "ca-BandwidthClassDL-NR": "a" + } + }, + { + "nr": { + "bandNR": 41, + "ca-BandwidthClassDL-NR": "a", + "ca-BandwidthClassUL-NR": "a" + } + } + ], + "featureSetCombination": 80, + "ca-ParametersNR": { + "simultaneousRxTxInterBandCA": "supported" + }, + "supportedBandwidthCombinationSet": "11001", + "powerClass-v1530": "pc2" + }, + { + "bandList": [ + { + "nr": { + "bandNR": 1, + "ca-BandwidthClassDL-NR": "a" + } + }, + { + "nr": { + "bandNR": 41, + "ca-BandwidthClassDL-NR": "a", + "ca-BandwidthClassUL-NR": "a" + } + }, + { + "nr": { + "bandNR": 78, + "ca-BandwidthClassDL-NR": "a" + } + } + ], + "featureSetCombination": 85, + "ca-ParametersNR": { + "simultaneousRxTxInterBandCA": "supported" + }, + "supportedBandwidthCombinationSet": "10001" + }, + { + "bandList": [ + { + "nr": { + "bandNR": 1, + "ca-BandwidthClassDL-NR": "a" + } + }, + { + "nr": { + "bandNR": 41, + "ca-BandwidthClassDL-NR": "a" + } + }, + { + "nr": { + "bandNR": 78, + "ca-BandwidthClassDL-NR": "a", + "ca-BandwidthClassUL-NR": "a" + } + } + ], + "featureSetCombination": 4, + "ca-ParametersNR": { + "simultaneousRxTxInterBandCA": "supported" + }, + "supportedBandwidthCombinationSet": "10001" + }, + { + "bandList": [ + { + "nr": { + "bandNR": 1, + "ca-BandwidthClassDL-NR": "a" + } + }, + { + "nr": { + "bandNR": 78, + "ca-BandwidthClassDL-NR": "c", + "ca-BandwidthClassUL-NR": "a" + } + } + ], + "featureSetCombination": 17, + "ca-ParametersNR": { + "simultaneousRxTxInterBandCA": "supported", + "supportedNumberTAG": "n2" + }, + "supportedBandwidthCombinationSet": "11101" + }, + { + "bandList": [ + { + "nr": { + "bandNR": 1, + "ca-BandwidthClassDL-NR": "a" + } + }, + { + "nr": { + "bandNR": 78, + "ca-BandwidthClassDL-NR": "a", + "ca-BandwidthClassUL-NR": "a" + } + } + ], + "featureSetCombination": 18, + "ca-ParametersNR": { + "simultaneousRxTxInterBandCA": "supported" + }, + "supportedBandwidthCombinationSet": "11111", + "powerClass-v1530": "pc2" + }, + { + "bandList": [ + { + "nr": { + "bandNR": 1, + "ca-BandwidthClassDL-NR": "a" + } + }, + { + "nr": { + "bandNR": 1, + "ca-BandwidthClassDL-NR": "a" + } + }, + { + "nr": { + "bandNR": 78, + "ca-BandwidthClassDL-NR": "a", + "ca-BandwidthClassUL-NR": "a" + } + } + ], + "featureSetCombination": 2, + "ca-ParametersNR": { + "simultaneousRxTxInterBandCA": "supported" + }, + "supportedBandwidthCombinationSet": "10001" + }, + { + "bandList": [ + { + "nr": { + "bandNR": 1, + "ca-BandwidthClassDL-NR": "a" + } + }, + { + "nr": { + "bandNR": 78, + "ca-BandwidthClassDL-NR": "a", + "ca-BandwidthClassUL-NR": "a" + } + }, + { + "nr": { + "bandNR": 78, + "ca-BandwidthClassDL-NR": "a" + } + } + ], + "featureSetCombination": 7, + "ca-ParametersNR": { + "simultaneousRxTxInterBandCA": "supported", + "supportedNumberTAG": "n2" + }, + "supportedBandwidthCombinationSet": "11101" + }, + { + "bandList": [ + { + "nr": { + "bandNR": 41, + "ca-BandwidthClassDL-NR": "c", + "ca-BandwidthClassUL-NR": "a" + } + }, + { + "nr": { + "bandNR": 71, + "ca-BandwidthClassDL-NR": "a", + "ca-BandwidthClassUL-NR": "a" + } + } + ], + "featureSetCombination": 46, + "ca-ParametersNR": { + "parallelTxSRS-PUCCH-PUSCH": "supported", + "parallelTxPRACH-SRS-PUCCH-PUSCH": "supported", + "simultaneousRxTxInterBandCA": "supported", + "diffNumerologyWithinPUCCH-GroupSmallerSCS": "supported", + "supportedNumberTAG": "n2" + }, + "supportedBandwidthCombinationSet": "11001", + "powerClass-v1530": "pc2" + }, + { + "bandList": [ + { + "nr": { + "bandNR": 41, + "ca-BandwidthClassDL-NR": "c", + "ca-BandwidthClassUL-NR": "a" + } + }, + { + "nr": { + "bandNR": 71, + "ca-BandwidthClassDL-NR": "b", + "ca-BandwidthClassUL-NR": "a" + } + } + ], + "featureSetCombination": 54, + "ca-ParametersNR": { + "parallelTxSRS-PUCCH-PUSCH": "supported", + "parallelTxPRACH-SRS-PUCCH-PUSCH": "supported", + "simultaneousRxTxInterBandCA": "supported", + "diffNumerologyWithinPUCCH-GroupSmallerSCS": "supported", + "supportedNumberTAG": "n2" + }, + "supportedBandwidthCombinationSet": "11001", + "powerClass-v1530": "pc2" + }, + { + "bandList": [ + { + "nr": { + "bandNR": 41, + "ca-BandwidthClassDL-NR": "a", + "ca-BandwidthClassUL-NR": "a" + } + }, + { + "nr": { + "bandNR": 71, + "ca-BandwidthClassDL-NR": "a", + "ca-BandwidthClassUL-NR": "a" + } + }, + { + "nr": { + "bandNR": 78, + "ca-BandwidthClassDL-NR": "a" + } + }, + { + "nr": { + "bandNR": 78, + "ca-BandwidthClassDL-NR": "a" + } + } + ], + "featureSetCombination": 52, + "ca-ParametersNR": { + "parallelTxSRS-PUCCH-PUSCH": "supported", + "parallelTxPRACH-SRS-PUCCH-PUSCH": "supported", + "simultaneousRxTxInterBandCA": "supported", + "diffNumerologyWithinPUCCH-GroupSmallerSCS": "supported", + "supportedNumberTAG": "n2" + }, + "supportedBandwidthCombinationSet": "10001" + }, + { + "bandList": [ + { + "nr": { + "bandNR": 41, + "ca-BandwidthClassDL-NR": "a", + "ca-BandwidthClassUL-NR": "a" + } + }, + { + "nr": { + "bandNR": 41, + "ca-BandwidthClassDL-NR": "c" + } + }, + { + "nr": { + "bandNR": 71, + "ca-BandwidthClassDL-NR": "b", + "ca-BandwidthClassUL-NR": "a" + } + } + ], + "featureSetCombination": 58, + "ca-ParametersNR": { + "parallelTxSRS-PUCCH-PUSCH": "supported", + "parallelTxPRACH-SRS-PUCCH-PUSCH": "supported", + "simultaneousRxTxInterBandCA": "supported", + "diffNumerologyWithinPUCCH-GroupSmallerSCS": "supported", + "supportedNumberTAG": "n2" + }, + "supportedBandwidthCombinationSet": "10001", + "powerClass-v1530": "pc2" + }, + { + "bandList": [ + { + "nr": { + "bandNR": 41, + "ca-BandwidthClassDL-NR": "c", + "ca-BandwidthClassUL-NR": "a" + } + }, + { + "nr": { + "bandNR": 41, + "ca-BandwidthClassDL-NR": "a" + } + }, + { + "nr": { + "bandNR": 71, + "ca-BandwidthClassDL-NR": "b", + "ca-BandwidthClassUL-NR": "a" + } + } + ], + "featureSetCombination": 57, + "ca-ParametersNR": { + "parallelTxSRS-PUCCH-PUSCH": "supported", + "parallelTxPRACH-SRS-PUCCH-PUSCH": "supported", + "simultaneousRxTxInterBandCA": "supported", + "diffNumerologyWithinPUCCH-GroupSmallerSCS": "supported", + "supportedNumberTAG": "n2" + }, + "supportedBandwidthCombinationSet": "10001", + "powerClass-v1530": "pc2" + }, + { + "bandList": [ + { + "nr": { + "bandNR": 41, + "ca-BandwidthClassDL-NR": "c", + "ca-BandwidthClassUL-NR": "a" + } + }, + { + "nr": { + "bandNR": 41, + "ca-BandwidthClassDL-NR": "a" + } + }, + { + "nr": { + "bandNR": 71, + "ca-BandwidthClassDL-NR": "a", + "ca-BandwidthClassUL-NR": "a" + } + }, + { + "nr": { + "bandNR": 71, + "ca-BandwidthClassDL-NR": "a" + } + } + ], + "featureSetCombination": 55, + "ca-ParametersNR": { + "parallelTxSRS-PUCCH-PUSCH": "supported", + "parallelTxPRACH-SRS-PUCCH-PUSCH": "supported", + "simultaneousRxTxInterBandCA": "supported", + "diffNumerologyWithinPUCCH-GroupSmallerSCS": "supported", + "supportedNumberTAG": "n2" + }, + "supportedBandwidthCombinationSet": "10001", + "powerClass-v1530": "pc2" + }, + { + "bandList": [ + { + "nr": { + "bandNR": 41, + "ca-BandwidthClassDL-NR": "a", + "ca-BandwidthClassUL-NR": "a" + } + }, + { + "nr": { + "bandNR": 41, + "ca-BandwidthClassDL-NR": "c" + } + }, + { + "nr": { + "bandNR": 71, + "ca-BandwidthClassDL-NR": "a", + "ca-BandwidthClassUL-NR": "a" + } + }, + { + "nr": { + "bandNR": 71, + "ca-BandwidthClassDL-NR": "a" + } + } + ], + "featureSetCombination": 56, + "ca-ParametersNR": { + "parallelTxSRS-PUCCH-PUSCH": "supported", + "parallelTxPRACH-SRS-PUCCH-PUSCH": "supported", + "simultaneousRxTxInterBandCA": "supported", + "diffNumerologyWithinPUCCH-GroupSmallerSCS": "supported", + "supportedNumberTAG": "n2" + }, + "supportedBandwidthCombinationSet": "10001", + "powerClass-v1530": "pc2" + }, + { + "bandList": [ + { + "nr": { + "bandNR": 41, + "ca-BandwidthClassDL-NR": "c", + "ca-BandwidthClassUL-NR": "a" + } + }, + { + "nr": { + "bandNR": 41, + "ca-BandwidthClassDL-NR": "a" + } + }, + { + "nr": { + "bandNR": 71, + "ca-BandwidthClassDL-NR": "a", + "ca-BandwidthClassUL-NR": "a" + } + }, + { + "nr": { + "bandNR": 71, + "ca-BandwidthClassDL-NR": "a" + } + } + ], + "featureSetCombination": 48, + "ca-ParametersNR": { + "parallelTxSRS-PUCCH-PUSCH": "supported", + "parallelTxPRACH-SRS-PUCCH-PUSCH": "supported", + "simultaneousRxTxInterBandCA": "supported", + "diffNumerologyWithinPUCCH-GroupSmallerSCS": "supported", + "supportedNumberTAG": "n2" + }, + "supportedBandwidthCombinationSet": "10001" + }, + { + "bandList": [ + { + "nr": { + "bandNR": 41, + "ca-BandwidthClassDL-NR": "a", + "ca-BandwidthClassUL-NR": "a" + } + }, + { + "nr": { + "bandNR": 41, + "ca-BandwidthClassDL-NR": "a" + } + }, + { + "nr": { + "bandNR": 71, + "ca-BandwidthClassDL-NR": "a", + "ca-BandwidthClassUL-NR": "a" + } + }, + { + "nr": { + "bandNR": 71, + "ca-BandwidthClassDL-NR": "a" + } + } + ], + "featureSetCombination": 49, + "ca-ParametersNR": { + "parallelTxSRS-PUCCH-PUSCH": "supported", + "parallelTxPRACH-SRS-PUCCH-PUSCH": "supported", + "simultaneousRxTxInterBandCA": "supported", + "diffNumerologyWithinPUCCH-GroupSmallerSCS": "supported", + "supportedNumberTAG": "n2" + }, + "supportedBandwidthCombinationSet": "10001" + }, + { + "bandList": [ + { + "nr": { + "bandNR": 41, + "ca-BandwidthClassDL-NR": "a", + "ca-BandwidthClassUL-NR": "a" + } + }, + { + "nr": { + "bandNR": 41, + "ca-BandwidthClassDL-NR": "a" + } + }, + { + "nr": { + "bandNR": 41, + "ca-BandwidthClassDL-NR": "a" + } + }, + { + "nr": { + "bandNR": 71, + "ca-BandwidthClassDL-NR": "a", + "ca-BandwidthClassUL-NR": "a" + } + }, + { + "nr": { + "bandNR": 71, + "ca-BandwidthClassDL-NR": "a" + } + } + ], + "featureSetCombination": 50, + "ca-ParametersNR": { + "parallelTxSRS-PUCCH-PUSCH": "supported", + "parallelTxPRACH-SRS-PUCCH-PUSCH": "supported", + "simultaneousRxTxInterBandCA": "supported", + "diffNumerologyWithinPUCCH-GroupSmallerSCS": "supported", + "supportedNumberTAG": "n2" + }, + "supportedBandwidthCombinationSet": "10001", + "powerClass-v1530": "pc2" + }, + { + "bandList": [ + { + "nr": { + "bandNR": 41, + "ca-BandwidthClassDL-NR": "a", + "ca-BandwidthClassUL-NR": "a" + } + }, + { + "nr": { + "bandNR": 41, + "ca-BandwidthClassDL-NR": "a" + } + }, + { + "nr": { + "bandNR": 41, + "ca-BandwidthClassDL-NR": "a" + } + }, + { + "nr": { + "bandNR": 71, + "ca-BandwidthClassDL-NR": "b", + "ca-BandwidthClassUL-NR": "a" + } + } + ], + "featureSetCombination": 51, + "ca-ParametersNR": { + "parallelTxSRS-PUCCH-PUSCH": "supported", + "parallelTxPRACH-SRS-PUCCH-PUSCH": "supported", + "simultaneousRxTxInterBandCA": "supported", + "diffNumerologyWithinPUCCH-GroupSmallerSCS": "supported", + "supportedNumberTAG": "n2" + }, + "supportedBandwidthCombinationSet": "10001", + "powerClass-v1530": "pc2" + }, + { + "bandList": [ + { + "nr": { + "bandNR": 41, + "ca-BandwidthClassDL-NR": "c", + "ca-BandwidthClassUL-NR": "a" + } + }, + { + "nr": { + "bandNR": 71, + "ca-BandwidthClassDL-NR": "a", + "ca-BandwidthClassUL-NR": "a" + } + }, + { + "nr": { + "bandNR": 71, + "ca-BandwidthClassDL-NR": "a" + } + } + ], + "featureSetCombination": 53, + "ca-ParametersNR": { + "parallelTxSRS-PUCCH-PUSCH": "supported", + "parallelTxPRACH-SRS-PUCCH-PUSCH": "supported", + "simultaneousRxTxInterBandCA": "supported", + "diffNumerologyWithinPUCCH-GroupSmallerSCS": "supported", + "supportedNumberTAG": "n2" + }, + "supportedBandwidthCombinationSet": "10001", + "powerClass-v1530": "pc2" + }, + { + "bandList": [ + { + "nr": { + "bandNR": 41, + "ca-BandwidthClassDL-NR": "a", + "ca-BandwidthClassUL-NR": "a" + } + }, + { + "nr": { + "bandNR": 41, + "ca-BandwidthClassDL-NR": "a" + } + }, + { + "nr": { + "bandNR": 71, + "ca-BandwidthClassDL-NR": "a", + "ca-BandwidthClassUL-NR": "a" + } + } + ], + "featureSetCombination": 40, + "ca-ParametersNR": { + "parallelTxSRS-PUCCH-PUSCH": "supported", + "parallelTxPRACH-SRS-PUCCH-PUSCH": "supported", + "simultaneousRxTxInterBandCA": "supported", + "diffNumerologyWithinPUCCH-GroupSmallerSCS": "supported", + "supportedNumberTAG": "n2" + }, + "supportedBandwidthCombinationSet": "11001", + "powerClass-v1530": "pc2" + }, + { + "bandList": [ + { + "nr": { + "bandNR": 41, + "ca-BandwidthClassDL-NR": "c", + "ca-BandwidthClassUL-NR": "a" + } + }, + { + "nr": { + "bandNR": 41, + "ca-BandwidthClassDL-NR": "a" + } + }, + { + "nr": { + "bandNR": 71, + "ca-BandwidthClassDL-NR": "a", + "ca-BandwidthClassUL-NR": "a" + } + } + ], + "featureSetCombination": 41, + "ca-ParametersNR": { + "parallelTxSRS-PUCCH-PUSCH": "supported", + "parallelTxPRACH-SRS-PUCCH-PUSCH": "supported", + "simultaneousRxTxInterBandCA": "supported", + "diffNumerologyWithinPUCCH-GroupSmallerSCS": "supported", + "supportedNumberTAG": "n2" + }, + "supportedBandwidthCombinationSet": "10001" + }, + { + "bandList": [ + { + "nr": { + "bandNR": 41, + "ca-BandwidthClassDL-NR": "a", + "ca-BandwidthClassUL-NR": "a" + } + }, + { + "nr": { + "bandNR": 41, + "ca-BandwidthClassDL-NR": "a" + } + }, + { + "nr": { + "bandNR": 41, + "ca-BandwidthClassDL-NR": "a" + } + }, + { + "nr": { + "bandNR": 71, + "ca-BandwidthClassDL-NR": "a", + "ca-BandwidthClassUL-NR": "a" + } + } + ], + "featureSetCombination": 42, + "ca-ParametersNR": { + "parallelTxSRS-PUCCH-PUSCH": "supported", + "parallelTxPRACH-SRS-PUCCH-PUSCH": "supported", + "simultaneousRxTxInterBandCA": "supported", + "diffNumerologyWithinPUCCH-GroupSmallerSCS": "supported", + "supportedNumberTAG": "n2" + }, + "supportedBandwidthCombinationSet": "10001", + "powerClass-v1530": "pc2" + }, + { + "bandList": [ + { + "nr": { + "bandNR": 41, + "ca-BandwidthClassDL-NR": "a", + "ca-BandwidthClassUL-NR": "a" + } + }, + { + "nr": { + "bandNR": 41, + "ca-BandwidthClassDL-NR": "a" + } + }, + { + "nr": { + "bandNR": 71, + "ca-BandwidthClassDL-NR": "b", + "ca-BandwidthClassUL-NR": "a" + } + } + ], + "featureSetCombination": 43, + "ca-ParametersNR": { + "parallelTxSRS-PUCCH-PUSCH": "supported", + "parallelTxPRACH-SRS-PUCCH-PUSCH": "supported", + "simultaneousRxTxInterBandCA": "supported", + "diffNumerologyWithinPUCCH-GroupSmallerSCS": "supported", + "supportedNumberTAG": "n2" + }, + "supportedBandwidthCombinationSet": "11001", + "powerClass-v1530": "pc2" + }, + { + "bandList": [ + { + "nr": { + "bandNR": 41, + "ca-BandwidthClassDL-NR": "a", + "ca-BandwidthClassUL-NR": "a" + } + }, + { + "nr": { + "bandNR": 41, + "ca-BandwidthClassDL-NR": "c" + } + }, + { + "nr": { + "bandNR": 71, + "ca-BandwidthClassDL-NR": "a", + "ca-BandwidthClassUL-NR": "a" + } + } + ], + "featureSetCombination": 44, + "ca-ParametersNR": { + "parallelTxSRS-PUCCH-PUSCH": "supported", + "parallelTxPRACH-SRS-PUCCH-PUSCH": "supported", + "simultaneousRxTxInterBandCA": "supported", + "diffNumerologyWithinPUCCH-GroupSmallerSCS": "supported", + "supportedNumberTAG": "n2" + }, + "supportedBandwidthCombinationSet": "10001", + "powerClass-v1530": "pc2" + }, + { + "bandList": [ + { + "nr": { + "bandNR": 41, + "ca-BandwidthClassDL-NR": "c", + "ca-BandwidthClassUL-NR": "a" + } + }, + { + "nr": { + "bandNR": 41, + "ca-BandwidthClassDL-NR": "a" + } + }, + { + "nr": { + "bandNR": 71, + "ca-BandwidthClassDL-NR": "a", + "ca-BandwidthClassUL-NR": "a" + } + } + ], + "featureSetCombination": 45, + "ca-ParametersNR": { + "parallelTxSRS-PUCCH-PUSCH": "supported", + "parallelTxPRACH-SRS-PUCCH-PUSCH": "supported", + "simultaneousRxTxInterBandCA": "supported", + "diffNumerologyWithinPUCCH-GroupSmallerSCS": "supported", + "supportedNumberTAG": "n2" + }, + "supportedBandwidthCombinationSet": "10001", + "powerClass-v1530": "pc2" + }, + { + "bandList": [ + { + "nr": { + "bandNR": 41, + "ca-BandwidthClassDL-NR": "a", + "ca-BandwidthClassUL-NR": "a" + } + }, + { + "nr": { + "bandNR": 41, + "ca-BandwidthClassDL-NR": "a" + } + }, + { + "nr": { + "bandNR": 71, + "ca-BandwidthClassDL-NR": "a", + "ca-BandwidthClassUL-NR": "a" + } + }, + { + "nr": { + "bandNR": 71, + "ca-BandwidthClassDL-NR": "a" + } + } + ], + "featureSetCombination": 47, + "ca-ParametersNR": { + "parallelTxSRS-PUCCH-PUSCH": "supported", + "parallelTxPRACH-SRS-PUCCH-PUSCH": "supported", + "simultaneousRxTxInterBandCA": "supported", + "diffNumerologyWithinPUCCH-GroupSmallerSCS": "supported", + "supportedNumberTAG": "n2" + }, + "supportedBandwidthCombinationSet": "10001", + "powerClass-v1530": "pc2" + }, + { + "bandList": [ + { + "nr": { + "bandNR": 41, + "ca-BandwidthClassDL-NR": "a" + } + }, + { + "nr": { + "bandNR": 71, + "ca-BandwidthClassDL-NR": "a", + "ca-BandwidthClassUL-NR": "a" + } + }, + { + "nr": { + "bandNR": 78, + "ca-BandwidthClassDL-NR": "a", + "ca-BandwidthClassUL-NR": "a" + } + } + ], + "featureSetCombination": 9, + "ca-ParametersNR": { + "parallelTxSRS-PUCCH-PUSCH": "supported", + "parallelTxPRACH-SRS-PUCCH-PUSCH": "supported", + "simultaneousRxTxInterBandCA": "supported", + "diffNumerologyWithinPUCCH-GroupSmallerSCS": "supported", + "supportedNumberTAG": "n2" + }, + "supportedBandwidthCombinationSet": "10001" + }, + { + "bandList": [ + { + "nr": { + "bandNR": 41, + "ca-BandwidthClassDL-NR": "a" + } + }, + { + "nr": { + "bandNR": 71, + "ca-BandwidthClassDL-NR": "a", + "ca-BandwidthClassUL-NR": "a" + } + }, + { + "nr": { + "bandNR": 78, + "ca-BandwidthClassDL-NR": "a", + "ca-BandwidthClassUL-NR": "a" + } + }, + { + "nr": { + "bandNR": 78, + "ca-BandwidthClassDL-NR": "a" + } + } + ], + "featureSetCombination": 11, + "ca-ParametersNR": { + "parallelTxSRS-PUCCH-PUSCH": "supported", + "parallelTxPRACH-SRS-PUCCH-PUSCH": "supported", + "simultaneousRxTxInterBandCA": "supported", + "diffNumerologyWithinPUCCH-GroupSmallerSCS": "supported", + "supportedNumberTAG": "n2" + }, + "supportedBandwidthCombinationSet": "10001" + }, + { + "bandList": [ + { + "nr": { + "bandNR": 41, + "ca-BandwidthClassDL-NR": "c" + } + }, + { + "nr": { + "bandNR": 41, + "ca-BandwidthClassDL-NR": "a" + } + }, + { + "nr": { + "bandNR": 71, + "ca-BandwidthClassDL-NR": "b", + "ca-BandwidthClassUL-NR": "a" + } + } + ], + "featureSetCombination": 66, + "ca-ParametersNR": { + "simultaneousRxTxInterBandCA": "supported", + "diffNumerologyWithinPUCCH-GroupSmallerSCS": "supported" + }, + "supportedBandwidthCombinationSet": "10001" + }, + { + "bandList": [ + { + "nr": { + "bandNR": 41, + "ca-BandwidthClassDL-NR": "c" + } + }, + { + "nr": { + "bandNR": 41, + "ca-BandwidthClassDL-NR": "a" + } + }, + { + "nr": { + "bandNR": 71, + "ca-BandwidthClassDL-NR": "a", + "ca-BandwidthClassUL-NR": "a" + } + }, + { + "nr": { + "bandNR": 71, + "ca-BandwidthClassDL-NR": "a" + } + } + ], + "featureSetCombination": 64, + "ca-ParametersNR": { + "simultaneousRxTxInterBandCA": "supported", + "diffNumerologyWithinPUCCH-GroupSmallerSCS": "supported" + }, + "supportedBandwidthCombinationSet": "10001" + }, + { + "bandList": [ + { + "nr": { + "bandNR": 41, + "ca-BandwidthClassDL-NR": "a" + } + }, + { + "nr": { + "bandNR": 41, + "ca-BandwidthClassDL-NR": "a" + } + }, + { + "nr": { + "bandNR": 41, + "ca-BandwidthClassDL-NR": "a" + } + }, + { + "nr": { + "bandNR": 71, + "ca-BandwidthClassDL-NR": "a", + "ca-BandwidthClassUL-NR": "a" + } + } + ], + "featureSetCombination": 60, + "ca-ParametersNR": { + "simultaneousRxTxInterBandCA": "supported", + "diffNumerologyWithinPUCCH-GroupSmallerSCS": "supported" + }, + "supportedBandwidthCombinationSet": "10001" + }, + { + "bandList": [ + { + "nr": { + "bandNR": 71, + "ca-BandwidthClassDL-NR": "a", + "ca-BandwidthClassUL-NR": "a" + } + }, + { + "nr": { + "bandNR": 78, + "ca-BandwidthClassDL-NR": "a", + "ca-BandwidthClassUL-NR": "a" + } + }, + { + "nr": { + "bandNR": 78, + "ca-BandwidthClassDL-NR": "a" + } + } + ], + "featureSetCombination": 22, + "ca-ParametersNR": { + "parallelTxSRS-PUCCH-PUSCH": "supported", + "parallelTxPRACH-SRS-PUCCH-PUSCH": "supported", + "simultaneousRxTxInterBandCA": "supported", + "diffNumerologyWithinPUCCH-GroupSmallerSCS": "supported", + "supportedNumberTAG": "n2" + }, + "supportedBandwidthCombinationSet": "10001", + "powerClass-v1530": "pc2" + }, + { + "bandList": [ + { + "nr": { + "bandNR": 71, + "ca-BandwidthClassDL-NR": "a", + "ca-BandwidthClassUL-NR": "a" + } + }, + { + "nr": { + "bandNR": 71, + "ca-BandwidthClassDL-NR": "a" + } + } + ], + "featureSetCombination": 78, + "ca-ParametersNR": { + "simultaneousRxTxInterBandCA": "supported" + }, + "supportedBandwidthCombinationSet": "10001" + }, + { + "bandList": [ + { + "nr": { + "bandNR": 41, + "ca-BandwidthClassDL-NR": "c", + "ca-BandwidthClassUL-NR": "a" + } + }, + { + "nr": { + "bandNR": 71, + "ca-BandwidthClassDL-NR": "a" + } + } + ], + "featureSetCombination": 86, + "ca-ParametersNR": { + "simultaneousRxTxInterBandCA": "supported" + }, + "supportedBandwidthCombinationSet": "11001", + "powerClass-v1530": "pc2" + }, + { + "bandList": [ + { + "nr": { + "bandNR": 41, + "ca-BandwidthClassDL-NR": "a", + "ca-BandwidthClassUL-NR": "a" + } + }, + { + "nr": { + "bandNR": 41, + "ca-BandwidthClassDL-NR": "a" + } + }, + { + "nr": { + "bandNR": 41, + "ca-BandwidthClassDL-NR": "a" + } + }, + { + "nr": { + "bandNR": 71, + "ca-BandwidthClassDL-NR": "a" + } + } + ], + "featureSetCombination": 84, + "ca-ParametersNR": { + "simultaneousRxTxInterBandCA": "supported" + }, + "supportedBandwidthCombinationSet": "10001", + "powerClass-v1530": "pc2" + }, + { + "bandList": [ + { + "nr": { + "bandNR": 41, + "ca-BandwidthClassDL-NR": "a", + "ca-BandwidthClassUL-NR": "a" + } + }, + { + "nr": { + "bandNR": 41, + "ca-BandwidthClassDL-NR": "a" + } + }, + { + "nr": { + "bandNR": 41, + "ca-BandwidthClassDL-NR": "a" + } + }, + { + "nr": { + "bandNR": 71, + "ca-BandwidthClassDL-NR": "a" + } + }, + { + "nr": { + "bandNR": 71, + "ca-BandwidthClassDL-NR": "a" + } + } + ], + "featureSetCombination": 94, + "ca-ParametersNR": { + "simultaneousRxTxInterBandCA": "supported" + }, + "supportedBandwidthCombinationSet": "10001", + "powerClass-v1530": "pc2" + }, + { + "bandList": [ + { + "nr": { + "bandNR": 41, + "ca-BandwidthClassDL-NR": "a", + "ca-BandwidthClassUL-NR": "a" + } + }, + { + "nr": { + "bandNR": 41, + "ca-BandwidthClassDL-NR": "a" + } + }, + { + "nr": { + "bandNR": 71, + "ca-BandwidthClassDL-NR": "a" + } + } + ], + "featureSetCombination": 82, + "ca-ParametersNR": { + "simultaneousRxTxInterBandCA": "supported" + }, + "supportedBandwidthCombinationSet": "11001", + "powerClass-v1530": "pc2" + }, + { + "bandList": [ + { + "nr": { + "bandNR": 41, + "ca-BandwidthClassDL-NR": "c", + "ca-BandwidthClassUL-NR": "a" + } + }, + { + "nr": { + "bandNR": 41, + "ca-BandwidthClassDL-NR": "a" + } + }, + { + "nr": { + "bandNR": 71, + "ca-BandwidthClassDL-NR": "a" + } + }, + { + "nr": { + "bandNR": 71, + "ca-BandwidthClassDL-NR": "a" + } + } + ], + "featureSetCombination": 88, + "ca-ParametersNR": { + "simultaneousRxTxInterBandCA": "supported" + }, + "supportedBandwidthCombinationSet": "10001" + }, + { + "bandList": [ + { + "nr": { + "bandNR": 41, + "ca-BandwidthClassDL-NR": "a", + "ca-BandwidthClassUL-NR": "a" + } + }, + { + "nr": { + "bandNR": 41, + "ca-BandwidthClassDL-NR": "a" + } + }, + { + "nr": { + "bandNR": 71, + "ca-BandwidthClassDL-NR": "a" + } + }, + { + "nr": { + "bandNR": 71, + "ca-BandwidthClassDL-NR": "a" + } + } + ], + "featureSetCombination": 89, + "ca-ParametersNR": { + "simultaneousRxTxInterBandCA": "supported" + }, + "supportedBandwidthCombinationSet": "10001", + "powerClass-v1530": "pc2" + }, + { + "bandList": [ + { + "nr": { + "bandNR": 41, + "ca-BandwidthClassDL-NR": "c", + "ca-BandwidthClassUL-NR": "a" + } + }, + { + "nr": { + "bandNR": 41, + "ca-BandwidthClassDL-NR": "a" + } + }, + { + "nr": { + "bandNR": 71, + "ca-BandwidthClassDL-NR": "a" + } + } + ], + "featureSetCombination": 90, + "ca-ParametersNR": { + "simultaneousRxTxInterBandCA": "supported" + }, + "supportedBandwidthCombinationSet": "10001", + "powerClass-v1530": "pc2" + }, + { + "bandList": [ + { + "nr": { + "bandNR": 41, + "ca-BandwidthClassDL-NR": "c", + "ca-BandwidthClassUL-NR": "a" + } + }, + { + "nr": { + "bandNR": 41, + "ca-BandwidthClassDL-NR": "a" + } + }, + { + "nr": { + "bandNR": 71, + "ca-BandwidthClassDL-NR": "a" + } + } + ], + "featureSetCombination": 91, + "ca-ParametersNR": { + "simultaneousRxTxInterBandCA": "supported" + }, + "supportedBandwidthCombinationSet": "10001", + "powerClass-v1530": "pc2" + }, + { + "bandList": [ + { + "nr": { + "bandNR": 41, + "ca-BandwidthClassDL-NR": "a", + "ca-BandwidthClassUL-NR": "a" + } + }, + { + "nr": { + "bandNR": 41, + "ca-BandwidthClassDL-NR": "c" + } + }, + { + "nr": { + "bandNR": 71, + "ca-BandwidthClassDL-NR": "a" + } + } + ], + "featureSetCombination": 92, + "ca-ParametersNR": { + "simultaneousRxTxInterBandCA": "supported" + }, + "supportedBandwidthCombinationSet": "10001", + "powerClass-v1530": "pc2" + }, + { + "bandList": [ + { + "nr": { + "bandNR": 41, + "ca-BandwidthClassDL-NR": "a", + "ca-BandwidthClassUL-NR": "a" + } + }, + { + "nr": { + "bandNR": 41, + "ca-BandwidthClassDL-NR": "a" + } + }, + { + "nr": { + "bandNR": 71, + "ca-BandwidthClassDL-NR": "b" + } + } + ], + "featureSetCombination": 93, + "ca-ParametersNR": { + "simultaneousRxTxInterBandCA": "supported" + }, + "supportedBandwidthCombinationSet": "11001", + "powerClass-v1530": "pc2" + }, + { + "bandList": [ + { + "nr": { + "bandNR": 41, + "ca-BandwidthClassDL-NR": "a" + } + }, + { + "nr": { + "bandNR": 71, + "ca-BandwidthClassDL-NR": "a" + } + }, + { + "nr": { + "bandNR": 78, + "ca-BandwidthClassDL-NR": "a", + "ca-BandwidthClassUL-NR": "a" + } + } + ], + "featureSetCombination": 10, + "ca-ParametersNR": { + "simultaneousRxTxInterBandCA": "supported" + }, + "supportedBandwidthCombinationSet": "10001" + }, + { + "bandList": [ + { + "nr": { + "bandNR": 41, + "ca-BandwidthClassDL-NR": "a" + } + }, + { + "nr": { + "bandNR": 71, + "ca-BandwidthClassDL-NR": "a" + } + }, + { + "nr": { + "bandNR": 78, + "ca-BandwidthClassDL-NR": "a", + "ca-BandwidthClassUL-NR": "a" + } + }, + { + "nr": { + "bandNR": 78, + "ca-BandwidthClassDL-NR": "a" + } + } + ], + "featureSetCombination": 12, + "ca-ParametersNR": { + "simultaneousRxTxInterBandCA": "supported" + }, + "supportedBandwidthCombinationSet": "10001" + }, + { + "bandList": [ + { + "nr": { + "bandNR": 41, + "ca-BandwidthClassDL-NR": "a", + "ca-BandwidthClassUL-NR": "a" + } + }, + { + "nr": { + "bandNR": 41, + "ca-BandwidthClassDL-NR": "a" + } + }, + { + "nr": { + "bandNR": 41, + "ca-BandwidthClassDL-NR": "a" + } + } + ], + "featureSetCombination": 79, + "ca-ParametersNR": { + "simultaneousRxTxInterBandCA": "supported" + }, + "supportedBandwidthCombinationSet": "10001", + "powerClass-v1530": "pc2" + }, + { + "bandList": [ + { + "nr": { + "bandNR": 41, + "ca-BandwidthClassDL-NR": "c", + "ca-BandwidthClassUL-NR": "a" + } + }, + { + "nr": { + "bandNR": 41, + "ca-BandwidthClassDL-NR": "a" + } + } + ], + "featureSetCombination": 83, + "ca-ParametersNR": { + "simultaneousRxTxInterBandCA": "supported" + }, + "supportedBandwidthCombinationSet": "10001", + "powerClass-v1530": "pc2" + }, + { + "bandList": [ + { + "nr": { + "bandNR": 41, + "ca-BandwidthClassDL-NR": "a", + "ca-BandwidthClassUL-NR": "a" + } + }, + { + "nr": { + "bandNR": 41, + "ca-BandwidthClassDL-NR": "c" + } + } + ], + "featureSetCombination": 87, + "ca-ParametersNR": { + "simultaneousRxTxInterBandCA": "supported" + }, + "supportedBandwidthCombinationSet": "10001", + "powerClass-v1530": "pc2" + }, + { + "bandList": [ + { + "nr": { + "bandNR": 41, + "ca-BandwidthClassDL-NR": "a", + "ca-BandwidthClassUL-NR": "a" + } + }, + { + "nr": { + "bandNR": 41, + "ca-BandwidthClassDL-NR": "c" + } + } + ], + "featureSetCombination": 81, + "ca-ParametersNR": { + "simultaneousRxTxInterBandCA": "supported" + }, + "supportedBandwidthCombinationSet": "10001" + }, + { + "bandList": [ + { + "nr": { + "bandNR": 41, + "ca-BandwidthClassDL-NR": "a" + } + }, + { + "nr": { + "bandNR": 78, + "ca-BandwidthClassDL-NR": "c", + "ca-BandwidthClassUL-NR": "a" + } + } + ], + "featureSetCombination": 21, + "ca-ParametersNR": { + "simultaneousRxTxInterBandCA": "supported" + }, + "supportedBandwidthCombinationSet": "10001" + }, + { + "bandList": [ + { + "nr": { + "bandNR": 41, + "ca-BandwidthClassDL-NR": "a" + } + }, + { + "nr": { + "bandNR": 78, + "ca-BandwidthClassDL-NR": "a", + "ca-BandwidthClassUL-NR": "a" + } + } + ], + "featureSetCombination": 20, + "ca-ParametersNR": { + "simultaneousRxTxInterBandCA": "supported" + }, + "supportedBandwidthCombinationSet": "11001" + }, + { + "bandList": [ + { + "nr": { + "bandNR": 41, + "ca-BandwidthClassDL-NR": "a" + } + }, + { + "nr": { + "bandNR": 78, + "ca-BandwidthClassDL-NR": "a", + "ca-BandwidthClassUL-NR": "a" + } + } + ], + "featureSetCombination": 19, + "ca-ParametersNR": { + "simultaneousRxTxInterBandCA": "supported" + }, + "supportedBandwidthCombinationSet": "11001" + }, + { + "bandList": [ + { + "nr": { + "bandNR": 41, + "ca-BandwidthClassDL-NR": "a" + } + }, + { + "nr": { + "bandNR": 78, + "ca-BandwidthClassDL-NR": "a", + "ca-BandwidthClassUL-NR": "a" + } + }, + { + "nr": { + "bandNR": 78, + "ca-BandwidthClassDL-NR": "a" + } + } + ], + "featureSetCombination": 0, + "ca-ParametersNR": { + "simultaneousRxTxInterBandCA": "supported" + }, + "supportedBandwidthCombinationSet": "10001" + }, + { + "bandList": [ + { + "nr": { + "bandNR": 78, + "ca-BandwidthClassDL-NR": "c", + "ca-BandwidthClassUL-NR": "a" + } + } + ], + "featureSetCombination": 30, + "ca-ParametersNR": { + "simultaneousRxTxInterBandCA": "supported" + }, + "supportedBandwidthCombinationSet": "11001", + "powerClass-v1530": "pc2" + }, + { + "bandList": [ + { + "nr": { + "bandNR": 78, + "ca-BandwidthClassDL-NR": "d", + "ca-BandwidthClassUL-NR": "a" + } + } + ], + "featureSetCombination": 29, + "ca-ParametersNR": { + "simultaneousRxTxInterBandCA": "supported" + }, + "supportedBandwidthCombinationSet": "10001", + "powerClass-v1530": "pc2" + }, + { + "bandList": [ + { + "nr": { + "bandNR": 78, + "ca-BandwidthClassDL-NR": "a", + "ca-BandwidthClassUL-NR": "a" + } + }, + { + "nr": { + "bandNR": 78, + "ca-BandwidthClassDL-NR": "a" + } + } + ], + "featureSetCombination": 23, + "ca-ParametersNR": { + "simultaneousRxTxInterBandCA": "supported" + }, + "supportedBandwidthCombinationSet": "11101", + "powerClass-v1530": "pc2" + }, + { + "bandList": [ + { + "nr": { + "bandNR": 71, + "ca-BandwidthClassDL-NR": "a", + "ca-BandwidthClassUL-NR": "a" + } + }, + { + "nr": { + "bandNR": 261, + "ca-BandwidthClassDL-NR": "q", + "ca-BandwidthClassUL-NR": "q" + } + } + ], + "featureSetCombination": 100, + "supportedBandwidthCombinationSet": "10001" + }, + { + "bandList": [ + { + "nr": { + "bandNR": 41, + "ca-BandwidthClassDL-NR": "a", + "ca-BandwidthClassUL-NR": "a" + } + }, + { + "nr": { + "bandNR": 261, + "ca-BandwidthClassDL-NR": "q", + "ca-BandwidthClassUL-NR": "q" + } + } + ], + "featureSetCombination": 101, + "supportedBandwidthCombinationSet": "10001", + "powerClass-v1530": "pc2" + }, + { + "bandList": [ + { + "nr": { + "bandNR": 41, + "ca-BandwidthClassDL-NR": "a", + "ca-BandwidthClassUL-NR": "a" + } + }, + { + "nr": { + "bandNR": 261, + "ca-BandwidthClassDL-NR": "m", + "ca-BandwidthClassUL-NR": "i" + } + } + ], + "featureSetCombination": 102, + "supportedBandwidthCombinationSet": "10001", + "powerClass-v1530": "pc2" + }, + { + "bandList": [ + { + "nr": { + "bandNR": 41, + "ca-BandwidthClassDL-NR": "a", + "ca-BandwidthClassUL-NR": "a" + } + }, + { + "nr": { + "bandNR": 41, + "ca-BandwidthClassDL-NR": "a" + } + }, + { + "nr": { + "bandNR": 261, + "ca-BandwidthClassDL-NR": "a", + "ca-BandwidthClassUL-NR": "a" + } + }, + { + "nr": { + "bandNR": 261, + "ca-BandwidthClassDL-NR": "a" + } + } + ], + "featureSetCombination": 103, + "ca-ParametersNR": { + "parallelTxSRS-PUCCH-PUSCH": "supported", + "parallelTxPRACH-SRS-PUCCH-PUSCH": "supported", + "simultaneousRxTxInterBandCA": "supported", + "supportedNumberTAG": "n2" + }, + "supportedBandwidthCombinationSet": "10001", + "powerClass-v1530": "pc2" + }, + { + "bandList": [ + { + "nr": { + "bandNR": 41, + "ca-BandwidthClassDL-NR": "c", + "ca-BandwidthClassUL-NR": "a" + } + }, + { + "nr": { + "bandNR": 261, + "ca-BandwidthClassDL-NR": "a", + "ca-BandwidthClassUL-NR": "a" + } + }, + { + "nr": { + "bandNR": 261, + "ca-BandwidthClassDL-NR": "a" + } + } + ], + "featureSetCombination": 104, + "ca-ParametersNR": { + "parallelTxSRS-PUCCH-PUSCH": "supported", + "parallelTxPRACH-SRS-PUCCH-PUSCH": "supported", + "simultaneousRxTxInterBandCA": "supported", + "supportedNumberTAG": "n2" + }, + "supportedBandwidthCombinationSet": "10001", + "powerClass-v1530": "pc2" + } + ], + "appliedFreqBandListFilter": [ + { + "bandInformationNR": { + "bandNR": 1 + } + }, + { + "bandInformationNR": { + "bandNR": 261 + } + }, + { + "bandInformationNR": { + "bandNR": 71 + } + }, + { + "bandInformationNR": { + "bandNR": 41 + } + }, + { + "bandInformationNR": { + "bandNR": 78 + } + }, + { + "bandInformationNR": { + "bandNR": 80 + } + }, + { + "bandInformationNR": { + "bandNR": 81 + } + }, + { + "bandInformationNR": { + "bandNR": 83 + } + }, + { + "bandInformationNR": { + "bandNR": 84 + } + }, + { + "bandInformationNR": { + "bandNR": 89 + } + }, + { + "bandInformationEUTRA": { + "bandEUTRA": 2 + } + } + ], + "supportedBandCombinationList-v1540": [ + { + "bandList-v1540": [ + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + } + ], + "ca-ParametersNR-v1540": { + "csi-RS-IM-ReceptionForFeedbackPerBandComb": { + "maxNumberSimultaneousNZP-CSI-RS-ActBWP-AllCC": 16, + "totalNumberPortsSimultaneousNZP-CSI-RS-ActBWP-AllCC": 164 + }, + "simultaneousCSI-ReportsAllCC": 16 + } + }, + { + "bandList-v1540": [ + { + "srs-CarrierSwitch": { + "nr": { + "srs-SwitchingTimesListNR": [ + {}, + { + "switchingTimeDL": "n0us", + "switchingTimeUL": "n30us" + } + ] + } + }, + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + }, + { + "srs-CarrierSwitch": { + "nr": { + "srs-SwitchingTimesListNR": [ + {} + ] + } + }, + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "t1r4" + } + } + ], + "ca-ParametersNR-v1540": { + "csi-RS-IM-ReceptionForFeedbackPerBandComb": { + "maxNumberSimultaneousNZP-CSI-RS-ActBWP-AllCC": 16, + "totalNumberPortsSimultaneousNZP-CSI-RS-ActBWP-AllCC": 164 + }, + "simultaneousCSI-ReportsAllCC": 16 + } + }, + { + "bandList-v1540": [ + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "t1r4" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + } + ], + "ca-ParametersNR-v1540": { + "csi-RS-IM-ReceptionForFeedbackPerBandComb": { + "maxNumberSimultaneousNZP-CSI-RS-ActBWP-AllCC": 16, + "totalNumberPortsSimultaneousNZP-CSI-RS-ActBWP-AllCC": 164 + }, + "simultaneousCSI-ReportsAllCC": 16 + } + }, + { + "bandList-v1540": [ + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "t1r4" + } + } + ], + "ca-ParametersNR-v1540": { + "csi-RS-IM-ReceptionForFeedbackPerBandComb": { + "maxNumberSimultaneousNZP-CSI-RS-ActBWP-AllCC": 16, + "totalNumberPortsSimultaneousNZP-CSI-RS-ActBWP-AllCC": 164 + }, + "simultaneousCSI-ReportsAllCC": 16 + } + }, + { + "bandList-v1540": [ + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + } + ], + "ca-ParametersNR-v1540": { + "csi-RS-IM-ReceptionForFeedbackPerBandComb": { + "maxNumberSimultaneousNZP-CSI-RS-ActBWP-AllCC": 16, + "totalNumberPortsSimultaneousNZP-CSI-RS-ActBWP-AllCC": 164 + }, + "simultaneousCSI-ReportsAllCC": 16 + } + }, + { + "bandList-v1540": [ + { + "srs-CarrierSwitch": { + "nr": { + "srs-SwitchingTimesListNR": [ + {}, + { + "switchingTimeDL": "n0us", + "switchingTimeUL": "n30us" + } + ] + } + }, + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + }, + { + "srs-CarrierSwitch": { + "nr": { + "srs-SwitchingTimesListNR": [ + {} + ] + } + }, + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "t1r4" + } + } + ], + "ca-ParametersNR-v1540": { + "csi-RS-IM-ReceptionForFeedbackPerBandComb": { + "maxNumberSimultaneousNZP-CSI-RS-ActBWP-AllCC": 16, + "totalNumberPortsSimultaneousNZP-CSI-RS-ActBWP-AllCC": 164 + }, + "simultaneousCSI-ReportsAllCC": 16 + } + }, + { + "bandList-v1540": [ + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "t1r4" + } + } + ], + "ca-ParametersNR-v1540": { + "csi-RS-IM-ReceptionForFeedbackPerBandComb": { + "maxNumberSimultaneousNZP-CSI-RS-ActBWP-AllCC": 16, + "totalNumberPortsSimultaneousNZP-CSI-RS-ActBWP-AllCC": 164 + }, + "simultaneousCSI-ReportsAllCC": 16 + } + }, + { + "bandList-v1540": [ + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "t1r4" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "t1r4" + } + } + ], + "ca-ParametersNR-v1540": { + "csi-RS-IM-ReceptionForFeedbackPerBandComb": { + "maxNumberSimultaneousNZP-CSI-RS-ActBWP-AllCC": 16, + "totalNumberPortsSimultaneousNZP-CSI-RS-ActBWP-AllCC": 164 + }, + "simultaneousCSI-ReportsAllCC": 16 + } + }, + { + "bandList-v1540": [ + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "t1r4" + } + } + ], + "ca-ParametersNR-v1540": { + "csi-RS-IM-ReceptionForFeedbackPerBandComb": { + "maxNumberSimultaneousNZP-CSI-RS-ActBWP-AllCC": 16, + "totalNumberPortsSimultaneousNZP-CSI-RS-ActBWP-AllCC": 164 + }, + "simultaneousCSI-ReportsAllCC": 16 + } + }, + { + "bandList-v1540": [ + { + "srs-CarrierSwitch": { + "nr": { + "srs-SwitchingTimesListNR": [ + {}, + { + "switchingTimeDL": "n0us", + "switchingTimeUL": "n100us" + } + ] + } + }, + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + }, + { + "srs-CarrierSwitch": { + "nr": { + "srs-SwitchingTimesListNR": [ + {} + ] + } + }, + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "t1r4" + } + } + ], + "ca-ParametersNR-v1540": { + "csi-RS-IM-ReceptionForFeedbackPerBandComb": { + "maxNumberSimultaneousNZP-CSI-RS-ActBWP-AllCC": 16, + "totalNumberPortsSimultaneousNZP-CSI-RS-ActBWP-AllCC": 164 + }, + "simultaneousCSI-ReportsAllCC": 16 + } + }, + { + "bandList-v1540": [ + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + } + ], + "ca-ParametersNR-v1540": { + "csi-RS-IM-ReceptionForFeedbackPerBandComb": { + "maxNumberSimultaneousNZP-CSI-RS-ActBWP-AllCC": 16, + "totalNumberPortsSimultaneousNZP-CSI-RS-ActBWP-AllCC": 164 + }, + "simultaneousCSI-ReportsAllCC": 16 + } + }, + { + "bandList-v1540": [ + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + } + ], + "ca-ParametersNR-v1540": { + "csi-RS-IM-ReceptionForFeedbackPerBandComb": { + "maxNumberSimultaneousNZP-CSI-RS-ActBWP-AllCC": 16, + "totalNumberPortsSimultaneousNZP-CSI-RS-ActBWP-AllCC": 164 + }, + "simultaneousCSI-ReportsAllCC": 16 + } + }, + { + "bandList-v1540": [ + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + } + ], + "ca-ParametersNR-v1540": { + "csi-RS-IM-ReceptionForFeedbackPerBandComb": { + "maxNumberSimultaneousNZP-CSI-RS-ActBWP-AllCC": 16, + "totalNumberPortsSimultaneousNZP-CSI-RS-ActBWP-AllCC": 164 + }, + "simultaneousCSI-ReportsAllCC": 16 + } + }, + { + "bandList-v1540": [ + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + } + ], + "ca-ParametersNR-v1540": { + "csi-RS-IM-ReceptionForFeedbackPerBandComb": { + "maxNumberSimultaneousNZP-CSI-RS-ActBWP-AllCC": 16, + "totalNumberPortsSimultaneousNZP-CSI-RS-ActBWP-AllCC": 164 + }, + "simultaneousCSI-ReportsAllCC": 16 + } + }, + { + "bandList-v1540": [ + { + "srs-CarrierSwitch": { + "nr": { + "srs-SwitchingTimesListNR": [ + {}, + { + "switchingTimeDL": "n0us", + "switchingTimeUL": "n100us" + }, + { + "switchingTimeDL": "n0us", + "switchingTimeUL": "n100us" + } + ] + } + }, + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + }, + { + "srs-CarrierSwitch": { + "nr": { + "srs-SwitchingTimesListNR": [ + {}, + {} + ] + } + }, + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "t1r4" + } + }, + { + "srs-CarrierSwitch": { + "nr": { + "srs-SwitchingTimesListNR": [ + {} + ] + } + }, + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "t1r4" + } + } + ], + "ca-ParametersNR-v1540": { + "csi-RS-IM-ReceptionForFeedbackPerBandComb": { + "maxNumberSimultaneousNZP-CSI-RS-ActBWP-AllCC": 16, + "totalNumberPortsSimultaneousNZP-CSI-RS-ActBWP-AllCC": 164 + }, + "simultaneousCSI-ReportsAllCC": 16 + } + }, + { + "bandList-v1540": [ + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + } + ], + "ca-ParametersNR-v1540": { + "csi-RS-IM-ReceptionForFeedbackPerBandComb": { + "maxNumberSimultaneousNZP-CSI-RS-ActBWP-AllCC": 16, + "totalNumberPortsSimultaneousNZP-CSI-RS-ActBWP-AllCC": 164 + }, + "simultaneousCSI-ReportsAllCC": 16 + } + }, + { + "bandList-v1540": [ + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "t2r4" + } + } + ], + "ca-ParametersNR-v1540": { + "csi-RS-IM-ReceptionForFeedbackPerBandComb": { + "maxNumberSimultaneousNZP-CSI-RS-ActBWP-AllCC": 16, + "totalNumberPortsSimultaneousNZP-CSI-RS-ActBWP-AllCC": 164 + }, + "simultaneousCSI-ReportsAllCC": 16 + } + }, + { + "bandList-v1540": [ + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "t2r4" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + } + ], + "ca-ParametersNR-v1540": { + "csi-RS-IM-ReceptionForFeedbackPerBandComb": { + "maxNumberSimultaneousNZP-CSI-RS-ActBWP-AllCC": 16, + "totalNumberPortsSimultaneousNZP-CSI-RS-ActBWP-AllCC": 164 + }, + "simultaneousCSI-ReportsAllCC": 16 + } + }, + { + "bandList-v1540": [ + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "t2r4" + } + } + ], + "ca-ParametersNR-v1540": { + "csi-RS-IM-ReceptionForFeedbackPerBandComb": { + "maxNumberSimultaneousNZP-CSI-RS-ActBWP-AllCC": 16, + "totalNumberPortsSimultaneousNZP-CSI-RS-ActBWP-AllCC": 164 + }, + "simultaneousCSI-ReportsAllCC": 16 + } + }, + { + "bandList-v1540": [ + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + }, + { + "srs-CarrierSwitch": { + "nr": { + "srs-SwitchingTimesListNR": [ + { + "switchingTimeDL": "n0us", + "switchingTimeUL": "n100us" + } + ] + } + }, + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "t2r4" + } + } + ], + "ca-ParametersNR-v1540": { + "csi-RS-IM-ReceptionForFeedbackPerBandComb": { + "maxNumberSimultaneousNZP-CSI-RS-ActBWP-AllCC": 16, + "totalNumberPortsSimultaneousNZP-CSI-RS-ActBWP-AllCC": 164 + }, + "simultaneousCSI-ReportsAllCC": 16 + } + }, + { + "bandList-v1540": [ + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "t2r4" + } + } + ], + "ca-ParametersNR-v1540": { + "csi-RS-IM-ReceptionForFeedbackPerBandComb": { + "maxNumberSimultaneousNZP-CSI-RS-ActBWP-AllCC": 16, + "totalNumberPortsSimultaneousNZP-CSI-RS-ActBWP-AllCC": 164 + }, + "simultaneousCSI-ReportsAllCC": 16 + } + }, + { + "bandList-v1540": [ + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "t2r4" + } + } + ], + "ca-ParametersNR-v1540": { + "csi-RS-IM-ReceptionForFeedbackPerBandComb": { + "maxNumberSimultaneousNZP-CSI-RS-ActBWP-AllCC": 16, + "totalNumberPortsSimultaneousNZP-CSI-RS-ActBWP-AllCC": 164 + }, + "simultaneousCSI-ReportsAllCC": 16 + } + }, + { + "bandList-v1540": [ + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + }, + { + "srs-CarrierSwitch": { + "nr": { + "srs-SwitchingTimesListNR": [ + {}, + { + "switchingTimeDL": "n0us", + "switchingTimeUL": "n100us" + } + ] + } + }, + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "t2r4" + } + }, + { + "srs-CarrierSwitch": { + "nr": { + "srs-SwitchingTimesListNR": [ + {} + ] + } + }, + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "t1r4" + } + } + ], + "ca-ParametersNR-v1540": { + "csi-RS-IM-ReceptionForFeedbackPerBandComb": { + "maxNumberSimultaneousNZP-CSI-RS-ActBWP-AllCC": 16, + "totalNumberPortsSimultaneousNZP-CSI-RS-ActBWP-AllCC": 164 + }, + "simultaneousCSI-ReportsAllCC": 16 + } + }, + { + "bandList-v1540": [ + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "t1r4" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + } + ], + "ca-ParametersNR-v1540": { + "csi-RS-IM-ReceptionForFeedbackPerBandComb": { + "maxNumberSimultaneousNZP-CSI-RS-ActBWP-AllCC": 16, + "totalNumberPortsSimultaneousNZP-CSI-RS-ActBWP-AllCC": 164 + }, + "simultaneousCSI-ReportsAllCC": 16 + } + }, + { + "bandList-v1540": [ + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "t1r4" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + } + ], + "ca-ParametersNR-v1540": { + "csi-RS-IM-ReceptionForFeedbackPerBandComb": { + "maxNumberSimultaneousNZP-CSI-RS-ActBWP-AllCC": 16, + "totalNumberPortsSimultaneousNZP-CSI-RS-ActBWP-AllCC": 164 + }, + "simultaneousCSI-ReportsAllCC": 16 + } + }, + { + "bandList-v1540": [ + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "t1r4" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + } + ], + "ca-ParametersNR-v1540": { + "csi-RS-IM-ReceptionForFeedbackPerBandComb": { + "maxNumberSimultaneousNZP-CSI-RS-ActBWP-AllCC": 16, + "totalNumberPortsSimultaneousNZP-CSI-RS-ActBWP-AllCC": 164 + }, + "simultaneousCSI-ReportsAllCC": 16 + } + }, + { + "bandList-v1540": [ + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "t1r4" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + } + ], + "ca-ParametersNR-v1540": { + "csi-RS-IM-ReceptionForFeedbackPerBandComb": { + "maxNumberSimultaneousNZP-CSI-RS-ActBWP-AllCC": 16, + "totalNumberPortsSimultaneousNZP-CSI-RS-ActBWP-AllCC": 164 + }, + "simultaneousCSI-ReportsAllCC": 16 + } + }, + { + "bandList-v1540": [ + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "t1r4" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + } + ], + "ca-ParametersNR-v1540": { + "csi-RS-IM-ReceptionForFeedbackPerBandComb": { + "maxNumberSimultaneousNZP-CSI-RS-ActBWP-AllCC": 16, + "totalNumberPortsSimultaneousNZP-CSI-RS-ActBWP-AllCC": 164 + }, + "simultaneousCSI-ReportsAllCC": 16 + } + }, + { + "bandList-v1540": [ + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "t1r4" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + } + ], + "ca-ParametersNR-v1540": { + "csi-RS-IM-ReceptionForFeedbackPerBandComb": { + "maxNumberSimultaneousNZP-CSI-RS-ActBWP-AllCC": 16, + "totalNumberPortsSimultaneousNZP-CSI-RS-ActBWP-AllCC": 164 + }, + "simultaneousCSI-ReportsAllCC": 16 + } + }, + { + "bandList-v1540": [ + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "t1r4" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + } + ], + "ca-ParametersNR-v1540": { + "csi-RS-IM-ReceptionForFeedbackPerBandComb": { + "maxNumberSimultaneousNZP-CSI-RS-ActBWP-AllCC": 16, + "totalNumberPortsSimultaneousNZP-CSI-RS-ActBWP-AllCC": 164 + }, + "simultaneousCSI-ReportsAllCC": 16 + } + }, + { + "bandList-v1540": [ + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "t1r4" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + } + ], + "ca-ParametersNR-v1540": { + "csi-RS-IM-ReceptionForFeedbackPerBandComb": { + "maxNumberSimultaneousNZP-CSI-RS-ActBWP-AllCC": 16, + "totalNumberPortsSimultaneousNZP-CSI-RS-ActBWP-AllCC": 164 + }, + "simultaneousCSI-ReportsAllCC": 16 + } + }, + { + "bandList-v1540": [ + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "t1r4" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + } + ], + "ca-ParametersNR-v1540": { + "csi-RS-IM-ReceptionForFeedbackPerBandComb": { + "maxNumberSimultaneousNZP-CSI-RS-ActBWP-AllCC": 16, + "totalNumberPortsSimultaneousNZP-CSI-RS-ActBWP-AllCC": 164 + }, + "simultaneousCSI-ReportsAllCC": 16 + } + }, + { + "bandList-v1540": [ + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "t1r4" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + } + ], + "ca-ParametersNR-v1540": { + "csi-RS-IM-ReceptionForFeedbackPerBandComb": { + "maxNumberSimultaneousNZP-CSI-RS-ActBWP-AllCC": 16, + "totalNumberPortsSimultaneousNZP-CSI-RS-ActBWP-AllCC": 164 + }, + "simultaneousCSI-ReportsAllCC": 16 + } + }, + { + "bandList-v1540": [ + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "t1r4" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + } + ], + "ca-ParametersNR-v1540": { + "csi-RS-IM-ReceptionForFeedbackPerBandComb": { + "maxNumberSimultaneousNZP-CSI-RS-ActBWP-AllCC": 16, + "totalNumberPortsSimultaneousNZP-CSI-RS-ActBWP-AllCC": 164 + }, + "simultaneousCSI-ReportsAllCC": 16 + } + }, + { + "bandList-v1540": [ + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "t1r4" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + } + ], + "ca-ParametersNR-v1540": { + "csi-RS-IM-ReceptionForFeedbackPerBandComb": { + "maxNumberSimultaneousNZP-CSI-RS-ActBWP-AllCC": 16, + "totalNumberPortsSimultaneousNZP-CSI-RS-ActBWP-AllCC": 164 + }, + "simultaneousCSI-ReportsAllCC": 16 + } + }, + { + "bandList-v1540": [ + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "t1r4" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + } + ], + "ca-ParametersNR-v1540": { + "csi-RS-IM-ReceptionForFeedbackPerBandComb": { + "maxNumberSimultaneousNZP-CSI-RS-ActBWP-AllCC": 16, + "totalNumberPortsSimultaneousNZP-CSI-RS-ActBWP-AllCC": 164 + }, + "simultaneousCSI-ReportsAllCC": 16 + } + }, + { + "bandList-v1540": [ + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "t1r4" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + } + ], + "ca-ParametersNR-v1540": { + "csi-RS-IM-ReceptionForFeedbackPerBandComb": { + "maxNumberSimultaneousNZP-CSI-RS-ActBWP-AllCC": 16, + "totalNumberPortsSimultaneousNZP-CSI-RS-ActBWP-AllCC": 164 + }, + "simultaneousCSI-ReportsAllCC": 16 + } + }, + { + "bandList-v1540": [ + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "t1r4" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + } + ], + "ca-ParametersNR-v1540": { + "csi-RS-IM-ReceptionForFeedbackPerBandComb": { + "maxNumberSimultaneousNZP-CSI-RS-ActBWP-AllCC": 16, + "totalNumberPortsSimultaneousNZP-CSI-RS-ActBWP-AllCC": 164 + }, + "simultaneousCSI-ReportsAllCC": 16 + } + }, + { + "bandList-v1540": [ + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "t1r4" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + } + ], + "ca-ParametersNR-v1540": { + "csi-RS-IM-ReceptionForFeedbackPerBandComb": { + "maxNumberSimultaneousNZP-CSI-RS-ActBWP-AllCC": 16, + "totalNumberPortsSimultaneousNZP-CSI-RS-ActBWP-AllCC": 164 + }, + "simultaneousCSI-ReportsAllCC": 16 + } + }, + { + "bandList-v1540": [ + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "t1r4" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + } + ], + "ca-ParametersNR-v1540": { + "csi-RS-IM-ReceptionForFeedbackPerBandComb": { + "maxNumberSimultaneousNZP-CSI-RS-ActBWP-AllCC": 16, + "totalNumberPortsSimultaneousNZP-CSI-RS-ActBWP-AllCC": 164 + }, + "simultaneousCSI-ReportsAllCC": 16 + } + }, + { + "bandList-v1540": [ + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "t1r4" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + } + ], + "ca-ParametersNR-v1540": { + "csi-RS-IM-ReceptionForFeedbackPerBandComb": { + "maxNumberSimultaneousNZP-CSI-RS-ActBWP-AllCC": 16, + "totalNumberPortsSimultaneousNZP-CSI-RS-ActBWP-AllCC": 164 + }, + "simultaneousCSI-ReportsAllCC": 16 + } + }, + { + "bandList-v1540": [ + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "t1r4" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + } + ], + "ca-ParametersNR-v1540": { + "csi-RS-IM-ReceptionForFeedbackPerBandComb": { + "maxNumberSimultaneousNZP-CSI-RS-ActBWP-AllCC": 16, + "totalNumberPortsSimultaneousNZP-CSI-RS-ActBWP-AllCC": 164 + }, + "simultaneousCSI-ReportsAllCC": 16 + } + }, + { + "bandList-v1540": [ + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "t1r4" + } + } + ], + "ca-ParametersNR-v1540": { + "csi-RS-IM-ReceptionForFeedbackPerBandComb": { + "maxNumberSimultaneousNZP-CSI-RS-ActBWP-AllCC": 16, + "totalNumberPortsSimultaneousNZP-CSI-RS-ActBWP-AllCC": 164 + }, + "simultaneousCSI-ReportsAllCC": 16 + } + }, + { + "bandList-v1540": [ + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "t1r4" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + } + ], + "ca-ParametersNR-v1540": { + "csi-RS-IM-ReceptionForFeedbackPerBandComb": { + "maxNumberSimultaneousNZP-CSI-RS-ActBWP-AllCC": 16, + "totalNumberPortsSimultaneousNZP-CSI-RS-ActBWP-AllCC": 164 + }, + "simultaneousCSI-ReportsAllCC": 16 + } + }, + { + "bandList-v1540": [ + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + } + ], + "ca-ParametersNR-v1540": { + "csi-RS-IM-ReceptionForFeedbackPerBandComb": { + "maxNumberSimultaneousNZP-CSI-RS-ActBWP-AllCC": 16, + "totalNumberPortsSimultaneousNZP-CSI-RS-ActBWP-AllCC": 164 + }, + "simultaneousCSI-ReportsAllCC": 16 + } + }, + { + "bandList-v1540": [ + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + } + ], + "ca-ParametersNR-v1540": { + "csi-RS-IM-ReceptionForFeedbackPerBandComb": { + "maxNumberSimultaneousNZP-CSI-RS-ActBWP-AllCC": 16, + "totalNumberPortsSimultaneousNZP-CSI-RS-ActBWP-AllCC": 164 + }, + "simultaneousCSI-ReportsAllCC": 16 + } + }, + { + "bandList-v1540": [ + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + } + ], + "ca-ParametersNR-v1540": { + "csi-RS-IM-ReceptionForFeedbackPerBandComb": { + "maxNumberSimultaneousNZP-CSI-RS-ActBWP-AllCC": 16, + "totalNumberPortsSimultaneousNZP-CSI-RS-ActBWP-AllCC": 164 + }, + "simultaneousCSI-ReportsAllCC": 16 + } + }, + { + "bandList-v1540": [ + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "t1r4" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + } + ], + "ca-ParametersNR-v1540": { + "csi-RS-IM-ReceptionForFeedbackPerBandComb": { + "maxNumberSimultaneousNZP-CSI-RS-ActBWP-AllCC": 16, + "totalNumberPortsSimultaneousNZP-CSI-RS-ActBWP-AllCC": 164 + }, + "simultaneousCSI-ReportsAllCC": 16 + } + }, + { + "bandList-v1540": [ + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + } + ], + "ca-ParametersNR-v1540": { + "csi-RS-IM-ReceptionForFeedbackPerBandComb": { + "maxNumberSimultaneousNZP-CSI-RS-ActBWP-AllCC": 16, + "totalNumberPortsSimultaneousNZP-CSI-RS-ActBWP-AllCC": 164 + }, + "simultaneousCSI-ReportsAllCC": 16 + } + }, + { + "bandList-v1540": [ + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "t2r4" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + } + ], + "ca-ParametersNR-v1540": { + "csi-RS-IM-ReceptionForFeedbackPerBandComb": { + "maxNumberSimultaneousNZP-CSI-RS-ActBWP-AllCC": 16, + "totalNumberPortsSimultaneousNZP-CSI-RS-ActBWP-AllCC": 164 + }, + "simultaneousCSI-ReportsAllCC": 16 + } + }, + { + "bandList-v1540": [ + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "t2r4" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + } + ], + "ca-ParametersNR-v1540": { + "csi-RS-IM-ReceptionForFeedbackPerBandComb": { + "maxNumberSimultaneousNZP-CSI-RS-ActBWP-AllCC": 16, + "totalNumberPortsSimultaneousNZP-CSI-RS-ActBWP-AllCC": 164 + }, + "simultaneousCSI-ReportsAllCC": 16 + } + }, + { + "bandList-v1540": [ + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "t2r4" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + } + ], + "ca-ParametersNR-v1540": { + "csi-RS-IM-ReceptionForFeedbackPerBandComb": { + "maxNumberSimultaneousNZP-CSI-RS-ActBWP-AllCC": 16, + "totalNumberPortsSimultaneousNZP-CSI-RS-ActBWP-AllCC": 164 + }, + "simultaneousCSI-ReportsAllCC": 16 + } + }, + { + "bandList-v1540": [ + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "t2r4" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + } + ], + "ca-ParametersNR-v1540": { + "csi-RS-IM-ReceptionForFeedbackPerBandComb": { + "maxNumberSimultaneousNZP-CSI-RS-ActBWP-AllCC": 16, + "totalNumberPortsSimultaneousNZP-CSI-RS-ActBWP-AllCC": 164 + }, + "simultaneousCSI-ReportsAllCC": 16 + } + }, + { + "bandList-v1540": [ + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "t1r4" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + } + ], + "ca-ParametersNR-v1540": { + "csi-RS-IM-ReceptionForFeedbackPerBandComb": { + "maxNumberSimultaneousNZP-CSI-RS-ActBWP-AllCC": 16, + "totalNumberPortsSimultaneousNZP-CSI-RS-ActBWP-AllCC": 164 + }, + "simultaneousCSI-ReportsAllCC": 16 + } + }, + { + "bandList-v1540": [ + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "t2r4" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + } + ], + "ca-ParametersNR-v1540": { + "csi-RS-IM-ReceptionForFeedbackPerBandComb": { + "maxNumberSimultaneousNZP-CSI-RS-ActBWP-AllCC": 16, + "totalNumberPortsSimultaneousNZP-CSI-RS-ActBWP-AllCC": 164 + }, + "simultaneousCSI-ReportsAllCC": 16 + } + }, + { + "bandList-v1540": [ + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "t2r4" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + } + ], + "ca-ParametersNR-v1540": { + "csi-RS-IM-ReceptionForFeedbackPerBandComb": { + "maxNumberSimultaneousNZP-CSI-RS-ActBWP-AllCC": 16, + "totalNumberPortsSimultaneousNZP-CSI-RS-ActBWP-AllCC": 164 + }, + "simultaneousCSI-ReportsAllCC": 16 + } + }, + { + "bandList-v1540": [ + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "t2r4" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + } + ], + "ca-ParametersNR-v1540": { + "csi-RS-IM-ReceptionForFeedbackPerBandComb": { + "maxNumberSimultaneousNZP-CSI-RS-ActBWP-AllCC": 16, + "totalNumberPortsSimultaneousNZP-CSI-RS-ActBWP-AllCC": 164 + }, + "simultaneousCSI-ReportsAllCC": 16 + } + }, + { + "bandList-v1540": [ + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "t2r4" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + } + ], + "ca-ParametersNR-v1540": { + "csi-RS-IM-ReceptionForFeedbackPerBandComb": { + "maxNumberSimultaneousNZP-CSI-RS-ActBWP-AllCC": 16, + "totalNumberPortsSimultaneousNZP-CSI-RS-ActBWP-AllCC": 164 + }, + "simultaneousCSI-ReportsAllCC": 16 + } + }, + { + "bandList-v1540": [ + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "t2r4" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + } + ], + "ca-ParametersNR-v1540": { + "csi-RS-IM-ReceptionForFeedbackPerBandComb": { + "maxNumberSimultaneousNZP-CSI-RS-ActBWP-AllCC": 16, + "totalNumberPortsSimultaneousNZP-CSI-RS-ActBWP-AllCC": 164 + }, + "simultaneousCSI-ReportsAllCC": 16 + } + }, + { + "bandList-v1540": [ + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "t2r4" + } + } + ], + "ca-ParametersNR-v1540": { + "csi-RS-IM-ReceptionForFeedbackPerBandComb": { + "maxNumberSimultaneousNZP-CSI-RS-ActBWP-AllCC": 16, + "totalNumberPortsSimultaneousNZP-CSI-RS-ActBWP-AllCC": 164 + }, + "simultaneousCSI-ReportsAllCC": 16 + } + }, + { + "bandList-v1540": [ + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "t2r4" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + } + ], + "ca-ParametersNR-v1540": { + "csi-RS-IM-ReceptionForFeedbackPerBandComb": { + "maxNumberSimultaneousNZP-CSI-RS-ActBWP-AllCC": 16, + "totalNumberPortsSimultaneousNZP-CSI-RS-ActBWP-AllCC": 164 + }, + "simultaneousCSI-ReportsAllCC": 16 + } + }, + { + "bandList-v1540": [ + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "t2r4" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + } + ], + "ca-ParametersNR-v1540": { + "csi-RS-IM-ReceptionForFeedbackPerBandComb": { + "maxNumberSimultaneousNZP-CSI-RS-ActBWP-AllCC": 16, + "totalNumberPortsSimultaneousNZP-CSI-RS-ActBWP-AllCC": 164 + }, + "simultaneousCSI-ReportsAllCC": 16 + } + }, + { + "bandList-v1540": [ + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "t2r4" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + } + ], + "ca-ParametersNR-v1540": { + "csi-RS-IM-ReceptionForFeedbackPerBandComb": { + "maxNumberSimultaneousNZP-CSI-RS-ActBWP-AllCC": 16, + "totalNumberPortsSimultaneousNZP-CSI-RS-ActBWP-AllCC": 164 + }, + "simultaneousCSI-ReportsAllCC": 16 + } + }, + { + "bandList-v1540": [ + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "t1r4" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + } + ], + "ca-ParametersNR-v1540": { + "csi-RS-IM-ReceptionForFeedbackPerBandComb": { + "maxNumberSimultaneousNZP-CSI-RS-ActBWP-AllCC": 16, + "totalNumberPortsSimultaneousNZP-CSI-RS-ActBWP-AllCC": 164 + }, + "simultaneousCSI-ReportsAllCC": 16 + } + }, + { + "bandList-v1540": [ + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "t2r4" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + } + ], + "ca-ParametersNR-v1540": { + "csi-RS-IM-ReceptionForFeedbackPerBandComb": { + "maxNumberSimultaneousNZP-CSI-RS-ActBWP-AllCC": 16, + "totalNumberPortsSimultaneousNZP-CSI-RS-ActBWP-AllCC": 164 + }, + "simultaneousCSI-ReportsAllCC": 16 + } + }, + { + "bandList-v1540": [ + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "t2r4" + } + } + ], + "ca-ParametersNR-v1540": { + "csi-RS-IM-ReceptionForFeedbackPerBandComb": { + "maxNumberSimultaneousNZP-CSI-RS-ActBWP-AllCC": 16, + "totalNumberPortsSimultaneousNZP-CSI-RS-ActBWP-AllCC": 164 + }, + "simultaneousCSI-ReportsAllCC": 16 + } + }, + { + "bandList-v1540": [ + { + "srs-CarrierSwitch": { + "nr": { + "srs-SwitchingTimesListNR": [ + {}, + { + "switchingTimeDL": "n0us", + "switchingTimeUL": "n30us" + } + ] + } + }, + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "t1r4" + } + }, + { + "srs-CarrierSwitch": { + "nr": { + "srs-SwitchingTimesListNR": [ + {} + ] + } + }, + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "t1r4" + } + } + ], + "ca-ParametersNR-v1540": { + "csi-RS-IM-ReceptionForFeedbackPerBandComb": { + "maxNumberSimultaneousNZP-CSI-RS-ActBWP-AllCC": 16, + "totalNumberPortsSimultaneousNZP-CSI-RS-ActBWP-AllCC": 164 + }, + "simultaneousCSI-ReportsAllCC": 16 + } + }, + { + "bandList-v1540": [ + { + "srs-CarrierSwitch": { + "nr": { + "srs-SwitchingTimesListNR": [ + {}, + { + "switchingTimeDL": "n0us", + "switchingTimeUL": "n100us" + } + ] + } + }, + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "t1r4" + } + }, + { + "srs-CarrierSwitch": { + "nr": { + "srs-SwitchingTimesListNR": [ + {} + ] + } + }, + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "t2r4" + } + } + ], + "ca-ParametersNR-v1540": { + "csi-RS-IM-ReceptionForFeedbackPerBandComb": { + "maxNumberSimultaneousNZP-CSI-RS-ActBWP-AllCC": 16, + "totalNumberPortsSimultaneousNZP-CSI-RS-ActBWP-AllCC": 164 + }, + "simultaneousCSI-ReportsAllCC": 16 + } + }, + { + "bandList-v1540": [ + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "t2r4" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + } + ], + "ca-ParametersNR-v1540": { + "csi-RS-IM-ReceptionForFeedbackPerBandComb": { + "maxNumberSimultaneousNZP-CSI-RS-ActBWP-AllCC": 16, + "totalNumberPortsSimultaneousNZP-CSI-RS-ActBWP-AllCC": 164 + }, + "simultaneousCSI-ReportsAllCC": 16 + } + }, + { + "bandList-v1540": [ + { + "srs-CarrierSwitch": { + "nr": { + "srs-SwitchingTimesListNR": [ + { + "switchingTimeDL": "n0us", + "switchingTimeUL": "n100us" + } + ] + } + }, + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "t2r4" + } + } + ], + "ca-ParametersNR-v1540": { + "csi-RS-IM-ReceptionForFeedbackPerBandComb": { + "maxNumberSimultaneousNZP-CSI-RS-ActBWP-AllCC": 16, + "totalNumberPortsSimultaneousNZP-CSI-RS-ActBWP-AllCC": 164 + }, + "simultaneousCSI-ReportsAllCC": 16 + } + }, + { + "bandList-v1540": [ + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "t2r4" + } + } + ], + "ca-ParametersNR-v1540": { + "csi-RS-IM-ReceptionForFeedbackPerBandComb": { + "maxNumberSimultaneousNZP-CSI-RS-ActBWP-AllCC": 16, + "totalNumberPortsSimultaneousNZP-CSI-RS-ActBWP-AllCC": 164 + }, + "simultaneousCSI-ReportsAllCC": 16 + } + }, + { + "bandList-v1540": [ + { + "srs-CarrierSwitch": { + "nr": { + "srs-SwitchingTimesListNR": [ + {}, + { + "switchingTimeDL": "n0us", + "switchingTimeUL": "n100us" + } + ] + } + }, + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "t2r4" + } + }, + { + "srs-CarrierSwitch": { + "nr": { + "srs-SwitchingTimesListNR": [ + {} + ] + } + }, + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "t1r4" + } + } + ], + "ca-ParametersNR-v1540": { + "csi-RS-IM-ReceptionForFeedbackPerBandComb": { + "maxNumberSimultaneousNZP-CSI-RS-ActBWP-AllCC": 16, + "totalNumberPortsSimultaneousNZP-CSI-RS-ActBWP-AllCC": 164 + }, + "simultaneousCSI-ReportsAllCC": 16 + } + }, + { + "bandList-v1540": [ + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + } + ] + }, + { + "bandList-v1540": [ + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "t2r4" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + } + ] + }, + { + "bandList-v1540": [ + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "t2r4" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + } + ] + }, + { + "bandList-v1540": [ + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "t2r4" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + } + ], + "ca-ParametersNR-v1540": { + "csi-RS-IM-ReceptionForFeedbackPerBandComb": { + "maxNumberSimultaneousNZP-CSI-RS-ActBWP-AllCC": 16, + "totalNumberPortsSimultaneousNZP-CSI-RS-ActBWP-AllCC": 164 + }, + "simultaneousCSI-ReportsAllCC": 16 + } + }, + { + "bandList-v1540": [ + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "t2r4" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + } + ], + "ca-ParametersNR-v1540": { + "csi-RS-IM-ReceptionForFeedbackPerBandComb": { + "maxNumberSimultaneousNZP-CSI-RS-ActBWP-AllCC": 16, + "totalNumberPortsSimultaneousNZP-CSI-RS-ActBWP-AllCC": 164 + }, + "simultaneousCSI-ReportsAllCC": 16 + } + } + ], + "srs-SwitchingTimeRequested": "true", + "supportedBandCombinationList-v1560": [ + { + "ca-ParametersNR-v1560": {} + }, + { + "ca-ParametersNR-v1560": { + "diffNumerologyWithinPUCCH-GroupLargerSCS": "supported" + } + }, + { + "ca-ParametersNR-v1560": { + "diffNumerologyWithinPUCCH-GroupLargerSCS": "supported" + } + }, + { + "ca-ParametersNR-v1560": { + "diffNumerologyWithinPUCCH-GroupLargerSCS": "supported" + } + }, + { + "ca-ParametersNR-v1560": {} + }, + { + "ca-ParametersNR-v1560": { + "diffNumerologyWithinPUCCH-GroupLargerSCS": "supported" + } + }, + { + "ca-ParametersNR-v1560": { + "diffNumerologyWithinPUCCH-GroupLargerSCS": "supported" + } + }, + { + "ca-ParametersNR-v1560": { + "diffNumerologyWithinPUCCH-GroupLargerSCS": "supported" + } + }, + { + "ca-ParametersNR-v1560": { + "diffNumerologyWithinPUCCH-GroupLargerSCS": "supported" + } + }, + { + "ca-ParametersNR-v1560": {} + }, + { + "ca-ParametersNR-v1560": {} + }, + { + "ca-ParametersNR-v1560": {} + }, + { + "ca-ParametersNR-v1560": {} + }, + { + "ca-ParametersNR-v1560": {} + }, + { + "ca-ParametersNR-v1560": {} + }, + { + "ca-ParametersNR-v1560": {} + }, + { + "ca-ParametersNR-v1560": { + "diffNumerologyWithinPUCCH-GroupLargerSCS": "supported" + } + }, + { + "ca-ParametersNR-v1560": { + "diffNumerologyWithinPUCCH-GroupLargerSCS": "supported" + } + }, + { + "ca-ParametersNR-v1560": { + "diffNumerologyWithinPUCCH-GroupLargerSCS": "supported" + } + }, + { + "ca-ParametersNR-v1560": { + "diffNumerologyWithinPUCCH-GroupLargerSCS": "supported" + } + }, + { + "ca-ParametersNR-v1560": { + "diffNumerologyWithinPUCCH-GroupLargerSCS": "supported" + } + }, + { + "ca-ParametersNR-v1560": { + "diffNumerologyWithinPUCCH-GroupLargerSCS": "supported" + } + }, + { + "ca-ParametersNR-v1560": { + "diffNumerologyWithinPUCCH-GroupLargerSCS": "supported" + } + }, + { + "ca-ParametersNR-v1560": { + "diffNumerologyWithinPUCCH-GroupLargerSCS": "supported" + } + }, + { + "ca-ParametersNR-v1560": { + "diffNumerologyWithinPUCCH-GroupLargerSCS": "supported" + } + }, + { + "ca-ParametersNR-v1560": { + "diffNumerologyWithinPUCCH-GroupLargerSCS": "supported" + } + }, + { + "ca-ParametersNR-v1560": { + "diffNumerologyWithinPUCCH-GroupLargerSCS": "supported" + } + }, + { + "ca-ParametersNR-v1560": { + "diffNumerologyWithinPUCCH-GroupLargerSCS": "supported" + } + }, + { + "ca-ParametersNR-v1560": { + "diffNumerologyWithinPUCCH-GroupLargerSCS": "supported" + } + }, + { + "ca-ParametersNR-v1560": { + "diffNumerologyWithinPUCCH-GroupLargerSCS": "supported" + } + }, + { + "ca-ParametersNR-v1560": { + "diffNumerologyWithinPUCCH-GroupLargerSCS": "supported" + } + }, + { + "ca-ParametersNR-v1560": { + "diffNumerologyWithinPUCCH-GroupLargerSCS": "supported" + } + }, + { + "ca-ParametersNR-v1560": { + "diffNumerologyWithinPUCCH-GroupLargerSCS": "supported" + } + }, + { + "ca-ParametersNR-v1560": { + "diffNumerologyWithinPUCCH-GroupLargerSCS": "supported" + } + }, + { + "ca-ParametersNR-v1560": { + "diffNumerologyWithinPUCCH-GroupLargerSCS": "supported" + } + }, + { + "ca-ParametersNR-v1560": { + "diffNumerologyWithinPUCCH-GroupLargerSCS": "supported" + } + }, + { + "ca-ParametersNR-v1560": { + "diffNumerologyWithinPUCCH-GroupLargerSCS": "supported" + } + }, + { + "ca-ParametersNR-v1560": { + "diffNumerologyWithinPUCCH-GroupLargerSCS": "supported" + } + }, + { + "ca-ParametersNR-v1560": { + "diffNumerologyWithinPUCCH-GroupLargerSCS": "supported" + } + }, + { + "ca-ParametersNR-v1560": { + "diffNumerologyWithinPUCCH-GroupLargerSCS": "supported" + } + }, + { + "ca-ParametersNR-v1560": { + "diffNumerologyWithinPUCCH-GroupLargerSCS": "supported" + } + }, + { + "ca-ParametersNR-v1560": { + "diffNumerologyWithinPUCCH-GroupLargerSCS": "supported" + } + }, + { + "ca-ParametersNR-v1560": { + "diffNumerologyWithinPUCCH-GroupLargerSCS": "supported" + } + }, + { + "ca-ParametersNR-v1560": { + "diffNumerologyWithinPUCCH-GroupLargerSCS": "supported" + } + }, + { + "ca-ParametersNR-v1560": {} + }, + { + "ca-ParametersNR-v1560": {} + }, + { + "ca-ParametersNR-v1560": {} + }, + { + "ca-ParametersNR-v1560": { + "diffNumerologyWithinPUCCH-GroupLargerSCS": "supported" + } + }, + { + "ca-ParametersNR-v1560": {} + }, + { + "ca-ParametersNR-v1560": { + "diffNumerologyWithinPUCCH-GroupLargerSCS": "supported" + } + }, + { + "ca-ParametersNR-v1560": { + "diffNumerologyWithinPUCCH-GroupLargerSCS": "supported" + } + }, + { + "ca-ParametersNR-v1560": { + "diffNumerologyWithinPUCCH-GroupLargerSCS": "supported" + } + }, + { + "ca-ParametersNR-v1560": { + "diffNumerologyWithinPUCCH-GroupLargerSCS": "supported" + } + }, + { + "ca-ParametersNR-v1560": { + "diffNumerologyWithinPUCCH-GroupLargerSCS": "supported" + } + }, + { + "ca-ParametersNR-v1560": { + "diffNumerologyWithinPUCCH-GroupLargerSCS": "supported" + } + }, + { + "ca-ParametersNR-v1560": { + "diffNumerologyWithinPUCCH-GroupLargerSCS": "supported" + } + }, + { + "ca-ParametersNR-v1560": { + "diffNumerologyWithinPUCCH-GroupLargerSCS": "supported" + } + }, + { + "ca-ParametersNR-v1560": { + "diffNumerologyWithinPUCCH-GroupLargerSCS": "supported" + } + }, + { + "ca-ParametersNR-v1560": { + "diffNumerologyWithinPUCCH-GroupLargerSCS": "supported" + } + }, + { + "ca-ParametersNR-v1560": { + "diffNumerologyWithinPUCCH-GroupLargerSCS": "supported" + } + }, + { + "ca-ParametersNR-v1560": { + "diffNumerologyWithinPUCCH-GroupLargerSCS": "supported" + } + }, + { + "ca-ParametersNR-v1560": {} + }, + { + "ca-ParametersNR-v1560": {} + }, + { + "ca-ParametersNR-v1560": {} + }, + { + "ca-ParametersNR-v1560": {} + }, + { + "ca-ParametersNR-v1560": {} + }, + { + "ca-ParametersNR-v1560": {} + }, + { + "ca-ParametersNR-v1560": {} + }, + { + "ca-ParametersNR-v1560": {} + }, + { + "ca-ParametersNR-v1560": {} + }, + { + "ca-ParametersNR-v1560": {} + }, + { + "ca-ParametersNR-v1560": {} + }, + { + "ca-ParametersNRDC": { + "ca-ParametersNR-ForDC": { + "simultaneousRxTxInterBandCA": "supported", + "supportedNumberTAG": "n2" + }, + "ca-ParametersNR-ForDC-v1540": { + "csi-RS-IM-ReceptionForFeedbackPerBandComb": { + "maxNumberSimultaneousNZP-CSI-RS-ActBWP-AllCC": 16, + "totalNumberPortsSimultaneousNZP-CSI-RS-ActBWP-AllCC": 96 + }, + "simultaneousCSI-ReportsAllCC": 16 + }, + "featureSetCombinationDC": 99 + } + }, + { + "ca-ParametersNRDC": { + "ca-ParametersNR-ForDC": { + "simultaneousRxTxInterBandCA": "supported", + "supportedNumberTAG": "n2" + }, + "ca-ParametersNR-ForDC-v1540": { + "csi-RS-IM-ReceptionForFeedbackPerBandComb": { + "maxNumberSimultaneousNZP-CSI-RS-ActBWP-AllCC": 16, + "totalNumberPortsSimultaneousNZP-CSI-RS-ActBWP-AllCC": 96 + }, + "simultaneousCSI-ReportsAllCC": 16 + }, + "featureSetCombinationDC": 97 + } + }, + { + "ca-ParametersNRDC": { + "ca-ParametersNR-ForDC": { + "simultaneousRxTxInterBandCA": "supported", + "supportedNumberTAG": "n2" + }, + "ca-ParametersNR-ForDC-v1540": { + "csi-RS-IM-ReceptionForFeedbackPerBandComb": { + "maxNumberSimultaneousNZP-CSI-RS-ActBWP-AllCC": 16, + "totalNumberPortsSimultaneousNZP-CSI-RS-ActBWP-AllCC": 96 + }, + "simultaneousCSI-ReportsAllCC": 16 + }, + "featureSetCombinationDC": 98 + } + }, + { + "ca-ParametersNRDC": { + "ca-ParametersNR-ForDC": { + "simultaneousRxTxInterBandCA": "supported", + "supportedNumberTAG": "n2" + }, + "ca-ParametersNR-ForDC-v1540": { + "csi-RS-IM-ReceptionForFeedbackPerBandComb": { + "maxNumberSimultaneousNZP-CSI-RS-ActBWP-AllCC": 16, + "totalNumberPortsSimultaneousNZP-CSI-RS-ActBWP-AllCC": 96 + }, + "simultaneousCSI-ReportsAllCC": 16 + }, + "featureSetCombinationDC": 95 + }, + "ca-ParametersNR-v1560": {} + }, + { + "ca-ParametersNRDC": { + "ca-ParametersNR-ForDC": { + "simultaneousRxTxInterBandCA": "supported", + "supportedNumberTAG": "n2" + }, + "ca-ParametersNR-ForDC-v1540": { + "csi-RS-IM-ReceptionForFeedbackPerBandComb": { + "maxNumberSimultaneousNZP-CSI-RS-ActBWP-AllCC": 16, + "totalNumberPortsSimultaneousNZP-CSI-RS-ActBWP-AllCC": 96 + }, + "simultaneousCSI-ReportsAllCC": 16 + }, + "featureSetCombinationDC": 96 + }, + "ca-ParametersNR-v1560": {} + } + ], + "supportedBandCombinationList-v1610": [ + { + "ca-ParametersNR-v1610": { + "codebookParametersPerBC-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 5, + 9, + 10 + ] + } + }, + "codebookParametersAdditionPerBC-r16": { + "etype2R1-r16": [ + 10 + ] + }, + "codebookComboParametersAdditionPerBC-r16": { + "type1SP-Type2-null-r16": [ + 18 + ], + "type1SP-eType2R1-null-r16": [ + 1 + ] + } + } + }, + { + "ca-ParametersNR-v1610": { + "codebookParametersPerBC-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 6, + 7, + 8 + ] + } + }, + "codebookParametersAdditionPerBC-r16": { + "etype2R1-r16": [ + 3 + ] + }, + "codebookComboParametersAdditionPerBC-r16": { + "type1SP-Type2-null-r16": [ + 8 + ], + "type1SP-eType2R1-null-r16": [ + 8 + ] + } + } + }, + { + "ca-ParametersNR-v1610": { + "codebookParametersPerBC-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 16, + 17, + 18 + ] + } + }, + "codebookParametersAdditionPerBC-r16": { + "etype2R1-r16": [ + 3 + ] + }, + "codebookComboParametersAdditionPerBC-r16": { + "type1SP-Type2-null-r16": [ + 24 + ], + "type1SP-eType2R1-null-r16": [ + 24 + ] + } + } + }, + { + "ca-ParametersNR-v1610": { + "codebookParametersPerBC-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 16, + 17, + 18 + ] + } + }, + "codebookParametersAdditionPerBC-r16": { + "etype2R1-r16": [ + 3 + ] + }, + "codebookComboParametersAdditionPerBC-r16": { + "type1SP-Type2-null-r16": [ + 24 + ], + "type1SP-eType2R1-null-r16": [ + 24 + ] + } + } + }, + { + "ca-ParametersNR-v1610": { + "codebookParametersPerBC-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 16, + 17, + 18 + ] + } + }, + "codebookParametersAdditionPerBC-r16": { + "etype2R1-r16": [ + 3 + ] + }, + "codebookComboParametersAdditionPerBC-r16": { + "type1SP-Type2-null-r16": [ + 24 + ], + "type1SP-eType2R1-null-r16": [ + 24 + ] + } + } + }, + { + "ca-ParametersNR-v1610": { + "codebookParametersPerBC-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 6, + 7, + 8 + ] + } + }, + "codebookParametersAdditionPerBC-r16": { + "etype2R1-r16": [ + 3 + ] + }, + "codebookComboParametersAdditionPerBC-r16": { + "type1SP-Type2-null-r16": [ + 8 + ], + "type1SP-eType2R1-null-r16": [ + 8 + ] + } + } + }, + { + "ca-ParametersNR-v1610": { + "codebookParametersPerBC-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 16, + 17, + 18 + ] + } + }, + "codebookParametersAdditionPerBC-r16": { + "etype2R1-r16": [ + 3 + ] + }, + "codebookComboParametersAdditionPerBC-r16": { + "type1SP-Type2-null-r16": [ + 24 + ], + "type1SP-eType2R1-null-r16": [ + 24 + ] + } + } + }, + { + "ca-ParametersNR-v1610": { + "codebookParametersPerBC-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 16, + 17, + 18 + ] + } + }, + "codebookParametersAdditionPerBC-r16": { + "etype2R1-r16": [ + 3 + ] + }, + "codebookComboParametersAdditionPerBC-r16": { + "type1SP-Type2-null-r16": [ + 24 + ], + "type1SP-eType2R1-null-r16": [ + 24 + ] + } + } + }, + { + "ca-ParametersNR-v1610": { + "codebookParametersPerBC-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 6, + 7, + 8 + ] + } + }, + "codebookParametersAdditionPerBC-r16": { + "etype2R1-r16": [ + 10 + ] + }, + "codebookComboParametersAdditionPerBC-r16": { + "type1SP-Type2-null-r16": [ + 24 + ], + "type1SP-eType2R1-null-r16": [ + 24 + ] + } + } + }, + { + "ca-ParametersNR-v1610": { + "codebookParametersPerBC-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 16, + 17, + 18 + ] + } + }, + "codebookParametersAdditionPerBC-r16": { + "etype2R1-r16": [ + 3 + ] + }, + "codebookComboParametersAdditionPerBC-r16": { + "type1SP-Type2-null-r16": [ + 24 + ], + "type1SP-eType2R1-null-r16": [ + 24 + ] + } + } + }, + { + "ca-ParametersNR-v1610": { + "codebookParametersPerBC-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 6, + 7, + 8 + ] + } + }, + "codebookParametersAdditionPerBC-r16": { + "etype2R1-r16": [ + 3 + ] + }, + "codebookComboParametersAdditionPerBC-r16": { + "type1SP-Type2-null-r16": [ + 8 + ], + "type1SP-eType2R1-null-r16": [ + 8 + ] + } + } + }, + { + "ca-ParametersNR-v1610": { + "codebookParametersPerBC-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 16, + 17, + 18 + ] + } + }, + "codebookParametersAdditionPerBC-r16": { + "etype2R1-r16": [ + 3 + ] + }, + "codebookComboParametersAdditionPerBC-r16": { + "type1SP-Type2-null-r16": [ + 24 + ], + "type1SP-eType2R1-null-r16": [ + 24 + ] + } + } + }, + { + "ca-ParametersNR-v1610": { + "codebookParametersPerBC-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 6, + 7, + 8 + ] + } + }, + "codebookParametersAdditionPerBC-r16": { + "etype2R1-r16": [ + 10 + ] + }, + "codebookComboParametersAdditionPerBC-r16": { + "type1SP-Type2-null-r16": [ + 24 + ], + "type1SP-eType2R1-null-r16": [ + 24 + ] + } + } + }, + { + "ca-ParametersNR-v1610": { + "codebookParametersPerBC-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 16, + 17, + 18 + ] + } + }, + "codebookParametersAdditionPerBC-r16": { + "etype2R1-r16": [ + 3 + ] + }, + "codebookComboParametersAdditionPerBC-r16": { + "type1SP-Type2-null-r16": [ + 24 + ], + "type1SP-eType2R1-null-r16": [ + 24 + ] + } + } + }, + { + "ca-ParametersNR-v1610": { + "codebookParametersPerBC-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 16, + 17, + 18 + ] + } + }, + "codebookParametersAdditionPerBC-r16": { + "etype2R1-r16": [ + 3 + ] + }, + "codebookComboParametersAdditionPerBC-r16": { + "type1SP-Type2-null-r16": [ + 24 + ], + "type1SP-eType2R1-null-r16": [ + 24 + ] + } + } + }, + { + "ca-ParametersNR-v1610": { + "codebookParametersPerBC-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 5, + 9, + 10 + ] + } + }, + "codebookParametersAdditionPerBC-r16": { + "etype2R1-r16": [ + 10 + ] + }, + "codebookComboParametersAdditionPerBC-r16": { + "type1SP-Type2-null-r16": [ + 18 + ], + "type1SP-eType2R1-null-r16": [ + 1 + ] + } + } + }, + { + "ca-ParametersNR-v1610": { + "codebookParametersPerBC-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 6, + 7, + 8 + ] + } + }, + "codebookParametersAdditionPerBC-r16": { + "etype2R1-r16": [ + 3 + ] + }, + "codebookComboParametersAdditionPerBC-r16": { + "type1SP-Type2-null-r16": [ + 8 + ], + "type1SP-eType2R1-null-r16": [ + 8 + ] + } + } + }, + { + "ca-ParametersNR-v1610": { + "codebookParametersPerBC-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 16, + 17, + 18 + ] + } + }, + "codebookParametersAdditionPerBC-r16": { + "etype2R1-r16": [ + 3 + ] + }, + "codebookComboParametersAdditionPerBC-r16": { + "type1SP-Type2-null-r16": [ + 24 + ], + "type1SP-eType2R1-null-r16": [ + 24 + ] + } + } + }, + { + "ca-ParametersNR-v1610": { + "codebookParametersPerBC-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 16, + 17, + 18 + ] + } + }, + "codebookParametersAdditionPerBC-r16": { + "etype2R1-r16": [ + 3 + ] + }, + "codebookComboParametersAdditionPerBC-r16": { + "type1SP-Type2-null-r16": [ + 24 + ], + "type1SP-eType2R1-null-r16": [ + 24 + ] + } + } + }, + { + "ca-ParametersNR-v1610": { + "codebookParametersPerBC-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 16, + 17, + 18 + ] + } + }, + "codebookParametersAdditionPerBC-r16": { + "etype2R1-r16": [ + 3 + ] + }, + "codebookComboParametersAdditionPerBC-r16": { + "type1SP-Type2-null-r16": [ + 24 + ], + "type1SP-eType2R1-null-r16": [ + 24 + ] + } + } + }, + { + "ca-ParametersNR-v1610": { + "codebookParametersPerBC-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 6, + 7, + 8 + ] + } + }, + "codebookParametersAdditionPerBC-r16": { + "etype2R1-r16": [ + 3 + ] + }, + "codebookComboParametersAdditionPerBC-r16": { + "type1SP-Type2-null-r16": [ + 8 + ], + "type1SP-eType2R1-null-r16": [ + 8 + ] + } + }, + "powerClass-v1610": "pc1dot5" + }, + { + "ca-ParametersNR-v1610": { + "codebookParametersPerBC-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 6, + 7, + 8 + ] + } + }, + "codebookParametersAdditionPerBC-r16": { + "etype2R1-r16": [ + 10 + ] + }, + "codebookComboParametersAdditionPerBC-r16": { + "type1SP-Type2-null-r16": [ + 24 + ], + "type1SP-eType2R1-null-r16": [ + 24 + ] + } + } + }, + { + "ca-ParametersNR-v1610": { + "codebookParametersPerBC-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 16, + 17, + 18 + ] + } + }, + "codebookParametersAdditionPerBC-r16": { + "etype2R1-r16": [ + 3 + ] + }, + "codebookComboParametersAdditionPerBC-r16": { + "type1SP-Type2-null-r16": [ + 24 + ], + "type1SP-eType2R1-null-r16": [ + 24 + ] + } + } + }, + { + "ca-ParametersNR-v1610": { + "codebookParametersPerBC-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 16, + 17, + 18 + ] + } + }, + "codebookParametersAdditionPerBC-r16": { + "etype2R1-r16": [ + 3 + ] + }, + "codebookComboParametersAdditionPerBC-r16": { + "type1SP-Type2-null-r16": [ + 24 + ], + "type1SP-eType2R1-null-r16": [ + 24 + ] + } + } + }, + { + "ca-ParametersNR-v1610": { + "codebookParametersPerBC-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 16, + 17, + 18 + ] + } + }, + "codebookParametersAdditionPerBC-r16": { + "etype2R1-r16": [ + 10 + ] + }, + "codebookComboParametersAdditionPerBC-r16": { + "type1SP-Type2-null-r16": [ + 24 + ], + "type1SP-eType2R1-null-r16": [ + 24 + ] + } + } + }, + { + "ca-ParametersNR-v1610": { + "codebookParametersPerBC-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 16, + 17, + 18 + ] + } + }, + "codebookParametersAdditionPerBC-r16": { + "etype2R1-r16": [ + 3 + ] + }, + "codebookComboParametersAdditionPerBC-r16": { + "type1SP-Type2-null-r16": [ + 24 + ], + "type1SP-eType2R1-null-r16": [ + 24 + ] + } + } + }, + { + "ca-ParametersNR-v1610": { + "codebookParametersPerBC-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 16, + 17, + 26 + ] + } + }, + "codebookParametersAdditionPerBC-r16": { + "etype2R1-r16": [ + 10 + ] + }, + "codebookComboParametersAdditionPerBC-r16": { + "type1SP-Type2-null-r16": [ + 24 + ], + "type1SP-eType2R1-null-r16": [ + 24 + ] + } + } + }, + { + "ca-ParametersNR-v1610": { + "codebookParametersPerBC-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 16, + 17, + 26 + ] + } + }, + "codebookParametersAdditionPerBC-r16": { + "etype2R1-r16": [ + 10 + ] + }, + "codebookComboParametersAdditionPerBC-r16": { + "type1SP-Type2-null-r16": [ + 24 + ], + "type1SP-eType2R1-null-r16": [ + 24 + ] + } + } + }, + { + "ca-ParametersNR-v1610": { + "codebookParametersPerBC-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 16, + 17, + 26 + ] + } + }, + "codebookParametersAdditionPerBC-r16": { + "etype2R1-r16": [ + 10 + ] + }, + "codebookComboParametersAdditionPerBC-r16": { + "type1SP-Type2-null-r16": [ + 24 + ], + "type1SP-eType2R1-null-r16": [ + 24 + ] + } + } + }, + { + "ca-ParametersNR-v1610": { + "codebookParametersPerBC-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 16, + 17, + 26 + ] + } + }, + "codebookParametersAdditionPerBC-r16": { + "etype2R1-r16": [ + 10 + ] + }, + "codebookComboParametersAdditionPerBC-r16": { + "type1SP-Type2-null-r16": [ + 24 + ], + "type1SP-eType2R1-null-r16": [ + 24 + ] + } + } + }, + { + "ca-ParametersNR-v1610": { + "codebookParametersPerBC-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 16, + 17, + 26 + ] + } + }, + "codebookParametersAdditionPerBC-r16": { + "etype2R1-r16": [ + 10 + ] + }, + "codebookComboParametersAdditionPerBC-r16": { + "type1SP-Type2-null-r16": [ + 24 + ], + "type1SP-eType2R1-null-r16": [ + 24 + ] + } + } + }, + { + "ca-ParametersNR-v1610": { + "codebookParametersPerBC-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 16, + 17, + 18 + ] + } + }, + "codebookParametersAdditionPerBC-r16": { + "etype2R1-r16": [ + 10 + ] + }, + "codebookComboParametersAdditionPerBC-r16": { + "type1SP-Type2-null-r16": [ + 24 + ], + "type1SP-eType2R1-null-r16": [ + 24 + ] + } + } + }, + { + "ca-ParametersNR-v1610": { + "codebookParametersPerBC-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 16, + 17, + 26 + ] + } + }, + "codebookParametersAdditionPerBC-r16": { + "etype2R1-r16": [ + 10 + ] + }, + "codebookComboParametersAdditionPerBC-r16": { + "type1SP-Type2-null-r16": [ + 24 + ], + "type1SP-eType2R1-null-r16": [ + 24 + ] + } + } + }, + { + "ca-ParametersNR-v1610": { + "codebookParametersPerBC-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 16, + 17, + 26 + ] + } + }, + "codebookParametersAdditionPerBC-r16": { + "etype2R1-r16": [ + 10 + ] + }, + "codebookComboParametersAdditionPerBC-r16": { + "type1SP-Type2-null-r16": [ + 24 + ], + "type1SP-eType2R1-null-r16": [ + 24 + ] + } + } + }, + { + "ca-ParametersNR-v1610": { + "codebookParametersPerBC-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 16, + 17, + 18 + ] + } + }, + "codebookParametersAdditionPerBC-r16": { + "etype2R1-r16": [ + 10 + ] + }, + "codebookComboParametersAdditionPerBC-r16": { + "type1SP-Type2-null-r16": [ + 24 + ], + "type1SP-eType2R1-null-r16": [ + 24 + ] + } + } + }, + { + "ca-ParametersNR-v1610": { + "codebookParametersPerBC-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 16, + 17, + 18 + ] + } + }, + "codebookParametersAdditionPerBC-r16": { + "etype2R1-r16": [ + 3 + ] + }, + "codebookComboParametersAdditionPerBC-r16": { + "type1SP-Type2-null-r16": [ + 24 + ], + "type1SP-eType2R1-null-r16": [ + 24 + ] + } + } + }, + { + "ca-ParametersNR-v1610": { + "codebookParametersPerBC-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 16, + 17, + 18 + ] + } + }, + "codebookParametersAdditionPerBC-r16": { + "etype2R1-r16": [ + 3 + ] + }, + "codebookComboParametersAdditionPerBC-r16": { + "type1SP-Type2-null-r16": [ + 24 + ], + "type1SP-eType2R1-null-r16": [ + 24 + ] + } + } + }, + { + "ca-ParametersNR-v1610": { + "codebookParametersPerBC-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 16, + 17, + 18 + ] + } + }, + "codebookParametersAdditionPerBC-r16": { + "etype2R1-r16": [ + 3 + ] + }, + "codebookComboParametersAdditionPerBC-r16": { + "type1SP-Type2-null-r16": [ + 24 + ], + "type1SP-eType2R1-null-r16": [ + 24 + ] + } + } + }, + { + "ca-ParametersNR-v1610": { + "codebookParametersPerBC-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 16, + 17, + 18 + ] + } + }, + "codebookParametersAdditionPerBC-r16": { + "etype2R1-r16": [ + 10 + ] + }, + "codebookComboParametersAdditionPerBC-r16": { + "type1SP-Type2-null-r16": [ + 24 + ], + "type1SP-eType2R1-null-r16": [ + 24 + ] + } + } + }, + { + "ca-ParametersNR-v1610": { + "codebookParametersPerBC-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 16, + 17, + 18 + ] + } + }, + "codebookParametersAdditionPerBC-r16": { + "etype2R1-r16": [ + 3 + ] + }, + "codebookComboParametersAdditionPerBC-r16": { + "type1SP-Type2-null-r16": [ + 24 + ], + "type1SP-eType2R1-null-r16": [ + 24 + ] + } + } + }, + { + "ca-ParametersNR-v1610": { + "codebookParametersPerBC-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 16, + 17, + 18 + ] + } + }, + "codebookParametersAdditionPerBC-r16": { + "etype2R1-r16": [ + 3 + ] + }, + "codebookComboParametersAdditionPerBC-r16": { + "type1SP-Type2-null-r16": [ + 24 + ], + "type1SP-eType2R1-null-r16": [ + 24 + ] + } + } + }, + { + "ca-ParametersNR-v1610": { + "codebookParametersPerBC-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 16, + 17, + 18 + ] + } + }, + "codebookParametersAdditionPerBC-r16": { + "etype2R1-r16": [ + 10 + ] + }, + "codebookComboParametersAdditionPerBC-r16": { + "type1SP-Type2-null-r16": [ + 24 + ], + "type1SP-eType2R1-null-r16": [ + 24 + ] + } + } + }, + { + "ca-ParametersNR-v1610": { + "codebookParametersPerBC-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 16, + 17, + 18 + ] + } + }, + "codebookParametersAdditionPerBC-r16": { + "etype2R1-r16": [ + 3 + ] + }, + "codebookComboParametersAdditionPerBC-r16": { + "type1SP-Type2-null-r16": [ + 24 + ], + "type1SP-eType2R1-null-r16": [ + 24 + ] + } + } + }, + { + "ca-ParametersNR-v1610": { + "codebookParametersPerBC-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 16, + 17, + 18 + ] + } + }, + "codebookParametersAdditionPerBC-r16": { + "etype2R1-r16": [ + 3 + ] + }, + "codebookComboParametersAdditionPerBC-r16": { + "type1SP-Type2-null-r16": [ + 24 + ], + "type1SP-eType2R1-null-r16": [ + 24 + ] + } + } + }, + { + "ca-ParametersNR-v1610": { + "codebookParametersPerBC-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 16, + 17, + 26 + ] + } + }, + "codebookParametersAdditionPerBC-r16": { + "etype2R1-r16": [ + 10 + ] + }, + "codebookComboParametersAdditionPerBC-r16": { + "type1SP-Type2-null-r16": [ + 24 + ], + "type1SP-eType2R1-null-r16": [ + 24 + ] + } + } + }, + { + "ca-ParametersNR-v1610": { + "codebookParametersPerBC-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 16, + 17, + 26 + ] + } + }, + "codebookParametersAdditionPerBC-r16": { + "etype2R1-r16": [ + 10 + ] + }, + "codebookComboParametersAdditionPerBC-r16": { + "type1SP-Type2-null-r16": [ + 24 + ], + "type1SP-eType2R1-null-r16": [ + 24 + ] + } + } + }, + { + "ca-ParametersNR-v1610": { + "codebookParametersPerBC-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 16, + 17, + 18 + ] + } + }, + "codebookParametersAdditionPerBC-r16": { + "etype2R1-r16": [ + 3 + ] + }, + "codebookComboParametersAdditionPerBC-r16": { + "type1SP-Type2-null-r16": [ + 24 + ], + "type1SP-eType2R1-null-r16": [ + 24 + ] + } + } + }, + { + "ca-ParametersNR-v1610": { + "codebookParametersPerBC-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 16, + 17, + 18 + ] + } + }, + "codebookParametersAdditionPerBC-r16": { + "etype2R1-r16": [ + 3 + ] + }, + "codebookComboParametersAdditionPerBC-r16": { + "type1SP-Type2-null-r16": [ + 24 + ], + "type1SP-eType2R1-null-r16": [ + 24 + ] + } + } + }, + { + "ca-ParametersNR-v1610": { + "codebookParametersPerBC-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 5, + 9, + 10 + ] + } + }, + "codebookParametersAdditionPerBC-r16": { + "etype2R1-r16": [ + 10 + ] + }, + "codebookComboParametersAdditionPerBC-r16": { + "type1SP-Type2-null-r16": [ + 18 + ], + "type1SP-eType2R1-null-r16": [ + 1 + ] + } + } + }, + { + "ca-ParametersNR-v1610": { + "codebookParametersPerBC-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 16, + 17, + 18 + ] + } + }, + "codebookParametersAdditionPerBC-r16": { + "etype2R1-r16": [ + 3 + ] + }, + "codebookComboParametersAdditionPerBC-r16": { + "type1SP-Type2-null-r16": [ + 24 + ], + "type1SP-eType2R1-null-r16": [ + 24 + ] + } + }, + "powerClass-v1610": "pc1dot5" + }, + { + "ca-ParametersNR-v1610": { + "codebookParametersPerBC-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 16, + 17, + 18 + ] + } + }, + "codebookParametersAdditionPerBC-r16": { + "etype2R1-r16": [ + 3 + ] + }, + "codebookComboParametersAdditionPerBC-r16": { + "type1SP-Type2-null-r16": [ + 24 + ], + "type1SP-eType2R1-null-r16": [ + 24 + ] + } + }, + "powerClass-v1610": "pc1dot5" + }, + { + "ca-ParametersNR-v1610": { + "codebookParametersPerBC-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 16, + 17, + 26 + ] + } + }, + "codebookParametersAdditionPerBC-r16": { + "etype2R1-r16": [ + 10 + ] + }, + "codebookComboParametersAdditionPerBC-r16": { + "type1SP-Type2-null-r16": [ + 24 + ], + "type1SP-eType2R1-null-r16": [ + 24 + ] + } + }, + "powerClass-v1610": "pc1dot5" + }, + { + "ca-ParametersNR-v1610": { + "codebookParametersPerBC-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 16, + 17, + 18 + ] + } + }, + "codebookParametersAdditionPerBC-r16": { + "etype2R1-r16": [ + 3 + ] + }, + "codebookComboParametersAdditionPerBC-r16": { + "type1SP-Type2-null-r16": [ + 24 + ], + "type1SP-eType2R1-null-r16": [ + 24 + ] + } + }, + "powerClass-v1610": "pc1dot5" + }, + { + "ca-ParametersNR-v1610": { + "codebookParametersPerBC-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 16, + 17, + 26 + ] + } + }, + "codebookParametersAdditionPerBC-r16": { + "etype2R1-r16": [ + 10 + ] + }, + "codebookComboParametersAdditionPerBC-r16": { + "type1SP-Type2-null-r16": [ + 24 + ], + "type1SP-eType2R1-null-r16": [ + 24 + ] + } + } + }, + { + "ca-ParametersNR-v1610": { + "codebookParametersPerBC-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 16, + 17, + 18 + ] + } + }, + "codebookParametersAdditionPerBC-r16": { + "etype2R1-r16": [ + 10 + ] + }, + "codebookComboParametersAdditionPerBC-r16": { + "type1SP-Type2-null-r16": [ + 24 + ], + "type1SP-eType2R1-null-r16": [ + 24 + ] + } + }, + "powerClass-v1610": "pc1dot5" + }, + { + "ca-ParametersNR-v1610": { + "codebookParametersPerBC-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 16, + 17, + 18 + ] + } + }, + "codebookParametersAdditionPerBC-r16": { + "etype2R1-r16": [ + 3 + ] + }, + "codebookComboParametersAdditionPerBC-r16": { + "type1SP-Type2-null-r16": [ + 24 + ], + "type1SP-eType2R1-null-r16": [ + 24 + ] + } + }, + "powerClass-v1610": "pc1dot5" + }, + { + "ca-ParametersNR-v1610": { + "codebookParametersPerBC-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 16, + 17, + 18 + ] + } + }, + "codebookParametersAdditionPerBC-r16": { + "etype2R1-r16": [ + 3 + ] + }, + "codebookComboParametersAdditionPerBC-r16": { + "type1SP-Type2-null-r16": [ + 24 + ], + "type1SP-eType2R1-null-r16": [ + 24 + ] + } + } + }, + { + "ca-ParametersNR-v1610": { + "codebookParametersPerBC-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 16, + 17, + 18 + ] + } + }, + "codebookParametersAdditionPerBC-r16": { + "etype2R1-r16": [ + 3 + ] + }, + "codebookComboParametersAdditionPerBC-r16": { + "type1SP-Type2-null-r16": [ + 24 + ], + "type1SP-eType2R1-null-r16": [ + 24 + ] + } + }, + "powerClass-v1610": "pc1dot5" + }, + { + "ca-ParametersNR-v1610": { + "codebookParametersPerBC-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 16, + 17, + 18 + ] + } + }, + "codebookParametersAdditionPerBC-r16": { + "etype2R1-r16": [ + 10 + ] + }, + "codebookComboParametersAdditionPerBC-r16": { + "type1SP-Type2-null-r16": [ + 24 + ], + "type1SP-eType2R1-null-r16": [ + 24 + ] + } + }, + "powerClass-v1610": "pc1dot5" + }, + { + "ca-ParametersNR-v1610": { + "codebookParametersPerBC-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 16, + 17, + 18 + ] + } + }, + "codebookParametersAdditionPerBC-r16": { + "etype2R1-r16": [ + 3 + ] + }, + "codebookComboParametersAdditionPerBC-r16": { + "type1SP-Type2-null-r16": [ + 24 + ], + "type1SP-eType2R1-null-r16": [ + 24 + ] + } + } + }, + { + "ca-ParametersNR-v1610": { + "codebookParametersPerBC-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 16, + 17, + 18 + ] + } + }, + "codebookParametersAdditionPerBC-r16": { + "etype2R1-r16": [ + 3 + ] + }, + "codebookComboParametersAdditionPerBC-r16": { + "type1SP-Type2-null-r16": [ + 24 + ], + "type1SP-eType2R1-null-r16": [ + 24 + ] + } + } + }, + { + "ca-ParametersNR-v1610": { + "codebookParametersPerBC-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 6, + 7, + 8 + ] + } + } + }, + "powerClass-v1610": "pc1dot5" + }, + { + "ca-ParametersNR-v1610": { + "codebookParametersPerBC-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 6, + 7, + 8 + ] + } + } + }, + "powerClass-v1610": "pc1dot5" + }, + { + "ca-ParametersNR-v1610": { + "codebookParametersPerBC-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 6, + 7, + 8 + ] + } + } + } + }, + { + "ca-ParametersNR-v1610": { + "codebookParametersPerBC-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 6, + 7, + 8 + ] + } + } + } + }, + { + "ca-ParametersNR-v1610": { + "codebookParametersPerBC-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 6, + 7, + 8 + ] + } + } + } + }, + { + "ca-ParametersNR-v1610": { + "codebookParametersPerBC-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 5, + 9, + 10 + ] + } + } + } + }, + { + "ca-ParametersNR-v1610": { + "codebookParametersPerBC-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 5, + 9, + 10 + ] + } + } + } + }, + { + "ca-ParametersNR-v1610": { + "codebookParametersPerBC-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 6, + 7, + 8 + ] + } + } + } + }, + { + "ca-ParametersNR-v1610": { + "codebookParametersPerBC-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 5, + 9, + 10 + ] + } + } + }, + "powerClass-v1610": "pc1dot5" + }, + { + "ca-ParametersNR-v1610": { + "codebookParametersPerBC-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 6, + 7, + 8 + ] + } + } + } + }, + { + "ca-ParametersNR-v1610": { + "codebookParametersPerBC-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 5, + 9, + 10 + ] + } + } + }, + "powerClass-v1610": "pc1dot5" + }, + {}, + { + "powerClass-v1610": "pc1dot5" + }, + { + "powerClass-v1610": "pc1dot5" + }, + { + "powerClass-v1610": "pc1dot5" + }, + { + "powerClass-v1610": "pc1dot5" + } + ], + "supportedBandCombinationList-UplinkTxSwitch-r16": [ + { + "bandCombination-r16": { + "bandList": [ + { + "nr": { + "bandNR": 1, + "ca-BandwidthClassDL-NR": "a", + "ca-BandwidthClassUL-NR": "a" + } + }, + { + "nr": { + "bandNR": 41, + "ca-BandwidthClassDL-NR": "a", + "ca-BandwidthClassUL-NR": "a" + } + } + ], + "featureSetCombination": 35, + "ca-ParametersNR": { + "parallelTxSRS-PUCCH-PUSCH": "supported", + "parallelTxPRACH-SRS-PUCCH-PUSCH": "supported", + "simultaneousRxTxInterBandCA": "supported", + "diffNumerologyWithinPUCCH-GroupSmallerSCS": "supported" + }, + "supportedBandwidthCombinationSet": "11001", + "powerClass-v1530": "pc2" + }, + "bandCombination-v1540": { + "bandList-v1540": [ + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "t2r4" + } + } + ], + "ca-ParametersNR-v1540": { + "csi-RS-IM-ReceptionForFeedbackPerBandComb": { + "maxNumberSimultaneousNZP-CSI-RS-ActBWP-AllCC": 16, + "totalNumberPortsSimultaneousNZP-CSI-RS-ActBWP-AllCC": 164 + }, + "simultaneousCSI-ReportsAllCC": 16 + } + }, + "bandCombination-v1560": { + "ca-ParametersNR-v1560": { + "diffNumerologyWithinPUCCH-GroupLargerSCS": "supported" + } + }, + "bandCombination-v1610": { + "ca-ParametersNR-v1610": { + "codebookParametersPerBC-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 6, + 7, + 8 + ] + } + }, + "codebookParametersAdditionPerBC-r16": { + "etype2R1-r16": [ + 3 + ] + }, + "codebookComboParametersAdditionPerBC-r16": { + "type1SP-Type2-null-r16": [ + 8 + ], + "type1SP-eType2R1-null-r16": [ + 8 + ] + } + } + }, + "supportedBandPairListNR-r16": [ + { + "bandIndexUL1-r16": 1, + "bandIndexUL2-r16": 2, + "uplinkTxSwitchingPeriod-r16": "n140us" + } + ], + "uplinkTxSwitching-OptionSupport-r16": "both" + }, + { + "bandCombination-r16": { + "bandList": [ + { + "nr": { + "bandNR": 1, + "ca-BandwidthClassDL-NR": "a", + "ca-BandwidthClassUL-NR": "a" + } + }, + { + "nr": { + "bandNR": 78, + "ca-BandwidthClassDL-NR": "a", + "ca-BandwidthClassUL-NR": "a" + } + } + ], + "featureSetCombination": 13, + "ca-ParametersNR": { + "parallelTxSRS-PUCCH-PUSCH": "supported", + "parallelTxPRACH-SRS-PUCCH-PUSCH": "supported", + "simultaneousRxTxInterBandCA": "supported", + "diffNumerologyWithinPUCCH-GroupSmallerSCS": "supported" + }, + "supportedBandwidthCombinationSet": "11111", + "powerClass-v1530": "pc2" + }, + "bandCombination-v1540": { + "bandList-v1540": [ + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "t2r4" + } + } + ], + "ca-ParametersNR-v1540": { + "csi-RS-IM-ReceptionForFeedbackPerBandComb": { + "maxNumberSimultaneousNZP-CSI-RS-ActBWP-AllCC": 16, + "totalNumberPortsSimultaneousNZP-CSI-RS-ActBWP-AllCC": 164 + }, + "simultaneousCSI-ReportsAllCC": 16 + } + }, + "bandCombination-v1560": { + "ca-ParametersNR-v1560": { + "diffNumerologyWithinPUCCH-GroupLargerSCS": "supported" + } + }, + "bandCombination-v1610": { + "ca-ParametersNR-v1610": { + "codebookParametersPerBC-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 6, + 7, + 8 + ] + } + }, + "codebookParametersAdditionPerBC-r16": { + "etype2R1-r16": [ + 3 + ] + }, + "codebookComboParametersAdditionPerBC-r16": { + "type1SP-Type2-null-r16": [ + 8 + ], + "type1SP-eType2R1-null-r16": [ + 8 + ] + } + } + }, + "supportedBandPairListNR-r16": [ + { + "bandIndexUL1-r16": 1, + "bandIndexUL2-r16": 2, + "uplinkTxSwitchingPeriod-r16": "n140us" + } + ], + "uplinkTxSwitching-OptionSupport-r16": "both" + }, + { + "bandCombination-r16": { + "bandList": [ + { + "nr": { + "bandNR": 1, + "ca-BandwidthClassDL-NR": "a", + "ca-BandwidthClassUL-NR": "a" + } + }, + { + "nr": { + "bandNR": 78, + "ca-BandwidthClassDL-NR": "c", + "ca-BandwidthClassUL-NR": "a" + } + } + ], + "featureSetCombination": 15, + "ca-ParametersNR": { + "parallelTxSRS-PUCCH-PUSCH": "supported", + "parallelTxPRACH-SRS-PUCCH-PUSCH": "supported", + "simultaneousRxTxInterBandCA": "supported", + "diffNumerologyWithinPUCCH-GroupSmallerSCS": "supported" + }, + "supportedBandwidthCombinationSet": "11101" + }, + "bandCombination-v1540": { + "bandList-v1540": [ + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "t2r4" + } + } + ], + "ca-ParametersNR-v1540": { + "csi-RS-IM-ReceptionForFeedbackPerBandComb": { + "maxNumberSimultaneousNZP-CSI-RS-ActBWP-AllCC": 16, + "totalNumberPortsSimultaneousNZP-CSI-RS-ActBWP-AllCC": 164 + }, + "simultaneousCSI-ReportsAllCC": 16 + } + }, + "bandCombination-v1560": { + "ca-ParametersNR-v1560": { + "diffNumerologyWithinPUCCH-GroupLargerSCS": "supported" + } + }, + "bandCombination-v1610": { + "ca-ParametersNR-v1610": { + "codebookParametersPerBC-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 16, + 17, + 18 + ] + } + }, + "codebookParametersAdditionPerBC-r16": { + "etype2R1-r16": [ + 3 + ] + }, + "codebookComboParametersAdditionPerBC-r16": { + "type1SP-Type2-null-r16": [ + 24 + ], + "type1SP-eType2R1-null-r16": [ + 24 + ] + } + } + }, + "supportedBandPairListNR-r16": [ + { + "bandIndexUL1-r16": 1, + "bandIndexUL2-r16": 2, + "uplinkTxSwitchingPeriod-r16": "n140us" + } + ], + "uplinkTxSwitching-OptionSupport-r16": "both" + }, + { + "bandCombination-r16": { + "bandList": [ + { + "nr": { + "bandNR": 1, + "ca-BandwidthClassDL-NR": "a", + "ca-BandwidthClassUL-NR": "a" + } + }, + { + "nr": { + "bandNR": 78, + "ca-BandwidthClassDL-NR": "a", + "ca-BandwidthClassUL-NR": "a" + } + }, + { + "nr": { + "bandNR": 78, + "ca-BandwidthClassDL-NR": "a" + } + } + ], + "featureSetCombination": 5, + "ca-ParametersNR": { + "parallelTxSRS-PUCCH-PUSCH": "supported", + "parallelTxPRACH-SRS-PUCCH-PUSCH": "supported", + "simultaneousRxTxInterBandCA": "supported", + "diffNumerologyWithinPUCCH-GroupSmallerSCS": "supported" + }, + "supportedBandwidthCombinationSet": "11101" + }, + "bandCombination-v1540": { + "bandList-v1540": [ + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "t2r4" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + } + ], + "ca-ParametersNR-v1540": { + "csi-RS-IM-ReceptionForFeedbackPerBandComb": { + "maxNumberSimultaneousNZP-CSI-RS-ActBWP-AllCC": 16, + "totalNumberPortsSimultaneousNZP-CSI-RS-ActBWP-AllCC": 164 + }, + "simultaneousCSI-ReportsAllCC": 16 + } + }, + "bandCombination-v1560": { + "ca-ParametersNR-v1560": { + "diffNumerologyWithinPUCCH-GroupLargerSCS": "supported" + } + }, + "bandCombination-v1610": { + "ca-ParametersNR-v1610": { + "codebookParametersPerBC-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 16, + 17, + 18 + ] + } + }, + "codebookParametersAdditionPerBC-r16": { + "etype2R1-r16": [ + 3 + ] + }, + "codebookComboParametersAdditionPerBC-r16": { + "type1SP-Type2-null-r16": [ + 24 + ], + "type1SP-eType2R1-null-r16": [ + 24 + ] + } + } + }, + "supportedBandPairListNR-r16": [ + { + "bandIndexUL1-r16": 1, + "bandIndexUL2-r16": 2, + "uplinkTxSwitchingPeriod-r16": "n140us" + } + ], + "uplinkTxSwitching-OptionSupport-r16": "both" + }, + { + "bandCombination-r16": { + "bandList": [ + { + "nr": { + "bandNR": 41, + "ca-BandwidthClassDL-NR": "c", + "ca-BandwidthClassUL-NR": "a" + } + }, + { + "nr": { + "bandNR": 71, + "ca-BandwidthClassDL-NR": "b", + "ca-BandwidthClassUL-NR": "a" + } + } + ], + "featureSetCombination": 72, + "ca-ParametersNR": { + "parallelTxSRS-PUCCH-PUSCH": "supported", + "parallelTxPRACH-SRS-PUCCH-PUSCH": "supported", + "simultaneousRxTxInterBandCA": "supported", + "diffNumerologyWithinPUCCH-GroupSmallerSCS": "supported" + }, + "supportedBandwidthCombinationSet": "11001", + "powerClass-v1530": "pc2" + }, + "bandCombination-v1540": { + "bandList-v1540": [ + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "t2r4" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + } + ], + "ca-ParametersNR-v1540": { + "csi-RS-IM-ReceptionForFeedbackPerBandComb": { + "maxNumberSimultaneousNZP-CSI-RS-ActBWP-AllCC": 16, + "totalNumberPortsSimultaneousNZP-CSI-RS-ActBWP-AllCC": 164 + }, + "simultaneousCSI-ReportsAllCC": 16 + } + }, + "bandCombination-v1560": { + "ca-ParametersNR-v1560": { + "diffNumerologyWithinPUCCH-GroupLargerSCS": "supported" + } + }, + "bandCombination-v1610": { + "ca-ParametersNR-v1610": { + "codebookParametersPerBC-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 16, + 17, + 18 + ] + } + }, + "codebookParametersAdditionPerBC-r16": { + "etype2R1-r16": [ + 10 + ] + }, + "codebookComboParametersAdditionPerBC-r16": { + "type1SP-Type2-null-r16": [ + 24 + ], + "type1SP-eType2R1-null-r16": [ + 24 + ] + } + } + }, + "supportedBandPairListNR-r16": [ + { + "bandIndexUL1-r16": 1, + "bandIndexUL2-r16": 2, + "uplinkTxSwitchingPeriod-r16": "n140us" + } + ], + "uplinkTxSwitching-OptionSupport-r16": "both" + }, + { + "bandCombination-r16": { + "bandList": [ + { + "nr": { + "bandNR": 41, + "ca-BandwidthClassDL-NR": "c", + "ca-BandwidthClassUL-NR": "a" + } + }, + { + "nr": { + "bandNR": 71, + "ca-BandwidthClassDL-NR": "a", + "ca-BandwidthClassUL-NR": "a" + } + } + ], + "featureSetCombination": 63, + "ca-ParametersNR": { + "parallelTxSRS-PUCCH-PUSCH": "supported", + "parallelTxPRACH-SRS-PUCCH-PUSCH": "supported", + "simultaneousRxTxInterBandCA": "supported", + "diffNumerologyWithinPUCCH-GroupSmallerSCS": "supported" + }, + "supportedBandwidthCombinationSet": "11001", + "powerClass-v1530": "pc2" + }, + "bandCombination-v1540": { + "bandList-v1540": [ + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "t2r4" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + } + ], + "ca-ParametersNR-v1540": { + "csi-RS-IM-ReceptionForFeedbackPerBandComb": { + "maxNumberSimultaneousNZP-CSI-RS-ActBWP-AllCC": 16, + "totalNumberPortsSimultaneousNZP-CSI-RS-ActBWP-AllCC": 164 + }, + "simultaneousCSI-ReportsAllCC": 16 + } + }, + "bandCombination-v1560": { + "ca-ParametersNR-v1560": { + "diffNumerologyWithinPUCCH-GroupLargerSCS": "supported" + } + }, + "bandCombination-v1610": { + "ca-ParametersNR-v1610": { + "codebookParametersPerBC-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 16, + 17, + 18 + ] + } + }, + "codebookParametersAdditionPerBC-r16": { + "etype2R1-r16": [ + 3 + ] + }, + "codebookComboParametersAdditionPerBC-r16": { + "type1SP-Type2-null-r16": [ + 24 + ], + "type1SP-eType2R1-null-r16": [ + 24 + ] + } + } + }, + "supportedBandPairListNR-r16": [ + { + "bandIndexUL1-r16": 1, + "bandIndexUL2-r16": 2, + "uplinkTxSwitchingPeriod-r16": "n140us" + } + ], + "uplinkTxSwitching-OptionSupport-r16": "both" + }, + { + "bandCombination-r16": { + "bandList": [ + { + "nr": { + "bandNR": 41, + "ca-BandwidthClassDL-NR": "a", + "ca-BandwidthClassUL-NR": "a" + } + }, + { + "nr": { + "bandNR": 41, + "ca-BandwidthClassDL-NR": "a" + } + }, + { + "nr": { + "bandNR": 41, + "ca-BandwidthClassDL-NR": "a" + } + }, + { + "nr": { + "bandNR": 71, + "ca-BandwidthClassDL-NR": "a", + "ca-BandwidthClassUL-NR": "a" + } + } + ], + "featureSetCombination": 59, + "ca-ParametersNR": { + "parallelTxSRS-PUCCH-PUSCH": "supported", + "parallelTxPRACH-SRS-PUCCH-PUSCH": "supported", + "simultaneousRxTxInterBandCA": "supported", + "diffNumerologyWithinPUCCH-GroupSmallerSCS": "supported" + }, + "supportedBandwidthCombinationSet": "10001", + "powerClass-v1530": "pc2" + }, + "bandCombination-v1540": { + "bandList-v1540": [ + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "t2r4" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + } + ], + "ca-ParametersNR-v1540": { + "csi-RS-IM-ReceptionForFeedbackPerBandComb": { + "maxNumberSimultaneousNZP-CSI-RS-ActBWP-AllCC": 16, + "totalNumberPortsSimultaneousNZP-CSI-RS-ActBWP-AllCC": 164 + }, + "simultaneousCSI-ReportsAllCC": 16 + } + }, + "bandCombination-v1560": { + "ca-ParametersNR-v1560": { + "diffNumerologyWithinPUCCH-GroupLargerSCS": "supported" + } + }, + "bandCombination-v1610": { + "ca-ParametersNR-v1610": { + "codebookParametersPerBC-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 16, + 17, + 18 + ] + } + }, + "codebookParametersAdditionPerBC-r16": { + "etype2R1-r16": [ + 3 + ] + }, + "codebookComboParametersAdditionPerBC-r16": { + "type1SP-Type2-null-r16": [ + 24 + ], + "type1SP-eType2R1-null-r16": [ + 24 + ] + } + } + }, + "supportedBandPairListNR-r16": [ + { + "bandIndexUL1-r16": 1, + "bandIndexUL2-r16": 4, + "uplinkTxSwitchingPeriod-r16": "n140us" + } + ], + "uplinkTxSwitching-OptionSupport-r16": "both" + }, + { + "bandCombination-r16": { + "bandList": [ + { + "nr": { + "bandNR": 41, + "ca-BandwidthClassDL-NR": "c", + "ca-BandwidthClassUL-NR": "a" + } + }, + { + "nr": { + "bandNR": 71, + "ca-BandwidthClassDL-NR": "a", + "ca-BandwidthClassUL-NR": "a" + } + }, + { + "nr": { + "bandNR": 71, + "ca-BandwidthClassDL-NR": "a" + } + } + ], + "featureSetCombination": 77, + "ca-ParametersNR": { + "parallelTxSRS-PUCCH-PUSCH": "supported", + "parallelTxPRACH-SRS-PUCCH-PUSCH": "supported", + "simultaneousRxTxInterBandCA": "supported", + "diffNumerologyWithinPUCCH-GroupSmallerSCS": "supported" + }, + "supportedBandwidthCombinationSet": "10001", + "powerClass-v1530": "pc2" + }, + "bandCombination-v1540": { + "bandList-v1540": [ + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "t2r4" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + } + ], + "ca-ParametersNR-v1540": { + "csi-RS-IM-ReceptionForFeedbackPerBandComb": { + "maxNumberSimultaneousNZP-CSI-RS-ActBWP-AllCC": 16, + "totalNumberPortsSimultaneousNZP-CSI-RS-ActBWP-AllCC": 164 + }, + "simultaneousCSI-ReportsAllCC": 16 + } + }, + "bandCombination-v1560": { + "ca-ParametersNR-v1560": { + "diffNumerologyWithinPUCCH-GroupLargerSCS": "supported" + } + }, + "bandCombination-v1610": { + "ca-ParametersNR-v1610": { + "codebookParametersPerBC-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 16, + 17, + 18 + ] + } + }, + "codebookParametersAdditionPerBC-r16": { + "etype2R1-r16": [ + 10 + ] + }, + "codebookComboParametersAdditionPerBC-r16": { + "type1SP-Type2-null-r16": [ + 24 + ], + "type1SP-eType2R1-null-r16": [ + 24 + ] + } + } + }, + "supportedBandPairListNR-r16": [ + { + "bandIndexUL1-r16": 1, + "bandIndexUL2-r16": 2, + "uplinkTxSwitchingPeriod-r16": "n140us" + } + ], + "uplinkTxSwitching-OptionSupport-r16": "both" + }, + { + "bandCombination-r16": { + "bandList": [ + { + "nr": { + "bandNR": 41, + "ca-BandwidthClassDL-NR": "a", + "ca-BandwidthClassUL-NR": "a" + } + }, + { + "nr": { + "bandNR": 41, + "ca-BandwidthClassDL-NR": "a" + } + }, + { + "nr": { + "bandNR": 71, + "ca-BandwidthClassDL-NR": "a", + "ca-BandwidthClassUL-NR": "a" + } + } + ], + "featureSetCombination": 61, + "ca-ParametersNR": { + "parallelTxSRS-PUCCH-PUSCH": "supported", + "parallelTxPRACH-SRS-PUCCH-PUSCH": "supported", + "simultaneousRxTxInterBandCA": "supported", + "diffNumerologyWithinPUCCH-GroupSmallerSCS": "supported" + }, + "supportedBandwidthCombinationSet": "11001", + "powerClass-v1530": "pc2" + }, + "bandCombination-v1540": { + "bandList-v1540": [ + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "t2r4" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + } + ], + "ca-ParametersNR-v1540": { + "csi-RS-IM-ReceptionForFeedbackPerBandComb": { + "maxNumberSimultaneousNZP-CSI-RS-ActBWP-AllCC": 16, + "totalNumberPortsSimultaneousNZP-CSI-RS-ActBWP-AllCC": 164 + }, + "simultaneousCSI-ReportsAllCC": 16 + } + }, + "bandCombination-v1560": { + "ca-ParametersNR-v1560": { + "diffNumerologyWithinPUCCH-GroupLargerSCS": "supported" + } + }, + "bandCombination-v1610": { + "ca-ParametersNR-v1610": { + "codebookParametersPerBC-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 16, + 17, + 18 + ] + } + }, + "codebookParametersAdditionPerBC-r16": { + "etype2R1-r16": [ + 3 + ] + }, + "codebookComboParametersAdditionPerBC-r16": { + "type1SP-Type2-null-r16": [ + 24 + ], + "type1SP-eType2R1-null-r16": [ + 24 + ] + } + } + }, + "supportedBandPairListNR-r16": [ + { + "bandIndexUL1-r16": 1, + "bandIndexUL2-r16": 3, + "uplinkTxSwitchingPeriod-r16": "n140us" + } + ], + "uplinkTxSwitching-OptionSupport-r16": "both" + }, + { + "bandCombination-r16": { + "bandList": [ + { + "nr": { + "bandNR": 41, + "ca-BandwidthClassDL-NR": "a", + "ca-BandwidthClassUL-NR": "a" + } + }, + { + "nr": { + "bandNR": 71, + "ca-BandwidthClassDL-NR": "a", + "ca-BandwidthClassUL-NR": "a" + } + }, + { + "nr": { + "bandNR": 71, + "ca-BandwidthClassDL-NR": "a" + } + } + ], + "featureSetCombination": 62, + "ca-ParametersNR": { + "parallelTxSRS-PUCCH-PUSCH": "supported", + "parallelTxPRACH-SRS-PUCCH-PUSCH": "supported", + "simultaneousRxTxInterBandCA": "supported", + "diffNumerologyWithinPUCCH-GroupSmallerSCS": "supported" + }, + "supportedBandwidthCombinationSet": "11001" + }, + "bandCombination-v1540": { + "bandList-v1540": [ + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "t2r4" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + } + ], + "ca-ParametersNR-v1540": { + "csi-RS-IM-ReceptionForFeedbackPerBandComb": { + "maxNumberSimultaneousNZP-CSI-RS-ActBWP-AllCC": 16, + "totalNumberPortsSimultaneousNZP-CSI-RS-ActBWP-AllCC": 164 + }, + "simultaneousCSI-ReportsAllCC": 16 + } + }, + "bandCombination-v1560": { + "ca-ParametersNR-v1560": { + "diffNumerologyWithinPUCCH-GroupLargerSCS": "supported" + } + }, + "bandCombination-v1610": { + "ca-ParametersNR-v1610": { + "codebookParametersPerBC-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 6, + 7, + 8 + ] + } + }, + "codebookParametersAdditionPerBC-r16": { + "etype2R1-r16": [ + 10 + ] + }, + "codebookComboParametersAdditionPerBC-r16": { + "type1SP-Type2-null-r16": [ + 24 + ], + "type1SP-eType2R1-null-r16": [ + 24 + ] + } + } + }, + "supportedBandPairListNR-r16": [ + { + "bandIndexUL1-r16": 1, + "bandIndexUL2-r16": 2, + "uplinkTxSwitchingPeriod-r16": "n140us" + } + ], + "uplinkTxSwitching-OptionSupport-r16": "both" + }, + { + "bandCombination-r16": { + "bandList": [ + { + "nr": { + "bandNR": 41, + "ca-BandwidthClassDL-NR": "a", + "ca-BandwidthClassUL-NR": "a" + } + }, + { + "nr": { + "bandNR": 41, + "ca-BandwidthClassDL-NR": "a" + } + }, + { + "nr": { + "bandNR": 71, + "ca-BandwidthClassDL-NR": "a", + "ca-BandwidthClassUL-NR": "a" + } + }, + { + "nr": { + "bandNR": 71, + "ca-BandwidthClassDL-NR": "a" + } + } + ], + "featureSetCombination": 65, + "ca-ParametersNR": { + "parallelTxSRS-PUCCH-PUSCH": "supported", + "parallelTxPRACH-SRS-PUCCH-PUSCH": "supported", + "simultaneousRxTxInterBandCA": "supported", + "diffNumerologyWithinPUCCH-GroupSmallerSCS": "supported" + }, + "supportedBandwidthCombinationSet": "10001", + "powerClass-v1530": "pc2" + }, + "bandCombination-v1540": { + "bandList-v1540": [ + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "t2r4" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + } + ], + "ca-ParametersNR-v1540": { + "csi-RS-IM-ReceptionForFeedbackPerBandComb": { + "maxNumberSimultaneousNZP-CSI-RS-ActBWP-AllCC": 16, + "totalNumberPortsSimultaneousNZP-CSI-RS-ActBWP-AllCC": 164 + }, + "simultaneousCSI-ReportsAllCC": 16 + } + }, + "bandCombination-v1560": { + "ca-ParametersNR-v1560": { + "diffNumerologyWithinPUCCH-GroupLargerSCS": "supported" + } + }, + "bandCombination-v1610": { + "ca-ParametersNR-v1610": { + "codebookParametersPerBC-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 16, + 17, + 18 + ] + } + }, + "codebookParametersAdditionPerBC-r16": { + "etype2R1-r16": [ + 10 + ] + }, + "codebookComboParametersAdditionPerBC-r16": { + "type1SP-Type2-null-r16": [ + 24 + ], + "type1SP-eType2R1-null-r16": [ + 24 + ] + } + } + }, + "supportedBandPairListNR-r16": [ + { + "bandIndexUL1-r16": 1, + "bandIndexUL2-r16": 3, + "uplinkTxSwitchingPeriod-r16": "n140us" + } + ], + "uplinkTxSwitching-OptionSupport-r16": "both" + }, + { + "bandCombination-r16": { + "bandList": [ + { + "nr": { + "bandNR": 41, + "ca-BandwidthClassDL-NR": "c", + "ca-BandwidthClassUL-NR": "a" + } + }, + { + "nr": { + "bandNR": 41, + "ca-BandwidthClassDL-NR": "a" + } + }, + { + "nr": { + "bandNR": 71, + "ca-BandwidthClassDL-NR": "a", + "ca-BandwidthClassUL-NR": "a" + } + } + ], + "featureSetCombination": 67, + "ca-ParametersNR": { + "parallelTxSRS-PUCCH-PUSCH": "supported", + "parallelTxPRACH-SRS-PUCCH-PUSCH": "supported", + "simultaneousRxTxInterBandCA": "supported", + "diffNumerologyWithinPUCCH-GroupSmallerSCS": "supported" + }, + "supportedBandwidthCombinationSet": "10001", + "powerClass-v1530": "pc2" + }, + "bandCombination-v1540": { + "bandList-v1540": [ + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "t2r4" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + } + ], + "ca-ParametersNR-v1540": { + "csi-RS-IM-ReceptionForFeedbackPerBandComb": { + "maxNumberSimultaneousNZP-CSI-RS-ActBWP-AllCC": 16, + "totalNumberPortsSimultaneousNZP-CSI-RS-ActBWP-AllCC": 164 + }, + "simultaneousCSI-ReportsAllCC": 16 + } + }, + "bandCombination-v1560": { + "ca-ParametersNR-v1560": { + "diffNumerologyWithinPUCCH-GroupLargerSCS": "supported" + } + }, + "bandCombination-v1610": { + "ca-ParametersNR-v1610": { + "codebookParametersPerBC-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 16, + 17, + 18 + ] + } + }, + "codebookParametersAdditionPerBC-r16": { + "etype2R1-r16": [ + 3 + ] + }, + "codebookComboParametersAdditionPerBC-r16": { + "type1SP-Type2-null-r16": [ + 24 + ], + "type1SP-eType2R1-null-r16": [ + 24 + ] + } + } + }, + "supportedBandPairListNR-r16": [ + { + "bandIndexUL1-r16": 1, + "bandIndexUL2-r16": 3, + "uplinkTxSwitchingPeriod-r16": "n140us" + } + ], + "uplinkTxSwitching-OptionSupport-r16": "both" + }, + { + "bandCombination-r16": { + "bandList": [ + { + "nr": { + "bandNR": 41, + "ca-BandwidthClassDL-NR": "a", + "ca-BandwidthClassUL-NR": "a" + } + }, + { + "nr": { + "bandNR": 41, + "ca-BandwidthClassDL-NR": "c" + } + }, + { + "nr": { + "bandNR": 71, + "ca-BandwidthClassDL-NR": "a", + "ca-BandwidthClassUL-NR": "a" + } + } + ], + "featureSetCombination": 68, + "ca-ParametersNR": { + "parallelTxSRS-PUCCH-PUSCH": "supported", + "parallelTxPRACH-SRS-PUCCH-PUSCH": "supported", + "simultaneousRxTxInterBandCA": "supported", + "diffNumerologyWithinPUCCH-GroupSmallerSCS": "supported" + }, + "supportedBandwidthCombinationSet": "10001", + "powerClass-v1530": "pc2" + }, + "bandCombination-v1540": { + "bandList-v1540": [ + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "t2r4" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + } + ], + "ca-ParametersNR-v1540": { + "csi-RS-IM-ReceptionForFeedbackPerBandComb": { + "maxNumberSimultaneousNZP-CSI-RS-ActBWP-AllCC": 16, + "totalNumberPortsSimultaneousNZP-CSI-RS-ActBWP-AllCC": 164 + }, + "simultaneousCSI-ReportsAllCC": 16 + } + }, + "bandCombination-v1560": { + "ca-ParametersNR-v1560": { + "diffNumerologyWithinPUCCH-GroupLargerSCS": "supported" + } + }, + "bandCombination-v1610": { + "ca-ParametersNR-v1610": { + "codebookParametersPerBC-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 16, + 17, + 18 + ] + } + }, + "codebookParametersAdditionPerBC-r16": { + "etype2R1-r16": [ + 3 + ] + }, + "codebookComboParametersAdditionPerBC-r16": { + "type1SP-Type2-null-r16": [ + 24 + ], + "type1SP-eType2R1-null-r16": [ + 24 + ] + } + } + }, + "supportedBandPairListNR-r16": [ + { + "bandIndexUL1-r16": 1, + "bandIndexUL2-r16": 3, + "uplinkTxSwitchingPeriod-r16": "n140us" + } + ], + "uplinkTxSwitching-OptionSupport-r16": "both" + }, + { + "bandCombination-r16": { + "bandList": [ + { + "nr": { + "bandNR": 41, + "ca-BandwidthClassDL-NR": "a", + "ca-BandwidthClassUL-NR": "a" + } + }, + { + "nr": { + "bandNR": 41, + "ca-BandwidthClassDL-NR": "a" + } + }, + { + "nr": { + "bandNR": 71, + "ca-BandwidthClassDL-NR": "b", + "ca-BandwidthClassUL-NR": "a" + } + } + ], + "featureSetCombination": 69, + "ca-ParametersNR": { + "parallelTxSRS-PUCCH-PUSCH": "supported", + "parallelTxPRACH-SRS-PUCCH-PUSCH": "supported", + "simultaneousRxTxInterBandCA": "supported", + "diffNumerologyWithinPUCCH-GroupSmallerSCS": "supported" + }, + "supportedBandwidthCombinationSet": "11001", + "powerClass-v1530": "pc2" + }, + "bandCombination-v1540": { + "bandList-v1540": [ + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "t2r4" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + } + ], + "ca-ParametersNR-v1540": { + "csi-RS-IM-ReceptionForFeedbackPerBandComb": { + "maxNumberSimultaneousNZP-CSI-RS-ActBWP-AllCC": 16, + "totalNumberPortsSimultaneousNZP-CSI-RS-ActBWP-AllCC": 164 + }, + "simultaneousCSI-ReportsAllCC": 16 + } + }, + "bandCombination-v1560": { + "ca-ParametersNR-v1560": { + "diffNumerologyWithinPUCCH-GroupLargerSCS": "supported" + } + }, + "bandCombination-v1610": { + "ca-ParametersNR-v1610": { + "codebookParametersPerBC-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 16, + 17, + 18 + ] + } + }, + "codebookParametersAdditionPerBC-r16": { + "etype2R1-r16": [ + 10 + ] + }, + "codebookComboParametersAdditionPerBC-r16": { + "type1SP-Type2-null-r16": [ + 24 + ], + "type1SP-eType2R1-null-r16": [ + 24 + ] + } + } + }, + "supportedBandPairListNR-r16": [ + { + "bandIndexUL1-r16": 1, + "bandIndexUL2-r16": 3, + "uplinkTxSwitchingPeriod-r16": "n140us" + } + ], + "uplinkTxSwitching-OptionSupport-r16": "both" + }, + { + "bandCombination-r16": { + "bandList": [ + { + "nr": { + "bandNR": 41, + "ca-BandwidthClassDL-NR": "a", + "ca-BandwidthClassUL-NR": "a" + } + }, + { + "nr": { + "bandNR": 41, + "ca-BandwidthClassDL-NR": "a" + } + }, + { + "nr": { + "bandNR": 41, + "ca-BandwidthClassDL-NR": "a" + } + }, + { + "nr": { + "bandNR": 71, + "ca-BandwidthClassDL-NR": "a", + "ca-BandwidthClassUL-NR": "a" + } + }, + { + "nr": { + "bandNR": 71, + "ca-BandwidthClassDL-NR": "a" + } + } + ], + "featureSetCombination": 70, + "ca-ParametersNR": { + "parallelTxSRS-PUCCH-PUSCH": "supported", + "parallelTxPRACH-SRS-PUCCH-PUSCH": "supported", + "simultaneousRxTxInterBandCA": "supported", + "diffNumerologyWithinPUCCH-GroupSmallerSCS": "supported" + }, + "supportedBandwidthCombinationSet": "10001", + "powerClass-v1530": "pc2" + }, + "bandCombination-v1540": { + "bandList-v1540": [ + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "t2r4" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + } + ], + "ca-ParametersNR-v1540": { + "csi-RS-IM-ReceptionForFeedbackPerBandComb": { + "maxNumberSimultaneousNZP-CSI-RS-ActBWP-AllCC": 16, + "totalNumberPortsSimultaneousNZP-CSI-RS-ActBWP-AllCC": 164 + }, + "simultaneousCSI-ReportsAllCC": 16 + } + }, + "bandCombination-v1560": { + "ca-ParametersNR-v1560": { + "diffNumerologyWithinPUCCH-GroupLargerSCS": "supported" + } + }, + "bandCombination-v1610": { + "ca-ParametersNR-v1610": { + "codebookParametersPerBC-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 16, + 17, + 26 + ] + } + }, + "codebookParametersAdditionPerBC-r16": { + "etype2R1-r16": [ + 10 + ] + }, + "codebookComboParametersAdditionPerBC-r16": { + "type1SP-Type2-null-r16": [ + 24 + ], + "type1SP-eType2R1-null-r16": [ + 24 + ] + } + } + }, + "supportedBandPairListNR-r16": [ + { + "bandIndexUL1-r16": 1, + "bandIndexUL2-r16": 4, + "uplinkTxSwitchingPeriod-r16": "n140us" + } + ], + "uplinkTxSwitching-OptionSupport-r16": "both" + }, + { + "bandCombination-r16": { + "bandList": [ + { + "nr": { + "bandNR": 41, + "ca-BandwidthClassDL-NR": "a", + "ca-BandwidthClassUL-NR": "a" + } + }, + { + "nr": { + "bandNR": 41, + "ca-BandwidthClassDL-NR": "a" + } + }, + { + "nr": { + "bandNR": 41, + "ca-BandwidthClassDL-NR": "a" + } + }, + { + "nr": { + "bandNR": 71, + "ca-BandwidthClassDL-NR": "b", + "ca-BandwidthClassUL-NR": "a" + } + } + ], + "featureSetCombination": 71, + "ca-ParametersNR": { + "parallelTxSRS-PUCCH-PUSCH": "supported", + "parallelTxPRACH-SRS-PUCCH-PUSCH": "supported", + "simultaneousRxTxInterBandCA": "supported", + "diffNumerologyWithinPUCCH-GroupSmallerSCS": "supported" + }, + "supportedBandwidthCombinationSet": "10001", + "powerClass-v1530": "pc2" + }, + "bandCombination-v1540": { + "bandList-v1540": [ + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "t2r4" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + } + ], + "ca-ParametersNR-v1540": { + "csi-RS-IM-ReceptionForFeedbackPerBandComb": { + "maxNumberSimultaneousNZP-CSI-RS-ActBWP-AllCC": 16, + "totalNumberPortsSimultaneousNZP-CSI-RS-ActBWP-AllCC": 164 + }, + "simultaneousCSI-ReportsAllCC": 16 + } + }, + "bandCombination-v1560": { + "ca-ParametersNR-v1560": { + "diffNumerologyWithinPUCCH-GroupLargerSCS": "supported" + } + }, + "bandCombination-v1610": { + "ca-ParametersNR-v1610": { + "codebookParametersPerBC-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 16, + 17, + 26 + ] + } + }, + "codebookParametersAdditionPerBC-r16": { + "etype2R1-r16": [ + 10 + ] + }, + "codebookComboParametersAdditionPerBC-r16": { + "type1SP-Type2-null-r16": [ + 24 + ], + "type1SP-eType2R1-null-r16": [ + 24 + ] + } + } + }, + "supportedBandPairListNR-r16": [ + { + "bandIndexUL1-r16": 1, + "bandIndexUL2-r16": 4, + "uplinkTxSwitchingPeriod-r16": "n140us" + } + ], + "uplinkTxSwitching-OptionSupport-r16": "both" + }, + { + "bandCombination-r16": { + "bandList": [ + { + "nr": { + "bandNR": 41, + "ca-BandwidthClassDL-NR": "c", + "ca-BandwidthClassUL-NR": "a" + } + }, + { + "nr": { + "bandNR": 41, + "ca-BandwidthClassDL-NR": "a" + } + }, + { + "nr": { + "bandNR": 71, + "ca-BandwidthClassDL-NR": "a", + "ca-BandwidthClassUL-NR": "a" + } + }, + { + "nr": { + "bandNR": 71, + "ca-BandwidthClassDL-NR": "a" + } + } + ], + "featureSetCombination": 73, + "ca-ParametersNR": { + "parallelTxSRS-PUCCH-PUSCH": "supported", + "parallelTxPRACH-SRS-PUCCH-PUSCH": "supported", + "simultaneousRxTxInterBandCA": "supported", + "diffNumerologyWithinPUCCH-GroupSmallerSCS": "supported" + }, + "supportedBandwidthCombinationSet": "10001", + "powerClass-v1530": "pc2" + }, + "bandCombination-v1540": { + "bandList-v1540": [ + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "t2r4" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + } + ], + "ca-ParametersNR-v1540": { + "csi-RS-IM-ReceptionForFeedbackPerBandComb": { + "maxNumberSimultaneousNZP-CSI-RS-ActBWP-AllCC": 16, + "totalNumberPortsSimultaneousNZP-CSI-RS-ActBWP-AllCC": 164 + }, + "simultaneousCSI-ReportsAllCC": 16 + } + }, + "bandCombination-v1560": { + "ca-ParametersNR-v1560": { + "diffNumerologyWithinPUCCH-GroupLargerSCS": "supported" + } + }, + "bandCombination-v1610": { + "ca-ParametersNR-v1610": { + "codebookParametersPerBC-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 16, + 17, + 26 + ] + } + }, + "codebookParametersAdditionPerBC-r16": { + "etype2R1-r16": [ + 10 + ] + }, + "codebookComboParametersAdditionPerBC-r16": { + "type1SP-Type2-null-r16": [ + 24 + ], + "type1SP-eType2R1-null-r16": [ + 24 + ] + } + } + }, + "supportedBandPairListNR-r16": [ + { + "bandIndexUL1-r16": 1, + "bandIndexUL2-r16": 3, + "uplinkTxSwitchingPeriod-r16": "n140us" + } + ], + "uplinkTxSwitching-OptionSupport-r16": "both" + }, + { + "bandCombination-r16": { + "bandList": [ + { + "nr": { + "bandNR": 41, + "ca-BandwidthClassDL-NR": "a", + "ca-BandwidthClassUL-NR": "a" + } + }, + { + "nr": { + "bandNR": 41, + "ca-BandwidthClassDL-NR": "c" + } + }, + { + "nr": { + "bandNR": 71, + "ca-BandwidthClassDL-NR": "a", + "ca-BandwidthClassUL-NR": "a" + } + }, + { + "nr": { + "bandNR": 71, + "ca-BandwidthClassDL-NR": "a" + } + } + ], + "featureSetCombination": 74, + "ca-ParametersNR": { + "parallelTxSRS-PUCCH-PUSCH": "supported", + "parallelTxPRACH-SRS-PUCCH-PUSCH": "supported", + "simultaneousRxTxInterBandCA": "supported", + "diffNumerologyWithinPUCCH-GroupSmallerSCS": "supported" + }, + "supportedBandwidthCombinationSet": "10001", + "powerClass-v1530": "pc2" + }, + "bandCombination-v1540": { + "bandList-v1540": [ + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "t2r4" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + } + ], + "ca-ParametersNR-v1540": { + "csi-RS-IM-ReceptionForFeedbackPerBandComb": { + "maxNumberSimultaneousNZP-CSI-RS-ActBWP-AllCC": 16, + "totalNumberPortsSimultaneousNZP-CSI-RS-ActBWP-AllCC": 164 + }, + "simultaneousCSI-ReportsAllCC": 16 + } + }, + "bandCombination-v1560": { + "ca-ParametersNR-v1560": { + "diffNumerologyWithinPUCCH-GroupLargerSCS": "supported" + } + }, + "bandCombination-v1610": { + "ca-ParametersNR-v1610": { + "codebookParametersPerBC-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 16, + 17, + 26 + ] + } + }, + "codebookParametersAdditionPerBC-r16": { + "etype2R1-r16": [ + 10 + ] + }, + "codebookComboParametersAdditionPerBC-r16": { + "type1SP-Type2-null-r16": [ + 24 + ], + "type1SP-eType2R1-null-r16": [ + 24 + ] + } + } + }, + "supportedBandPairListNR-r16": [ + { + "bandIndexUL1-r16": 1, + "bandIndexUL2-r16": 3, + "uplinkTxSwitchingPeriod-r16": "n140us" + } + ], + "uplinkTxSwitching-OptionSupport-r16": "both" + }, + { + "bandCombination-r16": { + "bandList": [ + { + "nr": { + "bandNR": 41, + "ca-BandwidthClassDL-NR": "c", + "ca-BandwidthClassUL-NR": "a" + } + }, + { + "nr": { + "bandNR": 41, + "ca-BandwidthClassDL-NR": "a" + } + }, + { + "nr": { + "bandNR": 71, + "ca-BandwidthClassDL-NR": "b", + "ca-BandwidthClassUL-NR": "a" + } + } + ], + "featureSetCombination": 75, + "ca-ParametersNR": { + "parallelTxSRS-PUCCH-PUSCH": "supported", + "parallelTxPRACH-SRS-PUCCH-PUSCH": "supported", + "simultaneousRxTxInterBandCA": "supported", + "diffNumerologyWithinPUCCH-GroupSmallerSCS": "supported" + }, + "supportedBandwidthCombinationSet": "10001", + "powerClass-v1530": "pc2" + }, + "bandCombination-v1540": { + "bandList-v1540": [ + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "t2r4" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + } + ], + "ca-ParametersNR-v1540": { + "csi-RS-IM-ReceptionForFeedbackPerBandComb": { + "maxNumberSimultaneousNZP-CSI-RS-ActBWP-AllCC": 16, + "totalNumberPortsSimultaneousNZP-CSI-RS-ActBWP-AllCC": 164 + }, + "simultaneousCSI-ReportsAllCC": 16 + } + }, + "bandCombination-v1560": { + "ca-ParametersNR-v1560": { + "diffNumerologyWithinPUCCH-GroupLargerSCS": "supported" + } + }, + "bandCombination-v1610": { + "ca-ParametersNR-v1610": { + "codebookParametersPerBC-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 16, + 17, + 26 + ] + } + }, + "codebookParametersAdditionPerBC-r16": { + "etype2R1-r16": [ + 10 + ] + }, + "codebookComboParametersAdditionPerBC-r16": { + "type1SP-Type2-null-r16": [ + 24 + ], + "type1SP-eType2R1-null-r16": [ + 24 + ] + } + } + }, + "supportedBandPairListNR-r16": [ + { + "bandIndexUL1-r16": 1, + "bandIndexUL2-r16": 3, + "uplinkTxSwitchingPeriod-r16": "n140us" + } + ], + "uplinkTxSwitching-OptionSupport-r16": "both" + }, + { + "bandCombination-r16": { + "bandList": [ + { + "nr": { + "bandNR": 41, + "ca-BandwidthClassDL-NR": "a", + "ca-BandwidthClassUL-NR": "a" + } + }, + { + "nr": { + "bandNR": 41, + "ca-BandwidthClassDL-NR": "c" + } + }, + { + "nr": { + "bandNR": 71, + "ca-BandwidthClassDL-NR": "b", + "ca-BandwidthClassUL-NR": "a" + } + } + ], + "featureSetCombination": 76, + "ca-ParametersNR": { + "parallelTxSRS-PUCCH-PUSCH": "supported", + "parallelTxPRACH-SRS-PUCCH-PUSCH": "supported", + "simultaneousRxTxInterBandCA": "supported", + "diffNumerologyWithinPUCCH-GroupSmallerSCS": "supported" + }, + "supportedBandwidthCombinationSet": "10001", + "powerClass-v1530": "pc2" + }, + "bandCombination-v1540": { + "bandList-v1540": [ + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "t2r4" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + } + ], + "ca-ParametersNR-v1540": { + "csi-RS-IM-ReceptionForFeedbackPerBandComb": { + "maxNumberSimultaneousNZP-CSI-RS-ActBWP-AllCC": 16, + "totalNumberPortsSimultaneousNZP-CSI-RS-ActBWP-AllCC": 164 + }, + "simultaneousCSI-ReportsAllCC": 16 + } + }, + "bandCombination-v1560": { + "ca-ParametersNR-v1560": { + "diffNumerologyWithinPUCCH-GroupLargerSCS": "supported" + } + }, + "bandCombination-v1610": { + "ca-ParametersNR-v1610": { + "codebookParametersPerBC-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 16, + 17, + 26 + ] + } + }, + "codebookParametersAdditionPerBC-r16": { + "etype2R1-r16": [ + 10 + ] + }, + "codebookComboParametersAdditionPerBC-r16": { + "type1SP-Type2-null-r16": [ + 24 + ], + "type1SP-eType2R1-null-r16": [ + 24 + ] + } + } + }, + "supportedBandPairListNR-r16": [ + { + "bandIndexUL1-r16": 1, + "bandIndexUL2-r16": 3, + "uplinkTxSwitchingPeriod-r16": "n140us" + } + ], + "uplinkTxSwitching-OptionSupport-r16": "both" + }, + { + "bandCombination-r16": { + "bandList": [ + { + "nr": { + "bandNR": 78, + "ca-BandwidthClassDL-NR": "a", + "ca-BandwidthClassUL-NR": "a" + } + }, + { + "nr": { + "bandNR": 80, + "ca-BandwidthClassUL-NR": "a" + } + } + ], + "featureSetCombination": 1, + "ca-ParametersNR": { + "simultaneousRxTxSUL": "supported" + }, + "supportedBandwidthCombinationSet": "10001" + }, + "bandCombination-v1540": { + "bandList-v1540": [ + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "t2r4" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + } + ], + "ca-ParametersNR-v1540": { + "csi-RS-IM-ReceptionForFeedbackPerBandComb": { + "maxNumberSimultaneousNZP-CSI-RS-ActBWP-AllCC": 16, + "totalNumberPortsSimultaneousNZP-CSI-RS-ActBWP-AllCC": 164 + }, + "simultaneousCSI-ReportsAllCC": 16 + } + }, + "bandCombination-v1560": { + "ca-ParametersNR-v1560": {} + }, + "bandCombination-v1610": { + "ca-ParametersNR-v1610": { + "codebookParametersPerBC-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 6, + 7, + 8 + ] + } + } + } + }, + "supportedBandPairListNR-r16": [ + { + "bandIndexUL1-r16": 1, + "bandIndexUL2-r16": 2, + "uplinkTxSwitchingPeriod-r16": "n140us" + } + ] + }, + { + "bandCombination-r16": { + "bandList": [ + { + "nr": { + "bandNR": 78, + "ca-BandwidthClassDL-NR": "a", + "ca-BandwidthClassUL-NR": "a" + } + }, + { + "nr": { + "bandNR": 81, + "ca-BandwidthClassUL-NR": "a" + } + } + ], + "featureSetCombination": 25, + "ca-ParametersNR": { + "simultaneousRxTxSUL": "supported" + }, + "supportedBandwidthCombinationSet": "10001" + }, + "bandCombination-v1540": { + "bandList-v1540": [ + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "t2r4" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + } + ], + "ca-ParametersNR-v1540": { + "csi-RS-IM-ReceptionForFeedbackPerBandComb": { + "maxNumberSimultaneousNZP-CSI-RS-ActBWP-AllCC": 16, + "totalNumberPortsSimultaneousNZP-CSI-RS-ActBWP-AllCC": 164 + }, + "simultaneousCSI-ReportsAllCC": 16 + } + }, + "bandCombination-v1560": { + "ca-ParametersNR-v1560": {} + }, + "bandCombination-v1610": { + "ca-ParametersNR-v1610": { + "codebookParametersPerBC-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 6, + 7, + 8 + ] + } + } + } + }, + "supportedBandPairListNR-r16": [ + { + "bandIndexUL1-r16": 1, + "bandIndexUL2-r16": 2, + "uplinkTxSwitchingPeriod-r16": "n140us" + } + ] + }, + { + "bandCombination-r16": { + "bandList": [ + { + "nr": { + "bandNR": 78, + "ca-BandwidthClassDL-NR": "a", + "ca-BandwidthClassUL-NR": "a" + } + }, + { + "nr": { + "bandNR": 83, + "ca-BandwidthClassUL-NR": "a" + } + } + ], + "featureSetCombination": 26, + "ca-ParametersNR": { + "simultaneousRxTxSUL": "supported" + }, + "supportedBandwidthCombinationSet": "10001" + }, + "bandCombination-v1540": { + "bandList-v1540": [ + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "t2r4" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + } + ], + "ca-ParametersNR-v1540": { + "csi-RS-IM-ReceptionForFeedbackPerBandComb": { + "maxNumberSimultaneousNZP-CSI-RS-ActBWP-AllCC": 16, + "totalNumberPortsSimultaneousNZP-CSI-RS-ActBWP-AllCC": 164 + }, + "simultaneousCSI-ReportsAllCC": 16 + } + }, + "bandCombination-v1560": { + "ca-ParametersNR-v1560": {} + }, + "bandCombination-v1610": { + "ca-ParametersNR-v1610": { + "codebookParametersPerBC-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 6, + 7, + 8 + ] + } + } + } + }, + "supportedBandPairListNR-r16": [ + { + "bandIndexUL1-r16": 1, + "bandIndexUL2-r16": 2, + "uplinkTxSwitchingPeriod-r16": "n140us" + } + ] + }, + { + "bandCombination-r16": { + "bandList": [ + { + "nr": { + "bandNR": 78, + "ca-BandwidthClassDL-NR": "a", + "ca-BandwidthClassUL-NR": "a" + } + }, + { + "nr": { + "bandNR": 84, + "ca-BandwidthClassUL-NR": "a" + } + } + ], + "featureSetCombination": 27, + "ca-ParametersNR": { + "simultaneousRxTxSUL": "supported" + }, + "supportedBandwidthCombinationSet": "10001" + }, + "bandCombination-v1540": { + "bandList-v1540": [ + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "t2r4" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + } + ], + "ca-ParametersNR-v1540": { + "csi-RS-IM-ReceptionForFeedbackPerBandComb": { + "maxNumberSimultaneousNZP-CSI-RS-ActBWP-AllCC": 16, + "totalNumberPortsSimultaneousNZP-CSI-RS-ActBWP-AllCC": 164 + }, + "simultaneousCSI-ReportsAllCC": 16 + } + }, + "bandCombination-v1560": { + "ca-ParametersNR-v1560": {} + }, + "bandCombination-v1610": { + "ca-ParametersNR-v1610": { + "codebookParametersPerBC-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 6, + 7, + 8 + ] + } + } + } + }, + "supportedBandPairListNR-r16": [ + { + "bandIndexUL1-r16": 1, + "bandIndexUL2-r16": 2, + "uplinkTxSwitchingPeriod-r16": "n140us" + } + ] + }, + { + "bandCombination-r16": { + "bandList": [ + { + "nr": { + "bandNR": 78, + "ca-BandwidthClassDL-NR": "a", + "ca-BandwidthClassUL-NR": "a" + } + }, + { + "nr": { + "bandNR": 89, + "ca-BandwidthClassUL-NR": "a" + } + } + ], + "featureSetCombination": 28, + "ca-ParametersNR": { + "simultaneousRxTxSUL": "supported" + }, + "supportedBandwidthCombinationSet": "10001" + }, + "bandCombination-v1540": { + "bandList-v1540": [ + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "t2r4" + } + }, + { + "srs-TxSwitch": { + "supportedSRS-TxPortSwitch": "notSupported" + } + } + ], + "ca-ParametersNR-v1540": { + "csi-RS-IM-ReceptionForFeedbackPerBandComb": { + "maxNumberSimultaneousNZP-CSI-RS-ActBWP-AllCC": 16, + "totalNumberPortsSimultaneousNZP-CSI-RS-ActBWP-AllCC": 164 + }, + "simultaneousCSI-ReportsAllCC": 16 + } + }, + "bandCombination-v1560": { + "ca-ParametersNR-v1560": {} + }, + "bandCombination-v1610": { + "ca-ParametersNR-v1610": { + "codebookParametersPerBC-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 6, + 7, + 8 + ] + } + } + } + }, + "supportedBandPairListNR-r16": [ + { + "bandIndexUL1-r16": 1, + "bandIndexUL2-r16": 2, + "uplinkTxSwitchingPeriod-r16": "n140us" + } + ] + } + ], + "supportedBandCombinationList-v1630": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + { + "ca-ParametersNRDC-v1630": { + "ca-ParametersNR-ForDC-v1610": { + "codebookParametersPerBC-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 25 + ] + } + }, + "codebookParametersAdditionPerBC-r16": {}, + "codebookComboParametersAdditionPerBC-r16": { + "type1SP-Type2-null-r16": [ + 25 + ], + "type1SP-eType2R1-null-r16": [ + 25 + ] + } + } + } + }, + { + "ca-ParametersNRDC-v1630": { + "ca-ParametersNR-ForDC-v1610": { + "codebookParametersPerBC-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 25 + ] + } + } + } + } + }, + { + "ca-ParametersNRDC-v1630": { + "ca-ParametersNR-ForDC-v1610": { + "codebookParametersPerBC-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 25 + ] + } + } + } + } + }, + { + "ca-ParametersNRDC-v1630": { + "ca-ParametersNR-ForDC-v1610": { + "codebookParametersPerBC-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 28, + 29 + ] + } + } + } + } + }, + { + "ca-ParametersNRDC-v1630": { + "ca-ParametersNR-ForDC-v1610": { + "codebookParametersPerBC-r16": { + "supportedCSI-RS-ResourceListAlt-r16": { + "type1-SinglePanel-r16": [ + 28, + 29 + ] + } + } + } + } + } + ], + "supportedBandCombinationList-v1720": [ + {}, + { + "ca-ParametersNR-v1720": { + "higherPowerLimit-r17": "supported" + } + }, + {}, + {}, + {}, + { + "ca-ParametersNR-v1720": { + "higherPowerLimit-r17": "supported" + } + }, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + { + "ca-ParametersNR-v1720": { + "higherPowerLimit-r17": "supported" + } + }, + { + "ca-ParametersNR-v1720": { + "higherPowerLimit-r17": "supported" + } + }, + {}, + { + "ca-ParametersNR-v1720": { + "higherPowerLimit-r17": "supported" + } + }, + { + "ca-ParametersNR-v1720": { + "higherPowerLimit-r17": "supported" + } + }, + { + "ca-ParametersNR-v1720": { + "higherPowerLimit-r17": "supported" + } + }, + { + "ca-ParametersNR-v1720": { + "higherPowerLimit-r17": "supported" + } + }, + {}, + {}, + { + "ca-ParametersNR-v1720": { + "higherPowerLimit-r17": "supported" + } + }, + { + "ca-ParametersNR-v1720": { + "higherPowerLimit-r17": "supported" + } + }, + { + "ca-ParametersNR-v1720": { + "higherPowerLimit-r17": "supported" + } + }, + { + "ca-ParametersNR-v1720": { + "higherPowerLimit-r17": "supported" + } + }, + {}, + { + "ca-ParametersNR-v1720": { + "higherPowerLimit-r17": "supported" + } + }, + { + "ca-ParametersNR-v1720": { + "higherPowerLimit-r17": "supported" + } + }, + { + "ca-ParametersNR-v1720": { + "higherPowerLimit-r17": "supported" + } + }, + { + "ca-ParametersNR-v1720": { + "higherPowerLimit-r17": "supported" + } + }, + { + "ca-ParametersNR-v1720": { + "higherPowerLimit-r17": "supported" + } + }, + {}, + {}, + {}, + {}, + {}, + { + "ca-ParametersNR-v1720": { + "higherPowerLimit-r17": "supported" + } + }, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "supportedBandCombinationList-UplinkTxSwitch-v1720": [ + { + "bandCombination-v1720": { + "ca-ParametersNR-v1720": { + "higherPowerLimit-r17": "supported" + } + } + }, + { + "bandCombination-v1720": { + "ca-ParametersNR-v1720": { + "higherPowerLimit-r17": "supported" + } + } + }, + { + "bandCombination-v1720": {} + }, + { + "bandCombination-v1720": {} + }, + { + "bandCombination-v1720": { + "ca-ParametersNR-v1720": { + "higherPowerLimit-r17": "supported" + } + } + }, + { + "bandCombination-v1720": { + "ca-ParametersNR-v1720": { + "higherPowerLimit-r17": "supported" + } + } + }, + { + "bandCombination-v1720": { + "ca-ParametersNR-v1720": { + "higherPowerLimit-r17": "supported" + } + } + }, + { + "bandCombination-v1720": { + "ca-ParametersNR-v1720": { + "higherPowerLimit-r17": "supported" + } + } + }, + { + "bandCombination-v1720": { + "ca-ParametersNR-v1720": { + "higherPowerLimit-r17": "supported" + } + } + }, + { + "bandCombination-v1720": {} + }, + { + "bandCombination-v1720": { + "ca-ParametersNR-v1720": { + "higherPowerLimit-r17": "supported" + } + } + }, + { + "bandCombination-v1720": { + "ca-ParametersNR-v1720": { + "higherPowerLimit-r17": "supported" + } + } + }, + { + "bandCombination-v1720": { + "ca-ParametersNR-v1720": { + "higherPowerLimit-r17": "supported" + } + } + }, + { + "bandCombination-v1720": { + "ca-ParametersNR-v1720": { + "higherPowerLimit-r17": "supported" + } + } + }, + { + "bandCombination-v1720": { + "ca-ParametersNR-v1720": { + "higherPowerLimit-r17": "supported" + } + } + }, + { + "bandCombination-v1720": { + "ca-ParametersNR-v1720": { + "higherPowerLimit-r17": "supported" + } + } + }, + { + "bandCombination-v1720": { + "ca-ParametersNR-v1720": { + "higherPowerLimit-r17": "supported" + } + } + }, + { + "bandCombination-v1720": { + "ca-ParametersNR-v1720": { + "higherPowerLimit-r17": "supported" + } + } + }, + { + "bandCombination-v1720": { + "ca-ParametersNR-v1720": { + "higherPowerLimit-r17": "supported" + } + } + }, + { + "bandCombination-v1720": { + "ca-ParametersNR-v1720": { + "higherPowerLimit-r17": "supported" + } + } + }, + { + "bandCombination-v1720": {} + }, + { + "bandCombination-v1720": {} + }, + { + "bandCombination-v1720": {} + }, + { + "bandCombination-v1720": {} + }, + { + "bandCombination-v1720": {} + } + ] + }, + "measAndMobParameters": { + "measAndMobParametersCommon": { + "supportedGapPattern": "1101000001011101110000", + "ssb-RLM": "supported", + "eventB-MeasAndReport": "supported", + "handoverFDD-TDD": "supported", + "eutra-CGI-Reporting": "supported", + "nr-CGI-Reporting": "supported", + "independentGapConfig": "supported", + "periodicEUTRA-MeasAndReport": "supported", + "nr-CGI-Reporting-ENDC": "supported", + "reportAddNeighMeasForPeriodic-r16": "supported", + "condHandoverParametersCommon-r16": { + "condHandoverFDD-TDD-r16": "supported" + }, + "supportedGapPattern-NRonly-r16": "1101000001" + }, + "measAndMobParametersXDD-Diff": { + "intraAndInterF-MeasAndReport": "supported", + "eventA-MeasAndReport": "supported", + "handoverInterF": "supported", + "handoverLTE-EPC": "supported" + }, + "measAndMobParametersFRX-Diff": { + "ss-SINR-Meas": "supported", + "handoverInterF": "supported", + "handoverLTE-EPC": "supported", + "simultaneousRxDataSSB-DiffNumerology": "supported" + } + }, + "fr1-Add-UE-NR-Capabilities": { + "phy-ParametersFRX-Diff": { + "supportedDMRS-TypeDL": "type1And2", + "onePortsPTRS": "01", + "pucch-F4-WithFH": "supported", + "uci-CodeBlockSegmentation": "supported", + "tpc-SRS-RNTI": "supported", + "almostContiguousCP-OFDM-UL": "supported", + "dl-64QAM-MCS-TableAlt": "supported", + "ul-64QAM-MCS-TableAlt": "supported", + "maxLayersMIMO-Adaptation-r16": "supported" + } + }, + "fr2-Add-UE-NR-Capabilities": { + "phy-ParametersFRX-Diff": { + "supportedDMRS-TypeDL": "type1", + "onePortsPTRS": "11", + "mux-SR-HARQ-ACK-PUCCH": "supported" + } + }, + "featureSets": { + "featureSetsDownlink": [ + { + "featureSetListPerDownlinkCC": [ + 1 + ], + "ue-SpecificUL-DL-Assignment": "supported" + }, + { + "featureSetListPerDownlinkCC": [ + 2 + ], + "ue-SpecificUL-DL-Assignment": "supported" + }, + { + "featureSetListPerDownlinkCC": [ + 3 + ], + "ue-SpecificUL-DL-Assignment": "supported" + }, + { + "featureSetListPerDownlinkCC": [ + 1, + 2 + ], + "ue-SpecificUL-DL-Assignment": "supported" + }, + { + "featureSetListPerDownlinkCC": [ + 4, + 4, + 4, + 4 + ], + "intraBandFreqSeparationDL": "mhz1200", + "scellWithoutSSB": "supported", + "type1-3-CSS": "supported", + "ue-SpecificUL-DL-Assignment": "supported", + "timeDurationForQCL": { + "scs-120kHz": "s28" + } + }, + { + "featureSetListPerDownlinkCC": [ + 4, + 4 + ], + "intraBandFreqSeparationDL": "mhz1200", + "scellWithoutSSB": "supported", + "type1-3-CSS": "supported", + "ue-SpecificUL-DL-Assignment": "supported", + "timeDurationForQCL": { + "scs-120kHz": "s28" + } + }, + { + "featureSetListPerDownlinkCC": [ + 5 + ], + "intraBandFreqSeparationDL": "mhz1200", + "scellWithoutSSB": "supported", + "type1-3-CSS": "supported", + "ue-SpecificUL-DL-Assignment": "supported", + "timeDurationForQCL": { + "scs-120kHz": "s28" + } + }, + { + "featureSetListPerDownlinkCC": [ + 4, + 4, + 4 + ], + "intraBandFreqSeparationDL": "mhz1200", + "scellWithoutSSB": "supported", + "type1-3-CSS": "supported", + "ue-SpecificUL-DL-Assignment": "supported", + "timeDurationForQCL": { + "scs-120kHz": "s28" + } + }, + { + "featureSetListPerDownlinkCC": [ + 4, + 4, + 4, + 4, + 4 + ], + "intraBandFreqSeparationDL": "mhz1200", + "scellWithoutSSB": "supported", + "type1-3-CSS": "supported", + "ue-SpecificUL-DL-Assignment": "supported", + "timeDurationForQCL": { + "scs-120kHz": "s28" + } + }, + { + "featureSetListPerDownlinkCC": [ + 4, + 4, + 4, + 4, + 4, + 4, + 4 + ], + "intraBandFreqSeparationDL": "mhz1200", + "scellWithoutSSB": "supported", + "type1-3-CSS": "supported", + "ue-SpecificUL-DL-Assignment": "supported", + "timeDurationForQCL": { + "scs-120kHz": "s28" + } + }, + { + "featureSetListPerDownlinkCC": [ + 4 + ], + "intraBandFreqSeparationDL": "mhz1200", + "scellWithoutSSB": "supported", + "type1-3-CSS": "supported", + "ue-SpecificUL-DL-Assignment": "supported", + "timeDurationForQCL": { + "scs-120kHz": "s28" + } + }, + { + "featureSetListPerDownlinkCC": [ + 5 + ], + "intraBandFreqSeparationDL": "mhz1200", + "type1-3-CSS": "supported", + "ue-SpecificUL-DL-Assignment": "supported", + "timeDurationForQCL": { + "scs-120kHz": "s28" + } + }, + { + "featureSetListPerDownlinkCC": [ + 4, + 4, + 4, + 4, + 4, + 4, + 4, + 4 + ], + "intraBandFreqSeparationDL": "mhz1200", + "scellWithoutSSB": "supported", + "type1-3-CSS": "supported", + "ue-SpecificUL-DL-Assignment": "supported", + "timeDurationForQCL": { + "scs-120kHz": "s28" + } + }, + { + "featureSetListPerDownlinkCC": [ + 5, + 5, + 5, + 5 + ], + "intraBandFreqSeparationDL": "mhz1200", + "scellWithoutSSB": "supported", + "type1-3-CSS": "supported", + "ue-SpecificUL-DL-Assignment": "supported", + "timeDurationForQCL": { + "scs-120kHz": "s28" + } + }, + { + "featureSetListPerDownlinkCC": [ + 6 + ], + "ue-SpecificUL-DL-Assignment": "supported" + }, + { + "featureSetListPerDownlinkCC": [ + 7 + ], + "ue-SpecificUL-DL-Assignment": "supported" + }, + { + "featureSetListPerDownlinkCC": [ + 1 + ], + "ue-SpecificUL-DL-Assignment": "supported" + }, + { + "featureSetListPerDownlinkCC": [ + 8 + ], + "ue-SpecificUL-DL-Assignment": "supported" + }, + { + "featureSetListPerDownlinkCC": [ + 9 + ], + "ue-SpecificUL-DL-Assignment": "supported" + }, + { + "featureSetListPerDownlinkCC": [ + 10 + ], + "ue-SpecificUL-DL-Assignment": "supported" + }, + { + "featureSetListPerDownlinkCC": [ + 1, + 1 + ], + "ue-SpecificUL-DL-Assignment": "supported" + }, + { + "featureSetListPerDownlinkCC": [ + 1, + 1, + 1 + ], + "ue-SpecificUL-DL-Assignment": "supported" + }, + { + "featureSetListPerDownlinkCC": [ + 11 + ], + "ue-SpecificUL-DL-Assignment": "supported" + }, + { + "featureSetListPerDownlinkCC": [ + 12 + ], + "ue-SpecificUL-DL-Assignment": "supported" + }, + { + "featureSetListPerDownlinkCC": [ + 1, + 1 + ], + "ue-SpecificUL-DL-Assignment": "supported" + }, + { + "featureSetListPerDownlinkCC": [ + 12, + 12 + ], + "ue-SpecificUL-DL-Assignment": "supported" + }, + { + "featureSetListPerDownlinkCC": [ + 1, + 13 + ], + "ue-SpecificUL-DL-Assignment": "supported" + }, + { + "featureSetListPerDownlinkCC": [ + 14 + ], + "ue-SpecificUL-DL-Assignment": "supported" + }, + { + "featureSetListPerDownlinkCC": [ + 15 + ], + "ue-SpecificUL-DL-Assignment": "supported" + }, + { + "featureSetListPerDownlinkCC": [ + 16 + ], + "ue-SpecificUL-DL-Assignment": "supported" + }, + { + "featureSetListPerDownlinkCC": [ + 17 + ], + "ue-SpecificUL-DL-Assignment": "supported" + }, + { + "featureSetListPerDownlinkCC": [ + 15, + 18 + ], + "ue-SpecificUL-DL-Assignment": "supported" + }, + { + "featureSetListPerDownlinkCC": [ + 19 + ], + "ue-SpecificUL-DL-Assignment": "supported" + }, + { + "featureSetListPerDownlinkCC": [ + 1, + 20 + ], + "ue-SpecificUL-DL-Assignment": "supported" + }, + { + "featureSetListPerDownlinkCC": [ + 1, + 14 + ], + "ue-SpecificUL-DL-Assignment": "supported" + }, + { + "featureSetListPerDownlinkCC": [ + 20 + ], + "ue-SpecificUL-DL-Assignment": "supported" + }, + { + "featureSetListPerDownlinkCC": [ + 1, + 16 + ], + "ue-SpecificUL-DL-Assignment": "supported" + }, + { + "featureSetListPerDownlinkCC": [ + 21 + ], + "ue-SpecificUL-DL-Assignment": "supported" + }, + { + "featureSetListPerDownlinkCC": [ + 22 + ], + "ue-SpecificUL-DL-Assignment": "supported" + }, + { + "featureSetListPerDownlinkCC": [ + 18 + ], + "ue-SpecificUL-DL-Assignment": "supported" + }, + { + "featureSetListPerDownlinkCC": [ + 15, + 22 + ], + "ue-SpecificUL-DL-Assignment": "supported" + }, + { + "featureSetListPerDownlinkCC": [ + 13 + ], + "ue-SpecificUL-DL-Assignment": "supported" + }, + { + "featureSetListPerDownlinkCC": [ + 1, + 8 + ], + "ue-SpecificUL-DL-Assignment": "supported" + }, + { + "featureSetListPerDownlinkCC": [ + 13, + 13 + ], + "ue-SpecificUL-DL-Assignment": "supported" + } + ], + "featureSetsDownlinkPerCC": [ + { + "supportedSubcarrierSpacingDL": "kHz30", + "supportedBandwidthDL": { + "fr1": "mhz100" + }, + "channelBW-90mhz": "supported", + "maxNumberMIMO-LayersPDSCH": "fourLayers" + }, + { + "supportedSubcarrierSpacingDL": "kHz30", + "supportedBandwidthDL": { + "fr1": "mhz80" + }, + "channelBW-90mhz": "supported", + "maxNumberMIMO-LayersPDSCH": "fourLayers" + }, + { + "supportedSubcarrierSpacingDL": "kHz15", + "supportedBandwidthDL": { + "fr1": "mhz30" + }, + "maxNumberMIMO-LayersPDSCH": "twoLayers" + }, + { + "supportedSubcarrierSpacingDL": "kHz120", + "supportedBandwidthDL": { + "fr2": "mhz100" + }, + "maxNumberMIMO-LayersPDSCH": "twoLayers", + "supportedModulationOrderDL": "qam256" + }, + { + "supportedSubcarrierSpacingDL": "kHz120", + "supportedBandwidthDL": { + "fr2": "mhz200" + }, + "maxNumberMIMO-LayersPDSCH": "twoLayers", + "supportedModulationOrderDL": "qam256" + }, + { + "supportedSubcarrierSpacingDL": "kHz15", + "supportedBandwidthDL": { + "fr1": "mhz50" + }, + "maxNumberMIMO-LayersPDSCH": "fourLayers" + }, + { + "supportedSubcarrierSpacingDL": "kHz15", + "supportedBandwidthDL": { + "fr1": "mhz10" + }, + "maxNumberMIMO-LayersPDSCH": "fourLayers" + }, + { + "supportedSubcarrierSpacingDL": "kHz30", + "supportedBandwidthDL": { + "fr1": "mhz40" + }, + "maxNumberMIMO-LayersPDSCH": "fourLayers" + }, + { + "supportedSubcarrierSpacingDL": "kHz15", + "supportedBandwidthDL": { + "fr1": "mhz30" + }, + "maxNumberMIMO-LayersPDSCH": "twoLayers" + }, + { + "supportedSubcarrierSpacingDL": "kHz30", + "supportedBandwidthDL": { + "fr1": "mhz30" + }, + "maxNumberMIMO-LayersPDSCH": "fourLayers" + }, + { + "supportedSubcarrierSpacingDL": "kHz15", + "supportedBandwidthDL": { + "fr1": "mhz30" + }, + "maxNumberMIMO-LayersPDSCH": "fourLayers" + }, + { + "supportedSubcarrierSpacingDL": "kHz15", + "supportedBandwidthDL": { + "fr1": "mhz20" + }, + "maxNumberMIMO-LayersPDSCH": "fourLayers" + }, + { + "supportedSubcarrierSpacingDL": "kHz30", + "supportedBandwidthDL": { + "fr1": "mhz50" + }, + "maxNumberMIMO-LayersPDSCH": "fourLayers" + }, + { + "supportedSubcarrierSpacingDL": "kHz30", + "supportedBandwidthDL": { + "fr1": "mhz60" + }, + "maxNumberMIMO-LayersPDSCH": "fourLayers" + }, + { + "supportedSubcarrierSpacingDL": "kHz15", + "supportedBandwidthDL": { + "fr1": "mhz20" + }, + "maxNumberMIMO-LayersPDSCH": "twoLayers" + }, + { + "supportedSubcarrierSpacingDL": "kHz30", + "supportedBandwidthDL": { + "fr1": "mhz80" + }, + "maxNumberMIMO-LayersPDSCH": "fourLayers" + }, + { + "supportedSubcarrierSpacingDL": "kHz30", + "supportedBandwidthDL": { + "fr1": "mhz10" + }, + "maxNumberMIMO-LayersPDSCH": "fourLayers" + }, + { + "supportedSubcarrierSpacingDL": "kHz15", + "supportedBandwidthDL": { + "fr1": "mhz15" + }, + "maxNumberMIMO-LayersPDSCH": "twoLayers" + }, + { + "supportedSubcarrierSpacingDL": "kHz30", + "supportedBandwidthDL": { + "fr1": "mhz60" + }, + "maxNumberMIMO-LayersPDSCH": "fourLayers" + }, + { + "supportedSubcarrierSpacingDL": "kHz30", + "supportedBandwidthDL": { + "fr1": "mhz20" + }, + "maxNumberMIMO-LayersPDSCH": "fourLayers" + }, + { + "supportedSubcarrierSpacingDL": "kHz15", + "supportedBandwidthDL": { + "fr1": "mhz5" + }, + "maxNumberMIMO-LayersPDSCH": "twoLayers" + }, + { + "supportedSubcarrierSpacingDL": "kHz15", + "supportedBandwidthDL": { + "fr1": "mhz10" + }, + "maxNumberMIMO-LayersPDSCH": "twoLayers" + } + ], + "featureSetsUplink": [ + { + "featureSetListPerUplinkCC": [ + 1 + ], + "supportedSRS-Resources": { + "maxNumberAperiodicSRS-PerBWP": "n1", + "maxNumberAperiodicSRS-PerBWP-PerSlot": 1, + "maxNumberPeriodicSRS-PerBWP": "n8", + "maxNumberPeriodicSRS-PerBWP-PerSlot": 4, + "maxNumberSemiPersistentSRS-PerBWP": "n1", + "maxNumberSemiPersistentSRS-PerBWP-PerSlot": 1, + "maxNumberSRS-Ports-PerResource": "n1" + } + }, + { + "featureSetListPerUplinkCC": [ + 2 + ], + "supportedSRS-Resources": { + "maxNumberAperiodicSRS-PerBWP": "n1", + "maxNumberAperiodicSRS-PerBWP-PerSlot": 1, + "maxNumberPeriodicSRS-PerBWP": "n1", + "maxNumberPeriodicSRS-PerBWP-PerSlot": 1, + "maxNumberSemiPersistentSRS-PerBWP": "n1", + "maxNumberSemiPersistentSRS-PerBWP-PerSlot": 1, + "maxNumberSRS-Ports-PerResource": "n1" + } + }, + { + "featureSetListPerUplinkCC": [ + 3, + 3, + 3, + 3 + ], + "supportedSRS-Resources": { + "maxNumberAperiodicSRS-PerBWP": "n1", + "maxNumberAperiodicSRS-PerBWP-PerSlot": 1, + "maxNumberPeriodicSRS-PerBWP": "n1", + "maxNumberPeriodicSRS-PerBWP-PerSlot": 1, + "maxNumberSemiPersistentSRS-PerBWP": "n1", + "maxNumberSemiPersistentSRS-PerBWP-PerSlot": 1, + "maxNumberSRS-Ports-PerResource": "n2" + } + }, + { + "featureSetListPerUplinkCC": [ + 3, + 3, + 3 + ], + "supportedSRS-Resources": { + "maxNumberAperiodicSRS-PerBWP": "n1", + "maxNumberAperiodicSRS-PerBWP-PerSlot": 1, + "maxNumberPeriodicSRS-PerBWP": "n1", + "maxNumberPeriodicSRS-PerBWP-PerSlot": 1, + "maxNumberSemiPersistentSRS-PerBWP": "n1", + "maxNumberSemiPersistentSRS-PerBWP-PerSlot": 1, + "maxNumberSRS-Ports-PerResource": "n2" + } + }, + { + "featureSetListPerUplinkCC": [ + 3, + 3 + ], + "supportedSRS-Resources": { + "maxNumberAperiodicSRS-PerBWP": "n1", + "maxNumberAperiodicSRS-PerBWP-PerSlot": 1, + "maxNumberPeriodicSRS-PerBWP": "n1", + "maxNumberPeriodicSRS-PerBWP-PerSlot": 1, + "maxNumberSemiPersistentSRS-PerBWP": "n1", + "maxNumberSemiPersistentSRS-PerBWP-PerSlot": 1, + "maxNumberSRS-Ports-PerResource": "n2" + } + }, + { + "featureSetListPerUplinkCC": [ + 4 + ], + "supportedSRS-Resources": { + "maxNumberAperiodicSRS-PerBWP": "n1", + "maxNumberAperiodicSRS-PerBWP-PerSlot": 1, + "maxNumberPeriodicSRS-PerBWP": "n1", + "maxNumberPeriodicSRS-PerBWP-PerSlot": 1, + "maxNumberSemiPersistentSRS-PerBWP": "n1", + "maxNumberSemiPersistentSRS-PerBWP-PerSlot": 1, + "maxNumberSRS-Ports-PerResource": "n2" + } + }, + { + "featureSetListPerUplinkCC": [ + 3 + ], + "supportedSRS-Resources": { + "maxNumberAperiodicSRS-PerBWP": "n1", + "maxNumberAperiodicSRS-PerBWP-PerSlot": 1, + "maxNumberPeriodicSRS-PerBWP": "n1", + "maxNumberPeriodicSRS-PerBWP-PerSlot": 1, + "maxNumberSemiPersistentSRS-PerBWP": "n1", + "maxNumberSemiPersistentSRS-PerBWP-PerSlot": 1, + "maxNumberSRS-Ports-PerResource": "n2" + } + }, + { + "featureSetListPerUplinkCC": [ + 4, + 4 + ], + "supportedSRS-Resources": { + "maxNumberAperiodicSRS-PerBWP": "n1", + "maxNumberAperiodicSRS-PerBWP-PerSlot": 1, + "maxNumberPeriodicSRS-PerBWP": "n1", + "maxNumberPeriodicSRS-PerBWP-PerSlot": 1, + "maxNumberSemiPersistentSRS-PerBWP": "n1", + "maxNumberSemiPersistentSRS-PerBWP-PerSlot": 1, + "maxNumberSRS-Ports-PerResource": "n2" + } + }, + { + "featureSetListPerUplinkCC": [ + 5 + ], + "supportedSRS-Resources": { + "maxNumberAperiodicSRS-PerBWP": "n1", + "maxNumberAperiodicSRS-PerBWP-PerSlot": 1, + "maxNumberPeriodicSRS-PerBWP": "n8", + "maxNumberPeriodicSRS-PerBWP-PerSlot": 4, + "maxNumberSemiPersistentSRS-PerBWP": "n1", + "maxNumberSemiPersistentSRS-PerBWP-PerSlot": 1, + "maxNumberSRS-Ports-PerResource": "n2" + } + }, + { + "featureSetListPerUplinkCC": [ + 5 + ], + "supportedSRS-Resources": { + "maxNumberAperiodicSRS-PerBWP": "n1", + "maxNumberAperiodicSRS-PerBWP-PerSlot": 1, + "maxNumberPeriodicSRS-PerBWP": "n8", + "maxNumberPeriodicSRS-PerBWP-PerSlot": 4, + "maxNumberSemiPersistentSRS-PerBWP": "n1", + "maxNumberSemiPersistentSRS-PerBWP-PerSlot": 1, + "maxNumberSRS-Ports-PerResource": "n2" + }, + "dynamicSwitchSUL": "supported" + }, + { + "featureSetListPerUplinkCC": [ + 6 + ], + "supportedSRS-Resources": { + "maxNumberAperiodicSRS-PerBWP": "n1", + "maxNumberAperiodicSRS-PerBWP-PerSlot": 1, + "maxNumberPeriodicSRS-PerBWP": "n1", + "maxNumberPeriodicSRS-PerBWP-PerSlot": 1, + "maxNumberSemiPersistentSRS-PerBWP": "n1", + "maxNumberSemiPersistentSRS-PerBWP-PerSlot": 1, + "maxNumberSRS-Ports-PerResource": "n1" + }, + "dynamicSwitchSUL": "supported" + }, + { + "featureSetListPerUplinkCC": [ + 7 + ], + "supportedSRS-Resources": { + "maxNumberAperiodicSRS-PerBWP": "n1", + "maxNumberAperiodicSRS-PerBWP-PerSlot": 1, + "maxNumberPeriodicSRS-PerBWP": "n1", + "maxNumberPeriodicSRS-PerBWP-PerSlot": 1, + "maxNumberSemiPersistentSRS-PerBWP": "n1", + "maxNumberSemiPersistentSRS-PerBWP-PerSlot": 1, + "maxNumberSRS-Ports-PerResource": "n1" + } + }, + { + "featureSetListPerUplinkCC": [ + 1 + ], + "supportedSRS-Resources": { + "maxNumberAperiodicSRS-PerBWP": "n1", + "maxNumberAperiodicSRS-PerBWP-PerSlot": 1, + "maxNumberPeriodicSRS-PerBWP": "n8", + "maxNumberPeriodicSRS-PerBWP-PerSlot": 4, + "maxNumberSemiPersistentSRS-PerBWP": "n1", + "maxNumberSemiPersistentSRS-PerBWP-PerSlot": 1, + "maxNumberSRS-Ports-PerResource": "n1" + } + }, + { + "featureSetListPerUplinkCC": [ + 5 + ], + "supportedSRS-Resources": { + "maxNumberAperiodicSRS-PerBWP": "n1", + "maxNumberAperiodicSRS-PerBWP-PerSlot": 1, + "maxNumberPeriodicSRS-PerBWP": "n8", + "maxNumberPeriodicSRS-PerBWP-PerSlot": 4, + "maxNumberSemiPersistentSRS-PerBWP": "n1", + "maxNumberSemiPersistentSRS-PerBWP-PerSlot": 1, + "maxNumberSRS-Ports-PerResource": "n2" + } + }, + { + "featureSetListPerUplinkCC": [ + 2 + ], + "supportedSRS-Resources": { + "maxNumberAperiodicSRS-PerBWP": "n1", + "maxNumberAperiodicSRS-PerBWP-PerSlot": 1, + "maxNumberPeriodicSRS-PerBWP": "n1", + "maxNumberPeriodicSRS-PerBWP-PerSlot": 1, + "maxNumberSemiPersistentSRS-PerBWP": "n1", + "maxNumberSemiPersistentSRS-PerBWP-PerSlot": 1, + "maxNumberSRS-Ports-PerResource": "n1" + } + }, + { + "featureSetListPerUplinkCC": [ + 8 + ], + "supportedSRS-Resources": { + "maxNumberAperiodicSRS-PerBWP": "n1", + "maxNumberAperiodicSRS-PerBWP-PerSlot": 1, + "maxNumberPeriodicSRS-PerBWP": "n1", + "maxNumberPeriodicSRS-PerBWP-PerSlot": 1, + "maxNumberSemiPersistentSRS-PerBWP": "n1", + "maxNumberSemiPersistentSRS-PerBWP-PerSlot": 1, + "maxNumberSRS-Ports-PerResource": "n1" + } + }, + { + "featureSetListPerUplinkCC": [ + 5 + ], + "supportedSRS-Resources": { + "maxNumberAperiodicSRS-PerBWP": "n1", + "maxNumberAperiodicSRS-PerBWP-PerSlot": 1, + "maxNumberPeriodicSRS-PerBWP": "n8", + "maxNumberPeriodicSRS-PerBWP-PerSlot": 4, + "maxNumberSemiPersistentSRS-PerBWP": "n1", + "maxNumberSemiPersistentSRS-PerBWP-PerSlot": 1, + "maxNumberSRS-Ports-PerResource": "n2" + } + }, + { + "featureSetListPerUplinkCC": [ + 1 + ], + "supportedSRS-Resources": { + "maxNumberAperiodicSRS-PerBWP": "n1", + "maxNumberAperiodicSRS-PerBWP-PerSlot": 1, + "maxNumberPeriodicSRS-PerBWP": "n8", + "maxNumberPeriodicSRS-PerBWP-PerSlot": 4, + "maxNumberSemiPersistentSRS-PerBWP": "n1", + "maxNumberSemiPersistentSRS-PerBWP-PerSlot": 1, + "maxNumberSRS-Ports-PerResource": "n1" + } + }, + { + "featureSetListPerUplinkCC": [ + 5 + ], + "supportedSRS-Resources": { + "maxNumberAperiodicSRS-PerBWP": "n1", + "maxNumberAperiodicSRS-PerBWP-PerSlot": 1, + "maxNumberPeriodicSRS-PerBWP": "n8", + "maxNumberPeriodicSRS-PerBWP-PerSlot": 4, + "maxNumberSemiPersistentSRS-PerBWP": "n1", + "maxNumberSemiPersistentSRS-PerBWP-PerSlot": 1, + "maxNumberSRS-Ports-PerResource": "n2" + } + }, + { + "featureSetListPerUplinkCC": [ + 9 + ], + "supportedSRS-Resources": { + "maxNumberAperiodicSRS-PerBWP": "n1", + "maxNumberAperiodicSRS-PerBWP-PerSlot": 1, + "maxNumberPeriodicSRS-PerBWP": "n1", + "maxNumberPeriodicSRS-PerBWP-PerSlot": 1, + "maxNumberSemiPersistentSRS-PerBWP": "n1", + "maxNumberSemiPersistentSRS-PerBWP-PerSlot": 1, + "maxNumberSRS-Ports-PerResource": "n1" + }, + "dynamicSwitchSUL": "supported" + }, + { + "featureSetListPerUplinkCC": [ + 8 + ], + "supportedSRS-Resources": { + "maxNumberAperiodicSRS-PerBWP": "n1", + "maxNumberAperiodicSRS-PerBWP-PerSlot": 1, + "maxNumberPeriodicSRS-PerBWP": "n1", + "maxNumberPeriodicSRS-PerBWP-PerSlot": 1, + "maxNumberSemiPersistentSRS-PerBWP": "n1", + "maxNumberSemiPersistentSRS-PerBWP-PerSlot": 1, + "maxNumberSRS-Ports-PerResource": "n1" + }, + "dynamicSwitchSUL": "supported" + }, + { + "featureSetListPerUplinkCC": [ + 7 + ], + "supportedSRS-Resources": { + "maxNumberAperiodicSRS-PerBWP": "n1", + "maxNumberAperiodicSRS-PerBWP-PerSlot": 1, + "maxNumberPeriodicSRS-PerBWP": "n1", + "maxNumberPeriodicSRS-PerBWP-PerSlot": 1, + "maxNumberSemiPersistentSRS-PerBWP": "n1", + "maxNumberSemiPersistentSRS-PerBWP-PerSlot": 1, + "maxNumberSRS-Ports-PerResource": "n1" + }, + "dynamicSwitchSUL": "supported" + }, + { + "featureSetListPerUplinkCC": [ + 10 + ], + "supportedSRS-Resources": { + "maxNumberAperiodicSRS-PerBWP": "n1", + "maxNumberAperiodicSRS-PerBWP-PerSlot": 1, + "maxNumberPeriodicSRS-PerBWP": "n1", + "maxNumberPeriodicSRS-PerBWP-PerSlot": 1, + "maxNumberSemiPersistentSRS-PerBWP": "n1", + "maxNumberSemiPersistentSRS-PerBWP-PerSlot": 1, + "maxNumberSRS-Ports-PerResource": "n2" + } + }, + { + "featureSetListPerUplinkCC": [ + 7 + ], + "supportedSRS-Resources": { + "maxNumberAperiodicSRS-PerBWP": "n1", + "maxNumberAperiodicSRS-PerBWP-PerSlot": 1, + "maxNumberPeriodicSRS-PerBWP": "n1", + "maxNumberPeriodicSRS-PerBWP-PerSlot": 1, + "maxNumberSemiPersistentSRS-PerBWP": "n1", + "maxNumberSemiPersistentSRS-PerBWP-PerSlot": 1, + "maxNumberSRS-Ports-PerResource": "n1" + } + }, + { + "featureSetListPerUplinkCC": [ + 8 + ], + "supportedSRS-Resources": { + "maxNumberAperiodicSRS-PerBWP": "n1", + "maxNumberAperiodicSRS-PerBWP-PerSlot": 1, + "maxNumberPeriodicSRS-PerBWP": "n1", + "maxNumberPeriodicSRS-PerBWP-PerSlot": 1, + "maxNumberSemiPersistentSRS-PerBWP": "n1", + "maxNumberSemiPersistentSRS-PerBWP-PerSlot": 1, + "maxNumberSRS-Ports-PerResource": "n1" + } + }, + { + "featureSetListPerUplinkCC": [ + 5 + ], + "supportedSRS-Resources": { + "maxNumberAperiodicSRS-PerBWP": "n1", + "maxNumberAperiodicSRS-PerBWP-PerSlot": 1, + "maxNumberPeriodicSRS-PerBWP": "n8", + "maxNumberPeriodicSRS-PerBWP-PerSlot": 4, + "maxNumberSemiPersistentSRS-PerBWP": "n1", + "maxNumberSemiPersistentSRS-PerBWP-PerSlot": 1, + "maxNumberSRS-Ports-PerResource": "n2" + } + }, + { + "featureSetListPerUplinkCC": [ + 10 + ], + "supportedSRS-Resources": { + "maxNumberAperiodicSRS-PerBWP": "n1", + "maxNumberAperiodicSRS-PerBWP-PerSlot": 1, + "maxNumberPeriodicSRS-PerBWP": "n1", + "maxNumberPeriodicSRS-PerBWP-PerSlot": 1, + "maxNumberSemiPersistentSRS-PerBWP": "n1", + "maxNumberSemiPersistentSRS-PerBWP-PerSlot": 1, + "maxNumberSRS-Ports-PerResource": "n2" + } + }, + { + "featureSetListPerUplinkCC": [ + 11 + ], + "supportedSRS-Resources": { + "maxNumberAperiodicSRS-PerBWP": "n1", + "maxNumberAperiodicSRS-PerBWP-PerSlot": 1, + "maxNumberPeriodicSRS-PerBWP": "n1", + "maxNumberPeriodicSRS-PerBWP-PerSlot": 1, + "maxNumberSemiPersistentSRS-PerBWP": "n1", + "maxNumberSemiPersistentSRS-PerBWP-PerSlot": 1, + "maxNumberSRS-Ports-PerResource": "n2" + } + }, + { + "featureSetListPerUplinkCC": [ + 9 + ], + "supportedSRS-Resources": { + "maxNumberAperiodicSRS-PerBWP": "n1", + "maxNumberAperiodicSRS-PerBWP-PerSlot": 1, + "maxNumberPeriodicSRS-PerBWP": "n1", + "maxNumberPeriodicSRS-PerBWP-PerSlot": 1, + "maxNumberSemiPersistentSRS-PerBWP": "n1", + "maxNumberSemiPersistentSRS-PerBWP-PerSlot": 1, + "maxNumberSRS-Ports-PerResource": "n1" + } + }, + { + "featureSetListPerUplinkCC": [ + 12 + ], + "supportedSRS-Resources": { + "maxNumberAperiodicSRS-PerBWP": "n1", + "maxNumberAperiodicSRS-PerBWP-PerSlot": 1, + "maxNumberPeriodicSRS-PerBWP": "n8", + "maxNumberPeriodicSRS-PerBWP-PerSlot": 4, + "maxNumberSemiPersistentSRS-PerBWP": "n1", + "maxNumberSemiPersistentSRS-PerBWP-PerSlot": 1, + "maxNumberSRS-Ports-PerResource": "n1" + } + }, + { + "featureSetListPerUplinkCC": [ + 9 + ], + "supportedSRS-Resources": { + "maxNumberAperiodicSRS-PerBWP": "n1", + "maxNumberAperiodicSRS-PerBWP-PerSlot": 1, + "maxNumberPeriodicSRS-PerBWP": "n1", + "maxNumberPeriodicSRS-PerBWP-PerSlot": 1, + "maxNumberSemiPersistentSRS-PerBWP": "n1", + "maxNumberSemiPersistentSRS-PerBWP-PerSlot": 1, + "maxNumberSRS-Ports-PerResource": "n1" + } + }, + { + "featureSetListPerUplinkCC": [ + 13 + ], + "supportedSRS-Resources": { + "maxNumberAperiodicSRS-PerBWP": "n1", + "maxNumberAperiodicSRS-PerBWP-PerSlot": 1, + "maxNumberPeriodicSRS-PerBWP": "n1", + "maxNumberPeriodicSRS-PerBWP-PerSlot": 1, + "maxNumberSemiPersistentSRS-PerBWP": "n1", + "maxNumberSemiPersistentSRS-PerBWP-PerSlot": 1, + "maxNumberSRS-Ports-PerResource": "n1" + } + }, + { + "featureSetListPerUplinkCC": [ + 14 + ], + "supportedSRS-Resources": { + "maxNumberAperiodicSRS-PerBWP": "n1", + "maxNumberAperiodicSRS-PerBWP-PerSlot": 1, + "maxNumberPeriodicSRS-PerBWP": "n8", + "maxNumberPeriodicSRS-PerBWP-PerSlot": 4, + "maxNumberSemiPersistentSRS-PerBWP": "n1", + "maxNumberSemiPersistentSRS-PerBWP-PerSlot": 1, + "maxNumberSRS-Ports-PerResource": "n2" + } + }, + { + "featureSetListPerUplinkCC": [ + 13 + ], + "supportedSRS-Resources": { + "maxNumberAperiodicSRS-PerBWP": "n1", + "maxNumberAperiodicSRS-PerBWP-PerSlot": 1, + "maxNumberPeriodicSRS-PerBWP": "n1", + "maxNumberPeriodicSRS-PerBWP-PerSlot": 1, + "maxNumberSemiPersistentSRS-PerBWP": "n1", + "maxNumberSemiPersistentSRS-PerBWP-PerSlot": 1, + "maxNumberSRS-Ports-PerResource": "n1" + } + }, + { + "featureSetListPerUplinkCC": [ + 15 + ], + "supportedSRS-Resources": { + "maxNumberAperiodicSRS-PerBWP": "n1", + "maxNumberAperiodicSRS-PerBWP-PerSlot": 1, + "maxNumberPeriodicSRS-PerBWP": "n1", + "maxNumberPeriodicSRS-PerBWP-PerSlot": 1, + "maxNumberSemiPersistentSRS-PerBWP": "n1", + "maxNumberSemiPersistentSRS-PerBWP-PerSlot": 1, + "maxNumberSRS-Ports-PerResource": "n1" + } + }, + { + "featureSetListPerUplinkCC": [ + 16 + ], + "supportedSRS-Resources": { + "maxNumberAperiodicSRS-PerBWP": "n1", + "maxNumberAperiodicSRS-PerBWP-PerSlot": 1, + "maxNumberPeriodicSRS-PerBWP": "n8", + "maxNumberPeriodicSRS-PerBWP-PerSlot": 4, + "maxNumberSemiPersistentSRS-PerBWP": "n1", + "maxNumberSemiPersistentSRS-PerBWP-PerSlot": 1, + "maxNumberSRS-Ports-PerResource": "n2" + } + }, + { + "featureSetListPerUplinkCC": [ + 17 + ], + "supportedSRS-Resources": { + "maxNumberAperiodicSRS-PerBWP": "n1", + "maxNumberAperiodicSRS-PerBWP-PerSlot": 1, + "maxNumberPeriodicSRS-PerBWP": "n8", + "maxNumberPeriodicSRS-PerBWP-PerSlot": 4, + "maxNumberSemiPersistentSRS-PerBWP": "n1", + "maxNumberSemiPersistentSRS-PerBWP-PerSlot": 1, + "maxNumberSRS-Ports-PerResource": "n2" + } + }, + { + "featureSetListPerUplinkCC": [ + 18 + ], + "supportedSRS-Resources": { + "maxNumberAperiodicSRS-PerBWP": "n1", + "maxNumberAperiodicSRS-PerBWP-PerSlot": 1, + "maxNumberPeriodicSRS-PerBWP": "n8", + "maxNumberPeriodicSRS-PerBWP-PerSlot": 4, + "maxNumberSemiPersistentSRS-PerBWP": "n1", + "maxNumberSemiPersistentSRS-PerBWP-PerSlot": 1, + "maxNumberSRS-Ports-PerResource": "n2" + } + }, + { + "featureSetListPerUplinkCC": [ + 19 + ], + "supportedSRS-Resources": { + "maxNumberAperiodicSRS-PerBWP": "n1", + "maxNumberAperiodicSRS-PerBWP-PerSlot": 1, + "maxNumberPeriodicSRS-PerBWP": "n8", + "maxNumberPeriodicSRS-PerBWP-PerSlot": 4, + "maxNumberSemiPersistentSRS-PerBWP": "n1", + "maxNumberSemiPersistentSRS-PerBWP-PerSlot": 1, + "maxNumberSRS-Ports-PerResource": "n2" + } + }, + { + "featureSetListPerUplinkCC": [ + 5 + ], + "supportedSRS-Resources": { + "maxNumberAperiodicSRS-PerBWP": "n1", + "maxNumberAperiodicSRS-PerBWP-PerSlot": 1, + "maxNumberPeriodicSRS-PerBWP": "n8", + "maxNumberPeriodicSRS-PerBWP-PerSlot": 4, + "maxNumberSemiPersistentSRS-PerBWP": "n1", + "maxNumberSemiPersistentSRS-PerBWP-PerSlot": 1, + "maxNumberSRS-Ports-PerResource": "n2" + } + }, + { + "featureSetListPerUplinkCC": [ + 20 + ], + "supportedSRS-Resources": { + "maxNumberAperiodicSRS-PerBWP": "n1", + "maxNumberAperiodicSRS-PerBWP-PerSlot": 1, + "maxNumberPeriodicSRS-PerBWP": "n8", + "maxNumberPeriodicSRS-PerBWP-PerSlot": 4, + "maxNumberSemiPersistentSRS-PerBWP": "n1", + "maxNumberSemiPersistentSRS-PerBWP-PerSlot": 1, + "maxNumberSRS-Ports-PerResource": "n2" + } + }, + { + "featureSetListPerUplinkCC": [ + 21 + ], + "supportedSRS-Resources": { + "maxNumberAperiodicSRS-PerBWP": "n1", + "maxNumberAperiodicSRS-PerBWP-PerSlot": 1, + "maxNumberPeriodicSRS-PerBWP": "n8", + "maxNumberPeriodicSRS-PerBWP-PerSlot": 4, + "maxNumberSemiPersistentSRS-PerBWP": "n1", + "maxNumberSemiPersistentSRS-PerBWP-PerSlot": 1, + "maxNumberSRS-Ports-PerResource": "n1" + } + }, + { + "featureSetListPerUplinkCC": [ + 14 + ], + "supportedSRS-Resources": { + "maxNumberAperiodicSRS-PerBWP": "n1", + "maxNumberAperiodicSRS-PerBWP-PerSlot": 1, + "maxNumberPeriodicSRS-PerBWP": "n8", + "maxNumberPeriodicSRS-PerBWP-PerSlot": 4, + "maxNumberSemiPersistentSRS-PerBWP": "n1", + "maxNumberSemiPersistentSRS-PerBWP-PerSlot": 1, + "maxNumberSRS-Ports-PerResource": "n2" + } + }, + { + "featureSetListPerUplinkCC": [ + 22 + ], + "supportedSRS-Resources": { + "maxNumberAperiodicSRS-PerBWP": "n1", + "maxNumberAperiodicSRS-PerBWP-PerSlot": 1, + "maxNumberPeriodicSRS-PerBWP": "n8", + "maxNumberPeriodicSRS-PerBWP-PerSlot": 4, + "maxNumberSemiPersistentSRS-PerBWP": "n1", + "maxNumberSemiPersistentSRS-PerBWP-PerSlot": 1, + "maxNumberSRS-Ports-PerResource": "n2" + } + }, + { + "featureSetListPerUplinkCC": [ + 5 + ], + "supportedSRS-Resources": { + "maxNumberAperiodicSRS-PerBWP": "n1", + "maxNumberAperiodicSRS-PerBWP-PerSlot": 1, + "maxNumberPeriodicSRS-PerBWP": "n8", + "maxNumberPeriodicSRS-PerBWP-PerSlot": 4, + "maxNumberSemiPersistentSRS-PerBWP": "n1", + "maxNumberSemiPersistentSRS-PerBWP-PerSlot": 1, + "maxNumberSRS-Ports-PerResource": "n2" + } + }, + { + "featureSetListPerUplinkCC": [ + 4 + ], + "supportedSRS-Resources": { + "maxNumberAperiodicSRS-PerBWP": "n1", + "maxNumberAperiodicSRS-PerBWP-PerSlot": 1, + "maxNumberPeriodicSRS-PerBWP": "n1", + "maxNumberPeriodicSRS-PerBWP-PerSlot": 1, + "maxNumberSemiPersistentSRS-PerBWP": "n1", + "maxNumberSemiPersistentSRS-PerBWP-PerSlot": 1, + "maxNumberSRS-Ports-PerResource": "n2" + } + }, + { + "featureSetListPerUplinkCC": [ + 3, + 3, + 3, + 3 + ], + "supportedSRS-Resources": { + "maxNumberAperiodicSRS-PerBWP": "n1", + "maxNumberAperiodicSRS-PerBWP-PerSlot": 1, + "maxNumberPeriodicSRS-PerBWP": "n1", + "maxNumberPeriodicSRS-PerBWP-PerSlot": 1, + "maxNumberSemiPersistentSRS-PerBWP": "n1", + "maxNumberSemiPersistentSRS-PerBWP-PerSlot": 1, + "maxNumberSRS-Ports-PerResource": "n2" + } + } + ], + "featureSetsUplinkPerCC": [ + { + "supportedSubcarrierSpacingUL": "kHz30", + "supportedBandwidthUL": { + "fr1": "mhz100" + }, + "channelBW-90mhz": "supported", + "mimo-CB-PUSCH": { + "maxNumberMIMO-LayersCB-PUSCH": "oneLayer", + "maxNumberSRS-ResourcePerSet": 1 + }, + "supportedModulationOrderUL": "qam256" + }, + { + "supportedSubcarrierSpacingUL": "kHz15", + "supportedBandwidthUL": { + "fr1": "mhz30" + }, + "mimo-CB-PUSCH": { + "maxNumberMIMO-LayersCB-PUSCH": "oneLayer", + "maxNumberSRS-ResourcePerSet": 1 + }, + "supportedModulationOrderUL": "qam256" + }, + { + "supportedSubcarrierSpacingUL": "kHz120", + "supportedBandwidthUL": { + "fr2": "mhz100" + }, + "mimo-CB-PUSCH": { + "maxNumberMIMO-LayersCB-PUSCH": "twoLayers", + "maxNumberSRS-ResourcePerSet": 1 + }, + "supportedModulationOrderUL": "qam64" + }, + { + "supportedSubcarrierSpacingUL": "kHz120", + "supportedBandwidthUL": { + "fr2": "mhz200" + }, + "mimo-CB-PUSCH": { + "maxNumberMIMO-LayersCB-PUSCH": "twoLayers", + "maxNumberSRS-ResourcePerSet": 1 + }, + "supportedModulationOrderUL": "qam64" + }, + { + "supportedSubcarrierSpacingUL": "kHz30", + "supportedBandwidthUL": { + "fr1": "mhz100" + }, + "channelBW-90mhz": "supported", + "mimo-CB-PUSCH": { + "maxNumberMIMO-LayersCB-PUSCH": "twoLayers", + "maxNumberSRS-ResourcePerSet": 1 + }, + "supportedModulationOrderUL": "qam256" + }, + { + "supportedSubcarrierSpacingUL": "kHz15", + "supportedBandwidthUL": { + "fr1": "mhz40" + }, + "mimo-CB-PUSCH": { + "maxNumberMIMO-LayersCB-PUSCH": "oneLayer", + "maxNumberSRS-ResourcePerSet": 1 + }, + "supportedModulationOrderUL": "qam256" + }, + { + "supportedSubcarrierSpacingUL": "kHz15", + "supportedBandwidthUL": { + "fr1": "mhz50" + }, + "mimo-CB-PUSCH": { + "maxNumberMIMO-LayersCB-PUSCH": "oneLayer", + "maxNumberSRS-ResourcePerSet": 1 + }, + "supportedModulationOrderUL": "qam256" + }, + { + "supportedSubcarrierSpacingUL": "kHz15", + "supportedBandwidthUL": { + "fr1": "mhz30" + }, + "mimo-CB-PUSCH": { + "maxNumberMIMO-LayersCB-PUSCH": "oneLayer", + "maxNumberSRS-ResourcePerSet": 1 + }, + "supportedModulationOrderUL": "qam256" + }, + { + "supportedSubcarrierSpacingUL": "kHz15", + "supportedBandwidthUL": { + "fr1": "mhz20" + }, + "mimo-CB-PUSCH": { + "maxNumberMIMO-LayersCB-PUSCH": "oneLayer", + "maxNumberSRS-ResourcePerSet": 1 + }, + "supportedModulationOrderUL": "qam256" + }, + { + "supportedSubcarrierSpacingUL": "kHz15", + "supportedBandwidthUL": { + "fr1": "mhz50" + }, + "mimo-CB-PUSCH": { + "maxNumberMIMO-LayersCB-PUSCH": "twoLayers", + "maxNumberSRS-ResourcePerSet": 1 + }, + "supportedModulationOrderUL": "qam256" + }, + { + "supportedSubcarrierSpacingUL": "kHz15", + "supportedBandwidthUL": { + "fr1": "mhz20" + }, + "mimo-CB-PUSCH": { + "maxNumberMIMO-LayersCB-PUSCH": "twoLayers", + "maxNumberSRS-ResourcePerSet": 1 + }, + "supportedModulationOrderUL": "qam256" + }, + { + "supportedSubcarrierSpacingUL": "kHz30", + "supportedBandwidthUL": { + "fr1": "mhz60" + }, + "mimo-CB-PUSCH": { + "maxNumberMIMO-LayersCB-PUSCH": "oneLayer", + "maxNumberSRS-ResourcePerSet": 1 + }, + "supportedModulationOrderUL": "qam256" + }, + { + "supportedSubcarrierSpacingUL": "kHz15", + "supportedBandwidthUL": { + "fr1": "mhz10" + }, + "mimo-CB-PUSCH": { + "maxNumberMIMO-LayersCB-PUSCH": "oneLayer", + "maxNumberSRS-ResourcePerSet": 1 + }, + "supportedModulationOrderUL": "qam256" + }, + { + "supportedSubcarrierSpacingUL": "kHz30", + "supportedBandwidthUL": { + "fr1": "mhz60" + }, + "mimo-CB-PUSCH": { + "maxNumberMIMO-LayersCB-PUSCH": "twoLayers", + "maxNumberSRS-ResourcePerSet": 1 + }, + "supportedModulationOrderUL": "qam256" + }, + { + "supportedSubcarrierSpacingUL": "kHz15", + "supportedBandwidthUL": { + "fr1": "mhz15" + }, + "mimo-CB-PUSCH": { + "maxNumberMIMO-LayersCB-PUSCH": "oneLayer", + "maxNumberSRS-ResourcePerSet": 1 + }, + "supportedModulationOrderUL": "qam256" + }, + { + "supportedSubcarrierSpacingUL": "kHz30", + "supportedBandwidthUL": { + "fr1": "mhz50" + }, + "mimo-CB-PUSCH": { + "maxNumberMIMO-LayersCB-PUSCH": "twoLayers", + "maxNumberSRS-ResourcePerSet": 1 + }, + "supportedModulationOrderUL": "qam256" + }, + { + "supportedSubcarrierSpacingUL": "kHz30", + "supportedBandwidthUL": { + "fr1": "mhz60" + }, + "mimo-CB-PUSCH": { + "maxNumberMIMO-LayersCB-PUSCH": "twoLayers", + "maxNumberSRS-ResourcePerSet": 1 + }, + "supportedModulationOrderUL": "qam256" + }, + { + "supportedSubcarrierSpacingUL": "kHz30", + "supportedBandwidthUL": { + "fr1": "mhz80" + }, + "mimo-CB-PUSCH": { + "maxNumberMIMO-LayersCB-PUSCH": "twoLayers", + "maxNumberSRS-ResourcePerSet": 1 + }, + "supportedModulationOrderUL": "qam256" + }, + { + "supportedSubcarrierSpacingUL": "kHz30", + "supportedBandwidthUL": { + "fr1": "mhz30" + }, + "mimo-CB-PUSCH": { + "maxNumberMIMO-LayersCB-PUSCH": "twoLayers", + "maxNumberSRS-ResourcePerSet": 1 + }, + "supportedModulationOrderUL": "qam256" + }, + { + "supportedSubcarrierSpacingUL": "kHz30", + "supportedBandwidthUL": { + "fr1": "mhz40" + }, + "mimo-CB-PUSCH": { + "maxNumberMIMO-LayersCB-PUSCH": "twoLayers", + "maxNumberSRS-ResourcePerSet": 1 + }, + "supportedModulationOrderUL": "qam256" + }, + { + "supportedSubcarrierSpacingUL": "kHz30", + "supportedBandwidthUL": { + "fr1": "mhz40" + }, + "mimo-CB-PUSCH": { + "maxNumberMIMO-LayersCB-PUSCH": "oneLayer", + "maxNumberSRS-ResourcePerSet": 1 + }, + "supportedModulationOrderUL": "qam256" + }, + { + "supportedSubcarrierSpacingUL": "kHz30", + "supportedBandwidthUL": { + "fr1": "mhz80" + }, + "channelBW-90mhz": "supported", + "mimo-CB-PUSCH": { + "maxNumberMIMO-LayersCB-PUSCH": "twoLayers", + "maxNumberSRS-ResourcePerSet": 1 + }, + "supportedModulationOrderUL": "qam256" + } + ], + "featureSetsDownlink-v1540": [ + { + "oneFL-DMRS-TwoAdditionalDMRS-DL": "supported", + "twoFL-DMRS-TwoAdditionalDMRS-DL": "supported" + }, + { + "oneFL-DMRS-TwoAdditionalDMRS-DL": "supported", + "twoFL-DMRS-TwoAdditionalDMRS-DL": "supported" + }, + { + "oneFL-DMRS-TwoAdditionalDMRS-DL": "supported", + "additionalDMRS-DL-Alt": "supported", + "twoFL-DMRS-TwoAdditionalDMRS-DL": "supported" + }, + { + "oneFL-DMRS-TwoAdditionalDMRS-DL": "supported", + "twoFL-DMRS-TwoAdditionalDMRS-DL": "supported" + }, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + { + "oneFL-DMRS-TwoAdditionalDMRS-DL": "supported", + "additionalDMRS-DL-Alt": "supported", + "twoFL-DMRS-TwoAdditionalDMRS-DL": "supported" + }, + { + "oneFL-DMRS-TwoAdditionalDMRS-DL": "supported", + "additionalDMRS-DL-Alt": "supported", + "twoFL-DMRS-TwoAdditionalDMRS-DL": "supported" + }, + { + "oneFL-DMRS-TwoAdditionalDMRS-DL": "supported", + "twoFL-DMRS-TwoAdditionalDMRS-DL": "supported" + }, + { + "oneFL-DMRS-TwoAdditionalDMRS-DL": "supported", + "twoFL-DMRS-TwoAdditionalDMRS-DL": "supported" + }, + { + "oneFL-DMRS-TwoAdditionalDMRS-DL": "supported", + "additionalDMRS-DL-Alt": "supported", + "twoFL-DMRS-TwoAdditionalDMRS-DL": "supported" + }, + { + "oneFL-DMRS-TwoAdditionalDMRS-DL": "supported", + "twoFL-DMRS-TwoAdditionalDMRS-DL": "supported" + }, + { + "oneFL-DMRS-TwoAdditionalDMRS-DL": "supported", + "twoFL-DMRS-TwoAdditionalDMRS-DL": "supported" + }, + { + "oneFL-DMRS-TwoAdditionalDMRS-DL": "supported", + "twoFL-DMRS-TwoAdditionalDMRS-DL": "supported" + }, + { + "oneFL-DMRS-TwoAdditionalDMRS-DL": "supported", + "additionalDMRS-DL-Alt": "supported", + "twoFL-DMRS-TwoAdditionalDMRS-DL": "supported" + }, + { + "oneFL-DMRS-TwoAdditionalDMRS-DL": "supported", + "additionalDMRS-DL-Alt": "supported", + "twoFL-DMRS-TwoAdditionalDMRS-DL": "supported" + }, + { + "oneFL-DMRS-TwoAdditionalDMRS-DL": "supported", + "twoFL-DMRS-TwoAdditionalDMRS-DL": "supported" + }, + { + "oneFL-DMRS-TwoAdditionalDMRS-DL": "supported", + "additionalDMRS-DL-Alt": "supported", + "twoFL-DMRS-TwoAdditionalDMRS-DL": "supported" + }, + { + "oneFL-DMRS-TwoAdditionalDMRS-DL": "supported", + "twoFL-DMRS-TwoAdditionalDMRS-DL": "supported" + }, + { + "oneFL-DMRS-TwoAdditionalDMRS-DL": "supported", + "twoFL-DMRS-TwoAdditionalDMRS-DL": "supported" + }, + { + "oneFL-DMRS-TwoAdditionalDMRS-DL": "supported", + "additionalDMRS-DL-Alt": "supported", + "twoFL-DMRS-TwoAdditionalDMRS-DL": "supported" + }, + { + "oneFL-DMRS-TwoAdditionalDMRS-DL": "supported", + "twoFL-DMRS-TwoAdditionalDMRS-DL": "supported" + }, + { + "oneFL-DMRS-TwoAdditionalDMRS-DL": "supported", + "twoFL-DMRS-TwoAdditionalDMRS-DL": "supported" + }, + { + "oneFL-DMRS-TwoAdditionalDMRS-DL": "supported", + "additionalDMRS-DL-Alt": "supported", + "twoFL-DMRS-TwoAdditionalDMRS-DL": "supported" + }, + { + "oneFL-DMRS-TwoAdditionalDMRS-DL": "supported", + "twoFL-DMRS-TwoAdditionalDMRS-DL": "supported" + }, + { + "oneFL-DMRS-TwoAdditionalDMRS-DL": "supported", + "twoFL-DMRS-TwoAdditionalDMRS-DL": "supported" + }, + { + "oneFL-DMRS-TwoAdditionalDMRS-DL": "supported", + "twoFL-DMRS-TwoAdditionalDMRS-DL": "supported" + }, + { + "oneFL-DMRS-TwoAdditionalDMRS-DL": "supported", + "twoFL-DMRS-TwoAdditionalDMRS-DL": "supported" + }, + { + "oneFL-DMRS-TwoAdditionalDMRS-DL": "supported", + "twoFL-DMRS-TwoAdditionalDMRS-DL": "supported" + }, + { + "oneFL-DMRS-TwoAdditionalDMRS-DL": "supported", + "additionalDMRS-DL-Alt": "supported", + "twoFL-DMRS-TwoAdditionalDMRS-DL": "supported" + }, + { + "oneFL-DMRS-TwoAdditionalDMRS-DL": "supported", + "additionalDMRS-DL-Alt": "supported", + "twoFL-DMRS-TwoAdditionalDMRS-DL": "supported" + }, + { + "oneFL-DMRS-TwoAdditionalDMRS-DL": "supported", + "additionalDMRS-DL-Alt": "supported", + "twoFL-DMRS-TwoAdditionalDMRS-DL": "supported" + }, + { + "oneFL-DMRS-TwoAdditionalDMRS-DL": "supported", + "additionalDMRS-DL-Alt": "supported", + "twoFL-DMRS-TwoAdditionalDMRS-DL": "supported" + }, + { + "oneFL-DMRS-TwoAdditionalDMRS-DL": "supported", + "twoFL-DMRS-TwoAdditionalDMRS-DL": "supported" + }, + { + "oneFL-DMRS-TwoAdditionalDMRS-DL": "supported", + "twoFL-DMRS-TwoAdditionalDMRS-DL": "supported" + }, + { + "oneFL-DMRS-TwoAdditionalDMRS-DL": "supported", + "twoFL-DMRS-TwoAdditionalDMRS-DL": "supported" + } + ], + "featureSetsUplink-v1540": [ + { + "pa-PhaseDiscontinuityImpacts": "supported" + }, + { + "pa-PhaseDiscontinuityImpacts": "supported" + }, + { + "pa-PhaseDiscontinuityImpacts": "supported" + }, + { + "pa-PhaseDiscontinuityImpacts": "supported" + }, + { + "pa-PhaseDiscontinuityImpacts": "supported" + }, + { + "pa-PhaseDiscontinuityImpacts": "supported" + }, + { + "pa-PhaseDiscontinuityImpacts": "supported" + }, + { + "pa-PhaseDiscontinuityImpacts": "supported" + }, + { + "pa-PhaseDiscontinuityImpacts": "supported" + }, + { + "pa-PhaseDiscontinuityImpacts": "supported" + }, + { + "pa-PhaseDiscontinuityImpacts": "supported" + }, + { + "pa-PhaseDiscontinuityImpacts": "supported" + }, + { + "pa-PhaseDiscontinuityImpacts": "supported" + }, + { + "pa-PhaseDiscontinuityImpacts": "supported" + }, + { + "pa-PhaseDiscontinuityImpacts": "supported" + }, + { + "pa-PhaseDiscontinuityImpacts": "supported" + }, + { + "pa-PhaseDiscontinuityImpacts": "supported" + }, + { + "pa-PhaseDiscontinuityImpacts": "supported" + }, + { + "pa-PhaseDiscontinuityImpacts": "supported" + }, + { + "pa-PhaseDiscontinuityImpacts": "supported" + }, + { + "pa-PhaseDiscontinuityImpacts": "supported" + }, + { + "pa-PhaseDiscontinuityImpacts": "supported" + }, + { + "pa-PhaseDiscontinuityImpacts": "supported" + }, + { + "pa-PhaseDiscontinuityImpacts": "supported" + }, + { + "pa-PhaseDiscontinuityImpacts": "supported" + }, + { + "pa-PhaseDiscontinuityImpacts": "supported" + }, + { + "pa-PhaseDiscontinuityImpacts": "supported" + }, + { + "pa-PhaseDiscontinuityImpacts": "supported" + }, + { + "pa-PhaseDiscontinuityImpacts": "supported" + }, + { + "pa-PhaseDiscontinuityImpacts": "supported" + }, + { + "pa-PhaseDiscontinuityImpacts": "supported" + }, + { + "pa-PhaseDiscontinuityImpacts": "supported" + }, + { + "pa-PhaseDiscontinuityImpacts": "supported" + }, + { + "pa-PhaseDiscontinuityImpacts": "supported" + }, + { + "pa-PhaseDiscontinuityImpacts": "supported" + }, + { + "pa-PhaseDiscontinuityImpacts": "supported" + }, + { + "pa-PhaseDiscontinuityImpacts": "supported" + }, + { + "pa-PhaseDiscontinuityImpacts": "supported" + }, + { + "pa-PhaseDiscontinuityImpacts": "supported" + }, + { + "pa-PhaseDiscontinuityImpacts": "supported" + }, + { + "pa-PhaseDiscontinuityImpacts": "supported" + }, + { + "pa-PhaseDiscontinuityImpacts": "supported" + }, + { + "pa-PhaseDiscontinuityImpacts": "supported" + }, + { + "pa-PhaseDiscontinuityImpacts": "supported" + }, + { + "pa-PhaseDiscontinuityImpacts": "supported" + }, + { + "pa-PhaseDiscontinuityImpacts": "supported" + }, + { + "pa-PhaseDiscontinuityImpacts": "supported" + } + ], + "featureSetsDownlink-v15a0": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + { + "supportedSRS-Resources": { + "maxNumberAperiodicSRS-PerBWP": "n1", + "maxNumberAperiodicSRS-PerBWP-PerSlot": 1, + "maxNumberPeriodicSRS-PerBWP": "n8", + "maxNumberPeriodicSRS-PerBWP-PerSlot": 4, + "maxNumberSemiPersistentSRS-PerBWP": "n1", + "maxNumberSemiPersistentSRS-PerBWP-PerSlot": 1, + "maxNumberSRS-Ports-PerResource": "n1" + } + }, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + { + "supportedSRS-Resources": { + "maxNumberAperiodicSRS-PerBWP": "n1", + "maxNumberAperiodicSRS-PerBWP-PerSlot": 1, + "maxNumberPeriodicSRS-PerBWP": "n8", + "maxNumberPeriodicSRS-PerBWP-PerSlot": 4, + "maxNumberSemiPersistentSRS-PerBWP": "n1", + "maxNumberSemiPersistentSRS-PerBWP-PerSlot": 1, + "maxNumberSRS-Ports-PerResource": "n1" + } + }, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ], + "featureSetsUplink-v1610": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + { + "ul-FullPwrMode-r16": "supported" + }, + { + "ul-FullPwrMode-r16": "supported" + }, + {}, + {}, + {}, + { + "ul-FullPwrMode-r16": "supported" + }, + {}, + {}, + { + "ul-FullPwrMode-r16": "supported" + }, + {}, + { + "ul-FullPwrMode1-r16": "supported" + }, + {}, + {}, + {}, + { + "ul-FullPwrMode-r16": "supported" + }, + {}, + {}, + { + "ul-FullPwrMode2-MaxSRS-ResInSet-r16": "n1", + "ul-FullPwrMode2-SRSConfig-diffNumSRSPorts-r16": "p1-2", + "ul-FullPwrMode2-TPMIGroup-r16": { + "twoPorts-r16": "10" + } + }, + { + "ul-FullPwrMode1-r16": "supported" + }, + { + "ul-FullPwrMode-r16": "supported" + }, + {}, + {}, + {}, + {}, + { + "ul-FullPwrMode-r16": "supported" + }, + {}, + {}, + { + "ul-FullPwrMode1-r16": "supported" + }, + { + "ul-FullPwrMode1-r16": "supported" + }, + { + "ul-FullPwrMode1-r16": "supported" + }, + { + "ul-FullPwrMode1-r16": "supported" + }, + { + "ul-FullPwrMode2-MaxSRS-ResInSet-r16": "n1", + "ul-FullPwrMode2-SRSConfig-diffNumSRSPorts-r16": "p1-2", + "ul-FullPwrMode2-TPMIGroup-r16": { + "twoPorts-r16": "10" + } + }, + { + "ul-FullPwrMode-r16": "supported" + }, + {}, + { + "ul-FullPwrMode1-r16": "supported" + }, + { + "ul-FullPwrMode1-r16": "supported" + }, + { + "ul-FullPwrMode1-r16": "supported" + }, + {}, + {} + ], + "featureSetsUplink-v1630": [ + { + "offsetSRS-CB-PUSCH-Ant-Switch-fr1-r16": "supported" + }, + { + "offsetSRS-CB-PUSCH-Ant-Switch-fr1-r16": "supported" + }, + {}, + {}, + {}, + {}, + {}, + {}, + { + "offsetSRS-CB-PUSCH-Ant-Switch-fr1-r16": "supported" + }, + { + "offsetSRS-CB-PUSCH-Ant-Switch-fr1-r16": "supported" + }, + { + "offsetSRS-CB-PUSCH-Ant-Switch-fr1-r16": "supported" + }, + { + "offsetSRS-CB-PUSCH-Ant-Switch-fr1-r16": "supported" + }, + { + "offsetSRS-CB-PUSCH-Ant-Switch-fr1-r16": "supported" + }, + { + "offsetSRS-CB-PUSCH-Ant-Switch-fr1-r16": "supported" + }, + { + "offsetSRS-CB-PUSCH-Ant-Switch-fr1-r16": "supported" + }, + { + "offsetSRS-CB-PUSCH-Ant-Switch-fr1-r16": "supported" + }, + { + "offsetSRS-CB-PUSCH-Ant-Switch-fr1-r16": "supported" + }, + { + "offsetSRS-CB-PUSCH-Ant-Switch-fr1-r16": "supported" + }, + { + "offsetSRS-CB-PUSCH-Ant-Switch-fr1-r16": "supported" + }, + { + "offsetSRS-CB-PUSCH-Ant-Switch-fr1-r16": "supported" + }, + { + "offsetSRS-CB-PUSCH-Ant-Switch-fr1-r16": "supported" + }, + { + "offsetSRS-CB-PUSCH-Ant-Switch-fr1-r16": "supported" + }, + { + "offsetSRS-CB-PUSCH-Ant-Switch-fr1-r16": "supported" + }, + { + "offsetSRS-CB-PUSCH-Ant-Switch-fr1-r16": "supported" + }, + { + "offsetSRS-CB-PUSCH-Ant-Switch-fr1-r16": "supported" + }, + { + "offsetSRS-CB-PUSCH-Ant-Switch-fr1-r16": "supported" + }, + { + "offsetSRS-CB-PUSCH-Ant-Switch-fr1-r16": "supported" + }, + { + "offsetSRS-CB-PUSCH-Ant-Switch-fr1-r16": "supported" + }, + { + "offsetSRS-CB-PUSCH-Ant-Switch-fr1-r16": "supported" + }, + { + "offsetSRS-CB-PUSCH-Ant-Switch-fr1-r16": "supported" + }, + { + "offsetSRS-CB-PUSCH-Ant-Switch-fr1-r16": "supported" + }, + { + "offsetSRS-CB-PUSCH-Ant-Switch-fr1-r16": "supported" + }, + { + "offsetSRS-CB-PUSCH-Ant-Switch-fr1-r16": "supported" + }, + { + "offsetSRS-CB-PUSCH-Ant-Switch-fr1-r16": "supported" + }, + { + "offsetSRS-CB-PUSCH-Ant-Switch-fr1-r16": "supported" + }, + { + "offsetSRS-CB-PUSCH-Ant-Switch-fr1-r16": "supported" + }, + { + "offsetSRS-CB-PUSCH-Ant-Switch-fr1-r16": "supported" + }, + { + "offsetSRS-CB-PUSCH-Ant-Switch-fr1-r16": "supported" + }, + { + "offsetSRS-CB-PUSCH-Ant-Switch-fr1-r16": "supported" + }, + { + "offsetSRS-CB-PUSCH-Ant-Switch-fr1-r16": "supported" + }, + { + "offsetSRS-CB-PUSCH-Ant-Switch-fr1-r16": "supported" + }, + { + "offsetSRS-CB-PUSCH-Ant-Switch-fr1-r16": "supported" + }, + { + "offsetSRS-CB-PUSCH-Ant-Switch-fr1-r16": "supported" + }, + { + "offsetSRS-CB-PUSCH-Ant-Switch-fr1-r16": "supported" + }, + { + "offsetSRS-CB-PUSCH-Ant-Switch-fr1-r16": "supported" + }, + {}, + {} + ], + "featureSetsDownlinkPerCC-v1700": [ + { + "supportedBandwidthDL-v1710": { + "fr1-r17": "mhz100" + } + }, + { + "supportedBandwidthDL-v1710": { + "fr1-r17": "mhz90" + } + }, + { + "supportedBandwidthDL-v1710": { + "fr1-r17": "mhz35" + } + }, + {}, + {}, + { + "supportedBandwidthDL-v1710": { + "fr1-r17": "mhz50" + } + }, + { + "supportedBandwidthDL-v1710": { + "fr1-r17": "mhz10" + } + }, + { + "supportedBandwidthDL-v1710": { + "fr1-r17": "mhz40" + } + }, + { + "supportedBandwidthDL-v1710": { + "fr1-r17": "mhz30" + } + }, + { + "supportedBandwidthDL-v1710": { + "fr1-r17": "mhz30" + } + }, + { + "supportedBandwidthDL-v1710": { + "fr1-r17": "mhz30" + } + }, + { + "supportedBandwidthDL-v1710": { + "fr1-r17": "mhz20" + } + }, + { + "supportedBandwidthDL-v1710": { + "fr1-r17": "mhz50" + } + }, + { + "supportedBandwidthDL-v1710": { + "fr1-r17": "mhz60" + } + }, + { + "supportedBandwidthDL-v1710": { + "fr1-r17": "mhz20" + } + }, + { + "supportedBandwidthDL-v1710": { + "fr1-r17": "mhz80" + } + }, + { + "supportedBandwidthDL-v1710": { + "fr1-r17": "mhz10" + } + }, + { + "supportedBandwidthDL-v1710": { + "fr1-r17": "mhz15" + } + }, + { + "supportedBandwidthDL-v1710": { + "fr1-r17": "mhz70" + } + }, + { + "supportedBandwidthDL-v1710": { + "fr1-r17": "mhz20" + } + }, + { + "supportedBandwidthDL-v1710": { + "fr1-r17": "mhz5" + } + }, + { + "supportedBandwidthDL-v1710": { + "fr1-r17": "mhz10" + } + } + ], + "featureSetsUplink-v1710": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + { + "ue-PowerClassPerBandPerBC-r17": "pc3" + }, + { + "ue-PowerClassPerBandPerBC-r17": "pc3" + }, + { + "ue-PowerClassPerBandPerBC-r17": "pc3" + }, + { + "ue-PowerClassPerBandPerBC-r17": "pc3" + }, + { + "ue-PowerClassPerBandPerBC-r17": "pc3" + }, + { + "ue-PowerClassPerBandPerBC-r17": "pc3" + }, + { + "ue-PowerClassPerBandPerBC-r17": "pc3" + }, + { + "ue-PowerClassPerBandPerBC-r17": "pc2" + }, + { + "ue-PowerClassPerBandPerBC-r17": "pc2" + }, + {}, + { + "ue-PowerClassPerBandPerBC-r17": "pc3" + }, + { + "ue-PowerClassPerBandPerBC-r17": "pc3" + }, + { + "ue-PowerClassPerBandPerBC-r17": "pc3" + }, + {}, + {}, + {}, + { + "ue-PowerClassPerBandPerBC-r17": "pc2" + }, + {}, + {}, + { + "ue-PowerClassPerBandPerBC-r17": "pc3" + }, + { + "ue-PowerClassPerBandPerBC-r17": "pc2" + }, + {}, + {}, + { + "ue-PowerClassPerBandPerBC-r17": "pc2" + }, + { + "ue-PowerClassPerBandPerBC-r17": "pc3" + }, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + { + "ue-PowerClassPerBandPerBC-r17": "pc1dot5" + }, + { + "ue-PowerClassPerBandPerBC-r17": "pc3" + }, + { + "ue-PowerClassPerBandPerBC-r17": "pc3" + } + ], + "featureSetsUplinkPerCC-v1700": [ + { + "supportedBandwidthUL-v1710": { + "fr1-r17": "mhz100" + } + }, + { + "supportedBandwidthUL-v1710": { + "fr1-r17": "mhz35" + } + }, + {}, + {}, + { + "supportedBandwidthUL-v1710": { + "fr1-r17": "mhz100" + } + }, + { + "supportedBandwidthUL-v1710": { + "fr1-r17": "mhz40" + } + }, + { + "supportedBandwidthUL-v1710": { + "fr1-r17": "mhz50" + } + }, + { + "supportedBandwidthUL-v1710": { + "fr1-r17": "mhz30" + } + }, + { + "supportedBandwidthUL-v1710": { + "fr1-r17": "mhz20" + } + }, + { + "supportedBandwidthUL-v1710": { + "fr1-r17": "mhz50" + } + }, + { + "supportedBandwidthUL-v1710": { + "fr1-r17": "mhz20" + } + }, + { + "supportedBandwidthUL-v1710": { + "fr1-r17": "mhz70" + } + }, + { + "supportedBandwidthUL-v1710": { + "fr1-r17": "mhz10" + } + }, + { + "supportedBandwidthUL-v1710": { + "fr1-r17": "mhz70" + } + }, + { + "supportedBandwidthUL-v1710": { + "fr1-r17": "mhz15" + } + }, + { + "supportedBandwidthUL-v1710": { + "fr1-r17": "mhz50" + } + }, + { + "supportedBandwidthUL-v1710": { + "fr1-r17": "mhz60" + } + }, + { + "supportedBandwidthUL-v1710": { + "fr1-r17": "mhz80" + } + }, + { + "supportedBandwidthUL-v1710": { + "fr1-r17": "mhz30" + } + }, + { + "supportedBandwidthUL-v1710": { + "fr1-r17": "mhz40" + } + }, + { + "supportedBandwidthUL-v1710": { + "fr1-r17": "mhz40" + } + }, + { + "supportedBandwidthUL-v1710": { + "fr1-r17": "mhz90" + } + } + ] + }, + "featureSetCombinations": [ + [ + [ + { + "nr": { + "downlinkSetNR": 1, + "uplinkSetNR": 0 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 1, + "uplinkSetNR": 9 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 1, + "uplinkSetNR": 0 + } + } + ] + ], + [ + [ + { + "nr": { + "downlinkSetNR": 1, + "uplinkSetNR": 10 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 0, + "uplinkSetNR": 11 + } + } + ] + ], + [ + [ + { + "nr": { + "downlinkSetNR": 15, + "uplinkSetNR": 0 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 16, + "uplinkSetNR": 0 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 1, + "uplinkSetNR": 9 + } + } + ] + ], + [ + [ + { + "nr": { + "downlinkSetNR": 15, + "uplinkSetNR": 12 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 1, + "uplinkSetNR": 0 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 1, + "uplinkSetNR": 13 + } + } + ] + ], + [ + [ + { + "nr": { + "downlinkSetNR": 15, + "uplinkSetNR": 0 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 1, + "uplinkSetNR": 0 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 1, + "uplinkSetNR": 9 + } + } + ] + ], + [ + [ + { + "nr": { + "downlinkSetNR": 15, + "uplinkSetNR": 12 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 1, + "uplinkSetNR": 14 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 1, + "uplinkSetNR": 0 + } + } + ] + ], + [ + [ + { + "nr": { + "downlinkSetNR": 15, + "uplinkSetNR": 12 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 1, + "uplinkSetNR": 13 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 1, + "uplinkSetNR": 0 + } + } + ] + ], + [ + [ + { + "nr": { + "downlinkSetNR": 15, + "uplinkSetNR": 0 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 1, + "uplinkSetNR": 9 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 17, + "uplinkSetNR": 0 + } + } + ] + ], + [ + [ + { + "nr": { + "downlinkSetNR": 15, + "uplinkSetNR": 12 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 16, + "uplinkSetNR": 0 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 1, + "uplinkSetNR": 13 + } + } + ] + ], + [ + [ + { + "nr": { + "downlinkSetNR": 1, + "uplinkSetNR": 0 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 3, + "uplinkSetNR": 15 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 1, + "uplinkSetNR": 13 + } + } + ] + ], + [ + [ + { + "nr": { + "downlinkSetNR": 1, + "uplinkSetNR": 0 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 3, + "uplinkSetNR": 0 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 1, + "uplinkSetNR": 9 + } + } + ] + ], + [ + [ + { + "nr": { + "downlinkSetNR": 18, + "uplinkSetNR": 0 + } + }, + { + "nr": { + "downlinkSetNR": 20, + "uplinkSetNR": 0 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 19, + "uplinkSetNR": 16 + } + }, + { + "nr": { + "downlinkSetNR": 3, + "uplinkSetNR": 15 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 1, + "uplinkSetNR": 13 + } + }, + { + "nr": { + "downlinkSetNR": 1, + "uplinkSetNR": 13 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 1, + "uplinkSetNR": 0 + } + }, + { + "nr": { + "downlinkSetNR": 1, + "uplinkSetNR": 0 + } + } + ] + ], + [ + [ + { + "nr": { + "downlinkSetNR": 18, + "uplinkSetNR": 0 + } + }, + { + "nr": { + "downlinkSetNR": 20, + "uplinkSetNR": 0 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 19, + "uplinkSetNR": 0 + } + }, + { + "nr": { + "downlinkSetNR": 3, + "uplinkSetNR": 0 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 1, + "uplinkSetNR": 9 + } + }, + { + "nr": { + "downlinkSetNR": 1, + "uplinkSetNR": 9 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 1, + "uplinkSetNR": 0 + } + }, + { + "nr": { + "downlinkSetNR": 1, + "uplinkSetNR": 0 + } + } + ] + ], + [ + [ + { + "nr": { + "downlinkSetNR": 15, + "uplinkSetNR": 12 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 1, + "uplinkSetNR": 17 + } + } + ] + ], + [ + [ + { + "nr": { + "downlinkSetNR": 15, + "uplinkSetNR": 12 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 1, + "uplinkSetNR": 18 + } + } + ] + ], + [ + [ + { + "nr": { + "downlinkSetNR": 15, + "uplinkSetNR": 12 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 21, + "uplinkSetNR": 14 + } + } + ] + ], + [ + [ + { + "nr": { + "downlinkSetNR": 15, + "uplinkSetNR": 12 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 21, + "uplinkSetNR": 13 + } + } + ] + ], + [ + [ + { + "nr": { + "downlinkSetNR": 15, + "uplinkSetNR": 0 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 21, + "uplinkSetNR": 9 + } + } + ] + ], + [ + [ + { + "nr": { + "downlinkSetNR": 15, + "uplinkSetNR": 0 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 1, + "uplinkSetNR": 19 + } + } + ] + ], + [ + [ + { + "nr": { + "downlinkSetNR": 17, + "uplinkSetNR": 0 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 1, + "uplinkSetNR": 9 + } + } + ] + ], + [ + [ + { + "nr": { + "downlinkSetNR": 17, + "uplinkSetNR": 0 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 1, + "uplinkSetNR": 1 + } + } + ] + ], + [ + [ + { + "nr": { + "downlinkSetNR": 1, + "uplinkSetNR": 0 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 21, + "uplinkSetNR": 9 + } + } + ] + ], + [ + [ + { + "nr": { + "downlinkSetNR": 3, + "uplinkSetNR": 15 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 1, + "uplinkSetNR": 18 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 1, + "uplinkSetNR": 0 + } + } + ] + ], + [ + [ + { + "nr": { + "downlinkSetNR": 1, + "uplinkSetNR": 19 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 17, + "uplinkSetNR": 0 + } + } + ] + ], + [ + [ + { + "nr": { + "downlinkSetNR": 15, + "uplinkSetNR": 12 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 1, + "uplinkSetNR": 18 + } + } + ] + ], + [ + [ + { + "nr": { + "downlinkSetNR": 1, + "uplinkSetNR": 10 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 0, + "uplinkSetNR": 20 + } + } + ] + ], + [ + [ + { + "nr": { + "downlinkSetNR": 1, + "uplinkSetNR": 10 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 0, + "uplinkSetNR": 21 + } + } + ] + ], + [ + [ + { + "nr": { + "downlinkSetNR": 1, + "uplinkSetNR": 10 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 0, + "uplinkSetNR": 22 + } + } + ] + ], + [ + [ + { + "nr": { + "downlinkSetNR": 1, + "uplinkSetNR": 10 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 0, + "uplinkSetNR": 20 + } + } + ] + ], + [ + [ + { + "nr": { + "downlinkSetNR": 22, + "uplinkSetNR": 9 + } + } + ] + ], + [ + [ + { + "nr": { + "downlinkSetNR": 21, + "uplinkSetNR": 19 + } + } + ] + ], + [ + [ + { + "nr": { + "downlinkSetNR": 15, + "uplinkSetNR": 23 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 1, + "uplinkSetNR": 0 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 1, + "uplinkSetNR": 0 + } + } + ] + ], + [ + [ + { + "nr": { + "downlinkSetNR": 15, + "uplinkSetNR": 23 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 16, + "uplinkSetNR": 0 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 1, + "uplinkSetNR": 0 + } + } + ] + ], + [ + [ + { + "nr": { + "downlinkSetNR": 15, + "uplinkSetNR": 24 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 17, + "uplinkSetNR": 0 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 17, + "uplinkSetNR": 0 + } + } + ] + ], + [ + [ + { + "nr": { + "downlinkSetNR": 23, + "uplinkSetNR": 25 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 24, + "uplinkSetNR": 0 + } + } + ] + ], + [ + [ + { + "nr": { + "downlinkSetNR": 15, + "uplinkSetNR": 12 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 1, + "uplinkSetNR": 26 + } + } + ] + ], + [ + [ + { + "nr": { + "downlinkSetNR": 15, + "uplinkSetNR": 23 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 21, + "uplinkSetNR": 0 + } + } + ] + ], + [ + [ + { + "nr": { + "downlinkSetNR": 15, + "uplinkSetNR": 27 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 1, + "uplinkSetNR": 0 + } + } + ] + ], + [ + [ + { + "nr": { + "downlinkSetNR": 15, + "uplinkSetNR": 24 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 25, + "uplinkSetNR": 0 + } + } + ] + ], + [ + [ + { + "nr": { + "downlinkSetNR": 26, + "uplinkSetNR": 28 + } + } + ] + ], + [ + [ + { + "nr": { + "downlinkSetNR": 1, + "uplinkSetNR": 18 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 2, + "uplinkSetNR": 0 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 3, + "uplinkSetNR": 15 + } + } + ] + ], + [ + [ + { + "nr": { + "downlinkSetNR": 27, + "uplinkSetNR": 13 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 20, + "uplinkSetNR": 0 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 3, + "uplinkSetNR": 15 + } + } + ] + ], + [ + [ + { + "nr": { + "downlinkSetNR": 1, + "uplinkSetNR": 18 + } + }, + { + "nr": { + "downlinkSetNR": 1, + "uplinkSetNR": 18 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 28, + "uplinkSetNR": 0 + } + }, + { + "nr": { + "downlinkSetNR": 30, + "uplinkSetNR": 0 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 20, + "uplinkSetNR": 0 + } + }, + { + "nr": { + "downlinkSetNR": 31, + "uplinkSetNR": 0 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 29, + "uplinkSetNR": 29 + } + }, + { + "nr": { + "downlinkSetNR": 3, + "uplinkSetNR": 15 + } + } + ] + ], + [ + [ + { + "nr": { + "downlinkSetNR": 1, + "uplinkSetNR": 18 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 2, + "uplinkSetNR": 0 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 32, + "uplinkSetNR": 29 + } + } + ] + ], + [ + [ + { + "nr": { + "downlinkSetNR": 33, + "uplinkSetNR": 30 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 34, + "uplinkSetNR": 0 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 3, + "uplinkSetNR": 15 + } + } + ] + ], + [ + [ + { + "nr": { + "downlinkSetNR": 27, + "uplinkSetNR": 18 + } + }, + { + "nr": { + "downlinkSetNR": 35, + "uplinkSetNR": 18 + } + }, + { + "nr": { + "downlinkSetNR": 37, + "uplinkSetNR": 18 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 20, + "uplinkSetNR": 0 + } + }, + { + "nr": { + "downlinkSetNR": 36, + "uplinkSetNR": 0 + } + }, + { + "nr": { + "downlinkSetNR": 31, + "uplinkSetNR": 0 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 29, + "uplinkSetNR": 29 + } + }, + { + "nr": { + "downlinkSetNR": 3, + "uplinkSetNR": 15 + } + }, + { + "nr": { + "downlinkSetNR": 3, + "uplinkSetNR": 15 + } + } + ] + ], + [ + [ + { + "nr": { + "downlinkSetNR": 4, + "uplinkSetNR": 18 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 3, + "uplinkSetNR": 15 + } + } + ] + ], + [ + [ + { + "nr": { + "downlinkSetNR": 1, + "uplinkSetNR": 18 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 2, + "uplinkSetNR": 0 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 19, + "uplinkSetNR": 16 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 38, + "uplinkSetNR": 0 + } + } + ] + ], + [ + [ + { + "nr": { + "downlinkSetNR": 27, + "uplinkSetNR": 13 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 20, + "uplinkSetNR": 0 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 29, + "uplinkSetNR": 29 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 39, + "uplinkSetNR": 0 + } + } + ] + ], + [ + [ + { + "nr": { + "downlinkSetNR": 1, + "uplinkSetNR": 13 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 2, + "uplinkSetNR": 0 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 29, + "uplinkSetNR": 29 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 39, + "uplinkSetNR": 0 + } + } + ] + ], + [ + [ + { + "nr": { + "downlinkSetNR": 1, + "uplinkSetNR": 18 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 30, + "uplinkSetNR": 0 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 31, + "uplinkSetNR": 0 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 19, + "uplinkSetNR": 16 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 38, + "uplinkSetNR": 0 + } + } + ] + ], + [ + [ + { + "nr": { + "downlinkSetNR": 1, + "uplinkSetNR": 18 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 30, + "uplinkSetNR": 0 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 31, + "uplinkSetNR": 0 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 32, + "uplinkSetNR": 29 + } + } + ] + ], + [ + [ + { + "nr": { + "downlinkSetNR": 1, + "uplinkSetNR": 13 + } + }, + { + "nr": { + "downlinkSetNR": 1, + "uplinkSetNR": 13 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 3, + "uplinkSetNR": 15 + } + }, + { + "nr": { + "downlinkSetNR": 19, + "uplinkSetNR": 16 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 1, + "uplinkSetNR": 0 + } + }, + { + "nr": { + "downlinkSetNR": 1, + "uplinkSetNR": 0 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 20, + "uplinkSetNR": 0 + } + }, + { + "nr": { + "downlinkSetNR": 18, + "uplinkSetNR": 0 + } + } + ] + ], + [ + [ + { + "nr": { + "downlinkSetNR": 4, + "uplinkSetNR": 18 + } + }, + { + "nr": { + "downlinkSetNR": 4, + "uplinkSetNR": 18 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 29, + "uplinkSetNR": 29 + } + }, + { + "nr": { + "downlinkSetNR": 19, + "uplinkSetNR": 16 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 40, + "uplinkSetNR": 0 + } + }, + { + "nr": { + "downlinkSetNR": 38, + "uplinkSetNR": 0 + } + } + ] + ], + [ + [ + { + "nr": { + "downlinkSetNR": 4, + "uplinkSetNR": 18 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 32, + "uplinkSetNR": 29 + } + } + ] + ], + [ + [ + { + "nr": { + "downlinkSetNR": 35, + "uplinkSetNR": 18 + } + }, + { + "nr": { + "downlinkSetNR": 37, + "uplinkSetNR": 18 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 36, + "uplinkSetNR": 0 + } + }, + { + "nr": { + "downlinkSetNR": 31, + "uplinkSetNR": 0 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 19, + "uplinkSetNR": 16 + } + }, + { + "nr": { + "downlinkSetNR": 19, + "uplinkSetNR": 16 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 38, + "uplinkSetNR": 0 + } + }, + { + "nr": { + "downlinkSetNR": 38, + "uplinkSetNR": 0 + } + } + ] + ], + [ + [ + { + "nr": { + "downlinkSetNR": 33, + "uplinkSetNR": 30 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 34, + "uplinkSetNR": 0 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 19, + "uplinkSetNR": 16 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 38, + "uplinkSetNR": 0 + } + } + ] + ], + [ + [ + { + "nr": { + "downlinkSetNR": 35, + "uplinkSetNR": 18 + } + }, + { + "nr": { + "downlinkSetNR": 37, + "uplinkSetNR": 18 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 36, + "uplinkSetNR": 0 + } + }, + { + "nr": { + "downlinkSetNR": 31, + "uplinkSetNR": 0 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 32, + "uplinkSetNR": 29 + } + }, + { + "nr": { + "downlinkSetNR": 32, + "uplinkSetNR": 29 + } + } + ] + ], + [ + [ + { + "nr": { + "downlinkSetNR": 33, + "uplinkSetNR": 30 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 34, + "uplinkSetNR": 0 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 32, + "uplinkSetNR": 29 + } + } + ] + ], + [ + [ + { + "nr": { + "downlinkSetNR": 1, + "uplinkSetNR": 17 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 30, + "uplinkSetNR": 0 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 31, + "uplinkSetNR": 0 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 3, + "uplinkSetNR": 15 + } + } + ] + ], + [ + [ + { + "nr": { + "downlinkSetNR": 1, + "uplinkSetNR": 0 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 28, + "uplinkSetNR": 0 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 20, + "uplinkSetNR": 0 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 19, + "uplinkSetNR": 31 + } + } + ] + ], + [ + [ + { + "nr": { + "downlinkSetNR": 1, + "uplinkSetNR": 17 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 2, + "uplinkSetNR": 0 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 3, + "uplinkSetNR": 15 + } + } + ] + ], + [ + [ + { + "nr": { + "downlinkSetNR": 1, + "uplinkSetNR": 14 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 29, + "uplinkSetNR": 29 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 40, + "uplinkSetNR": 0 + } + } + ] + ], + [ + [ + { + "nr": { + "downlinkSetNR": 4, + "uplinkSetNR": 17 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 3, + "uplinkSetNR": 15 + } + } + ] + ], + [ + [ + { + "nr": { + "downlinkSetNR": 27, + "uplinkSetNR": 0 + } + }, + { + "nr": { + "downlinkSetNR": 35, + "uplinkSetNR": 0 + } + }, + { + "nr": { + "downlinkSetNR": 35, + "uplinkSetNR": 0 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 20, + "uplinkSetNR": 0 + } + }, + { + "nr": { + "downlinkSetNR": 36, + "uplinkSetNR": 0 + } + }, + { + "nr": { + "downlinkSetNR": 36, + "uplinkSetNR": 0 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 39, + "uplinkSetNR": 32 + } + }, + { + "nr": { + "downlinkSetNR": 39, + "uplinkSetNR": 32 + } + }, + { + "nr": { + "downlinkSetNR": 29, + "uplinkSetNR": 31 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 40, + "uplinkSetNR": 0 + } + }, + { + "nr": { + "downlinkSetNR": 40, + "uplinkSetNR": 0 + } + }, + { + "nr": { + "downlinkSetNR": 39, + "uplinkSetNR": 0 + } + } + ] + ], + [ + [ + { + "nr": { + "downlinkSetNR": 1, + "uplinkSetNR": 17 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 2, + "uplinkSetNR": 0 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 19, + "uplinkSetNR": 16 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 38, + "uplinkSetNR": 0 + } + } + ] + ], + [ + [ + { + "nr": { + "downlinkSetNR": 27, + "uplinkSetNR": 0 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 20, + "uplinkSetNR": 0 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 41, + "uplinkSetNR": 31 + } + } + ] + ], + [ + [ + { + "nr": { + "downlinkSetNR": 27, + "uplinkSetNR": 17 + } + }, + { + "nr": { + "downlinkSetNR": 35, + "uplinkSetNR": 17 + } + }, + { + "nr": { + "downlinkSetNR": 37, + "uplinkSetNR": 17 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 20, + "uplinkSetNR": 0 + } + }, + { + "nr": { + "downlinkSetNR": 36, + "uplinkSetNR": 0 + } + }, + { + "nr": { + "downlinkSetNR": 31, + "uplinkSetNR": 0 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 29, + "uplinkSetNR": 29 + } + }, + { + "nr": { + "downlinkSetNR": 3, + "uplinkSetNR": 15 + } + }, + { + "nr": { + "downlinkSetNR": 3, + "uplinkSetNR": 15 + } + } + ] + ], + [ + [ + { + "nr": { + "downlinkSetNR": 33, + "uplinkSetNR": 33 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 34, + "uplinkSetNR": 0 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 3, + "uplinkSetNR": 15 + } + } + ] + ], + [ + [ + { + "nr": { + "downlinkSetNR": 1, + "uplinkSetNR": 17 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 2, + "uplinkSetNR": 0 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 32, + "uplinkSetNR": 29 + } + } + ] + ], + [ + [ + { + "nr": { + "downlinkSetNR": 1, + "uplinkSetNR": 17 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 30, + "uplinkSetNR": 0 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 31, + "uplinkSetNR": 0 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 19, + "uplinkSetNR": 16 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 38, + "uplinkSetNR": 0 + } + } + ] + ], + [ + [ + { + "nr": { + "downlinkSetNR": 1, + "uplinkSetNR": 17 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 30, + "uplinkSetNR": 0 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 31, + "uplinkSetNR": 0 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 32, + "uplinkSetNR": 29 + } + } + ] + ], + [ + [ + { + "nr": { + "downlinkSetNR": 4, + "uplinkSetNR": 17 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 32, + "uplinkSetNR": 29 + } + } + ] + ], + [ + [ + { + "nr": { + "downlinkSetNR": 35, + "uplinkSetNR": 17 + } + }, + { + "nr": { + "downlinkSetNR": 37, + "uplinkSetNR": 17 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 36, + "uplinkSetNR": 0 + } + }, + { + "nr": { + "downlinkSetNR": 31, + "uplinkSetNR": 0 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 19, + "uplinkSetNR": 16 + } + }, + { + "nr": { + "downlinkSetNR": 19, + "uplinkSetNR": 16 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 38, + "uplinkSetNR": 0 + } + }, + { + "nr": { + "downlinkSetNR": 38, + "uplinkSetNR": 0 + } + } + ] + ], + [ + [ + { + "nr": { + "downlinkSetNR": 33, + "uplinkSetNR": 33 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 34, + "uplinkSetNR": 0 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 19, + "uplinkSetNR": 16 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 38, + "uplinkSetNR": 0 + } + } + ] + ], + [ + [ + { + "nr": { + "downlinkSetNR": 35, + "uplinkSetNR": 17 + } + }, + { + "nr": { + "downlinkSetNR": 37, + "uplinkSetNR": 17 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 36, + "uplinkSetNR": 0 + } + }, + { + "nr": { + "downlinkSetNR": 31, + "uplinkSetNR": 0 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 32, + "uplinkSetNR": 29 + } + }, + { + "nr": { + "downlinkSetNR": 32, + "uplinkSetNR": 29 + } + } + ] + ], + [ + [ + { + "nr": { + "downlinkSetNR": 33, + "uplinkSetNR": 33 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 34, + "uplinkSetNR": 0 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 32, + "uplinkSetNR": 29 + } + } + ] + ], + [ + [ + { + "nr": { + "downlinkSetNR": 37, + "uplinkSetNR": 17 + } + }, + { + "nr": { + "downlinkSetNR": 37, + "uplinkSetNR": 17 + } + }, + { + "nr": { + "downlinkSetNR": 4, + "uplinkSetNR": 17 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 39, + "uplinkSetNR": 34 + } + }, + { + "nr": { + "downlinkSetNR": 29, + "uplinkSetNR": 29 + } + }, + { + "nr": { + "downlinkSetNR": 19, + "uplinkSetNR": 16 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 40, + "uplinkSetNR": 0 + } + }, + { + "nr": { + "downlinkSetNR": 39, + "uplinkSetNR": 0 + } + }, + { + "nr": { + "downlinkSetNR": 38, + "uplinkSetNR": 0 + } + } + ] + ], + [ + [ + { + "nr": { + "downlinkSetNR": 40, + "uplinkSetNR": 35 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 29, + "uplinkSetNR": 0 + } + } + ] + ], + [ + [ + { + "nr": { + "downlinkSetNR": 42, + "uplinkSetNR": 36 + } + }, + { + "nr": { + "downlinkSetNR": 28, + "uplinkSetNR": 37 + } + }, + { + "nr": { + "downlinkSetNR": 28, + "uplinkSetNR": 37 + } + }, + { + "nr": { + "downlinkSetNR": 30, + "uplinkSetNR": 38 + } + }, + { + "nr": { + "downlinkSetNR": 20, + "uplinkSetNR": 39 + } + }, + { + "nr": { + "downlinkSetNR": 1, + "uplinkSetNR": 19 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 30, + "uplinkSetNR": 0 + } + }, + { + "nr": { + "downlinkSetNR": 30, + "uplinkSetNR": 0 + } + }, + { + "nr": { + "downlinkSetNR": 1, + "uplinkSetNR": 0 + } + }, + { + "nr": { + "downlinkSetNR": 28, + "uplinkSetNR": 0 + } + }, + { + "nr": { + "downlinkSetNR": 1, + "uplinkSetNR": 0 + } + }, + { + "nr": { + "downlinkSetNR": 42, + "uplinkSetNR": 0 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 28, + "uplinkSetNR": 0 + } + }, + { + "nr": { + "downlinkSetNR": 42, + "uplinkSetNR": 0 + } + }, + { + "nr": { + "downlinkSetNR": 31, + "uplinkSetNR": 0 + } + }, + { + "nr": { + "downlinkSetNR": 42, + "uplinkSetNR": 0 + } + }, + { + "nr": { + "downlinkSetNR": 42, + "uplinkSetNR": 0 + } + }, + { + "nr": { + "downlinkSetNR": 18, + "uplinkSetNR": 0 + } + } + ] + ], + [ + [ + { + "nr": { + "downlinkSetNR": 15, + "uplinkSetNR": 0 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 1, + "uplinkSetNR": 40 + } + } + ] + ], + [ + [ + { + "nr": { + "downlinkSetNR": 18, + "uplinkSetNR": 41 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 43, + "uplinkSetNR": 0 + } + } + ] + ], + [ + [ + { + "nr": { + "downlinkSetNR": 1, + "uplinkSetNR": 19 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 2, + "uplinkSetNR": 0 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 3, + "uplinkSetNR": 0 + } + } + ] + ], + [ + [ + { + "nr": { + "downlinkSetNR": 35, + "uplinkSetNR": 19 + } + }, + { + "nr": { + "downlinkSetNR": 27, + "uplinkSetNR": 19 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 20, + "uplinkSetNR": 0 + } + }, + { + "nr": { + "downlinkSetNR": 18, + "uplinkSetNR": 0 + } + } + ] + ], + [ + [ + { + "nr": { + "downlinkSetNR": 1, + "uplinkSetNR": 19 + } + }, + { + "nr": { + "downlinkSetNR": 1, + "uplinkSetNR": 19 + } + }, + { + "nr": { + "downlinkSetNR": 1, + "uplinkSetNR": 19 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 42, + "uplinkSetNR": 0 + } + }, + { + "nr": { + "downlinkSetNR": 28, + "uplinkSetNR": 0 + } + }, + { + "nr": { + "downlinkSetNR": 30, + "uplinkSetNR": 0 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 20, + "uplinkSetNR": 0 + } + }, + { + "nr": { + "downlinkSetNR": 20, + "uplinkSetNR": 0 + } + }, + { + "nr": { + "downlinkSetNR": 31, + "uplinkSetNR": 0 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 19, + "uplinkSetNR": 0 + } + }, + { + "nr": { + "downlinkSetNR": 29, + "uplinkSetNR": 0 + } + }, + { + "nr": { + "downlinkSetNR": 3, + "uplinkSetNR": 0 + } + } + ] + ], + [ + [ + { + "nr": { + "downlinkSetNR": 15, + "uplinkSetNR": 0 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 1, + "uplinkSetNR": 9 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 1, + "uplinkSetNR": 0 + } + } + ] + ], + [ + [ + { + "nr": { + "downlinkSetNR": 4, + "uplinkSetNR": 19 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 3, + "uplinkSetNR": 0 + } + } + ] + ], + [ + [ + { + "nr": { + "downlinkSetNR": 18, + "uplinkSetNR": 42 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 27, + "uplinkSetNR": 0 + } + } + ] + ], + [ + [ + { + "nr": { + "downlinkSetNR": 35, + "uplinkSetNR": 1 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 36, + "uplinkSetNR": 0 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 40, + "uplinkSetNR": 0 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 39, + "uplinkSetNR": 0 + } + } + ] + ], + [ + [ + { + "nr": { + "downlinkSetNR": 1, + "uplinkSetNR": 19 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 2, + "uplinkSetNR": 0 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 19, + "uplinkSetNR": 0 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 38, + "uplinkSetNR": 0 + } + } + ] + ], + [ + [ + { + "nr": { + "downlinkSetNR": 35, + "uplinkSetNR": 19 + } + }, + { + "nr": { + "downlinkSetNR": 37, + "uplinkSetNR": 19 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 36, + "uplinkSetNR": 0 + } + }, + { + "nr": { + "downlinkSetNR": 31, + "uplinkSetNR": 0 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 3, + "uplinkSetNR": 0 + } + }, + { + "nr": { + "downlinkSetNR": 3, + "uplinkSetNR": 0 + } + } + ] + ], + [ + [ + { + "nr": { + "downlinkSetNR": 27, + "uplinkSetNR": 9 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 20, + "uplinkSetNR": 0 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 29, + "uplinkSetNR": 0 + } + } + ] + ], + [ + [ + { + "nr": { + "downlinkSetNR": 20, + "uplinkSetNR": 39 + } + }, + { + "nr": { + "downlinkSetNR": 33, + "uplinkSetNR": 43 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 35, + "uplinkSetNR": 0 + } + }, + { + "nr": { + "downlinkSetNR": 34, + "uplinkSetNR": 0 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 29, + "uplinkSetNR": 0 + } + }, + { + "nr": { + "downlinkSetNR": 3, + "uplinkSetNR": 0 + } + } + ] + ], + [ + [ + { + "nr": { + "downlinkSetNR": 1, + "uplinkSetNR": 19 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 2, + "uplinkSetNR": 0 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 32, + "uplinkSetNR": 0 + } + } + ] + ], + [ + [ + { + "nr": { + "downlinkSetNR": 1, + "uplinkSetNR": 19 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 30, + "uplinkSetNR": 0 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 31, + "uplinkSetNR": 0 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 19, + "uplinkSetNR": 0 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 38, + "uplinkSetNR": 0 + } + } + ] + ], + [ + [ + { + "nr": { + "downlinkSetNR": 1, + "uplinkSetNR": 45 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 2, + "uplinkSetNR": 0 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 7, + "uplinkSetNR": 46 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 7, + "uplinkSetNR": 0 + } + } + ] + ], + [ + [ + { + "nr": { + "downlinkSetNR": 4, + "uplinkSetNR": 45 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 7, + "uplinkSetNR": 46 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 7, + "uplinkSetNR": 0 + } + } + ] + ], + [ + [ + { + "nr": { + "downlinkSetNR": 1, + "uplinkSetNR": 45 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 5, + "uplinkSetNR": 47 + } + } + ] + ], + [ + [ + { + "nr": { + "downlinkSetNR": 1, + "uplinkSetNR": 45 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 13, + "uplinkSetNR": 47 + } + } + ] + ], + [ + [ + { + "nr": { + "downlinkSetNR": 3, + "uplinkSetNR": 15 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 5, + "uplinkSetNR": 47 + } + } + ] + ], + [ + [ + { + "nr": { + "downlinkSetNR": 3, + "uplinkSetNR": 15 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 0, + "uplinkSetNR": 0 + } + } + ] + ], + [ + [ + { + "nr": { + "downlinkSetNR": 1, + "uplinkSetNR": 45 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 0, + "uplinkSetNR": 0 + } + } + ] + ], + [ + [ + { + "nr": { + "downlinkSetNR": 1, + "uplinkSetNR": 45 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 0, + "uplinkSetNR": 0 + } + } + ] + ], + [ + [ + { + "nr": { + "downlinkSetNR": 1, + "uplinkSetNR": 45 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 2, + "uplinkSetNR": 0 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 0, + "uplinkSetNR": 0 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 0, + "uplinkSetNR": 0 + } + } + ] + ], + [ + [ + { + "nr": { + "downlinkSetNR": 4, + "uplinkSetNR": 45 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 0, + "uplinkSetNR": 0 + } + } + ], + [ + { + "nr": { + "downlinkSetNR": 0, + "uplinkSetNR": 0 + } + } + ] + ] + ], + "nonCriticalExtension": { + "interRAT-Parameters": { + "eutra": { + "supportedBandListEUTRA": [ + 1, + 2, + 3, + 5, + 7, + 8, + 11, + 12, + 13, + 19, + 20, + 21, + 26, + 28, + 39, + 41, + 42, + 46, + 48, + 66, + 71 + ], + "eutra-ParametersCommon": { + "mfbi-EUTRA": "supported" + } + } + }, + "inactiveState": "supported", + "nonCriticalExtension": { + "overheatingInd": "supported", + "nonCriticalExtension": { + "nonCriticalExtension": { + "nrdc-Parameters": { + "measAndMobParametersNRDC": { + "measAndMobParametersMRDC-Common": { + "independentGapConfig": "supported" + } + }, + "generalParametersNRDC": { + "splitDRB-withUL-Both-MCG-SCG": "supported" + } + }, + "receivedFilters": { + "capabilityRequestFilterCommon": { + "mrdc-Request": { + "includeNR-DC": "true" + }, + "codebookTypeRequest-r16": {}, + "uplinkTxSwitchRequest-r16": "true" + } + }, + "nonCriticalExtension": { + "nonCriticalExtension": { + "powSav-Parameters-r16": { + "powSav-ParametersCommon-r16": { + "drx-Preference-r16": "supported", + "maxCC-Preference-r16": "supported", + "releasePreference-r16": "supported" + }, + "powSav-ParametersFRX-Diff-r16": { + "maxBW-Preference-r16": "supported", + "maxMIMO-LayerPreference-r16": "supported" + } + }, + "fr1-Add-UE-NR-Capabilities-v1610": { + "mac-ParametersFRX-Diff-r16": { + "drx-Adaptation-r16": { + "non-SharedSpectrumChAccess-r16": { + "scs-15kHz-r16": "sl3", + "scs-30kHz-r16": "sl6" + } + } + } + }, + "referenceTimeProvision-r16": "supported", + "highSpeedParameters-r16": { + "measurementEnhancement-r16": "supported", + "demodulationEnhancement-r16": "supported" + }, + "ue-BasedPerfMeas-Parameters-r16": { + "loggedMeasurements-r16": "supported" + }, + "son-Parameters-r16": { + "rach-Report-r16": "supported" + }, + "nonCriticalExtension": { + "nonCriticalExtension": { + "nonCriticalExtension": { + "ul-RRC-Segmentation-r16": "supported" + } + } + } + } + } + } + } + } + } + } +} \ No newline at end of file diff --git a/src/test/resources/capabilityInformation/oracle/ueCapNrUlTxSwitchR16.json b/src/test/resources/capabilityInformation/oracle/ueCapNrUlTxSwitchR16.json new file mode 100644 index 00000000..fcf76028 --- /dev/null +++ b/src/test/resources/capabilityInformation/oracle/ueCapNrUlTxSwitchR16.json @@ -0,0 +1,588 @@ +{ + "nrBands": [ + { + "band": 28, + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 1 + }, + "modulationDl": { + "type": "single", + "value": "qam256" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "powerClass": "pc3", + "bandwidths": [ + { + "scs": 15, + "bandwidthsDl": [ + 30, + 25, + 20, + 15, + 10, + 5 + ], + "bandwidthsUl": [ + 30, + 25, + 20, + 15, + 10, + 5 + ] + } + ], + "rateMatchingLteCrs": true + }, + { + "band": 41, + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "powerClass": "pc1dot5", + "bandwidths": [ + { + "scs": 30, + "bandwidthsDl": [ + 100, + 90, + 80, + 70, + 60, + 50, + 40, + 30, + 20, + 10 + ], + "bandwidthsUl": [ + 100, + 90, + 80, + 70, + 60, + 50, + 40, + 30, + 20, + 10 + ] + } + ] + }, + { + "band": 79, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "maxUplinkDutyCycle": 50, + "powerClass": "pc2", + "bandwidths": [ + { + "scs": 30, + "bandwidthsDl": [ + 100, + 80, + 70, + 60, + 50, + 40 + ], + "bandwidthsUl": [ + 100, + 80, + 70, + 60, + 50, + 40 + ] + } + ] + }, + { + "band": 83, + "mimoUl": { + "type": "single", + "value": 1 + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "powerClass": "pc3", + "bandwidths": [ + { + "scs": 15, + "bandwidthsDl": [], + "bandwidthsUl": [ + 30, + 20, + 15, + 10, + 5 + ] + } + ] + } + ], + "nrca": [ + { + "components": [ + { + "band": 41, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 1 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 100 + }, + "maxBwUl": { + "type": "single", + "value": 100 + } + }, + { + "band": 28, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 1 + }, + "modulationDl": { + "type": "single", + "value": "qam256" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "maxScs": 15, + "maxBwDl": { + "type": "single", + "value": 30 + }, + "maxBwUl": { + "type": "single", + "value": 30 + } + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 1, + 4 + ] + } + }, + { + "components": [ + { + "band": 41, + "bwClassDl": "C", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "mixed", + "value": [ + 100, + 90 + ] + }, + "maxBwUl": { + "type": "single", + "value": 100 + } + }, + { + "band": 28, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam256" + }, + "maxScs": 15, + "maxBwDl": { + "type": "single", + "value": 30 + } + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 4 + ] + } + }, + { + "components": [ + { + "band": 41, + "bwClassDl": "C", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "mixed", + "value": [ + 100, + 90 + ] + } + }, + { + "band": 28, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 1 + }, + "modulationDl": { + "type": "single", + "value": "qam256" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "maxScs": 15, + "maxBwDl": { + "type": "single", + "value": 30 + }, + "maxBwUl": { + "type": "single", + "value": 30 + } + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 4 + ] + } + }, + { + "components": [ + { + "band": 41, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 100 + }, + "maxBwUl": { + "type": "single", + "value": 100 + }, + "ulTxSwitch": true + }, + { + "band": 28, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 1 + }, + "modulationDl": { + "type": "single", + "value": "qam256" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "maxScs": 15, + "maxBwDl": { + "type": "single", + "value": 30 + }, + "maxBwUl": { + "type": "single", + "value": 30 + }, + "ulTxSwitch": true + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 1, + 4 + ] + }, + "uplinkTxSwitch": [ + { + "type": "R16", + "option": "SWITCHED_UL" + } + ] + }, + { + "components": [ + { + "band": 83, + "bwClassUl": "A", + "mimoUl": { + "type": "single", + "value": 1 + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "maxScs": 15, + "maxBwUl": { + "type": "single", + "value": 30 + }, + "ulTxSwitch": true + }, + { + "band": 41, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 100 + }, + "maxBwUl": { + "type": "single", + "value": 100 + }, + "ulTxSwitch": true + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 4 + ] + }, + "uplinkTxSwitch": [ + { + "type": "R16", + "option": "SWITCHED_UL" + } + ] + } + ], + "logType": "", + "ueCapFilters": [ + { + "type": "UeCapabilityFilterNr", + "rat": "NR", + "nrBands": [ + { + "band": 41, + "maxCCsDl": 3, + "maxCCsUl": 3 + }, + { + "band": 28, + "maxCCsDl": 2, + "maxCCsUl": 2 + }, + { + "band": 5, + "maxCCsDl": 1, + "maxCCsUl": 1 + }, + { + "band": 8, + "maxCCsDl": 1, + "maxCCsUl": 1 + }, + { + "band": 1, + "maxCCsDl": 1, + "maxCCsUl": 1 + }, + { + "band": 78, + "maxCCsDl": 1, + "maxCCsUl": 1 + }, + { + "band": 77, + "maxCCsDl": 1, + "maxCCsUl": 1 + }, + { + "band": 80, + "maxCCsDl": 1, + "maxCCsUl": 1 + }, + { + "band": 81, + "maxCCsDl": 1, + "maxCCsUl": 1 + }, + { + "band": 82, + "maxCCsDl": 1, + "maxCCsUl": 1 + }, + { + "band": 83, + "maxCCsDl": 1, + "maxCCsUl": 1 + }, + { + "band": 84, + "maxCCsDl": 1, + "maxCCsUl": 1 + }, + { + "band": 86, + "maxCCsDl": 1, + "maxCCsUl": 1 + } + ], + "uplinkTxSwitchRequest": true + } + ], + "ratCapabilities": [ + { + "type": "RatCapabilitiesNr", + "release": 17, + "ueCapSegmentationSupported": true, + "rat": "NR" + } + ], + "metadata": {}, + "id": "", + "parserVersion": "staging", + "timestamp": 0 +} diff --git a/src/test/resources/capabilityInformation/oracle/ueCapNrUlTxSwitchR16_2.json b/src/test/resources/capabilityInformation/oracle/ueCapNrUlTxSwitchR16_2.json new file mode 100644 index 00000000..44556d9b --- /dev/null +++ b/src/test/resources/capabilityInformation/oracle/ueCapNrUlTxSwitchR16_2.json @@ -0,0 +1,12520 @@ +{ + "nrBands": [ + { + "band": 1, + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "maxUplinkDutyCycle": 50, + "powerClass": "pc2", + "bandwidths": [ + { + "scs": 15, + "bandwidthsDl": [ + 50, + 45, + 40, + 30, + 25, + 20, + 15, + 10, + 5 + ], + "bandwidthsUl": [ + 50, + 45, + 40, + 30, + 25, + 20, + 15, + 10, + 5 + ] + } + ], + "rateMatchingLteCrs": true + }, + { + "band": 2, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "maxUplinkDutyCycle": 50, + "powerClass": "pc2", + "bandwidths": [ + { + "scs": 15, + "bandwidthsDl": [ + 40, + 35, + 30, + 25, + 20, + 15, + 10, + 5 + ], + "bandwidthsUl": [ + 40, + 35, + 30, + 25, + 20, + 15, + 10, + 5 + ] + } + ], + "rateMatchingLteCrs": true + }, + { + "band": 3, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "maxUplinkDutyCycle": 50, + "powerClass": "pc2", + "bandwidths": [ + { + "scs": 15, + "bandwidthsDl": [ + 50, + 45, + 40, + 35, + 30, + 25, + 20, + 15, + 10, + 5 + ], + "bandwidthsUl": [ + 50, + 45, + 40, + 35, + 30, + 25, + 20, + 15, + 10, + 5 + ] + } + ], + "rateMatchingLteCrs": true + }, + { + "band": 5, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "maxUplinkDutyCycle": 50, + "powerClass": "pc2", + "bandwidths": [ + { + "scs": 15, + "bandwidthsDl": [ + 25, + 20, + 15, + 10, + 5 + ], + "bandwidthsUl": [ + 20, + 15, + 10, + 5 + ] + } + ], + "rateMatchingLteCrs": true + }, + { + "band": 7, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "maxUplinkDutyCycle": 50, + "powerClass": "pc2", + "bandwidths": [ + { + "scs": 15, + "bandwidthsDl": [ + 50, + 40, + 35, + 30, + 25, + 20, + 15, + 10, + 5 + ], + "bandwidthsUl": [ + 50, + 40, + 35, + 30, + 25, + 20, + 15, + 10, + 5 + ] + } + ], + "rateMatchingLteCrs": true + }, + { + "band": 8, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "powerClass": "pc3", + "bandwidths": [ + { + "scs": 15, + "bandwidthsDl": [ + 35, + 25, + 20, + 15, + 10, + 5 + ], + "bandwidthsUl": [ + 20, + 15, + 10, + 5 + ] + } + ], + "rateMatchingLteCrs": true + }, + { + "band": 12, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "powerClass": "pc3", + "bandwidths": [ + { + "scs": 15, + "bandwidthsDl": [ + 15, + 10, + 5 + ], + "bandwidthsUl": [ + 15, + 10, + 5 + ] + } + ], + "rateMatchingLteCrs": true + }, + { + "band": 20, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "powerClass": "pc3", + "bandwidths": [ + { + "scs": 15, + "bandwidthsDl": [ + 20, + 15, + 10, + 5 + ], + "bandwidthsUl": [ + 20, + 15, + 10, + 5 + ] + } + ], + "rateMatchingLteCrs": true + }, + { + "band": 25, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "maxUplinkDutyCycle": 50, + "powerClass": "pc2", + "bandwidths": [ + { + "scs": 15, + "bandwidthsDl": [ + 45, + 40, + 35, + 30, + 25, + 20, + 15, + 10, + 5 + ], + "bandwidthsUl": [ + 40, + 35, + 30, + 25, + 20, + 15, + 10, + 5 + ] + } + ], + "rateMatchingLteCrs": true + }, + { + "band": 26, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "powerClass": "pc3", + "bandwidths": [ + { + "scs": 15, + "bandwidthsDl": [ + 30, + 25, + 20, + 15, + 10, + 5 + ], + "bandwidthsUl": [ + 20, + 15, + 10, + 5 + ] + } + ], + "rateMatchingLteCrs": true + }, + { + "band": 28, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "maxUplinkDutyCycle": 50, + "powerClass": "pc2", + "bandwidths": [ + { + "scs": 15, + "bandwidthsDl": [ + 30, + 25, + 20, + 15, + 10, + 5 + ], + "bandwidthsUl": [ + 30, + 25, + 20, + 15, + 10, + 5 + ] + } + ], + "rateMatchingLteCrs": true + }, + { + "band": 30, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "powerClass": "pc3", + "bandwidths": [ + { + "scs": 15, + "bandwidthsDl": [ + 10, + 5 + ], + "bandwidthsUl": [ + 10, + 5 + ] + } + ], + "rateMatchingLteCrs": true + }, + { + "band": 40, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "powerClass": "pc1dot5", + "bandwidths": [ + { + "scs": 30, + "bandwidthsDl": [ + 100, + 80, + 70, + 60, + 50, + 40, + 30, + 25, + 20, + 15, + 10 + ], + "bandwidthsUl": [ + 100, + 80, + 70, + 60, + 50, + 40, + 30, + 25, + 20, + 15, + 10 + ] + } + ] + }, + { + "band": 41, + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "powerClass": "pc1dot5", + "bandwidths": [ + { + "scs": 30, + "bandwidthsDl": [ + 100, + 90, + 80, + 70, + 60, + 50, + 45, + 40, + 35, + 30, + 25, + 20, + 15, + 10, + 5 + ], + "bandwidthsUl": [ + 100, + 90, + 80, + 70, + 60, + 50, + 45, + 40, + 35, + 30, + 25, + 20, + 15, + 10, + 5 + ] + } + ] + }, + { + "band": 48, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "powerClass": "pc3", + "bandwidths": [ + { + "scs": 30, + "bandwidthsDl": [ + 100, + 80, + 70, + 60, + 50, + 40, + 30, + 20, + 15, + 10 + ], + "bandwidthsUl": [ + 100, + 40, + 30, + 20, + 15, + 10 + ] + } + ] + }, + { + "band": 66, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "maxUplinkDutyCycle": 50, + "powerClass": "pc2", + "bandwidths": [ + { + "scs": 15, + "bandwidthsDl": [ + 45, + 40, + 35, + 30, + 25, + 20, + 15, + 10, + 5 + ], + "bandwidthsUl": [ + 45, + 40, + 35, + 30, + 25, + 20, + 15, + 10, + 5 + ] + } + ], + "rateMatchingLteCrs": true + }, + { + "band": 70, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "powerClass": "pc3", + "bandwidths": [ + { + "scs": 15, + "bandwidthsDl": [ + 25, + 20, + 15 + ], + "bandwidthsUl": [ + 15, + 10, + 5 + ] + } + ], + "rateMatchingLteCrs": true + }, + { + "band": 71, + "mimoDl": { + "type": "single", + "value": 2 + }, + "mimoUl": { + "type": "single", + "value": 1 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "powerClass": "pc3", + "bandwidths": [ + { + "scs": 15, + "bandwidthsDl": [ + 35, + 30, + 25, + 20, + 15, + 10, + 5 + ], + "bandwidthsUl": [ + 35, + 30, + 25, + 20, + 15, + 10, + 5 + ] + } + ], + "rateMatchingLteCrs": true + }, + { + "band": 75, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "bandwidths": [ + { + "scs": 15, + "bandwidthsDl": [ + 50, + 40, + 30, + 25, + 20, + 15, + 10, + 5 + ], + "bandwidthsUl": [] + } + ] + }, + { + "band": 77, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "powerClass": "pc1dot5", + "bandwidths": [ + { + "scs": 30, + "bandwidthsDl": [ + 100, + 80, + 70, + 60, + 50, + 40, + 30, + 25, + 20, + 15, + 10 + ], + "bandwidthsUl": [ + 100, + 80, + 70, + 60, + 50, + 40, + 30, + 25, + 20, + 15, + 10 + ] + } + ] + }, + { + "band": 78, + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "powerClass": "pc1dot5", + "bandwidths": [ + { + "scs": 30, + "bandwidthsDl": [ + 100, + 90, + 80, + 70, + 60, + 50, + 40, + 30, + 25, + 20, + 15, + 10 + ], + "bandwidthsUl": [ + 100, + 90, + 80, + 70, + 60, + 50, + 40, + 30, + 25, + 20, + 15, + 10 + ] + } + ] + }, + { + "band": 79, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "powerClass": "pc1dot5", + "bandwidths": [ + { + "scs": 30, + "bandwidthsDl": [ + 100, + 80, + 70, + 60, + 50, + 40, + 30, + 20, + 10 + ], + "bandwidthsUl": [ + 100, + 80, + 70, + 60, + 50, + 40, + 30, + 20, + 10 + ] + } + ] + }, + { + "band": 80, + "mimoUl": { + "type": "single", + "value": 1 + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "powerClass": "pc3", + "bandwidths": [ + { + "scs": 15, + "bandwidthsDl": [], + "bandwidthsUl": [ + 40, + 30, + 25, + 20, + 15, + 10, + 5 + ] + } + ] + }, + { + "band": 81, + "mimoUl": { + "type": "single", + "value": 1 + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "powerClass": "pc3", + "bandwidths": [ + { + "scs": 15, + "bandwidthsDl": [], + "bandwidthsUl": [ + 20, + 15, + 10, + 5 + ] + } + ] + }, + { + "band": 83, + "mimoUl": { + "type": "single", + "value": 1 + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "powerClass": "pc3", + "bandwidths": [ + { + "scs": 15, + "bandwidthsDl": [], + "bandwidthsUl": [ + 30, + 25, + 20, + 15, + 10, + 5 + ] + } + ] + }, + { + "band": 84, + "mimoUl": { + "type": "single", + "value": 1 + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "powerClass": "pc3", + "bandwidths": [ + { + "scs": 15, + "bandwidthsDl": [], + "bandwidthsUl": [ + 50, + 40, + 30, + 25, + 20, + 15, + 10, + 5 + ] + } + ] + }, + { + "band": 89, + "mimoUl": { + "type": "single", + "value": 1 + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "powerClass": "pc3", + "bandwidths": [ + { + "scs": 15, + "bandwidthsDl": [], + "bandwidthsUl": [ + 20, + 15, + 10, + 5 + ] + } + ] + }, + { + "band": 257, + "modulationDl": { + "type": "single", + "value": "qam256" + }, + "modulationUl": { + "type": "single", + "value": "qam64" + }, + "powerClass": "pc3", + "bandwidths": [ + { + "scs": 120, + "bandwidthsDl": [ + 200, + 100, + 50 + ], + "bandwidthsUl": [ + 200, + 100, + 50 + ] + } + ] + }, + { + "band": 258, + "modulationDl": { + "type": "single", + "value": "qam256" + }, + "modulationUl": { + "type": "single", + "value": "qam64" + }, + "powerClass": "pc3", + "bandwidths": [ + { + "scs": 120, + "bandwidthsDl": [ + 200, + 100, + 50 + ], + "bandwidthsUl": [ + 200, + 100, + 50 + ] + } + ] + }, + { + "band": 260, + "modulationDl": { + "type": "single", + "value": "qam256" + }, + "modulationUl": { + "type": "single", + "value": "qam64" + }, + "powerClass": "pc3", + "bandwidths": [ + { + "scs": 120, + "bandwidthsDl": [ + 200, + 100, + 50 + ], + "bandwidthsUl": [ + 200, + 100, + 50 + ] + } + ] + }, + { + "band": 261, + "mimoDl": { + "type": "single", + "value": 2 + }, + "mimoUl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam256" + }, + "modulationUl": { + "type": "single", + "value": "qam64" + }, + "powerClass": "pc3", + "bandwidths": [ + { + "scs": 120, + "bandwidthsDl": [ + 200, + 100, + 50 + ], + "bandwidthsUl": [ + 200, + 100, + 50 + ] + } + ] + } + ], + "nrca": [ + { + "components": [ + { + "band": 1, + "bwClassDl": "B", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "maxScs": 15, + "maxBwDl": { + "type": "single", + "value": 20 + }, + "maxBwUl": { + "type": "single", + "value": 20 + } + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 4 + ] + } + }, + { + "components": [ + { + "band": 41, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 1 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 100 + }, + "maxBwUl": { + "type": "single", + "value": 100 + } + }, + { + "band": 1, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 1 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "maxScs": 15, + "maxBwDl": { + "type": "single", + "value": 50 + }, + "maxBwUl": { + "type": "single", + "value": 50 + } + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 1, + 4 + ] + } + }, + { + "components": [ + { + "band": 78, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 100 + } + }, + { + "band": 41, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 1 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 100 + }, + "maxBwUl": { + "type": "single", + "value": 100 + } + }, + { + "band": 1, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 1 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "maxScs": 15, + "maxBwDl": { + "type": "single", + "value": 50 + }, + "maxBwUl": { + "type": "single", + "value": 50 + } + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 4 + ] + } + }, + { + "components": [ + { + "band": 78, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 1 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 100 + }, + "maxBwUl": { + "type": "single", + "value": 100 + } + }, + { + "band": 41, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 100 + } + }, + { + "band": 1, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 1 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "maxScs": 15, + "maxBwDl": { + "type": "single", + "value": 50 + }, + "maxBwUl": { + "type": "single", + "value": 50 + } + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 4 + ] + } + }, + { + "components": [ + { + "band": 78, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 100 + } + }, + { + "band": 41, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 100 + } + }, + { + "band": 1, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "maxScs": 15, + "maxBwDl": { + "type": "single", + "value": 50 + }, + "maxBwUl": { + "type": "single", + "value": 50 + } + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 4 + ] + } + }, + { + "components": [ + { + "band": 78, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 1 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 100 + }, + "maxBwUl": { + "type": "single", + "value": 100 + } + }, + { + "band": 1, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 1 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "maxScs": 15, + "maxBwDl": { + "type": "single", + "value": 50 + }, + "maxBwUl": { + "type": "single", + "value": 50 + } + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 1, + 2, + 3, + 4 + ] + } + }, + { + "components": [ + { + "band": 78, + "bwClassDl": "C", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 1 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 100 + }, + "maxBwUl": { + "type": "single", + "value": 100 + } + }, + { + "band": 1, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 1 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "maxScs": 15, + "maxBwDl": { + "type": "single", + "value": 50 + }, + "maxBwUl": { + "type": "single", + "value": 50 + } + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 1, + 2, + 4 + ] + } + }, + { + "components": [ + { + "band": 78, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 1 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 100 + }, + "maxBwUl": { + "type": "single", + "value": 100 + } + }, + { + "band": 78, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 100 + } + }, + { + "band": 1, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 1 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "maxScs": 15, + "maxBwDl": { + "type": "single", + "value": 50 + }, + "maxBwUl": { + "type": "single", + "value": 50 + } + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 1, + 2, + 4 + ] + } + }, + { + "components": [ + { + "band": 78, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 1 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 100 + }, + "maxBwUl": { + "type": "single", + "value": 100 + } + }, + { + "band": 1, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 1 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "maxScs": 15, + "maxBwDl": { + "type": "single", + "value": 50 + }, + "maxBwUl": { + "type": "single", + "value": 50 + } + }, + { + "band": 1, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "maxScs": 15, + "maxBwDl": { + "type": "single", + "value": 10 + } + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 4 + ] + } + }, + { + "components": [ + { + "band": 78, + "bwClassDl": "C", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 100 + } + }, + { + "band": 1, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 1 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "maxScs": 15, + "maxBwDl": { + "type": "single", + "value": 50 + }, + "maxBwUl": { + "type": "single", + "value": 50 + } + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 1, + 2, + 4 + ] + } + }, + { + "components": [ + { + "band": 78, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 100 + } + }, + { + "band": 1, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "maxScs": 15, + "maxBwDl": { + "type": "single", + "value": 50 + }, + "maxBwUl": { + "type": "single", + "value": 50 + } + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 1, + 2, + 3, + 4 + ] + } + }, + { + "components": [ + { + "band": 78, + "bwClassDl": "C", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 100 + } + }, + { + "band": 1, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "maxScs": 15, + "maxBwDl": { + "type": "single", + "value": 50 + }, + "maxBwUl": { + "type": "single", + "value": 50 + } + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 1, + 2, + 4 + ] + } + }, + { + "components": [ + { + "band": 78, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 100 + } + }, + { + "band": 1, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "maxScs": 15, + "maxBwDl": { + "type": "single", + "value": 50 + }, + "maxBwUl": { + "type": "single", + "value": 50 + } + }, + { + "band": 1, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "maxScs": 15, + "maxBwDl": { + "type": "single", + "value": 10 + } + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 4 + ] + } + }, + { + "components": [ + { + "band": 78, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 100 + } + }, + { + "band": 78, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 100 + } + }, + { + "band": 1, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "maxScs": 15, + "maxBwDl": { + "type": "single", + "value": 50 + }, + "maxBwUl": { + "type": "single", + "value": 50 + } + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 1, + 2, + 4 + ] + } + }, + { + "components": [ + { + "band": 78, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 100 + } + }, + { + "band": 78, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 100 + } + }, + { + "band": 1, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 1 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "maxScs": 15, + "maxBwDl": { + "type": "single", + "value": 50 + }, + "maxBwUl": { + "type": "single", + "value": 50 + } + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 1, + 2, + 4 + ] + } + }, + { + "components": [ + { + "band": 1, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 1 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "maxScs": 15, + "maxBwDl": { + "type": "single", + "value": 30 + }, + "maxBwUl": { + "type": "single", + "value": 30 + } + }, + { + "band": 1, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "maxScs": 15, + "maxBwDl": { + "type": "single", + "value": 20 + } + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 4 + ] + } + }, + { + "components": [ + { + "band": 41, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 100 + }, + "maxBwUl": { + "type": "single", + "value": 100 + } + }, + { + "band": 1, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "maxScs": 15, + "maxBwDl": { + "type": "single", + "value": 50 + } + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 1, + 4 + ] + } + }, + { + "components": [ + { + "band": 78, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 100 + } + }, + { + "band": 41, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 100 + }, + "maxBwUl": { + "type": "single", + "value": 100 + } + }, + { + "band": 1, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "maxScs": 15, + "maxBwDl": { + "type": "single", + "value": 50 + } + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 4 + ] + } + }, + { + "components": [ + { + "band": 78, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 100 + }, + "maxBwUl": { + "type": "single", + "value": 100 + } + }, + { + "band": 41, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 100 + } + }, + { + "band": 1, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "maxScs": 15, + "maxBwDl": { + "type": "single", + "value": 50 + } + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 4 + ] + } + }, + { + "components": [ + { + "band": 78, + "bwClassDl": "C", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 100 + }, + "maxBwUl": { + "type": "single", + "value": 100 + } + }, + { + "band": 1, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "maxScs": 15, + "maxBwDl": { + "type": "single", + "value": 50 + } + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 1, + 2, + 4 + ] + } + }, + { + "components": [ + { + "band": 78, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 100 + }, + "maxBwUl": { + "type": "single", + "value": 100 + } + }, + { + "band": 1, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "maxScs": 15, + "maxBwDl": { + "type": "single", + "value": 50 + } + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 1, + 2, + 3, + 4 + ] + } + }, + { + "components": [ + { + "band": 78, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 100 + }, + "maxBwUl": { + "type": "single", + "value": 100 + } + }, + { + "band": 1, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "maxScs": 15, + "maxBwDl": { + "type": "single", + "value": 50 + } + }, + { + "band": 1, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "maxScs": 15, + "maxBwDl": { + "type": "single", + "value": 10 + } + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 4 + ] + } + }, + { + "components": [ + { + "band": 78, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 100 + }, + "maxBwUl": { + "type": "single", + "value": 100 + } + }, + { + "band": 78, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 100 + } + }, + { + "band": 1, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "maxScs": 15, + "maxBwDl": { + "type": "single", + "value": 50 + } + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 1, + 2, + 4 + ] + } + }, + { + "components": [ + { + "band": 71, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 2 + }, + "mimoUl": { + "type": "single", + "value": 1 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "maxScs": 15, + "maxBwDl": { + "type": "single", + "value": 35 + }, + "maxBwUl": { + "type": "single", + "value": 35 + } + }, + { + "band": 41, + "bwClassDl": "C", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 1 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "mixed", + "value": [ + 100, + 90 + ] + }, + "maxBwUl": { + "type": "single", + "value": 100 + } + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 1, + 4 + ] + } + }, + { + "components": [ + { + "band": 71, + "bwClassDl": "B", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 2 + }, + "mimoUl": { + "type": "single", + "value": 1 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "maxScs": 15, + "maxBwDl": { + "type": "mixed", + "value": [ + 20, + 15 + ] + }, + "maxBwUl": { + "type": "single", + "value": 20 + } + }, + { + "band": 41, + "bwClassDl": "C", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 1 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "mixed", + "value": [ + 100, + 90 + ] + }, + "maxBwUl": { + "type": "single", + "value": 100 + } + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 1, + 4 + ] + } + }, + { + "components": [ + { + "band": 78, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 100 + } + }, + { + "band": 78, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 30 + } + }, + { + "band": 71, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 2 + }, + "mimoUl": { + "type": "single", + "value": 1 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "maxScs": 15, + "maxBwDl": { + "type": "single", + "value": 35 + }, + "maxBwUl": { + "type": "single", + "value": 35 + } + }, + { + "band": 41, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 1 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 100 + }, + "maxBwUl": { + "type": "single", + "value": 100 + } + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 4 + ] + } + }, + { + "components": [ + { + "band": 78, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 100 + } + }, + { + "band": 78, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 40 + } + }, + { + "band": 71, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 2 + }, + "mimoUl": { + "type": "single", + "value": 1 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "maxScs": 15, + "maxBwDl": { + "type": "single", + "value": 30 + }, + "maxBwUl": { + "type": "single", + "value": 30 + } + }, + { + "band": 41, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 1 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 100 + }, + "maxBwUl": { + "type": "single", + "value": 100 + } + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 4 + ] + } + }, + { + "components": [ + { + "band": 71, + "bwClassDl": "B", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 2 + }, + "mimoUl": { + "type": "single", + "value": 1 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "maxScs": 15, + "maxBwDl": { + "type": "mixed", + "value": [ + 20, + 15 + ] + }, + "maxBwUl": { + "type": "single", + "value": 20 + } + }, + { + "band": 41, + "bwClassDl": "C", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "mixed", + "value": [ + 100, + 20 + ] + } + }, + { + "band": 41, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 1 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 70 + }, + "maxBwUl": { + "type": "single", + "value": 70 + } + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 4 + ] + } + }, + { + "components": [ + { + "band": 71, + "bwClassDl": "B", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 2 + }, + "mimoUl": { + "type": "single", + "value": 1 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "maxScs": 15, + "maxBwDl": { + "type": "mixed", + "value": [ + 20, + 15 + ] + }, + "maxBwUl": { + "type": "single", + "value": 20 + } + }, + { + "band": 41, + "bwClassDl": "C", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 1 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "mixed", + "value": [ + 100, + 60 + ] + }, + "maxBwUl": { + "type": "single", + "value": 100 + } + }, + { + "band": 41, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 20 + } + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 4 + ] + } + }, + { + "components": [ + { + "band": 71, + "bwClassDl": "B", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 2 + }, + "mimoUl": { + "type": "single", + "value": 1 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "maxScs": 15, + "maxBwDl": { + "type": "mixed", + "value": [ + 20, + 15 + ] + }, + "maxBwUl": { + "type": "single", + "value": 20 + } + }, + { + "band": 41, + "bwClassDl": "C", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 1 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "mixed", + "value": [ + 100, + 80 + ] + }, + "maxBwUl": { + "type": "single", + "value": 100 + } + }, + { + "band": 41, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 10 + } + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 4 + ] + } + }, + { + "components": [ + { + "band": 71, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 2 + }, + "mimoUl": { + "type": "single", + "value": 1 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "maxScs": 15, + "maxBwDl": { + "type": "single", + "value": 30 + }, + "maxBwUl": { + "type": "single", + "value": 30 + } + }, + { + "band": 71, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "maxScs": 15, + "maxBwDl": { + "type": "single", + "value": 5 + } + }, + { + "band": 41, + "bwClassDl": "C", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 1 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "mixed", + "value": [ + 100, + 60 + ] + }, + "maxBwUl": { + "type": "single", + "value": 100 + } + }, + { + "band": 41, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 20 + } + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 4 + ] + } + }, + { + "components": [ + { + "band": 71, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 2 + }, + "mimoUl": { + "type": "single", + "value": 1 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "maxScs": 15, + "maxBwDl": { + "type": "single", + "value": 30 + }, + "maxBwUl": { + "type": "single", + "value": 30 + } + }, + { + "band": 71, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "maxScs": 15, + "maxBwDl": { + "type": "single", + "value": 5 + } + }, + { + "band": 41, + "bwClassDl": "C", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 1 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "mixed", + "value": [ + 100, + 80 + ] + }, + "maxBwUl": { + "type": "single", + "value": 100 + } + }, + { + "band": 41, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 10 + } + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 4 + ] + } + }, + { + "components": [ + { + "band": 71, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 2 + }, + "mimoUl": { + "type": "single", + "value": 1 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "maxScs": 15, + "maxBwDl": { + "type": "single", + "value": 30 + }, + "maxBwUl": { + "type": "single", + "value": 30 + } + }, + { + "band": 71, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "maxScs": 15, + "maxBwDl": { + "type": "single", + "value": 5 + } + }, + { + "band": 41, + "bwClassDl": "C", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "mixed", + "value": [ + 100, + 20 + ] + } + }, + { + "band": 41, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 1 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 70 + }, + "maxBwUl": { + "type": "single", + "value": 70 + } + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 4 + ] + } + }, + { + "components": [ + { + "band": 71, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 2 + }, + "mimoUl": { + "type": "single", + "value": 1 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "maxScs": 15, + "maxBwDl": { + "type": "single", + "value": 20 + }, + "maxBwUl": { + "type": "single", + "value": 20 + } + }, + { + "band": 71, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "maxScs": 15, + "maxBwDl": { + "type": "single", + "value": 10 + } + }, + { + "band": 41, + "bwClassDl": "C", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 1 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "mixed", + "value": [ + 100, + 50 + ] + }, + "maxBwUl": { + "type": "single", + "value": 100 + } + }, + { + "band": 41, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 30 + } + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 4 + ] + } + }, + { + "components": [ + { + "band": 71, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 2 + }, + "mimoUl": { + "type": "single", + "value": 1 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "maxScs": 15, + "maxBwDl": { + "type": "single", + "value": 20 + }, + "maxBwUl": { + "type": "single", + "value": 20 + } + }, + { + "band": 71, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "maxScs": 15, + "maxBwDl": { + "type": "single", + "value": 10 + } + }, + { + "band": 41, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 1 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 100 + }, + "maxBwUl": { + "type": "single", + "value": 100 + } + }, + { + "band": 41, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 90 + } + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 4 + ] + } + }, + { + "components": [ + { + "band": 71, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 2 + }, + "mimoUl": { + "type": "single", + "value": 1 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "maxScs": 15, + "maxBwDl": { + "type": "single", + "value": 30 + }, + "maxBwUl": { + "type": "single", + "value": 30 + } + }, + { + "band": 71, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "maxScs": 15, + "maxBwDl": { + "type": "single", + "value": 5 + } + }, + { + "band": 41, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 1 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 100 + }, + "maxBwUl": { + "type": "single", + "value": 100 + } + }, + { + "band": 41, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 80 + } + }, + { + "band": 41, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 10 + } + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 4 + ] + } + }, + { + "components": [ + { + "band": 71, + "bwClassDl": "B", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 2 + }, + "mimoUl": { + "type": "single", + "value": 1 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "maxScs": 15, + "maxBwDl": { + "type": "mixed", + "value": [ + 20, + 15 + ] + }, + "maxBwUl": { + "type": "single", + "value": 20 + } + }, + { + "band": 41, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 1 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 100 + }, + "maxBwUl": { + "type": "single", + "value": 100 + } + }, + { + "band": 41, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 80 + } + }, + { + "band": 41, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 10 + } + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 4 + ] + } + }, + { + "components": [ + { + "band": 71, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 2 + }, + "mimoUl": { + "type": "single", + "value": 1 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "maxScs": 15, + "maxBwDl": { + "type": "single", + "value": 20 + }, + "maxBwUl": { + "type": "single", + "value": 20 + } + }, + { + "band": 71, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "maxScs": 15, + "maxBwDl": { + "type": "single", + "value": 15 + } + }, + { + "band": 41, + "bwClassDl": "C", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 1 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "mixed", + "value": [ + 100, + 90 + ] + }, + "maxBwUl": { + "type": "single", + "value": 100 + } + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 4 + ] + } + }, + { + "components": [ + { + "band": 71, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 2 + }, + "mimoUl": { + "type": "single", + "value": 1 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "maxScs": 15, + "maxBwDl": { + "type": "single", + "value": 30 + }, + "maxBwUl": { + "type": "single", + "value": 30 + } + }, + { + "band": 71, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "maxScs": 15, + "maxBwDl": { + "type": "single", + "value": 5 + } + }, + { + "band": 41, + "bwClassDl": "C", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 1 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "mixed", + "value": [ + 100, + 90 + ] + }, + "maxBwUl": { + "type": "single", + "value": 100 + } + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 4 + ] + } + }, + { + "components": [ + { + "band": 71, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 2 + }, + "mimoUl": { + "type": "single", + "value": 1 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "maxScs": 15, + "maxBwDl": { + "type": "single", + "value": 35 + }, + "maxBwUl": { + "type": "single", + "value": 35 + } + }, + { + "band": 41, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 1 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 100 + }, + "maxBwUl": { + "type": "single", + "value": 100 + } + }, + { + "band": 41, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 90 + } + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 1, + 4 + ] + } + }, + { + "components": [ + { + "band": 71, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 2 + }, + "mimoUl": { + "type": "single", + "value": 1 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "maxScs": 15, + "maxBwDl": { + "type": "single", + "value": 35 + }, + "maxBwUl": { + "type": "single", + "value": 35 + } + }, + { + "band": 41, + "bwClassDl": "C", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 1 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "mixed", + "value": [ + 100, + 50 + ] + }, + "maxBwUl": { + "type": "single", + "value": 100 + } + }, + { + "band": 41, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 30 + } + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 4 + ] + } + }, + { + "components": [ + { + "band": 71, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 2 + }, + "mimoUl": { + "type": "single", + "value": 1 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "maxScs": 15, + "maxBwDl": { + "type": "single", + "value": 20 + }, + "maxBwUl": { + "type": "single", + "value": 20 + } + }, + { + "band": 41, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 1 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 100 + }, + "maxBwUl": { + "type": "single", + "value": 100 + } + }, + { + "band": 41, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 60 + } + }, + { + "band": 41, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 30 + } + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 4 + ] + } + }, + { + "components": [ + { + "band": 71, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 2 + }, + "mimoUl": { + "type": "single", + "value": 1 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "maxScs": 15, + "maxBwDl": { + "type": "single", + "value": 35 + }, + "maxBwUl": { + "type": "single", + "value": 35 + } + }, + { + "band": 41, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 1 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 100 + }, + "maxBwUl": { + "type": "single", + "value": 100 + } + }, + { + "band": 41, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 80 + } + }, + { + "band": 41, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 10 + } + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 4 + ] + } + }, + { + "components": [ + { + "band": 71, + "bwClassDl": "B", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 2 + }, + "mimoUl": { + "type": "single", + "value": 1 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "maxScs": 15, + "maxBwDl": { + "type": "mixed", + "value": [ + 20, + 15 + ] + }, + "maxBwUl": { + "type": "single", + "value": 20 + } + }, + { + "band": 41, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 1 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 100 + }, + "maxBwUl": { + "type": "single", + "value": 100 + } + }, + { + "band": 41, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 90 + } + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 1, + 4 + ] + } + }, + { + "components": [ + { + "band": 71, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 2 + }, + "mimoUl": { + "type": "single", + "value": 1 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "maxScs": 15, + "maxBwDl": { + "type": "single", + "value": 35 + }, + "maxBwUl": { + "type": "single", + "value": 35 + } + }, + { + "band": 41, + "bwClassDl": "C", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "mixed", + "value": [ + 100, + 20 + ] + } + }, + { + "band": 41, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 1 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 70 + }, + "maxBwUl": { + "type": "single", + "value": 70 + } + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 4 + ] + } + }, + { + "components": [ + { + "band": 71, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 2 + }, + "mimoUl": { + "type": "single", + "value": 1 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "maxScs": 15, + "maxBwDl": { + "type": "single", + "value": 20 + }, + "maxBwUl": { + "type": "single", + "value": 20 + } + }, + { + "band": 41, + "bwClassDl": "C", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 1 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "mixed", + "value": [ + 100, + 50 + ] + }, + "maxBwUl": { + "type": "single", + "value": 100 + } + }, + { + "band": 41, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 30 + } + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 4 + ] + } + }, + { + "components": [ + { + "band": 71, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 2 + }, + "mimoUl": { + "type": "single", + "value": 1 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "maxScs": 15, + "maxBwDl": { + "type": "single", + "value": 35 + }, + "maxBwUl": { + "type": "single", + "value": 35 + } + }, + { + "band": 41, + "bwClassDl": "C", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 1 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "mixed", + "value": [ + 100, + 60 + ] + }, + "maxBwUl": { + "type": "single", + "value": 100 + } + }, + { + "band": 41, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 20 + } + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 4 + ] + } + }, + { + "components": [ + { + "band": 71, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 2 + }, + "mimoUl": { + "type": "single", + "value": 1 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "maxScs": 15, + "maxBwDl": { + "type": "single", + "value": 35 + }, + "maxBwUl": { + "type": "single", + "value": 35 + } + }, + { + "band": 41, + "bwClassDl": "C", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 1 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "mixed", + "value": [ + 100, + 80 + ] + }, + "maxBwUl": { + "type": "single", + "value": 100 + } + }, + { + "band": 41, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 10 + } + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 4 + ] + } + }, + { + "components": [ + { + "band": 71, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 2 + }, + "mimoUl": { + "type": "single", + "value": 1 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "maxScs": 15, + "maxBwDl": { + "type": "single", + "value": 30 + }, + "maxBwUl": { + "type": "single", + "value": 30 + } + }, + { + "band": 71, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "maxScs": 15, + "maxBwDl": { + "type": "single", + "value": 5 + } + }, + { + "band": 41, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 1 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 100 + }, + "maxBwUl": { + "type": "single", + "value": 100 + } + }, + { + "band": 41, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 90 + } + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 4 + ] + } + }, + { + "components": [ + { + "band": 78, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 1 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 100 + }, + "maxBwUl": { + "type": "single", + "value": 100 + } + }, + { + "band": 71, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 2 + }, + "mimoUl": { + "type": "single", + "value": 1 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "maxScs": 15, + "maxBwDl": { + "type": "single", + "value": 35 + }, + "maxBwUl": { + "type": "single", + "value": 35 + } + }, + { + "band": 41, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 100 + } + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 4 + ] + } + }, + { + "components": [ + { + "band": 78, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 1 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 100 + }, + "maxBwUl": { + "type": "single", + "value": 100 + } + }, + { + "band": 78, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 100 + } + }, + { + "band": 71, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 2 + }, + "mimoUl": { + "type": "single", + "value": 1 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "maxScs": 15, + "maxBwDl": { + "type": "single", + "value": 30 + }, + "maxBwUl": { + "type": "single", + "value": 30 + } + }, + { + "band": 41, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 40 + } + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 4 + ] + } + }, + { + "components": [ + { + "band": 78, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 1 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 100 + }, + "maxBwUl": { + "type": "single", + "value": 100 + } + }, + { + "band": 78, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 100 + } + }, + { + "band": 71, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 2 + }, + "mimoUl": { + "type": "single", + "value": 1 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "maxScs": 15, + "maxBwDl": { + "type": "single", + "value": 35 + }, + "maxBwUl": { + "type": "single", + "value": 35 + } + }, + { + "band": 41, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 30 + } + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 4 + ] + } + }, + { + "components": [ + { + "band": 71, + "bwClassDl": "B", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 2 + }, + "mimoUl": { + "type": "single", + "value": 1 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "maxScs": 15, + "maxBwDl": { + "type": "mixed", + "value": [ + 20, + 10 + ] + }, + "maxBwUl": { + "type": "single", + "value": 20 + } + }, + { + "band": 41, + "bwClassDl": "C", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "mixed", + "value": [ + 100, + 50 + ] + } + }, + { + "band": 41, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 30 + } + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 4 + ] + } + }, + { + "components": [ + { + "band": 71, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 2 + }, + "mimoUl": { + "type": "single", + "value": 1 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "maxScs": 15, + "maxBwDl": { + "type": "single", + "value": 10 + }, + "maxBwUl": { + "type": "single", + "value": 10 + } + }, + { + "band": 71, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "maxScs": 15, + "maxBwDl": { + "type": "single", + "value": 15 + } + }, + { + "band": 41, + "bwClassDl": "C", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "mixed", + "value": [ + 100, + 50 + ] + } + }, + { + "band": 41, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 30 + } + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 4 + ] + } + }, + { + "components": [ + { + "band": 71, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 2 + }, + "mimoUl": { + "type": "single", + "value": 1 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "maxScs": 15, + "maxBwDl": { + "type": "single", + "value": 10 + }, + "maxBwUl": { + "type": "single", + "value": 10 + } + }, + { + "band": 71, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "maxScs": 15, + "maxBwDl": { + "type": "single", + "value": 15 + } + }, + { + "band": 41, + "bwClassDl": "C", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "mixed", + "value": [ + 100, + 60 + ] + } + }, + { + "band": 41, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 20 + } + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 4 + ] + } + }, + { + "components": [ + { + "band": 71, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 2 + }, + "mimoUl": { + "type": "single", + "value": 1 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "maxScs": 15, + "maxBwDl": { + "type": "single", + "value": 20 + }, + "maxBwUl": { + "type": "single", + "value": 20 + } + }, + { + "band": 71, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "maxScs": 15, + "maxBwDl": { + "type": "single", + "value": 10 + } + }, + { + "band": 41, + "bwClassDl": "C", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "mixed", + "value": [ + 100, + 60 + ] + } + }, + { + "band": 41, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 20 + } + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 4 + ] + } + }, + { + "components": [ + { + "band": 71, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 2 + }, + "mimoUl": { + "type": "single", + "value": 1 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "maxScs": 15, + "maxBwDl": { + "type": "single", + "value": 30 + }, + "maxBwUl": { + "type": "single", + "value": 20 + } + }, + { + "band": 41, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 100 + } + }, + { + "band": 41, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 60 + } + }, + { + "band": 41, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 30 + } + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 4 + ] + } + }, + { + "components": [ + { + "band": 78, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 1 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 100 + }, + "maxBwUl": { + "type": "single", + "value": 100 + } + }, + { + "band": 78, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 100 + } + }, + { + "band": 71, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 2 + }, + "mimoUl": { + "type": "single", + "value": 1 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "maxScs": 15, + "maxBwDl": { + "type": "single", + "value": 35 + }, + "maxBwUl": { + "type": "single", + "value": 35 + } + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 4 + ] + } + }, + { + "components": [ + { + "band": 71, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 2 + }, + "mimoUl": { + "type": "single", + "value": 1 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "maxScs": 15, + "maxBwDl": { + "type": "single", + "value": 15 + }, + "maxBwUl": { + "type": "single", + "value": 15 + } + }, + { + "band": 71, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "maxScs": 15, + "maxBwDl": { + "type": "single", + "value": 20 + } + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 4 + ] + } + }, + { + "components": [ + { + "band": 71, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "maxScs": 15, + "maxBwDl": { + "type": "single", + "value": 35 + } + }, + { + "band": 41, + "bwClassDl": "C", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "mixed", + "value": [ + 100, + 90 + ] + }, + "maxBwUl": { + "type": "single", + "value": 100 + } + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 1, + 4 + ] + } + }, + { + "components": [ + { + "band": 71, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "maxScs": 15, + "maxBwDl": { + "type": "single", + "value": 30 + } + }, + { + "band": 41, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 100 + }, + "maxBwUl": { + "type": "single", + "value": 100 + } + }, + { + "band": 41, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 50 + } + }, + { + "band": 41, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 30 + } + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 4 + ] + } + }, + { + "components": [ + { + "band": 71, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "maxScs": 15, + "maxBwDl": { + "type": "single", + "value": 20 + } + }, + { + "band": 41, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 100 + }, + "maxBwUl": { + "type": "single", + "value": 100 + } + }, + { + "band": 41, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 60 + } + }, + { + "band": 41, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 30 + } + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 4 + ] + } + }, + { + "components": [ + { + "band": 71, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "maxScs": 15, + "maxBwDl": { + "type": "single", + "value": 35 + } + }, + { + "band": 41, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 100 + }, + "maxBwUl": { + "type": "single", + "value": 100 + } + }, + { + "band": 41, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 80 + } + }, + { + "band": 41, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 10 + } + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 4 + ] + } + }, + { + "components": [ + { + "band": 71, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "maxScs": 15, + "maxBwDl": { + "type": "single", + "value": 30 + } + }, + { + "band": 71, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "maxScs": 15, + "maxBwDl": { + "type": "single", + "value": 5 + } + }, + { + "band": 41, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 100 + }, + "maxBwUl": { + "type": "single", + "value": 100 + } + }, + { + "band": 41, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 80 + } + }, + { + "band": 41, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 10 + } + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 4 + ] + } + }, + { + "components": [ + { + "band": 71, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "maxScs": 15, + "maxBwDl": { + "type": "single", + "value": 35 + } + }, + { + "band": 41, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 100 + }, + "maxBwUl": { + "type": "single", + "value": 100 + } + }, + { + "band": 41, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 90 + } + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 1, + 4 + ] + } + }, + { + "components": [ + { + "band": 71, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "maxScs": 15, + "maxBwDl": { + "type": "single", + "value": 15 + } + }, + { + "band": 71, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "maxScs": 15, + "maxBwDl": { + "type": "single", + "value": 10 + } + }, + { + "band": 41, + "bwClassDl": "C", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 1 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "mixed", + "value": [ + 100, + 60 + ] + }, + "maxBwUl": { + "type": "single", + "value": 100 + } + }, + { + "band": 41, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 20 + } + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 4 + ] + } + }, + { + "components": [ + { + "band": 71, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "maxScs": 15, + "maxBwDl": { + "type": "single", + "value": 30 + } + }, + { + "band": 71, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "maxScs": 15, + "maxBwDl": { + "type": "single", + "value": 5 + } + }, + { + "band": 41, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 100 + }, + "maxBwUl": { + "type": "single", + "value": 100 + } + }, + { + "band": 41, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 90 + } + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 4 + ] + } + }, + { + "components": [ + { + "band": 71, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "maxScs": 15, + "maxBwDl": { + "type": "single", + "value": 35 + } + }, + { + "band": 41, + "bwClassDl": "C", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "mixed", + "value": [ + 100, + 60 + ] + }, + "maxBwUl": { + "type": "single", + "value": 100 + } + }, + { + "band": 41, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 20 + } + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 4 + ] + } + }, + { + "components": [ + { + "band": 71, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "maxScs": 15, + "maxBwDl": { + "type": "single", + "value": 35 + } + }, + { + "band": 41, + "bwClassDl": "C", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "mixed", + "value": [ + 100, + 80 + ] + }, + "maxBwUl": { + "type": "single", + "value": 100 + } + }, + { + "band": 41, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 10 + } + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 4 + ] + } + }, + { + "components": [ + { + "band": 71, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "maxScs": 15, + "maxBwDl": { + "type": "single", + "value": 20 + } + }, + { + "band": 41, + "bwClassDl": "C", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "mixed", + "value": [ + 100, + 50 + ] + }, + "maxBwUl": { + "type": "single", + "value": 100 + } + }, + { + "band": 41, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 30 + } + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 4 + ] + } + }, + { + "components": [ + { + "band": 71, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "maxScs": 15, + "maxBwDl": { + "type": "single", + "value": 20 + } + }, + { + "band": 41, + "bwClassDl": "C", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "mixed", + "value": [ + 100, + 60 + ] + } + }, + { + "band": 41, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 30 + }, + "maxBwUl": { + "type": "single", + "value": 30 + } + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 4 + ] + } + }, + { + "components": [ + { + "band": 71, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "maxScs": 15, + "maxBwDl": { + "type": "single", + "value": 35 + } + }, + { + "band": 41, + "bwClassDl": "C", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "mixed", + "value": [ + 100, + 20 + ] + } + }, + { + "band": 41, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 70 + }, + "maxBwUl": { + "type": "single", + "value": 70 + } + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 4 + ] + } + }, + { + "components": [ + { + "band": 71, + "bwClassDl": "B", + "mimoDl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "maxScs": 15, + "maxBwDl": { + "type": "mixed", + "value": [ + 20, + 15 + ] + } + }, + { + "band": 41, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 100 + }, + "maxBwUl": { + "type": "single", + "value": 100 + } + }, + { + "band": 41, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 90 + } + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 1, + 4 + ] + } + }, + { + "components": [ + { + "band": 78, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 100 + }, + "maxBwUl": { + "type": "single", + "value": 100 + } + }, + { + "band": 71, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "maxScs": 15, + "maxBwDl": { + "type": "single", + "value": 35 + } + }, + { + "band": 41, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 100 + } + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 4 + ] + } + }, + { + "components": [ + { + "band": 78, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 100 + }, + "maxBwUl": { + "type": "single", + "value": 100 + } + }, + { + "band": 78, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 100 + } + }, + { + "band": 71, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "maxScs": 15, + "maxBwDl": { + "type": "single", + "value": 30 + } + }, + { + "band": 41, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 40 + } + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 4 + ] + } + }, + { + "components": [ + { + "band": 78, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 100 + }, + "maxBwUl": { + "type": "single", + "value": 100 + } + }, + { + "band": 78, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 100 + } + }, + { + "band": 71, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "maxScs": 15, + "maxBwDl": { + "type": "single", + "value": 35 + } + }, + { + "band": 41, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 30 + } + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 4 + ] + } + }, + { + "components": [ + { + "band": 41, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 50 + }, + "maxBwUl": { + "type": "single", + "value": 50 + } + }, + { + "band": 41, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 80 + } + }, + { + "band": 41, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 60 + } + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 4 + ] + } + }, + { + "components": [ + { + "band": 41, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 60 + }, + "maxBwUl": { + "type": "single", + "value": 60 + } + }, + { + "band": 41, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 80 + } + }, + { + "band": 41, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 50 + } + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 4 + ] + } + }, + { + "components": [ + { + "band": 41, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 60 + }, + "maxBwUl": { + "type": "single", + "value": 60 + } + }, + { + "band": 41, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 100 + } + }, + { + "band": 41, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 10 + } + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 4 + ] + } + }, + { + "components": [ + { + "band": 41, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 80 + }, + "maxBwUl": { + "type": "single", + "value": 80 + } + }, + { + "band": 41, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 60 + } + }, + { + "band": 41, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 50 + } + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 4 + ] + } + }, + { + "components": [ + { + "band": 41, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 30 + }, + "maxBwUl": { + "type": "single", + "value": 30 + } + }, + { + "band": 41, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 100 + } + }, + { + "band": 41, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 50 + } + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 4 + ] + } + }, + { + "components": [ + { + "band": 41, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 100 + }, + "maxBwUl": { + "type": "single", + "value": 100 + } + }, + { + "band": 41, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 50 + } + }, + { + "band": 41, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 40 + } + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 4 + ] + } + }, + { + "components": [ + { + "band": 41, + "bwClassDl": "C", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "mixed", + "value": [ + 100, + 60 + ] + }, + "maxBwUl": { + "type": "single", + "value": 100 + } + }, + { + "band": 41, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 30 + } + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 4 + ] + } + }, + { + "components": [ + { + "band": 41, + "bwClassDl": "C", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "mixed", + "value": [ + 100, + 50 + ] + }, + "maxBwUl": { + "type": "single", + "value": 100 + } + }, + { + "band": 41, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 40 + } + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 4 + ] + } + }, + { + "components": [ + { + "band": 41, + "bwClassDl": "C", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "mixed", + "value": [ + 100, + 50 + ] + } + }, + { + "band": 41, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 1 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 40 + }, + "maxBwUl": { + "type": "single", + "value": 40 + } + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 4 + ] + } + }, + { + "components": [ + { + "band": 41, + "bwClassDl": "C", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "mixed", + "value": [ + 100, + 40 + ] + } + }, + { + "band": 41, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 40 + }, + "maxBwUl": { + "type": "single", + "value": 40 + } + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 4 + ] + } + }, + { + "components": [ + { + "band": 78, + "bwClassDl": "C", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 100 + }, + "maxBwUl": { + "type": "single", + "value": 100 + } + }, + { + "band": 41, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 100 + } + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 4 + ] + } + }, + { + "components": [ + { + "band": 78, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 1 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 100 + }, + "maxBwUl": { + "type": "single", + "value": 100 + } + }, + { + "band": 41, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 100 + } + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 1, + 4 + ] + } + }, + { + "components": [ + { + "band": 78, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 100 + }, + "maxBwUl": { + "type": "single", + "value": 100 + } + }, + { + "band": 41, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 100 + } + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 1, + 4 + ] + } + }, + { + "components": [ + { + "band": 78, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 100 + }, + "maxBwUl": { + "type": "single", + "value": 100 + } + }, + { + "band": 78, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 100 + } + }, + { + "band": 41, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 100 + } + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 4 + ] + } + }, + { + "components": [ + { + "band": 78, + "bwClassDl": "C", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 100 + }, + "maxBwUl": { + "type": "single", + "value": 100 + } + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 1, + 4 + ] + } + }, + { + "components": [ + { + "band": 78, + "bwClassDl": "D", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 100 + }, + "maxBwUl": { + "type": "single", + "value": 100 + } + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 4 + ] + } + }, + { + "components": [ + { + "band": 78, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 100 + }, + "maxBwUl": { + "type": "single", + "value": 100 + } + }, + { + "band": 78, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 100 + } + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 1, + 2, + 4 + ] + } + }, + { + "components": [ + { + "band": 71, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 2 + }, + "mimoUl": { + "type": "single", + "value": 1 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "maxScs": 15, + "maxBwDl": { + "type": "single", + "value": 35 + }, + "maxBwUl": { + "type": "single", + "value": 35 + } + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 4 + ] + } + }, + { + "components": [ + { + "band": 41, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 100 + }, + "maxBwUl": { + "type": "single", + "value": 100 + } + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 4 + ] + } + }, + { + "components": [ + { + "band": 41, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 100 + }, + "maxBwUl": { + "type": "single", + "value": 100 + } + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 4 + ] + } + }, + { + "components": [ + { + "band": 41, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 100 + }, + "maxBwUl": { + "type": "single", + "value": 100 + } + }, + { + "band": 41, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 90 + } + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 4 + ] + } + }, + { + "components": [ + { + "band": 41, + "bwClassDl": "C", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "mixed", + "value": [ + 100, + 90 + ] + }, + "maxBwUl": { + "type": "single", + "value": 100 + } + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 4 + ] + } + }, + { + "components": [ + { + "band": 41, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 100 + }, + "maxBwUl": { + "type": "single", + "value": 100 + }, + "ulTxSwitch": true + }, + { + "band": 1, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 1 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "maxScs": 15, + "maxBwDl": { + "type": "single", + "value": 50 + }, + "maxBwUl": { + "type": "single", + "value": 50 + }, + "ulTxSwitch": true + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 1, + 4 + ] + }, + "uplinkTxSwitch": [ + { + "type": "R16", + "option": "BOTH" + } + ] + }, + { + "components": [ + { + "band": 78, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 100 + }, + "maxBwUl": { + "type": "single", + "value": 100 + }, + "ulTxSwitch": true + }, + { + "band": 1, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 1 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "maxScs": 15, + "maxBwDl": { + "type": "single", + "value": 50 + }, + "maxBwUl": { + "type": "single", + "value": 50 + }, + "ulTxSwitch": true + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 1, + 2, + 3, + 4 + ] + }, + "uplinkTxSwitch": [ + { + "type": "R16", + "option": "BOTH" + } + ] + }, + { + "components": [ + { + "band": 78, + "bwClassDl": "C", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 100 + }, + "maxBwUl": { + "type": "single", + "value": 100 + }, + "ulTxSwitch": true + }, + { + "band": 1, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 1 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "maxScs": 15, + "maxBwDl": { + "type": "single", + "value": 50 + }, + "maxBwUl": { + "type": "single", + "value": 50 + }, + "ulTxSwitch": true + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 1, + 2, + 4 + ] + }, + "uplinkTxSwitch": [ + { + "type": "R16", + "option": "BOTH" + } + ] + }, + { + "components": [ + { + "band": 78, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 100 + }, + "maxBwUl": { + "type": "single", + "value": 100 + }, + "ulTxSwitch": true + }, + { + "band": 78, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 100 + } + }, + { + "band": 1, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 1 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "maxScs": 15, + "maxBwDl": { + "type": "single", + "value": 50 + }, + "maxBwUl": { + "type": "single", + "value": 50 + }, + "ulTxSwitch": true + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 1, + 2, + 4 + ] + }, + "uplinkTxSwitch": [ + { + "type": "R16", + "option": "BOTH" + } + ] + }, + { + "components": [ + { + "band": 71, + "bwClassDl": "B", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 2 + }, + "mimoUl": { + "type": "single", + "value": 1 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "maxScs": 15, + "maxBwDl": { + "type": "mixed", + "value": [ + 20, + 15 + ] + }, + "maxBwUl": { + "type": "single", + "value": 20 + }, + "ulTxSwitch": true + }, + { + "band": 41, + "bwClassDl": "C", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "mixed", + "value": [ + 100, + 90 + ] + }, + "maxBwUl": { + "type": "single", + "value": 100 + }, + "ulTxSwitch": true + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 1, + 4 + ] + }, + "uplinkTxSwitch": [ + { + "type": "R16", + "option": "BOTH" + } + ] + }, + { + "components": [ + { + "band": 71, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 2 + }, + "mimoUl": { + "type": "single", + "value": 1 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "maxScs": 15, + "maxBwDl": { + "type": "single", + "value": 35 + }, + "maxBwUl": { + "type": "single", + "value": 35 + }, + "ulTxSwitch": true + }, + { + "band": 41, + "bwClassDl": "C", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "mixed", + "value": [ + 100, + 90 + ] + }, + "maxBwUl": { + "type": "single", + "value": 100 + }, + "ulTxSwitch": true + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 1, + 4 + ] + }, + "uplinkTxSwitch": [ + { + "type": "R16", + "option": "BOTH" + } + ] + }, + { + "components": [ + { + "band": 71, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 2 + }, + "mimoUl": { + "type": "single", + "value": 1 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "maxScs": 15, + "maxBwDl": { + "type": "single", + "value": 35 + }, + "maxBwUl": { + "type": "single", + "value": 35 + }, + "ulTxSwitch": true + }, + { + "band": 41, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 100 + }, + "maxBwUl": { + "type": "single", + "value": 100 + }, + "ulTxSwitch": true + }, + { + "band": 41, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 80 + } + }, + { + "band": 41, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 10 + } + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 4 + ] + }, + "uplinkTxSwitch": [ + { + "type": "R16", + "option": "BOTH" + } + ] + }, + { + "components": [ + { + "band": 71, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 2 + }, + "mimoUl": { + "type": "single", + "value": 1 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "maxScs": 15, + "maxBwDl": { + "type": "single", + "value": 10 + }, + "maxBwUl": { + "type": "single", + "value": 10 + }, + "ulTxSwitch": true + }, + { + "band": 71, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "maxScs": 15, + "maxBwDl": { + "type": "single", + "value": 15 + } + }, + { + "band": 41, + "bwClassDl": "C", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "mixed", + "value": [ + 100, + 80 + ] + }, + "maxBwUl": { + "type": "single", + "value": 100 + }, + "ulTxSwitch": true + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 4 + ] + }, + "uplinkTxSwitch": [ + { + "type": "R16", + "option": "BOTH" + } + ] + }, + { + "components": [ + { + "band": 71, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 2 + }, + "mimoUl": { + "type": "single", + "value": 1 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "maxScs": 15, + "maxBwDl": { + "type": "single", + "value": 20 + }, + "maxBwUl": { + "type": "single", + "value": 20 + }, + "ulTxSwitch": true + }, + { + "band": 71, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "maxScs": 15, + "maxBwDl": { + "type": "single", + "value": 10 + } + }, + { + "band": 41, + "bwClassDl": "C", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "mixed", + "value": [ + 100, + 80 + ] + }, + "maxBwUl": { + "type": "single", + "value": 100 + }, + "ulTxSwitch": true + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 4 + ] + }, + "uplinkTxSwitch": [ + { + "type": "R16", + "option": "BOTH" + } + ] + }, + { + "components": [ + { + "band": 71, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 2 + }, + "mimoUl": { + "type": "single", + "value": 1 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "maxScs": 15, + "maxBwDl": { + "type": "single", + "value": 30 + }, + "maxBwUl": { + "type": "single", + "value": 30 + }, + "ulTxSwitch": true + }, + { + "band": 71, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "maxScs": 15, + "maxBwDl": { + "type": "single", + "value": 5 + } + }, + { + "band": 41, + "bwClassDl": "C", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "mixed", + "value": [ + 100, + 90 + ] + }, + "maxBwUl": { + "type": "single", + "value": 100 + }, + "ulTxSwitch": true + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 4 + ] + }, + "uplinkTxSwitch": [ + { + "type": "R16", + "option": "BOTH" + } + ] + }, + { + "components": [ + { + "band": 71, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 2 + }, + "mimoUl": { + "type": "single", + "value": 1 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "maxScs": 15, + "maxBwDl": { + "type": "single", + "value": 35 + }, + "maxBwUl": { + "type": "single", + "value": 35 + }, + "ulTxSwitch": true + }, + { + "band": 41, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 100 + }, + "maxBwUl": { + "type": "single", + "value": 100 + }, + "ulTxSwitch": true + }, + { + "band": 41, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 90 + } + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 1, + 4 + ] + }, + "uplinkTxSwitch": [ + { + "type": "R16", + "option": "BOTH" + } + ] + }, + { + "components": [ + { + "band": 71, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 2 + }, + "mimoUl": { + "type": "single", + "value": 1 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "maxScs": 15, + "maxBwDl": { + "type": "single", + "value": 20 + }, + "maxBwUl": { + "type": "single", + "value": 20 + }, + "ulTxSwitch": true + }, + { + "band": 71, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "maxScs": 15, + "maxBwDl": { + "type": "single", + "value": 15 + } + }, + { + "band": 41, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 100 + }, + "maxBwUl": { + "type": "single", + "value": 100 + }, + "ulTxSwitch": true + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 1, + 4 + ] + }, + "uplinkTxSwitch": [ + { + "type": "R16", + "option": "BOTH" + } + ] + }, + { + "components": [ + { + "band": 71, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 2 + }, + "mimoUl": { + "type": "single", + "value": 1 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "maxScs": 15, + "maxBwDl": { + "type": "single", + "value": 30 + }, + "maxBwUl": { + "type": "single", + "value": 30 + }, + "ulTxSwitch": true + }, + { + "band": 71, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "maxScs": 15, + "maxBwDl": { + "type": "single", + "value": 5 + } + }, + { + "band": 41, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 100 + }, + "maxBwUl": { + "type": "single", + "value": 100 + }, + "ulTxSwitch": true + }, + { + "band": 41, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 90 + } + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 4 + ] + }, + "uplinkTxSwitch": [ + { + "type": "R16", + "option": "BOTH" + } + ] + }, + { + "components": [ + { + "band": 71, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 2 + }, + "mimoUl": { + "type": "single", + "value": 1 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "maxScs": 15, + "maxBwDl": { + "type": "single", + "value": 20 + }, + "maxBwUl": { + "type": "single", + "value": 20 + }, + "ulTxSwitch": true + }, + { + "band": 41, + "bwClassDl": "C", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "mixed", + "value": [ + 100, + 50 + ] + }, + "maxBwUl": { + "type": "single", + "value": 100 + }, + "ulTxSwitch": true + }, + { + "band": 41, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 30 + } + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 4 + ] + }, + "uplinkTxSwitch": [ + { + "type": "R16", + "option": "BOTH" + } + ] + }, + { + "components": [ + { + "band": 71, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 2 + }, + "mimoUl": { + "type": "single", + "value": 1 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "maxScs": 15, + "maxBwDl": { + "type": "single", + "value": 35 + }, + "maxBwUl": { + "type": "single", + "value": 35 + }, + "ulTxSwitch": true + }, + { + "band": 41, + "bwClassDl": "C", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "mixed", + "value": [ + 100, + 60 + ] + }, + "maxBwUl": { + "type": "single", + "value": 100 + }, + "ulTxSwitch": true + }, + { + "band": 41, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 20 + } + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 4 + ] + }, + "uplinkTxSwitch": [ + { + "type": "R16", + "option": "BOTH" + } + ] + }, + { + "components": [ + { + "band": 71, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 2 + }, + "mimoUl": { + "type": "single", + "value": 1 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "maxScs": 15, + "maxBwDl": { + "type": "single", + "value": 35 + }, + "maxBwUl": { + "type": "single", + "value": 35 + }, + "ulTxSwitch": true + }, + { + "band": 41, + "bwClassDl": "C", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "mixed", + "value": [ + 100, + 80 + ] + }, + "maxBwUl": { + "type": "single", + "value": 100 + }, + "ulTxSwitch": true + }, + { + "band": 41, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 10 + } + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 4 + ] + }, + "uplinkTxSwitch": [ + { + "type": "R16", + "option": "BOTH" + } + ] + }, + { + "components": [ + { + "band": 71, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 2 + }, + "mimoUl": { + "type": "single", + "value": 1 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "maxScs": 15, + "maxBwDl": { + "type": "single", + "value": 35 + }, + "maxBwUl": { + "type": "single", + "value": 35 + }, + "ulTxSwitch": true + }, + { + "band": 41, + "bwClassDl": "C", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "mixed", + "value": [ + 100, + 20 + ] + } + }, + { + "band": 41, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 70 + }, + "maxBwUl": { + "type": "single", + "value": 70 + }, + "ulTxSwitch": true + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 4 + ] + }, + "uplinkTxSwitch": [ + { + "type": "R16", + "option": "BOTH" + } + ] + }, + { + "components": [ + { + "band": 71, + "bwClassDl": "B", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 2 + }, + "mimoUl": { + "type": "single", + "value": 1 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "maxScs": 15, + "maxBwDl": { + "type": "mixed", + "value": [ + 20, + 15 + ] + }, + "maxBwUl": { + "type": "single", + "value": 20 + }, + "ulTxSwitch": true + }, + { + "band": 41, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 100 + }, + "maxBwUl": { + "type": "single", + "value": 100 + }, + "ulTxSwitch": true + }, + { + "band": 41, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 90 + } + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 1, + 4 + ] + }, + "uplinkTxSwitch": [ + { + "type": "R16", + "option": "BOTH" + } + ] + }, + { + "components": [ + { + "band": 71, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 2 + }, + "mimoUl": { + "type": "single", + "value": 1 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "maxScs": 15, + "maxBwDl": { + "type": "single", + "value": 30 + }, + "maxBwUl": { + "type": "single", + "value": 30 + }, + "ulTxSwitch": true + }, + { + "band": 71, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "maxScs": 15, + "maxBwDl": { + "type": "single", + "value": 5 + } + }, + { + "band": 41, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 100 + }, + "maxBwUl": { + "type": "single", + "value": 100 + }, + "ulTxSwitch": true + }, + { + "band": 41, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 80 + } + }, + { + "band": 41, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 10 + } + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 4 + ] + }, + "uplinkTxSwitch": [ + { + "type": "R16", + "option": "BOTH" + } + ] + }, + { + "components": [ + { + "band": 71, + "bwClassDl": "B", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 2 + }, + "mimoUl": { + "type": "single", + "value": 1 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "maxScs": 15, + "maxBwDl": { + "type": "mixed", + "value": [ + 20, + 15 + ] + }, + "maxBwUl": { + "type": "single", + "value": 20 + }, + "ulTxSwitch": true + }, + { + "band": 41, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 100 + }, + "maxBwUl": { + "type": "single", + "value": 100 + }, + "ulTxSwitch": true + }, + { + "band": 41, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 80 + } + }, + { + "band": 41, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 10 + } + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 4 + ] + }, + "uplinkTxSwitch": [ + { + "type": "R16", + "option": "BOTH" + } + ] + }, + { + "components": [ + { + "band": 71, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 2 + }, + "mimoUl": { + "type": "single", + "value": 1 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "maxScs": 15, + "maxBwDl": { + "type": "single", + "value": 30 + }, + "maxBwUl": { + "type": "single", + "value": 30 + }, + "ulTxSwitch": true + }, + { + "band": 71, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "maxScs": 15, + "maxBwDl": { + "type": "single", + "value": 5 + } + }, + { + "band": 41, + "bwClassDl": "C", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "mixed", + "value": [ + 100, + 60 + ] + }, + "maxBwUl": { + "type": "single", + "value": 100 + }, + "ulTxSwitch": true + }, + { + "band": 41, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 20 + } + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 4 + ] + }, + "uplinkTxSwitch": [ + { + "type": "R16", + "option": "BOTH" + } + ] + }, + { + "components": [ + { + "band": 71, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 2 + }, + "mimoUl": { + "type": "single", + "value": 1 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "maxScs": 15, + "maxBwDl": { + "type": "single", + "value": 30 + }, + "maxBwUl": { + "type": "single", + "value": 30 + }, + "ulTxSwitch": true + }, + { + "band": 71, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "maxScs": 15, + "maxBwDl": { + "type": "single", + "value": 5 + } + }, + { + "band": 41, + "bwClassDl": "C", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "mixed", + "value": [ + 100, + 80 + ] + }, + "maxBwUl": { + "type": "single", + "value": 100 + }, + "ulTxSwitch": true + }, + { + "band": 41, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 10 + } + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 4 + ] + }, + "uplinkTxSwitch": [ + { + "type": "R16", + "option": "BOTH" + } + ] + }, + { + "components": [ + { + "band": 71, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 2 + }, + "mimoUl": { + "type": "single", + "value": 1 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "maxScs": 15, + "maxBwDl": { + "type": "single", + "value": 30 + }, + "maxBwUl": { + "type": "single", + "value": 30 + }, + "ulTxSwitch": true + }, + { + "band": 71, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "maxScs": 15, + "maxBwDl": { + "type": "single", + "value": 5 + } + }, + { + "band": 41, + "bwClassDl": "C", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "mixed", + "value": [ + 100, + 20 + ] + } + }, + { + "band": 41, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 70 + }, + "maxBwUl": { + "type": "single", + "value": 70 + }, + "ulTxSwitch": true + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 4 + ] + }, + "uplinkTxSwitch": [ + { + "type": "R16", + "option": "BOTH" + } + ] + }, + { + "components": [ + { + "band": 71, + "bwClassDl": "B", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 2 + }, + "mimoUl": { + "type": "single", + "value": 1 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "maxScs": 15, + "maxBwDl": { + "type": "mixed", + "value": [ + 20, + 15 + ] + }, + "maxBwUl": { + "type": "single", + "value": 20 + }, + "ulTxSwitch": true + }, + { + "band": 41, + "bwClassDl": "C", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "mixed", + "value": [ + 100, + 60 + ] + }, + "maxBwUl": { + "type": "single", + "value": 100 + }, + "ulTxSwitch": true + }, + { + "band": 41, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 20 + } + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 4 + ] + }, + "uplinkTxSwitch": [ + { + "type": "R16", + "option": "BOTH" + } + ] + }, + { + "components": [ + { + "band": 71, + "bwClassDl": "B", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 2 + }, + "mimoUl": { + "type": "single", + "value": 1 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "maxScs": 15, + "maxBwDl": { + "type": "mixed", + "value": [ + 20, + 15 + ] + }, + "maxBwUl": { + "type": "single", + "value": 20 + }, + "ulTxSwitch": true + }, + { + "band": 41, + "bwClassDl": "C", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "mixed", + "value": [ + 100, + 80 + ] + }, + "maxBwUl": { + "type": "single", + "value": 100 + }, + "ulTxSwitch": true + }, + { + "band": 41, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 10 + } + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 4 + ] + }, + "uplinkTxSwitch": [ + { + "type": "R16", + "option": "BOTH" + } + ] + }, + { + "components": [ + { + "band": 71, + "bwClassDl": "B", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 2 + }, + "mimoUl": { + "type": "single", + "value": 1 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "maxScs": 15, + "maxBwDl": { + "type": "mixed", + "value": [ + 20, + 15 + ] + }, + "maxBwUl": { + "type": "single", + "value": 20 + }, + "ulTxSwitch": true + }, + { + "band": 41, + "bwClassDl": "C", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "mixed", + "value": [ + 100, + 20 + ] + } + }, + { + "band": 41, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 70 + }, + "maxBwUl": { + "type": "single", + "value": 70 + }, + "ulTxSwitch": true + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 4 + ] + }, + "uplinkTxSwitch": [ + { + "type": "R16", + "option": "BOTH" + } + ] + }, + { + "components": [ + { + "band": 80, + "bwClassUl": "A", + "mimoUl": { + "type": "single", + "value": 1 + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "maxScs": 15, + "maxBwUl": { + "type": "single", + "value": 40 + }, + "ulTxSwitch": true + }, + { + "band": 78, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 100 + }, + "maxBwUl": { + "type": "single", + "value": 100 + }, + "ulTxSwitch": true + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 4 + ] + }, + "uplinkTxSwitch": [ + { + "type": "R16", + "option": "SWITCHED_UL" + } + ] + }, + { + "components": [ + { + "band": 81, + "bwClassUl": "A", + "mimoUl": { + "type": "single", + "value": 1 + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "maxScs": 15, + "maxBwUl": { + "type": "single", + "value": 20 + }, + "ulTxSwitch": true + }, + { + "band": 78, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 100 + }, + "maxBwUl": { + "type": "single", + "value": 100 + }, + "ulTxSwitch": true + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 4 + ] + }, + "uplinkTxSwitch": [ + { + "type": "R16", + "option": "SWITCHED_UL" + } + ] + }, + { + "components": [ + { + "band": 83, + "bwClassUl": "A", + "mimoUl": { + "type": "single", + "value": 1 + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "maxScs": 15, + "maxBwUl": { + "type": "single", + "value": 30 + }, + "ulTxSwitch": true + }, + { + "band": 78, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 100 + }, + "maxBwUl": { + "type": "single", + "value": 100 + }, + "ulTxSwitch": true + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 4 + ] + }, + "uplinkTxSwitch": [ + { + "type": "R16", + "option": "SWITCHED_UL" + } + ] + }, + { + "components": [ + { + "band": 84, + "bwClassUl": "A", + "mimoUl": { + "type": "single", + "value": 1 + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "maxScs": 15, + "maxBwUl": { + "type": "single", + "value": 50 + }, + "ulTxSwitch": true + }, + { + "band": 78, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 100 + }, + "maxBwUl": { + "type": "single", + "value": 100 + }, + "ulTxSwitch": true + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 4 + ] + }, + "uplinkTxSwitch": [ + { + "type": "R16", + "option": "SWITCHED_UL" + } + ] + }, + { + "components": [ + { + "band": 89, + "bwClassUl": "A", + "mimoUl": { + "type": "single", + "value": 1 + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "maxScs": 15, + "maxBwUl": { + "type": "single", + "value": 20 + }, + "ulTxSwitch": true + }, + { + "band": 78, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 100 + }, + "maxBwUl": { + "type": "single", + "value": 100 + }, + "ulTxSwitch": true + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 4 + ] + }, + "uplinkTxSwitch": [ + { + "type": "R16", + "option": "SWITCHED_UL" + } + ] + } + ], + "nrdc": [ + { + "componentsFr1": [ + { + "band": 71, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 2 + }, + "mimoUl": { + "type": "single", + "value": 1 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "maxScs": 15, + "maxBwDl": { + "type": "single", + "value": 35 + }, + "maxBwUl": { + "type": "single", + "value": 35 + } + } + ], + "componentsFr2": [ + { + "band": 261, + "bwClassDl": "Q", + "bwClassUl": "Q", + "mimoDl": { + "type": "single", + "value": 2 + }, + "mimoUl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam256" + }, + "modulationUl": { + "type": "single", + "value": "qam64" + }, + "maxScs": 120, + "maxBwDl": { + "type": "single", + "value": 100 + }, + "maxBwUl": { + "type": "single", + "value": 100 + } + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 4 + ] + } + }, + { + "componentsFr1": [ + { + "band": 41, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 100 + }, + "maxBwUl": { + "type": "single", + "value": 100 + } + } + ], + "componentsFr2": [ + { + "band": 261, + "bwClassDl": "Q", + "bwClassUl": "Q", + "mimoDl": { + "type": "single", + "value": 2 + }, + "mimoUl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam256" + }, + "modulationUl": { + "type": "single", + "value": "qam64" + }, + "maxScs": 120, + "maxBwDl": { + "type": "single", + "value": 100 + }, + "maxBwUl": { + "type": "single", + "value": 100 + } + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 4 + ] + } + }, + { + "componentsFr1": [ + { + "band": 41, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 100 + }, + "maxBwUl": { + "type": "single", + "value": 100 + } + } + ], + "componentsFr2": [ + { + "band": 261, + "bwClassDl": "M", + "bwClassUl": "I", + "mimoDl": { + "type": "single", + "value": 2 + }, + "mimoUl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam256" + }, + "modulationUl": { + "type": "single", + "value": "qam64" + }, + "maxScs": 120, + "maxBwDl": { + "type": "single", + "value": 100 + }, + "maxBwUl": { + "type": "single", + "value": 100 + } + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 4 + ] + } + }, + { + "componentsFr1": [ + { + "band": 41, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 100 + }, + "maxBwUl": { + "type": "single", + "value": 100 + } + }, + { + "band": 41, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "single", + "value": 90 + } + } + ], + "componentsFr2": [ + { + "band": 261, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 2 + }, + "mimoUl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam256" + }, + "modulationUl": { + "type": "single", + "value": "qam64" + }, + "maxScs": 120, + "maxBwDl": { + "type": "single", + "value": 200 + }, + "maxBwUl": { + "type": "single", + "value": 200 + } + }, + { + "band": 261, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam256" + }, + "maxScs": 120, + "maxBwDl": { + "type": "single", + "value": 200 + } + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 4 + ] + } + }, + { + "componentsFr1": [ + { + "band": 41, + "bwClassDl": "C", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 4 + }, + "mimoUl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam1024" + }, + "modulationUl": { + "type": "single", + "value": "qam256" + }, + "bw90mhzSupported": true, + "maxScs": 30, + "maxBwDl": { + "type": "mixed", + "value": [ + 100, + 90 + ] + }, + "maxBwUl": { + "type": "single", + "value": 100 + } + } + ], + "componentsFr2": [ + { + "band": 261, + "bwClassDl": "A", + "bwClassUl": "A", + "mimoDl": { + "type": "single", + "value": 2 + }, + "mimoUl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam256" + }, + "modulationUl": { + "type": "single", + "value": "qam64" + }, + "maxScs": 120, + "maxBwDl": { + "type": "single", + "value": 200 + }, + "maxBwUl": { + "type": "single", + "value": 200 + } + }, + { + "band": 261, + "bwClassDl": "A", + "mimoDl": { + "type": "single", + "value": 2 + }, + "modulationDl": { + "type": "single", + "value": "qam256" + }, + "maxScs": 120, + "maxBwDl": { + "type": "single", + "value": 200 + } + } + ], + "bcs": { + "type": "multi", + "value": [ + 0, + 4 + ] + } + } + ], + "logType": "", + "ueCapFilters": [ + { + "type": "UeCapabilityFilterNr", + "rat": "NR", + "lteBands": [ + { + "band": 2 + } + ], + "nrBands": [ + { + "band": 1 + }, + { + "band": 261 + }, + { + "band": 71 + }, + { + "band": 41 + }, + { + "band": 78 + }, + { + "band": 80 + }, + { + "band": 81 + }, + { + "band": 83 + }, + { + "band": 84 + }, + { + "band": 89 + } + ], + "includeNrDc": true, + "uplinkTxSwitchRequest": true + } + ], + "ratCapabilities": [ + { + "type": "RatCapabilitiesNr", + "release": 17, + "ueCapSegmentationSupported": true, + "rat": "NR" + } + ], + "metadata": {}, + "id": "", + "parserVersion": "staging", + "timestamp": 0 +} From 6fa40597d943d34f5e45053c303d7e8b8be22bb1 Mon Sep 17 00:00:00 2001 From: handymenny Date: Sun, 10 Nov 2024 18:26:20 +0100 Subject: [PATCH 3/3] update web-ui with basic support for ul tx switch --- src/main/resources/web | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/resources/web b/src/main/resources/web index bf56acbc..626750ae 160000 --- a/src/main/resources/web +++ b/src/main/resources/web @@ -1 +1 @@ -Subproject commit bf56acbcffb21874f77f4aa5ab061acb7b819fb7 +Subproject commit 626750aeecd9a1517666798adbf7d7c2207bb47f