Jira Ref.
Jira Legacy | ||||||||
---|---|---|---|---|---|---|---|---|
|
...
No | API endpoint | Model | Description | CPS Path Query Description | Comments and Status | Jira | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
1. | /api/sdnc-config-db/v4/nearrtric-list/{trackingArea} | cps ran schema model | Get complete details associated with a list of NearRT RIC's and corresponding managed elements | xpath : /cps-ran-schema/NearRTRIC[@idNearRTRIC="22"]/GNBDUFunction[@idGNBDUFunction="6"]/NRCellDU[@idNRCellDU="15548"]/ attributes : {"nRPCI": 12, "nRTAC": 310, "cellLocalId": 15548} Note. nRTAC is not the key! //NRCellDU[ ? ] Proposed cps query, 2 step approach (inside CPS Core):
<Ahila> Please note the below:
| For team review |
| ||||||||||
2. | /api/sdnc-config-db/v4/cell-list/{trackingArea} | cps ran schema model | Get a list of cells that correspond to a specific tracking area | Done | ||||||||||||
9. | /api/sdnc-config-db/v4/du-list/{sNSSAI} | cps ran schema model | Fetch the DU functions for sNSSAI | Path - cps-ran-schema/NearRTRIC/GNBDUFunction/NRCellDU/attributes/pLMNInfoList/sNSSAIList/sNssai Query - get ancestor GNBDUFunctionbased on the sNSSAI. //sNSSAIList[@sNssai=1]/ancestor::GNBDUFunction NOTE - sNssai is the key | For team review Possible same solution as #1. | |||||||||||
10. | /api/sdnc-config-db/v4/du-cell-list/{sNSSAI} | cps ran schema model | Fetch DU Cells for sNSSAI | Path - cps-ran-schema/NearRTRIC/GNBDUFunction/NRCellDU/attributes/pLMNInfoList/sNSSAIList/sNssai Query - get ancestor NRCellDU based on the sNSSAI. //sNSSAIList[@sNssai=1]/ancestor::NRCellDU NOTE - sNssai is the key | For team review Possible same solution as #1. | |||||||||||
11. | /api/sdnc-config-db/v4/profile-config/{sNSSAI} | Fetch slice profile configuration for an sNSSAI | Not Needed | Ignore this API | ||||||||||||
12. | /api/sdnc-config-db/v4/slice-config/{sNSSAI} | cps ran schema model | Fetch NearRTRIC configuration for a sNSSAI | Path - cps-ran-schema/NearRTRIC[ ? ]/attributes/pLMNInfoList[ ? ]/sNSSAIList/sNssai Query - Get the sibling configData of sNSSAI from the sNSSAIList. //sNSSAIList[@sNssai=1]/ (include children) This will use query 3 CPS-235: Overview of (early) CPS Query NOTE - sNssai is the key | For team review |
| ||||||||||
13. | /api/sdnc-config-db/v4/subscriber-details/{sNSSAI} | Fetch subscriber details | Ignore this API | |||||||||||||
19. | api/sdnc-config-db/v4/nearrtric/{ranNFNSSIId} | cps ran schema model | Fetches the NearRTRICs for the RANNFNSSI Uses cps ran schema model | Query - We need a query that will get the immediate parent (NearRTRICs) based on attribute values from the list of ranNFNSSIIdList (child). //ranNFNSSIIdList[@RANNFNSSI =1]/ancestor::NearRTRICs NOTE Model has changed, ranNFNSSIIdList representation now is a leaf-list, thus new type of query is need it. Here are 3 possibles options: //attributes/ranNFNSSIIdList[normalize-space(.)= "ac8ca1a9-e1ec-4480-8720-c74e92566885"]/ancestor::NearRTRIC //attributes/ranNFNSSIIdList/element[normalize-space(text())= "ac8ca1a9-e1ec-4480-8720-c74e92566885"]/ancestor::NearRTRIC //attributes/ranNFNSSIIdList/element[text()="ac8ca1a9-e1ec-4480-8720-c74e92566885"]/ancestor::NearRTRIC | For team review Possible same solution as #1. |
| ||||||||||
20. | /api/sdnc-config-db/v4/plmn/{sliceProfileId} | Uses cps ran inventory model | Returns PLMN id for the sliceProfile Uses cps ran inventory model | Query - We need the following query; based on the sliceProfileId key we will get the sibling that is a pLMIDList. | For team review | |||||||||||
21. | /api/sdnc-config-db/v4/ta-list/{mcc}/{mnc}/{coverageArea} /api/sdnc-config-db/v4/ta-list/{PLMNId}/{coverageArea} | Returns List of a tracking area (coverageAreaTAList) of the specified coverage area | Done |
...