...
This API is used by a PCI Handler Microservice as envisioned in the solution for the Casablanca 5G OOF-PCI Use Case
Table of Contents |
|
...
Interface Defintion | Description |
---|---|
URI | https://{host}:{port}/api/oof/pci/v1/pci |
Operation Type | POST |
Content-Type | application/json |
...
Attribute | Required? | Cardinality | Content | Values | Description |
---|---|---|---|---|---|
networkId | Y | 1 | String | Id of network requiring PCI optimization | |
cellIdList | Y | 1..N | List of CellId ObjectsStrings | List of cellIds triggering need for PCI optimization (e.g. potential confusion) | |
anrInputList | Y | 1..N | List of ANR Info objects | ANR inputs (list of 'removable' cells) | |
PCIUnchangeableCellsfixedPCICells | N | 1..N | List of of StringsCellId Objects | List of cellIds whose PCI values are not allowed to be changed during PCI optimization | |
priorityTreatmentCells | N | 1..N | List of CellId Objectsof Strings | List of cellIds requiring priority/special treatment during PCI optimization | |
trigger | N | 1 | String | NbrListChange | Type of trigger causing need for PCI optimization |
...
Attribute | Required? | Cardinality | Content | Values | Description |
---|---|---|---|---|---|
CellId | Y | 1 | String | Cell identity |
ANRInfo Object
Attribute | Required? | Cardinality | Content | Values | Description |
---|---|---|---|---|---|
CellId | Y | 1 | String | Cell Identity | |
RemovableNeighbors | Y | 1..N | List of strings | List of removable neighbor cells |
Synchronous Response Body
...
Attribute | Required? | Cardinality | Content | Values | Description |
---|---|---|---|---|---|
cellId | Y | 1 | String | cellId with modified PCI value | |
pciSolutions | Y | 1..N | List of pciSolution object | New PCI value for cellId | |
anrSolutions | Y | 1..N | List of ANRInfoobject | ANR solutions |
pciSolution Object
Attribute | Required? | Cardinality | Content | Values | Description |
---|---|---|---|---|---|
cellId | Y | 1 | String | cellId with modified PCI value | |
pci | Y | 1 | Integer | New PCI value for cellId |
ANRInfo Object
Attribute | Required? | Cardinality | Content | Values | Description |
---|---|---|---|---|---|
cellId | Y | 1 | String | cellId with modified PCI value | |
removableNeighbors | Y | 1..N | List of Strings | List of neighbors to be blacklisted |
HTTP Response Code
HTTP Code | Response Phrase | Description |
---|---|---|
201 | Created | An optimization solution is found. |
202 | Accepted | An optimization request is accepted. |
400 | Bad request | Bad request. |
401 | Unauthorized | Request body is not compliant with the API definition. |
404 | Not found | The server cannot find the requested URI. |
405 | Method not found | The requested method is not supported by a server. |
500 | Internal server error | The server encountered an internal server error or timed out. |
520 | Solver error | Requested number of solutions cannot be found. |
...