Newer
Older
title: ETSI GS MEC 012 - Radio Network Information API
version: 2.1.1
description: The ETSI MEC ISG MEC012 Radio Network Information API described using OpenAPI.
name: BSD-3-Clause
url: 'https://forge.etsi.org/legal-matters'
description: ETSI GS MEC 012 Radio Network Information API, V2.1.1
url: 'http://www.etsi.org/deliver/etsi_gs/MEC/001_099/012/02.01.01_60/gs_mec012v020101p.pdf'
servers:
/queries/rab_info:
summary: 'Retrieve information on Radio Access Bearers'
description: 'Queries information about the Radio Access Bearers'
operationId: rab_infoGET
parameters:
- $ref: '#/components/parameters/Query.AppInsId'
- $ref: '#/components/parameters/Query.CellId'
- $ref: '#/components/parameters/Query.UeIpv4Address'
- $ref: '#/components/parameters/Query.UeIpv6Address'
- $ref: '#/components/parameters/Query.NatedIpAddress'
- $ref: '#/components/parameters/Query.GtpTeid'
- $ref: '#/components/parameters/Query.ErabId'
- $ref: '#/components/parameters/Query.Qci'
- $ref: '#/components/parameters/Query.ErabMbrDl'
- $ref: '#/components/parameters/Query.ErabMbrUl'
- $ref: '#/components/parameters/Query.ErabGbrDl'
- $ref: '#/components/parameters/Query.ErabGbrUl'
responses:
'200':
description: Successful response to rab_info request
schema:
type: object
properties:
rabInfo:
$ref: '#/components/schemas/RabInfo'
$ref: '#/components/responses/429'
x-swagger-router-controller: "queries"
/queries/plmn_info:
summary: 'Retrieve information on the underlying Mobile Network that the MEC application is associated to'
description: 'Queries information about the Mobile Network'
operationId: plmn_infoGET
parameters:
- $ref: '#/components/parameters/Query.AppInsIdArr'
description: Successful response to plmn_info request
content:
schema:
type: "object"
properties:
plmnInfo:
type: "array"
items:
$ref: '#/components/schemas/PlmnInfo'
$ref: '#/components/responses/429'
x-swagger-router-controller: "queries"
/queries/s1_bearer_info:
summary: 'Retrieve S1-U bearer information related to specific UE(s)'
description: 'Queries information about the S1 bearer(s)'
operationId: s1_bearer_infoGET
parameters:
- $ref: '#/components/parameters/Query.TempUeId'
- $ref: '#/components/parameters/Query.UeIpv4Address'
- $ref: '#/components/parameters/Query.UeIpv6Address'
- $ref: '#/components/parameters/Query.NatedIpAddress'
- $ref: '#/components/parameters/Query.GtpTeid'
- $ref: '#/components/parameters/Query.CellId'
- $ref: '#/components/parameters/Query.ErabIdArr'
responses:
'200':
description: Successful response to s1_bearer_info request
schema:
type: "object"
required:
- "s1BearerInfo"
properties:
s1BearerInfo:
$ref: '#/components/schemas/S1BearerInfo'
$ref: '#/components/responses/429'
x-swagger-router-controller: "queries"
/queries/layer2_meas:
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
summary: 'Retrieve information on layer 2 measurements'
description: 'Queries information about the layer 2 measurements.'
operationId: layer2_meas_infoGET
parameters:
- $ref: '#/components/parameters/Query.AppInsId'
- $ref: '#/components/parameters/Query.CellId'
- $ref: '#/components/parameters/Query.UeIpv4Address'
- $ref: '#/components/parameters/Query.UeIpv6Address'
- $ref: '#/components/parameters/Query.NatedIpAddress'
- $ref: '#/components/parameters/Query.GtpTeid'
- $ref: '#/components/parameters/Query.DlGbrPrbUsageCell'
- $ref: '#/components/parameters/Query.UlGbrPrbUsageCell'
- $ref: '#/components/parameters/Query.DlNonGbrPrbUsageCell'
- $ref: '#/components/parameters/Query.UlNonGbrPrbUsageCell'
- $ref: '#/components/parameters/Query.DlTotalPrbUsageCell'
- $ref: '#/components/parameters/Query.UlTotalPrbUsageCell'
- $ref: '#/components/parameters/Query.ReceivedDedicatedPreamblesCell'
- $ref: '#/components/parameters/Query.ReceivedRandomPreamblesLowRangeCell'
- $ref: '#/components/parameters/Query.ReceivedRandomPreamblesHighRangeCell'
- $ref: '#/components/parameters/Query.NumberOfActiveUeDlGbrCell'
- $ref: '#/components/parameters/Query.NumberOfActiveUeUlGbrCell'
- $ref: '#/components/parameters/Query.NumberOfActiveUeDlNonGbrCell'
- $ref: '#/components/parameters/Query.NumberOfActiveUeUlNonGbrCell'
- $ref: '#/components/parameters/Query.DlGbrPdrCell'
- $ref: '#/components/parameters/Query.UlGbrPdrCell'
- $ref: '#/components/parameters/Query.DlNonGbrPdrCell'
- $ref: '#/components/parameters/Query.UlNonGbrPdrCell'
- $ref: '#/components/parameters/Query.DlGbrDelayUe'
- $ref: '#/components/parameters/Query.UlGbrDelayUe'
- $ref: '#/components/parameters/Query.DlNonGbrDelayUe'
- $ref: '#/components/parameters/Query.UlNonGbrDelayUe'
- $ref: '#/components/parameters/Query.DlGbrPdrUe'
- $ref: '#/components/parameters/Query.UlGbrPdrUe'
- $ref: '#/components/parameters/Query.DlNonGbrPdrUe'
- $ref: '#/components/parameters/Query.UlNonGbrPdrUe'
- $ref: '#/components/parameters/Query.DlGbrThroughputUe'
- $ref: '#/components/parameters/Query.UlGbrThroughputUe'
- $ref: '#/components/parameters/Query.DlNonGbrThroughputUe'
- $ref: '#/components/parameters/Query.UlNonGbrThroughputUe'
- $ref: '#/components/parameters/Query.DlGbrDataVolumeUe'
- $ref: '#/components/parameters/Query.UlGbrDataVolumeUe'
- $ref: '#/components/parameters/Query.DlNonGbrDataVolumeUe'
- $ref: '#/components/parameters/Query.UlNonGbrDataVolumeUe'
description: Successful response to layer2 measurements info request
content:
schema:
type: "object"
required:
- "l2Meas"
properties:
l2Meas:
$ref: '#/components/schemas/L2Meas'
$ref: '#/components/responses/406'
'414':
$ref: '#/components/responses/414'
$ref: '#/components/responses/429'
x-swagger-router-controller: "queries"
summary: 'Retrieve information on subscriptions for notifications'
description: 'Queries information on subscriptions for notifications'
operationId: subscriptionLinkList_subscriptionsGET
parameters:
- $ref: '#/components/parameters/Query.SubscriptionType'
description: 'Response body contains the list of links to requestors subscriptions.'
content:
schema:
type: object
required:
- subscriptionLinkList
properties:
subscriptionLinkList:
$ref: '#/components/schemas/SubscriptionLinkList'
example:
subscriptionLinkList:
_links:
self:
href: 'http://meAppServer.example.com/rni/v2/subscriptions'
- _links:
self:
href: 'http://meAppServer.example.com/rni/v2/subscriptions/sub123'
callbackReference: 'http://my.callback.com/rni-cell-change/some-id'
subscriptionType: CellChangeSubscription
$ref: '#/components/responses/429'
x-swagger-router-controller: "subscriptions"
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
summary: 'Create a new subscription'
description: 'Creates a new subscription to Radio Network Information notifications'
operationId: subscriptionsPOST
requestBody:
description: Subscription to be created
required: true
content:
application/json:
schema:
type: object
properties:
notificationSubscription:
oneOf:
- $ref: '#/components/schemas/CellChangeSubscription'
- $ref: '#/components/schemas/RabEstSubscription'
- $ref: '#/components/schemas/RabModSubscription'
- $ref: '#/components/schemas/RabRelSubscription'
- $ref: '#/components/schemas/MeasRepUeSubscription'
- $ref: '#/components/schemas/NrMeasRepUeSubscription'
- $ref: '#/components/schemas/MeasTaSubscription'
- $ref: '#/components/schemas/CaReconfSubscription'
- $ref: '#/components/schemas/S1BearerSubscription'
discriminator:
propertyName: subscriptionType
example:
notificationSubscription:
subscriptionType: CellChangeSubscription
callbackReference: 'http://my.callback.com/rni-cell-change/some-id'
filterCriteriaAssocHo:
appInstanceId: 'myApp'
associateId:
value: '10.100.0.1'
ecgi:
- plmn:
mnc: '01'
mcc: '001'
cellId: 'ACBDEFA'
hoStatus:
expiryDeadline:
seconds: 1977836800
nanoseconds: 0
description: Successful subscription
content:
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
schema:
type: object
properties:
notificationSubscription:
oneOf:
- $ref: '#/components/schemas/CellChangeSubscription'
- $ref: '#/components/schemas/RabEstSubscription'
- $ref: '#/components/schemas/RabModSubscription'
- $ref: '#/components/schemas/RabRelSubscription'
- $ref: '#/components/schemas/MeasRepUeSubscription'
- $ref: '#/components/schemas/NrMeasRepUeSubscription'
- $ref: '#/components/schemas/MeasTaSubscription'
- $ref: '#/components/schemas/CaReconfSubscription'
- $ref: '#/components/schemas/S1BearerSubscription'
discriminator:
propertyName: subscriptionType
example:
notificationSubscription:
subscriptionType: CellChangeSubscription
callbackReference: 'http://my.callback.com/rni-cell-change/some-id'
_links:
self:
href: 'http://meAppServer.example.com/rni/v2/subscriptions/sub123'
filterCriteriaAssocHo:
appInstanceId: 'myApp'
associateId:
value: '10.100.0.1'
ecgi:
- plmn:
mnc: '01'
mcc: '001'
cellId: 'ACBDEFA'
hoStatus:
expiryDeadline:
seconds: 1977836800
nanoseconds: 0
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
$ref: '#/components/responses/429'
callbacks:
notification:
'{$request.body#/notificationSubscription.callbackReference}':
post:
summary: 'Callback POST used to send a notification'
description: 'Notification from RNIS, content based on subscription type'
operationId: notificationPOST
requestBody:
description: Subscription notification
required: true
content:
application/json:
schema:
type: object
properties:
notification:
oneOf:
- $ref: '#/components/schemas/CellChangeNotification'
- $ref: '#/components/schemas/RabEstNotification'
- $ref: '#/components/schemas/RabModNotification'
- $ref: '#/components/schemas/RabRelNotification'
- $ref: '#/components/schemas/MeasRepUeNotification'
- $ref: '#/components/schemas/NrMeasRepUeNotification'
- $ref: '#/components/schemas/MeasTaNotification'
- $ref: '#/components/schemas/CaReconfNotification'
- $ref: '#/components/schemas/S1BearerNotification'
discriminator:
propertyName: notificationType
example:
notification:
notificationType: CellChangeNotification
associateId:
srcEcgi:
plmn:
mnc: '01'
mcc: '001'
cellId: 'ACBDEFA'
tempUeId:
mmec: 1
mtmsi: 001011231231234
timeStamp:
seconds: 1977836800
nanoseconds: 0
trgEcgi:
plmn:
mnc: '01'
mcc: '001'
cellId: 'FEDCBAA'
responses:
'204':
$ref: '#/components/responses/204'
x-swagger-router-controller: "subscriptions"
'/subscriptions/{subscriptionId}':
summary: 'Retrieve information on current specific subscription'
description: 'Queries information about an existing subscription, identified by its self-referring URI returned on creation (initial POST)'
operationId: subscriptionsGET
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
description: Subscription information regarding subscription notifications
content:
application/json:
schema:
type: object
required:
- notificationSubscription
properties:
notificationSubscription:
oneOf:
- $ref: '#/components/schemas/CellChangeSubscription'
- $ref: '#/components/schemas/RabEstSubscription'
- $ref: '#/components/schemas/RabModSubscription'
- $ref: '#/components/schemas/RabRelSubscription'
- $ref: '#/components/schemas/MeasRepUeSubscription'
- $ref: '#/components/schemas/NrMeasRepUeSubscription'
- $ref: '#/components/schemas/MeasTaSubscription'
- $ref: '#/components/schemas/CaReconfSubscription'
- $ref: '#/components/schemas/S1BearerSubscription'
discriminator:
propertyName: subscriptionType
example:
notificationSubscription:
subscriptionType: CellChangeSubscription
callbackReference: 'http://my.callback.com/rni-cell-change/some-id'
_links:
self:
href: 'http://meAppServer.example.com/rni/v2/subscriptions/sub123'
filterCriteriaAssocHo:
appInstanceId: 'myApp'
associateId:
value: '10.100.0.1'
ecgi:
- plmn:
mnc: '01'
mcc: '001'
cellId: 'ACBDEFA'
hoStatus:
expiryDeadline:
seconds: 1977836800
nanoseconds: 0
'400':
$ref: '#/components/responses/400'
'401':
$ref: '#/components/responses/401'
'403':
$ref: '#/components/responses/403'
'404':
$ref: '#/components/responses/404'
'406':
$ref: '#/components/responses/406'
'429':
$ref: '#/components/responses/429'
x-swagger-router-controller: "subscriptions"
put:
tags:
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
summary: 'Modify an existing subscription'
description: 'Updates an existing subscription, identified by its self-referring URI returned on creation (initial POST)'
operationId: subscriptionsPUT
requestBody:
description: Subscription to be modified
required: true
content:
application/json:
schema:
type: object
properties:
notificationSubscription:
oneOf:
- $ref: '#/components/schemas/CellChangeSubscription'
- $ref: '#/components/schemas/RabEstSubscription'
- $ref: '#/components/schemas/RabModSubscription'
- $ref: '#/components/schemas/RabRelSubscription'
- $ref: '#/components/schemas/MeasRepUeSubscription'
- $ref: '#/components/schemas/NrMeasRepUeSubscription'
- $ref: '#/components/schemas/MeasTaSubscription'
- $ref: '#/components/schemas/CaReconfSubscription'
- $ref: '#/components/schemas/S1BearerSubscription'
discriminator:
propertyName: subscriptionType
example:
notificationSubscription:
subscriptionType: CellChangeSubscription
callbackReference: 'http://my.callback.com/rni-cell-change/some-id'
_links:
self:
href: 'http://meAppServer.example.com/rni/v2/subscriptions/sub123'
filterCriteriaAssocHo:
appInstanceId: 'myApp'
associateId:
value: '10.100.0.1'
ecgi:
- plmn:
mnc: '01'
mcc: '001'
cellId: 'ACBDEFA'
hoStatus:
expiryDeadline:
seconds: 1977836800
nanoseconds: 0
parameters:
- $ref: '#/components/parameters/Path.subscrId'
responses:
'200':
description: Successful subscription to response to subscription notifications
content:
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
schema:
type: object
properties:
notificationSubscription:
oneOf:
- $ref: '#/components/schemas/CellChangeSubscription'
- $ref: '#/components/schemas/RabEstSubscription'
- $ref: '#/components/schemas/RabModSubscription'
- $ref: '#/components/schemas/RabRelSubscription'
- $ref: '#/components/schemas/MeasRepUeSubscription'
- $ref: '#/components/schemas/NrMeasRepUeSubscription'
- $ref: '#/components/schemas/MeasTaSubscription'
- $ref: '#/components/schemas/CaReconfSubscription'
- $ref: '#/components/schemas/S1BearerSubscription'
discriminator:
propertyName: subscriptionType
example:
notificationSubscription:
subscriptionType: CellChangeSubscription
callbackReference: 'http://my.callback.com/rni-cell-change/some-id'
_links:
self:
href: 'http://meAppServer.example.com/rni/v2/subscriptions/sub123'
filterCriteriaAssocHo:
appInstanceId: 'myApp'
associateId:
value: '10.100.0.1'
ecgi:
- plmn:
mnc: '01'
mcc: '001'
cellId: 'ACBDEFA'
hoStatus:
expiryDeadline:
seconds: 1977836800
nanoseconds: 0
$ref: '#/components/responses/400'
'401':
$ref: '#/components/responses/401'
'403':
$ref: '#/components/responses/403'
'404':
$ref: '#/components/responses/404'
'406':
$ref: '#/components/responses/406'
'412':
$ref: '#/components/responses/412'
'422':
$ref: '#/components/responses/422'
'429':
$ref: '#/components/responses/429'
x-swagger-router-controller: "subscriptions"
delete:
tags:
summary: 'Cancel an existing subscription'
description: 'Cancels an existing subscription, identified by its self-referring URI returned on creation (initial POST)'
operationId: subscriptionsDELETE
parameters:
- $ref: '#/components/parameters/Path.subscrId'
responses:
'204':
$ref: '#/components/responses/204'
'401':
$ref: '#/components/responses/401'
'403':
$ref: '#/components/responses/403'
'404':
$ref: '#/components/responses/404'
'429':
$ref: '#/components/responses/429'
x-swagger-router-controller: "subscriptions"
components:
responses:
204:
description: No Content
400:
description: 'Bad Request : used to indicate that incorrect parameters were passed to the request.'
content:
application/json:
schema:
type: object
properties:
problemDetails:
$ref: '#/components/schemas/ProblemDetails'
401:
description: 'Unauthorized : used when the client did not submit credentials.'
content:
application/json:
schema:
type: object
properties:
problemDetails:
$ref: '#/components/schemas/ProblemDetails'
403:
description: 'Forbidden : operation is not allowed given the current status of the resource.'
content:
application/json:
Walter Featherstone
committed
required:
problemDetails:
$ref: '#/components/schemas/ProblemDetails'
404:
description: 'Not Found : used when a client provided a URI that cannot be mapped to a valid resource URI.'
content:
application/json:
schema:
type: object
properties:
problemDetails:
$ref: '#/components/schemas/ProblemDetails'
406:
description: 'Not Acceptable : used to indicate that the server cannot provide the any of the content formats supported by the client.'
content:
application/json:
schema:
type: object
properties:
problemDetails:
$ref: '#/components/schemas/ProblemDetails'
412:
description: 'Precondition failed : used when a condition has failed during conditional requests, e.g. when
using ETags to avoid write conflicts when using PUT'
content:
application/json:
schema:
type: object
properties:
problemDetails:
$ref: '#/components/schemas/ProblemDetails'
414:
description: 'URI Too Long : used to indicate that the server is refusing to process the request because the request URI is
longer than the server is willing or able to process.'
content:
application/json:
schema:
type: object
properties:
problemDetails:
$ref: '#/components/schemas/ProblemDetails'
415:
description: 'Unsupported Media Type : used to indicate that the server or the client does not support the content type of the entity body.'
content:
application/json:
schema:
type: object
properties:
problemDetails:
$ref: '#/components/schemas/ProblemDetails'
422:
description: 'Unprocessable Entity : used to indicate that the server understands the content type of the request entity and that the
syntax of the request entity is correct but that the server is unable to process the contained instructions. This error condition can occur if an
JSON request body is syntactically correct but semantically incorrect, for example if the target area for the request is considered too large. This
error condition can also occur if the capabilities required by the request are not supported.'
content:
application/json:
schema:
type: object
properties:
problemDetails:
$ref: '#/components/schemas/ProblemDetails'
example:
application/problem+json:
problemDetails:
type: 'https://meAppServer.example.com/rni/v2/probs/too-many targets'
status: '422'
detail: The target area for the request is considered too large
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
instance: /meAppClient.example.com/77777/msgs/abc
429:
description: 'Too Many Requests : used when a rate limiter has triggered.'
content:
application/json:
schema:
type: object
properties:
problemDetails:
$ref: '#/components/schemas/ProblemDetails'
parameters:
Path.subscrId:
name: subscriptionId
in: path
description: 'Subscription Id, specifically the "Self-referring URI" returned in the subscription request'
required: true
schema:
type: string
format: uri
x-exportParamName: SubscriptionId
Query.AppInsId:
name: app_ins_id
in: query
description: Application instance identifier
required: false
schema:
type: string
x-exportParamName: AppInsId
x-optionalDataType: String
Query.AppInsIdArr:
name: app_ins_id
in: query
description: 'Comma separated list of Application instance identifiers'
required: true
schema:
type: array
items:
type: string
x-exportParamName: AppInsIdArr
Query.CellId:
name: cell_id
in: query
description: 'Comma separated list of E-UTRAN Cell Identities'
required: false
schema:
type: string
x-exportParamName: CellId
Query.UeIpv4Address:
name: ue_ipv4_address
in: query
description: 'Comma separated list of IE IPv4 addresses as defined for the type for AssociateId'
required: false
schema:
type: string
x-exportParamName: UeIpv4Address
Query.UeIpv6Address:
name: ue_ipv6_address
in: query
description: 'Comma separated list of IE IPv6 addresses as defined for the type for AssociateId'
required: false
schema:
type: string
x-exportParamName: UeIpv6Address
Query.NatedIpAddress:
name: nated_ip_address
in: query
description: 'Comma separated list of IE NATed IP addresses as defined for the type for AssociateId'
required: false
schema:
type: string
x-exportParamName: NatedIpAddress
Query.GtpTeid:
name: gtp_teid
in: query
description: 'Comma separated list of GTP TEID addresses as defined for the type for AssociateId'
required: false
schema:
type: string
x-exportParamName: GtpTeid
Query.ErabId:
name: erab_id
in: query
description: E-RAB identifier
required: false
schema:
type: integer
x-exportParamName: ErabId
x-optionalDataType: Int32
Query.ErabIdArr:
name: erab_id
in: query
description: 'Comma separated list of E-RAB identifiers'
required: false
schema:
x-exportParamName: ErabIdArr
Query.Qci:
name: qci
in: query
description: 'QoS Class Identifier as defined in ETSI TS 123 401'
required: false
schema:
x-exportParamName: Qci
x-optionalDataType: Int32
Query.ErabMbrDl:
name: erab_mbr_dl
in: query
description: 'Maximum downlink E-RAB Bit Rate as defined in ETSI TS 123 401'
required: false
schema:
x-exportParamName: ErabMbrDl
x-optionalDataType: Int32
Query.ErabMbrUl:
name: erab_mbr_ul
in: query
description: 'Maximum uplink E-RAB Bit Rate as defined in ETSI TS 123 401'
required: false
schema:
type: integer
x-exportParamName: ErabMbrUl
x-optionalDataType: Int32
Query.ErabGbrDl:
name: erab_gbr_dl
in: query
description: 'Guaranteed downlink E-RAB Bit Rate as defined in ETSI TS 123 401'
required: false
schema:
type: integer
x-exportParamName: ErabGbrDl
x-optionalDataType: Int32
Query.ErabGbrUl:
name: erab_gbr_ul
in: query
description: 'Guaranteed uplink E-RAB Bit Rate as defined in ETSI TS 123 401'
required: false
schema:
type: integer
x-exportParamName: ErabGbrUl
x-optionalDataType: Int32
Query.TempUeId:
name: temp_ue_id
in: query
description: 'Comma separated list of temporary identifiers allocated for the specific UE as defined in ETSI TS 136 413'
required: false
schema:
type: string
x-exportParamName: TempUeId
Query.DlGbrPrbUsageCell:
name: dl_gbr_prb_usage_cell
in: query
description: 'PRB usage for downlink GBR traffic in percentage as defined in ETSI TS 136 314'
required: false
schema:
x-exportParamName: DlGbrPrbUsageCell
Query.UlGbrPrbUsageCell:
name: ul_gbr_prb_usage_cell
in: query
description: 'PRB usage for uplink GBR traffic in percentage as defined in ETSI TS 136 314'
required: false
schema:
x-exportParamName: UlGbrPrbUsageCell
Query.DlNonGbrPrbUsageCell:
name: dl_nongbr_prb_usage_cell
in: query
description: 'PRB usage for downlink non-GBR traffic in percentage as defined in ETSI TS 136 314'
required: false
schema:
x-exportParamName: DlNonGbrPrbUsageCell
Query.UlNonGbrPrbUsageCell:
name: ul_nongbr_prb_usage_cell
in: query
description: 'PRB usage for uplink non-GBR traffic in percentage as defined in ETSI TS 136 314'
required: false
schema:
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
x-exportParamName: UlNonGbrPrbUsageCell
Query.DlTotalPrbUsageCell:
name: dl_total_prb_usage_cell
in: query
description: 'PRB usage for total downlink traffic in percentage as defined in ETSI TS 136 314'
required: false
schema:
type: integer
x-exportParamName: DlTotalPrbUsageCell
Query.UlTotalPrbUsageCell:
name: ul_total_prb_usage_cell
in: query
description: 'PRB usage for total uplink traffic in percentage as defined in ETSI TS 136 314'
required: false
schema:
type: integer
x-exportParamName: UlTotalPrbUsageCell
Query.ReceivedDedicatedPreamblesCell:
name: received_dedicated_preambles_cell
in: query
description: 'Received dedicated preambles in percentage as defined in ETSI TS 136 314'
required: false
schema:
type: integer
x-exportParamName: ReceivedDedicatedPreamblesCell
Query.ReceivedRandomPreamblesLowRangeCell:
name: received_randomly_selected_preambles_low_range_cell
in: query
description: 'Received randomly selected preambles in the low range in percentage as defined in ETSI TS 136 314'
required: false
schema:
type: integer
x-exportParamName: ReceivedRandomPreamblesLowRangeCell
Query.ReceivedRandomPreamblesHighRangeCell:
name: received_randomly_selected_preambles_high_range_cell
in: query
description: 'Received rendomly selected preambles in the high range in percentage as defined in ETSI TS 136 314'
required: false
schema:
type: integer
x-exportParamName: ReceivedRandomPreamblesHighRangeCell
Query.NumberOfActiveUeDlGbrCell:
name: number_of_active_ue_dl_gbr_cell
in: query
description: 'Number of active UEs with downlink GBR traffic as defined in ETSI TS 136 314'
required: false
schema:
type: integer
x-exportParamName: NumberOfActiveUeDlGbrCell
Query.NumberOfActiveUeUlGbrCell:
name: number_of_active_ue_ul_gbr_cell
in: query
description: 'Number of active UEs with uplink GBR traffic as defined in ETSI TS 136 314'
required: false
schema:
type: integer
x-exportParamName: NumberOfActiveUeUlGbrCell
Query.NumberOfActiveUeDlNonGbrCell:
name: number_of_active_ue_dl_nongbr_cell
in: query
description: 'Number of active UEs with downlink non-GBR traffic as defined in ETSI TS 136 314'
required: false
schema:
type: integer
x-exportParamName: NumberOfActiveUeDlNonGbrCell
Query.NumberOfActiveUeUlNonGbrCell:
name: number_of_active_ue_ul_nongbr_cell
in: query
description: 'Number of active UEs with uplink non-GBR traffic as defined in ETSI TS 136 314'
required: false
schema:
type: integer
x-exportParamName: NumberOfActiveUeUlNonGbrCell
Query.DlGbrPdrCell:
name: dl_gbr_pdr_cell
in: query
description: 'Packet discard rate for downlink GBR traffic in percentage as defined in ETSI TS 136 314'
required: false
schema:
type: integer
x-exportParamName: DlGbrPdrCell
Query.UlGbrPdrCell:
name: ul_gbr_pdr_cell
in: query
description: 'Packet discard rate for uplink GBR traffic in percentage as defined in ETSI TS 136 314'