blob: d03fff30aa66c526c7996a4ede39fdf95370cc01 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
{
"ietf-yang-patch:yang-patch": {
"patch-id": "ClosedLoopPatch1",
"comment": "patch for configuring NearRTRIC SliceProfile ",
"edit": [{
"edit-id": "edit1",
"operation": "merge",
"target": "/ran-network:sNSSAIList[ran-network:sNssai='${"tmp.payload.sNSSAI}']",
"value": {
"ran-network:sNSSAIList": [
{
"ran-network:sNssai": ${tmp.payload.sNSSAI},
"ran-network:status": "INACTIVE",
"ran-network:configData": [
{
"ran-network:configParameter": "uLThptPerSlice",
"ran-network:configValue": ${tmp.uLThptPerSlice}
},
{
"ran-network:configParameter": "dLThptPerSlice",
"ran-network:configValue": ${tmp.dLThptPerSlice}
},
{
"ran-network:configParameter": ${tmp.cellLocalId},
"ran-network:configValue": ${tmp.predictedMaxNumberofConns}
}
]
}
]
}
}]
}
}
|