RniAPI.yaml 139 KB
Newer Older
      seconds:
        type: integer
        format: uint32
        description: >-
          The seconds part of the time. Time is defined as Unix-time since
          January 1, 1970, 00:00:00 UTC
        example: 1577836800
      nanoSeconds:
        type: integer
        format: uint32
        description: >-
          The nanoseconds part of the time. Time is defined as Unix-time since
          January 1, 1970, 00:00:00 UTC
        example: 0
  AppInsId:
    type: string
    format: string
    description: Unique identifier for the mobile edge application instance
    example: '01'
  RequestId:
    type: string
    format: string
    description: >-
      Unique identifier allocated by the Mobile Edge application for the
      Information request.
    example: '01'
  CellUserInfo:
    type: object
    required:
      - ecgi
      - ueInfo
    properties:
      ecgi:
        $ref: '#/definitions/Ecgi'
      ueInfo:
        type: array
        items:
          $ref: '#/definitions/UeInfo'
    description: The information on users per cell.
  Ecgi:
    type: object
    required:
      - plmn
    properties:
      plmn:
        $ref: '#/definitions/Plmn'
        $ref: '#/definitions/CellId'
    description: E-UTRAN CelI Global Identifier as defined in 3GPP TS 36.413
  Plmn:
    type: object
    required:
      - mcc
      - mnc
    properties:
      mcc:
        type: string
        format: string
        description: >-
          The Mobile Country Code part of PLMN Identity as defined in 3GPP TS
          36.413
        example: '001'
      mnc:
        type: string
        format: string
        description: >-
          The Mobile Network Code part of PLMN Identity as defined in 3GPP TS
          36.413
        example: '01'
  CellId:
    type: array
    items:
      type: string
      format: binary
    description: >-
      The E-UTRAN Cell Identity as a bit string (size (28)), as defined in 3GPP
      TS 36.413
    example: '0x800000A'
  UeInfo:
    type: object
    required:
      - erabInfo
    properties:
      associateId:
        type: array
        items:
          $ref: '#/definitions/AssociateId'
      erabInfo:
        type: array
        items:
          $ref: '#/definitions/ErabQosParameters'
    description: Information on UEs in the specific cell.
  AssociateId:
    type: object
    required:
      - type
      - value
    properties:
      type:
        type: string
        enum:
          - RESERVED
          - UE_IPV4_ADDRESS
          - UE_IPV6_ADDRESS
          - NATED_IP_ADDRESS
          - GTP_TEID
        description: Numeric value (0-255) corresponding to specified type of identifier
        example: 'UE_IPV4_ADDRESS'
      value:
        description: Value for the identifier
        example: '192.168.10.1'
  ErabQosParameters:
    type: object
    properties:
      qci:
        $ref: '#/definitions/Qci'
      qos_information:
        $ref: '#/definitions/QosInformation'
  Qci:
    type: integer
    format: int32
    description: QoS Class Identifier as defined in TS 23.401
    example: 7
  QosInformation:
    type: object
    required:
      - erabGbrDl
      - erabGbrUl
      - erabMbrDl
      - erabMbrUl
    properties:
      erabMbrDl:
        type: integer
        format: int32
        description: >-
          This IE indicates the maximum downlink E-RAB Bit Rate as defined in TS
          23.401 for this bearer.
        example: 10
      erabMbrUl:
        type: integer
        format: int32
        description: >-
          This IE indicates the maximum uplink E-RAB Bit Rate as defined in TS
          23.401 for this bearer.
        example: 10
      erabGbrDl:
        type: integer
        format: int32
        description: >-
          This IE indicates the guaranteed  downlink E-RAB Bit Rate as defined
          in TS 23.401 for this bearer.
        example: 10
      erabGbrUl:
        type: integer
        format: int32
        description: >-
          This IE indicates the guaranteed  uplink E-RAB Bit Rate as defined in
          TS 23.401 for this bearer.
        example: 10
    type: object
    required:
      - _links
    properties:
      _links:
      subscription:
4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549
  MeasRepUeSubscriptionPost:
    type: object
    required:
      - callbackReference
      - filterCriteria
    properties:
      callbackReference:
        $ref: '#/definitions/CallbackReference'
      filterCriteria:
        $ref: '#/definitions/FilterCriteriaAssocTri'
      expiryDeadline:
        $ref: '#/definitions/TimeStamp'
  MeasRepUeSubscription:
    type: object
    required:
      - callbackReference
      - _links
      - filterCriteria
    properties:
      callbackReference:
        $ref: '#/definitions/CallbackReference'
      _links:
        $ref: '#/definitions/Link'
      filterCriteria:
        $ref: '#/definitions/FilterCriteriaAssocTri'
      expiryDeadline:
        $ref: '#/definitions/TimeStamp'
  S1BearerSubscriptionPost:
    type: object
    required:
      - callbackReference
      - s1BearerSubscriptionCriteria
    properties:
      callbackReference:
        $ref: '#/definitions/CallbackReference'
      eventType:
        $ref: '#/definitions/EventType'
      s1BearerSubscriptionCriteria:
        $ref: '#/definitions/S1BearerSubscriptionCriteria'
      expiryDeadline:
        $ref: '#/definitions/TimeStamp'
  S1BearerSubscription:
    type: object
    required:
      - callbackReference
      - _links
      - s1BearerSubscriptionCriteria
    properties:
      callbackReference:
        $ref: '#/definitions/CallbackReference'
      _links:
        $ref: '#/definitions/Link'
      eventType:
        $ref: '#/definitions/EventType'
      s1BearerSubscriptionCriteria:
        $ref: '#/definitions/S1BearerSubscriptionCriteria'
      expiryDeadline:
        $ref: '#/definitions/TimeStamp'
  RabEstSubscription:
    type: object
    required:
      - callbackReference
      - _links
      - filterCriteria
    properties:
      callbackReference:
        $ref: '#/definitions/CallbackReference'
      _links:
        $ref: '#/definitions/Link'
      filterCriteria:
        $ref: '#/definitions/FilterCriteriaAssocQci'
      expiryDeadline:
        $ref: '#/definitions/TimeStamp'
  RabEstSubscriptionPost:
    type: object
    required:
      - callbackReference
      - filterCriteria
    properties:
      callbackReference:
        $ref: '#/definitions/CallbackReference'
      filterCriteria:
        $ref: '#/definitions/FilterCriteriaAssocQci'
      expiryDeadline:
        $ref: '#/definitions/TimeStamp'
  RabModSubscription:
    type: object
    required:
      - callbackReference
      - _links
      - filterCriteria
    properties:
      callbackReference:
        $ref: '#/definitions/CallbackReference'
      _links:
        $ref: '#/definitions/Link'
      filterCriteria:
        $ref: '#/definitions/FilterCriteriaAssocQci'
      expiryDeadline:
        $ref: '#/definitions/TimeStamp'
  RabModSubscriptionPost:
    type: object
    required:
      - callbackReference
      - filterCriteria
    properties:
      callbackReference:
        $ref: '#/definitions/CallbackReference'
      filterCriteria:
        $ref: '#/definitions/FilterCriteriaAssocQci'
      expiryDeadline:
        $ref: '#/definitions/TimeStamp'
  RabRelSubscription:
    type: object
    required:
      - callbackReference
      - _links
      - filterCriteria
    properties:
      callbackReference:
        $ref: '#/definitions/CallbackReference'
      _links:
        $ref: '#/definitions/Link'
      filterCriteria:
        $ref: '#/definitions/FilterCriteriaAssocQci'
      expiryDeadline:
        $ref: '#/definitions/TimeStamp'
  RabRelSubscriptionPost:
    type: object
    required:
      - callbackReference
      - filterCriteria
    properties:
      callbackReference:
        $ref: '#/definitions/CallbackReference'
      filterCriteria:
        $ref: '#/definitions/FilterCriteriaAssocQci'
      expiryDeadline:
        $ref: '#/definitions/TimeStamp'
  CaReConfSubscription:
    type: object
    required:
      - callbackReference
      - _links
      - filterCriteria
    properties:
      callbackReference:
        $ref: '#/definitions/CallbackReference'
      _links:
        $ref: '#/definitions/Link'
      filterCriteria:
        $ref: '#/definitions/FilterCriteriaAssoc'
      expiryDeadline:
        $ref: '#/definitions/TimeStamp'
  CaReConfSubscriptionPost:
    type: object
    required:
      - callbackReference
      - filterCriteria
    properties:
      callbackReference:
        $ref: '#/definitions/CallbackReference'
      filterCriteria:
        $ref: '#/definitions/FilterCriteriaAssoc'
      expiryDeadline:
        $ref: '#/definitions/TimeStamp'
  CellChangeSubscriptionPost:
    type: object
    required:
      - callbackReference
      - filterCriteria
    properties:
      callbackReference:
        $ref: '#/definitions/CallbackReference'
      filterCriteria:
        $ref: '#/definitions/FilterCriteriaAssocHo'
      expiryDeadline:
        $ref: '#/definitions/TimeStamp'
  CellChangeSubscription:
    type: object
    required:
      - callbackReference
      - _links
      - filterCriteria
    properties:
      callbackReference:
        $ref: '#/definitions/CallbackReference'
      _links:
        $ref: '#/definitions/Link'
      filterCriteria:
        $ref: '#/definitions/FilterCriteriaAssocHo'
      expiryDeadline:
        $ref: '#/definitions/TimeStamp'
  MeasTaSubscriptionPost:
    type: object
    required:
      - callbackReference
      - filterCriteria
    properties:
      callbackReference:
        $ref: '#/definitions/CallbackReference'
      filterCriteria:
        $ref: '#/definitions/FilterCriteriaAssoc'
      expiryDeadline:
        $ref: '#/definitions/TimeStamp'
  MeasTaSubscription:
    type: object
    required:
      - callbackReference
      - _links
      - filterCriteria
    properties:
      callbackReference:
        $ref: '#/definitions/CallbackReference'
      _links:
        $ref: '#/definitions/Link'
      filterCriteria:
        $ref: '#/definitions/FilterCriteriaAssoc'
      expiryDeadline:
        $ref: '#/definitions/TimeStamp'
  CallbackReference:
    type: string
    format: uri
    description: >-
      URL selected by the Mobile Edge application to receive notifications on
      the subscribed RNIS information.
    example: http://meAppClient.example.com/rni/v1/
  Link:
    type: object
    properties:
      self:
        $ref: '#/definitions/LinkType'
    description: List of hyperlinks related to the resource
  LinkType:
    description: URI referring to a resource
    type: string
    format: uri
    example: http://meAppClient.example.com/rni/v1/
  Subscription:
    type: object
    required:
      - href
      - subscriptionType
    properties:
      href:
        $ref: '#/definitions/LinkType'
      subscriptionType:
        $ref: '#/definitions/SubscriptionType'
    description: A link to a subscription.
  SubscriptionType:
    type: string
    description: Numeric value corresponding to specified type of subscription.
    enum:
      - RESERVED
      - CELL_CHANGE
      - RAB_ESTABLISHMENT
      - RAB_MODIFICATION
      - RAB_RELEASE
      - MEAS_ REPORT_UE
      - MEAS_TIMING_ADVANCE
      - CA_RECONF
      - S1_BEARE
    example: CELL_CHANGE
  FilterCriteriaAssoc:
    type: object
    properties:
      appInsId:
        $ref: '#/definitions/AppInsId'
      associateId:
        $ref: '#/definitions/AssociateId'
      plmn:
        $ref: '#/definitions/Plmn'
      cellId:
        $ref: '#/definitions/CellId'
    description: List of filtering criteria for the subscription.
  FilterCriteriaAssocQci:
    type: object
    properties:
      appInsId:
        $ref: '#/definitions/AppInsId'
      associateId:
        $ref: '#/definitions/AssociateId'
      plmn:
        $ref: '#/definitions/Plmn'
      cellId:
        $ref: '#/definitions/CellId'
      qci:
        $ref: '#/definitions/Qci'
    description: List of filtering criteria for the subscription.
  FilterCriteriaAssocHo:
    type: object
    properties:
      appInsId:
        $ref: '#/definitions/AppInsId'
      associateId:
        $ref: '#/definitions/AssociateId'
      plmn:
        $ref: '#/definitions/Plmn'
      cellId:
        $ref: '#/definitions/CellId'
      hoStatus:
        $ref: '#/definitions/HoStatus'
    description: List of filtering criteria for the subscription.
  FilterCriteriaAssocTri:
    type: object
    properties:
      appInsId:
        $ref: '#/definitions/AppInsId'
      associateId:
        $ref: '#/definitions/AssociateId'
      plmn:
        $ref: '#/definitions/Plmn'
      cellId:
        $ref: '#/definitions/CellId'
      trigger:
        $ref: '#/definitions/Trigger'
    description: List of filtering criteria for the subscription.
  S1BearerSubscriptionCriteria:
    type: object
    properties:
      associateId:
        $ref: '#/definitions/AssociateId'
      plmn:
        $ref: '#/definitions/Plmn'
      cellId:
        $ref: '#/definitions/CellId'
      erabId:
        $ref: '#/definitions/ErabId'
    description: List of filtering criteria for the subscription.
  HoStatus:
    type: string
    description: Description of the subscribed to event
    enum:
      - RESERVED
      - IN_PREPARATION
      - IN_EXECUTION
      - COMPLETED
      - REJECTED
      - CANCELLED
    example: COMPLETED
  EventType:
    type: string
    description: Description of the subscribed event.
    enum:
      - RESERVED
      - S1_BEARER_ESTABLISH
      - S1_BEARER_MODIFY
      - S1_BEARER_RELEASE
    example: S1_BEARER_ESTABLISH
  Trigger:
    type: string
    description: Unique identifier for the mobile edge application instance
    enum:
      - NOT_AVAILABLE
      - PERIODICAL_REPORT_STRONGEST_CELLS
      - PERIODICAL_REPORT_STRONGEST_CELLS_FOR_SON
      - PERIODICAL_REPORT_CGI
      - EVENT_A1
      - EVENT_A2
      - EVENT_A3
      - EVENT_A4
      - EVENT_A5
      - EVENT_A6
      - EVENT_B1
      - EVENT_B2
      - EVENT_C1
      - EVENT_C2
      - EVENT_W1
      - EVENT_W2
      - EVENT_W3
    example: EVENT_A3
  ErabQosParameters_qci:
    type: object
    properties:
      qosInformation:
        $ref: '#/definitions/QosInformation'
    description: QoS Class Identifier as defined in TS 23.401