[RIC-433] Add DeleteEnb to Swagger
[ric-plt/e2mgr.git] / Swagger / E2Manager_API.yaml
1 openapi: 3.0.0
2 info:
3   title: E2 Manager Service
4   description: E2 Manager Service APIs
5   version: 5.2.10
6 servers:
7   - url: 'http://{apiRoot}/v1'
8     variables:
9       apiRoot:
10         default: 'localhost:3800'
11 paths:
12   '/nodeb/{ranName}':
13     get:
14       tags:
15         - nodeb
16       summary: Get RAN by name
17       operationId: getNb
18       parameters:
19         - name: ranName
20           in: path
21           required: true
22           description: Name of RAN to return
23           schema:
24             type: string
25       responses:
26         '200':
27           description: Successful operation
28           content:
29             application/json:
30               schema:
31                 $ref: '#/components/schemas/GetNodebResponse'
32         '400':
33           description: The specified RAN name is invalid
34           content:
35             application/json:
36               schema:
37                 $ref: '#/components/schemas/ErrorResponse'
38         '404':
39           description: A RAN with the specified name was not found
40           content:
41             application/problem+json:
42               schema:
43                 $ref: '#/components/schemas/ErrorResponse'
44         '500':
45           description: Internal Error
46           content:
47             application/problem+json:
48               schema:
49                 $ref: '#/components/schemas/ErrorResponse'
50   '/nodeb/{ranName}/update':
51     put:
52       summary: Update GNB
53       tags:
54         - nodeb
55       operationId: UpdateGnb
56       parameters:
57         - name: ranName
58           in: path
59           required: true
60           description: Name of GNB RAN to update
61           schema:
62             type: string
63       requestBody:
64         content:
65           application/json:
66             schema:
67               $ref: '#/components/schemas/UpdateGnbRequest'
68         required: true
69       responses:
70         '200':
71           description: Successful operation
72           content:
73             application/json:
74               schema:
75                 $ref: '#/components/schemas/UpdateGnbResponse'
76         '400':
77           description: Invalid input
78           content:
79             application/problem+json:
80               schema:
81                 $ref: '#/components/schemas/ErrorResponse'
82         '500':
83           description: Internal error
84           content:
85             application/problem+json:
86               schema:
87                 $ref: '#/components/schemas/ErrorResponse'
88   '/nodeb/enb':
89     post:
90       summary: Add ENB
91       tags:
92         - nodeb
93       operationId: AddEnb
94       requestBody:
95         content:
96           application/json:
97             schema:
98               $ref: '#/components/schemas/AddEnbRequest'
99         required: true
100       responses:
101         '200':
102           description: Successful operation
103           content:
104             application/json:
105               schema:
106                 $ref: '#/components/schemas/AddEnbResponse'
107         '400':
108           description: Invalid input
109           content:
110             application/problem+json:
111               schema:
112                 $ref: '#/components/schemas/ErrorResponse'
113         '500':
114           description: Internal error
115           content:
116             application/problem+json:
117               schema:
118                 $ref: '#/components/schemas/ErrorResponse'
119   '/nodeb/enb/{ranName}':
120     delete:
121       tags:
122         - nodeb
123       summary: Delete ENB
124       operationId: DeleteEnb
125       parameters:
126         - name: ranName
127           in: path
128           required: true
129           description: Name of RAN to delete
130           schema:
131             type: string
132       responses:
133         '200':
134           description: Successful operation
135           content:
136             application/json:
137               schema:
138                 $ref: '#/components/schemas/DeleteEnbResponse'
139         '400':
140           description: The specified RAN is not ENB
141           content:
142             application/json:
143               schema:
144                 $ref: '#/components/schemas/ErrorResponse'
145         '404':
146           description: A RAN with the specified name was not found
147           content:
148             application/problem+json:
149               schema:
150                 $ref: '#/components/schemas/ErrorResponse'
151         '500':
152           description: Internal Error
153           content:
154             application/problem+json:
155               schema:
156                 $ref: '#/components/schemas/ErrorResponse'
157   /nodeb/shutdown:
158     put:
159       tags:
160         - nodeb
161       summary: Close all connections to the RANs
162       responses:
163         '200':
164           description: 'Operation succeeded internally, outbound calls failed'
165           content:
166             application/json:
167               schema:
168                 $ref: '#/components/schemas/RedButtonPartialSuccessResponseModel'
169         '204':
170           description: Successful operation
171         '500':
172           description: Internal Error
173           content:
174             application/problem+json:
175               schema:
176                 $ref: '#/components/schemas/ErrorResponse'
177   /nodeb/ids:
178     get:
179       tags:
180         - nodeb
181       summary: Get RANs identities list
182       operationId: getNodebIdList
183       responses:
184         '200':
185           description: Successful operation
186           content:
187             application/json:
188               schema:
189                 type: array
190                 items:
191                   $ref: '#/components/schemas/NodebIdentity'
192         '500':
193           description: Internal Error
194           content:
195             application/problem+json:
196               schema:
197                 $ref: '#/components/schemas/ErrorResponse'
198   /nodeb/parameters:
199     put:
200       summary: Update e2mgr configuration
201       tags:
202         - nodeb
203       operationId: SetConfiguration
204       requestBody:
205         content:
206           application/json:
207             schema:
208               $ref: '#/components/schemas/SetConfiguration'
209         required: true
210       responses:
211         '200':
212           description: Successful operation
213           content:
214             application/json:
215               schema:
216                 $ref: '#/components/schemas/SetConfiguration'
217         '400':
218           description: Invalid input
219           content:
220             application/problem+json:
221               schema:
222                 $ref: '#/components/schemas/ErrorResponse'
223         '500':
224           description: Internal error
225           content:
226             application/problem+json:
227               schema:
228                 $ref: '#/components/schemas/ErrorResponse'
229   /health:
230     get:
231       tags:
232         - Health Check
233       summary: E2 Manager Service Health Check
234       responses:
235         '200':
236           description: OK
237   /e2t/list:
238     get:
239       tags:
240         - e2t
241       summary: Gets a list of all E2T Instances address and their associated RANs
242       responses:
243         '200':
244           description: Successful operation
245           content:
246             application/json:
247               schema:
248                 type: array
249                 items:
250                   $ref: '#/components/schemas/E2tIdentity'
251         '500':
252           description: Internal Error
253           content:
254             application/problem+json:
255               schema:
256                 $ref: '#/components/schemas/ErrorResponse'
257 components:
258   schemas:
259     AddEnbRequest:
260       type: object
261       required:
262         - ranName
263         - globalNbId
264         - enb
265       properties:
266         ranName:
267           type: string
268         globalNbId:
269           properties:
270             nbId:
271               type: string
272             plmnId:
273               type: string
274         ip:
275           type: string
276         port:
277           type: integer
278         enb:
279           $ref: '#/components/schemas/Enb'
280       additionalProperties: false
281
282     AddEnbResponse:
283       properties:
284         connectionStatus:
285           oneOf:
286             - type: string
287             - type: integer
288         failureType:
289           oneOf:
290             - type: string
291             - type: integer
292         globalNbId:
293           properties:
294             nbId:
295               type: string
296             plmnId:
297               type: string
298           additionalProperties: false
299           type: object
300         enb:
301           $ref: '#/components/schemas/Enb'
302         ip:
303           type: string
304         nodeType:
305           oneOf:
306             - type: string
307             - type: integer
308         port:
309           type: integer
310         ranName:
311           type: string
312         setupFailure:
313           $ref: '#/components/schemas/SetupFailure'
314       additionalProperties: false
315       type: object
316
317     DeleteEnbResponse:
318       properties:
319         connectionStatus:
320           oneOf:
321             - type: string
322             - type: integer
323         failureType:
324           oneOf:
325             - type: string
326             - type: integer
327         globalNbId:
328           properties:
329             nbId:
330               type: string
331             plmnId:
332               type: string
333           additionalProperties: false
334           type: object
335         enb:
336           $ref: '#/components/schemas/Enb'
337         ip:
338           type: string
339         nodeType:
340           oneOf:
341             - type: string
342             - type: integer
343         port:
344           type: integer
345         ranName:
346           type: string
347         setupFailure:
348           $ref: '#/components/schemas/SetupFailure'
349       additionalProperties: false
350       type: object
351
352     UpdateGnbRequest:
353       type: object
354       required:
355         - servedNrCells
356       properties:
357         servedNrCells:
358           $ref: '#/components/schemas/ServedNrCells'
359       additionalProperties: false
360     UpdateGnbResponse:
361       properties:
362         connectionStatus:
363           oneOf:
364             - type: string
365             - type: integer
366         failureType:
367           oneOf:
368             - type: string
369             - type: integer
370         globalNbId:
371           properties:
372             nbId:
373               type: string
374             plmnId:
375               type: string
376           additionalProperties: false
377           type: object
378         gnb:
379           $ref: '#/components/schemas/Gnb'
380         ip:
381           type: string
382         nodeType:
383           oneOf:
384             - type: string
385             - type: integer
386         port:
387           type: integer
388         ranName:
389           type: string
390         setupFailure:
391           $ref: '#/components/schemas/SetupFailure'
392       additionalProperties: false
393       type: object
394     SetConfiguration:
395       type: object
396       required:
397         - enableRic
398       properties:
399         enableRic:
400           type: boolean
401       additionalProperties: false
402     NodebIdentity:
403       properties:
404         globalNbId:
405           properties:
406             nbId:
407               type: string
408             plmnId:
409               type: string
410           type: object
411         inventoryName:
412           type: string
413       type: object
414     GetNodebResponse:
415       properties:
416         connectionStatus:
417           oneOf:
418             - type: string
419             - type: integer
420         enb:
421           $ref: '#/components/schemas/Enb'
422         failureType:
423           oneOf:
424             - type: string
425             - type: integer
426         globalNbId:
427           properties:
428             nbId:
429               type: string
430             plmnId:
431               type: string
432           type: object
433         gnb:
434           $ref: '#/components/schemas/Gnb'
435         ip:
436           type: string
437         nodeType:
438           oneOf:
439             - type: string
440             - type: integer
441         port:
442           type: integer
443         ranName:
444           type: string
445         setupFailure:
446           $ref: '#/components/schemas/SetupFailure'
447       additionalProperties: false
448       type: object
449     ErrorResponse:
450       type: object
451       required:
452         - errorCode
453         - errorMessage
454       properties:
455         errorCode:
456           type: string
457           description: >-
458             401 - corrupted json, 402 - validation error, 403 - RAN in wrong
459             state, 404 - resource not found, 500 - RNIB error, 501 - internal
460             problem, 502 - RMR error, 503 - Routing Manager Unavailable
461         errorMessage:
462           type: string
463           description: Human readable text
464     RedButtonPartialSuccessResponseModel:
465       type: object
466       required:
467         - message
468       properties:
469         message:
470           type: string
471           description: Partial success reason
472     E2tIdentity:
473       type: object
474       required:
475         - e2tAddress
476         - ranNames
477       properties:
478         e2tAddress:
479           type: string
480         ranNames:
481           items:
482             type: string
483           type: array
484     RanFunction:
485       properties:
486         ranFunctionId:
487           type: integer
488         ranFunctionDefinition:
489           type: string
490         ranFunctionRevision:
491           type: integer
492       type: object
493     Enb:
494       properties:
495         enbType:
496           oneOf:
497             - type: string
498             - type: integer
499         guGroupIds:
500           items:
501             type: string
502           type: array
503         servedCells:
504           items:
505             properties:
506               bandwidthReducedSi:
507                 oneOf:
508                   - type: string
509                   - type: integer
510               broadcastPlmns:
511                 items:
512                   type: string
513                 type: array
514               cellId:
515                 type: string
516               choiceEutraMode:
517                 properties:
518                   fdd:
519                     properties:
520                       dlTransmissionBandwidth:
521                         oneOf:
522                           - type: string
523                           - type: integer
524                       dlearFcn:
525                         type: integer
526                       ulTransmissionBandwidth:
527                         oneOf:
528                           - type: string
529                           - type: integer
530                       ulearFcn:
531                         type: integer
532                     additionalProperties: false
533                     type: object
534                   tdd:
535                     properties:
536                       additionalSpecialSubframeExtensionInfo:
537                         properties:
538                           additionalSpecialSubframePatternsExtension:
539                             oneOf:
540                               - type: string
541                               - type: integer
542                           cyclicPrefixDl:
543                             oneOf:
544                               - type: string
545                               - type: integer
546                           cyclicPrefixUl:
547                             oneOf:
548                               - type: string
549                               - type: integer
550                         additionalProperties: false
551                         type: object
552                       additionalSpecialSubframeInfo:
553                         properties:
554                           additionalSpecialSubframePatterns:
555                             oneOf:
556                               - type: string
557                               - type: integer
558                           cyclicPrefixDl:
559                             oneOf:
560                               - type: string
561                               - type: integer
562                           cyclicPrefixUl:
563                             oneOf:
564                               - type: string
565                               - type: integer
566                         additionalProperties: false
567                         type: object
568                       earFcn:
569                         type: integer
570                       specialSubframeInfo:
571                         properties:
572                           cyclicPrefixDl:
573                             oneOf:
574                               - type: string
575                               - type: integer
576                           cyclicPrefixUl:
577                             oneOf:
578                               - type: string
579                               - type: integer
580                           specialSubframePatterns:
581                             oneOf:
582                               - type: string
583                               - type: integer
584                         additionalProperties: false
585                         type: object
586                       subframeAssignment:
587                         oneOf:
588                           - type: string
589                           - type: integer
590                       transmissionBandwidth:
591                         oneOf:
592                           - type: string
593                           - type: integer
594                     additionalProperties: false
595                     type: object
596                 additionalProperties: false
597                 type: object
598               csgId:
599                 type: string
600               eutraMode:
601                 oneOf:
602                   - type: string
603                   - type: integer
604               freqBandIndicatorPriority:
605                 oneOf:
606                   - type: string
607                   - type: integer
608               mbmsServiceAreaIdentities:
609                 items:
610                   type: string
611                 type: array
612               mbsfnSubframeInfos:
613                 items:
614                   properties:
615                     radioframeAllocationOffset:
616                       type: integer
617                     radioframeAllocationPeriod:
618                       oneOf:
619                         - type: string
620                         - type: integer
621                     subframeAllocation:
622                       type: string
623                     subframeAllocationType:
624                       oneOf:
625                         - type: string
626                         - type: integer
627                   additionalProperties: false
628                   type: object
629                 type: array
630               multibandInfos:
631                 items:
632                   type: integer
633                 type: array
634               neighbourInfos:
635                 items:
636                   properties:
637                     earFcn:
638                       type: integer
639                     ecgi:
640                       type: string
641                     pci:
642                       type: integer
643                     tac:
644                       type: string
645                   additionalProperties: false
646                   type: object
647                 type: array
648               numberOfAntennaPorts:
649                 oneOf:
650                   - type: string
651                   - type: integer
652               pci:
653                 type: integer
654               prachConfiguration:
655                 properties:
656                   highSpeedFlag:
657                     type: boolean
658                   prachConfigurationIndex:
659                     type: integer
660                   prachFrequencyOffset:
661                     type: integer
662                   rootSequenceIndex:
663                     type: integer
664                   zeroCorrelationZoneConfiguration:
665                     type: integer
666                 type: object
667               tac:
668                 type: string
669               additionalCellInformation:
670                 $ref: '#/components/schemas/AdditionalCellInformation'
671             type: object
672           type: array
673       type: object
674     Gnb:
675       properties:
676         servedNrCells:
677           $ref: '#/components/schemas/ServedNrCells'
678         ranFunctions:
679           items:
680             $ref: '#/components/schemas/RanFunction'
681           type: array
682       type: object
683     ServedNrCells:
684       items:
685         required:
686           - servedNrCellInformation
687         properties:
688           nrNeighbourInfos:
689             items:
690               required:
691                 - choiceNrMode
692                 - nrCgi
693                 - nrMode
694                 - nrPci
695               properties:
696                 choiceNrMode:
697                   properties:
698                     fdd:
699                       properties:
700                         dlarFcnFreqInfo:
701                           properties:
702                             frequencyBands:
703                               items:
704                                 properties:
705                                   nrFrequencyBand:
706                                     type: integer
707                                   supportedSulBands:
708                                     items:
709                                       type: integer
710                                     type: array
711                                 additionalProperties: false
712                                 type: object
713                               type: array
714                             nrArFcn:
715                               oneOf:
716                                 - type: integer
717                             sulInformation:
718                               properties:
719                                 sulArFcn:
720                                   oneOf:
721                                     - type: integer
722                                 sulTransmissionBandwidth:
723                                   properties:
724                                     ncnrb:
725                                       oneOf:
726                                         - type: string
727                                         - type: integer
728                                     nrscs:
729                                       oneOf:
730                                         - type: string
731                                         - type: integer
732                                   additionalProperties: false
733                                   type: object
734                               additionalProperties: false
735                               type: object
736                           additionalProperties: false
737                           type: object
738                         ularFcnFreqInfo:
739                           properties:
740                             frequencyBands:
741                               items:
742                                 properties:
743                                   nrFrequencyBand:
744                                     type: integer
745                                   supportedSulBands:
746                                     items:
747                                       type: integer
748                                     type: array
749                                 additionalProperties: false
750                                 type: object
751                               type: array
752                             nrArFcn:
753                               oneOf:
754                                 - type: integer
755                             sulInformation:
756                               properties:
757                                 sulArFcn:
758                                   oneOf:
759                                     - type: integer
760                                 sulTransmissionBandwidth:
761                                   properties:
762                                     ncnrb:
763                                       oneOf:
764                                         - type: string
765                                         - type: integer
766                                     nrscs:
767                                       oneOf:
768                                         - type: string
769                                         - type: integer
770                                   additionalProperties: false
771                                   type: object
772                               additionalProperties: false
773                               type: object
774                           additionalProperties: false
775                           type: object
776                       additionalProperties: false
777                       type: object
778                     tdd:
779                       properties:
780                         arFcnNrFreqInfo:
781                           properties:
782                             frequencyBands:
783                               items:
784                                 properties:
785                                   nrFrequencyBand:
786                                     type: integer
787                                   supportedSulBands:
788                                     items:
789                                       type: integer
790                                     type: array
791                                 additionalProperties: false
792                                 type: object
793                               type: array
794                             nrArFcn:
795                               oneOf:
796                                 - type: integer
797                             sulInformation:
798                               properties:
799                                 sulArFcn:
800                                   oneOf:
801                                     - type: integer
802                                 sulTransmissionBandwidth:
803                                   properties:
804                                     ncnrb:
805                                       oneOf:
806                                         - type: string
807                                         - type: integer
808                                     nrscs:
809                                       oneOf:
810                                         - type: string
811                                         - type: integer
812                                   additionalProperties: false
813                                   type: object
814                               additionalProperties: false
815                               type: object
816                           additionalProperties: false
817                           type: object
818                       additionalProperties: false
819                       type: object
820                   additionalProperties: false
821                   type: object
822                 configuredStac:
823                   type: string
824                 nrCgi:
825                   type: string
826                 nrMode:
827                   oneOf:
828                     - type: string
829                     - type: integer
830                 nrPci:
831                   type: integer
832                 stac5g:
833                   type: string
834               additionalProperties: false
835               type: object
836             type: array
837           servedNrCellInformation:
838             required:
839               - cellId
840               - choiceNrMode
841               - nrMode
842               - nrPci
843               - servedPlmns
844             properties:
845               cellId:
846                 type: string
847               choiceNrMode:
848                 properties:
849                   fdd:
850                     properties:
851                       dlFreqInfo:
852                         properties:
853                           frequencyBands:
854                             items:
855                               properties:
856                                 nrFrequencyBand:
857                                   type: integer
858                                 supportedSulBands:
859                                   items:
860                                     type: integer
861                                   type: array
862                               additionalProperties: false
863                               type: object
864                             type: array
865                           nrArFcn:
866                             oneOf:
867                               - type: integer
868                           sulInformation:
869                             properties:
870                               sulArFcn:
871                                 oneOf:
872                                   - type: integer
873                               sulTransmissionBandwidth:
874                                 properties:
875                                   ncnrb:
876                                     oneOf:
877                                       - type: string
878                                       - type: integer
879                                   nrscs:
880                                     oneOf:
881                                       - type: string
882                                       - type: integer
883                                 additionalProperties: false
884                                 type: object
885                             additionalProperties: false
886                             type: object
887                         additionalProperties: false
888                         type: object
889                       dlTransmissionBandwidth:
890                         properties:
891                           ncnrb:
892                             oneOf:
893                               - type: string
894                               - type: integer
895                           nrscs:
896                             oneOf:
897                               - type: string
898                               - type: integer
899                         additionalProperties: false
900                         type: object
901                       ulFreqInfo:
902                         properties:
903                           frequencyBands:
904                             items:
905                               properties:
906                                 nrFrequencyBand:
907                                   type: integer
908                                 supportedSulBands:
909                                   items:
910                                     type: integer
911                                   type: array
912                               additionalProperties: false
913                               type: object
914                             type: array
915                           nrArFcn:
916                             oneOf:
917                               - type: integer
918                           sulInformation:
919                             properties:
920                               sulArFcn:
921                                 oneOf:
922                                   - type: integer
923                               sulTransmissionBandwidth:
924                                 properties:
925                                   ncnrb:
926                                     oneOf:
927                                       - type: string
928                                       - type: integer
929                                   nrscs:
930                                     oneOf:
931                                       - type: string
932                                       - type: integer
933                                 additionalProperties: false
934                                 type: object
935                             additionalProperties: false
936                             type: object
937                         additionalProperties: false
938                         type: object
939                       ulTransmissionBandwidth:
940                         properties:
941                           ncnrb:
942                             oneOf:
943                               - type: string
944                               - type: integer
945                           nrscs:
946                             oneOf:
947                               - type: string
948                               - type: integer
949                         additionalProperties: false
950                         type: object
951                     additionalProperties: false
952                     type: object
953                   tdd:
954                     properties:
955                       nrFreqInfo:
956                         properties:
957                           frequencyBands:
958                             items:
959                               properties:
960                                 nrFrequencyBand:
961                                   type: integer
962                                 supportedSulBands:
963                                   items:
964                                     type: integer
965                                   type: array
966                               additionalProperties: false
967                               type: object
968                             type: array
969                           nrArFcn:
970                             oneOf:
971                               - type: integer
972                           sulInformation:
973                             properties:
974                               sulArFcn:
975                                 oneOf:
976                                   - type: integer
977                               sulTransmissionBandwidth:
978                                 properties:
979                                   ncnrb:
980                                     oneOf:
981                                       - type: string
982                                       - type: integer
983                                   nrscs:
984                                     oneOf:
985                                       - type: string
986                                       - type: integer
987                                 additionalProperties: false
988                                 type: object
989                             additionalProperties: false
990                             type: object
991                         additionalProperties: false
992                         type: object
993                       transmissionBandwidth:
994                         properties:
995                           ncnrb:
996                             oneOf:
997                               - type: string
998                               - type: integer
999                           nrscs:
1000                             oneOf:
1001                               - type: string
1002                               - type: integer
1003                         additionalProperties: false
1004                         type: object
1005                     additionalProperties: false
1006                     type: object
1007                 additionalProperties: false
1008                 type: object
1009               configuredStac:
1010                 type: string
1011               nrMode:
1012                 oneOf:
1013                   - type: string
1014                   - type: integer
1015               nrPci:
1016                 type: integer
1017               servedPlmns:
1018                 items:
1019                   type: string
1020                 type: array
1021               stac5g:
1022                 type: string
1023               additionalCellInformation:
1024                 $ref: '#/components/schemas/AdditionalCellInformation'
1025             additionalProperties: false
1026             type: object
1027         additionalProperties: false
1028         type: object
1029       type: array
1030     SetupFailure:
1031       properties:
1032         criticalityDiagnostics:
1033           properties:
1034             informationElementCriticalityDiagnostics:
1035               items:
1036                 properties:
1037                   ieCriticality:
1038                     oneOf:
1039                       - type: string
1040                       - type: integer
1041                   ieId:
1042                     type: integer
1043                   typeOfError:
1044                     oneOf:
1045                       - type: string
1046                       - type: integer
1047                 additionalProperties: false
1048                 type: object
1049               type: array
1050             procedureCode:
1051               type: integer
1052             procedureCriticality:
1053               oneOf:
1054                 - type: string
1055                 - type: integer
1056             triggeringMessage:
1057               oneOf:
1058                 - type: string
1059                 - type: integer
1060           additionalProperties: false
1061           type: object
1062         miscellaneousCause:
1063           oneOf:
1064             - type: string
1065             - type: integer
1066         networkLayerCause:
1067           oneOf:
1068             - type: string
1069             - type: integer
1070         protocolCause:
1071           oneOf:
1072             - type: string
1073             - type: integer
1074         timeToWait:
1075           oneOf:
1076             - type: string
1077             - type: integer
1078         transportLayerCause:
1079           oneOf:
1080             - type: string
1081             - type: integer
1082       additionalProperties: false
1083       type: object
1084     AdditionalCellInformation:
1085       properties:
1086         cellLatitude:
1087           type: number
1088         cellLongitude:
1089           type: number
1090         antennaHeight:
1091           type: number
1092         antennaAzimuthDirection:
1093           type: number
1094         antennaTiltAngle:
1095           type: number
1096         antennaMaxTransmit:
1097           type: number
1098         antennaMaxGain:
1099           type: number
1100         sectorId:
1101           type: integer
1102       type: object