RniAPI.json 168 KB
Newer Older
Michel Roy's avatar
Michel Roy committed
  "openapi": "3.0.0",
  "info": {
Michel Roy's avatar
Michel Roy committed
    "contact": {
      "url": "https://forge.etsi.org/rep/mec/gs012-rnis-api"
    },
Michel Roy's avatar
Michel Roy committed
    "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.",
    "license": {
admin_forge's avatar
admin_forge committed
      "name": "BSD-3-Clause",
      "url": "https://forge.etsi.org/legal-matters"
    }
  },
  "externalDocs": {
Michel Roy's avatar
Michel Roy committed
    "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"
Michel Roy's avatar
Michel Roy committed
  "servers": [
Michel Roy's avatar
Michel Roy committed
      "url": "https://localhost/rni/v2"
    }
  ],
  "tags": [
    {
      "name": "rni"
    }
  ],
  "paths": {
Michel Roy's avatar
Michel Roy committed
    "/queries/rab_info": {
      "get": {
Michel Roy's avatar
Michel Roy committed
        "tags": [
Michel Roy's avatar
Michel Roy committed
          "rni"
Michel Roy's avatar
Michel Roy committed
        "summary": "Retrieve information on Radio Access Bearers",
        "description": "Queries information about the Radio Access Bearers",
        "operationId": "rab_infoGET",
        "parameters": [
          {
Michel Roy's avatar
Michel Roy committed
            "$ref": "#/components/parameters/Query.AppInsId"
Michel Roy's avatar
Michel Roy committed
            "$ref": "#/components/parameters/Query.CellId"
Michel Roy's avatar
Michel Roy committed
            "$ref": "#/components/parameters/Query.UeIpv4Address"
Michel Roy's avatar
Michel Roy committed
            "$ref": "#/components/parameters/Query.UeIpv6Address"
Michel Roy's avatar
Michel Roy committed
            "$ref": "#/components/parameters/Query.NatedIpAddress"
Michel Roy's avatar
Michel Roy committed
            "$ref": "#/components/parameters/Query.GtpTeid"
Michel Roy's avatar
Michel Roy committed
            "$ref": "#/components/parameters/Query.ErabId"
Michel Roy's avatar
Michel Roy committed
            "$ref": "#/components/parameters/Query.Qci"
Michel Roy's avatar
Michel Roy committed
            "$ref": "#/components/parameters/Query.ErabMbrDl"
Michel Roy's avatar
Michel Roy committed
            "$ref": "#/components/parameters/Query.ErabMbrUl"
Michel Roy's avatar
Michel Roy committed
            "$ref": "#/components/parameters/Query.ErabGbrDl"
Michel Roy's avatar
Michel Roy committed
            "$ref": "#/components/parameters/Query.ErabGbrUl"
          }
        ],
        "responses": {
          "200": {
            "description": "Successful response to rab_info request",
Michel Roy's avatar
Michel Roy committed
            "content": {
              "application/json": {
Michel Roy's avatar
Michel Roy committed
                "schema": {
Michel Roy's avatar
Michel Roy committed
                  "$ref": "#/components/schemas/RabInfo"
Michel Roy's avatar
Michel Roy committed
            "$ref": "#/components/responses/400"
          },
          "401": {
Michel Roy's avatar
Michel Roy committed
            "$ref": "#/components/responses/401"
          },
          "403": {
Michel Roy's avatar
Michel Roy committed
            "$ref": "#/components/responses/403"
          },
          "404": {
Michel Roy's avatar
Michel Roy committed
            "$ref": "#/components/responses/404"
          },
          "406": {
Michel Roy's avatar
Michel Roy committed
            "$ref": "#/components/responses/406"
Michel Roy's avatar
Michel Roy committed
            "$ref": "#/components/responses/429"
Michel Roy's avatar
Michel Roy committed
        "x-swagger-router-controller": "queries"
Michel Roy's avatar
Michel Roy committed
    "/queries/plmn_info": {
      "get": {
Michel Roy's avatar
Michel Roy committed
        "tags": [
Michel Roy's avatar
Michel Roy committed
          "rni"
Michel Roy's avatar
Michel Roy committed
        "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": [
          {
Michel Roy's avatar
Michel Roy committed
            "$ref": "#/components/parameters/Query.AppInsIdArr"
          }
        ],
        "responses": {
          "200": {
Michel Roy's avatar
Michel Roy committed
            "description": "Successful response to plmn_info request",
            "content": {
              "application/json": {
Michel Roy's avatar
Michel Roy committed
                "schema": {
Michel Roy's avatar
Michel Roy committed
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/PlmnInfo"
Michel Roy's avatar
Michel Roy committed
            "$ref": "#/components/responses/400"
Michel Roy's avatar
Michel Roy committed
            "$ref": "#/components/responses/401"
Michel Roy's avatar
Michel Roy committed
            "$ref": "#/components/responses/403"
Michel Roy's avatar
Michel Roy committed
            "$ref": "#/components/responses/404"
Michel Roy's avatar
Michel Roy committed
            "$ref": "#/components/responses/406"
Michel Roy's avatar
Michel Roy committed
            "$ref": "#/components/responses/429"
Michel Roy's avatar
Michel Roy committed
        "x-swagger-router-controller": "queries"
Michel Roy's avatar
Michel Roy committed
    "/queries/s1_bearer_info": {
      "get": {
Michel Roy's avatar
Michel Roy committed
        "tags": [
Michel Roy's avatar
Michel Roy committed
          "rni"
Michel Roy's avatar
Michel Roy committed
        "summary": "Retrieve S1-U bearer information related to specific UE(s)",
        "description": "Queries information about the S1 bearer(s)",
        "operationId": "s1_bearer_infoGET",
        "parameters": [
          {
Michel Roy's avatar
Michel Roy committed
            "$ref": "#/components/parameters/Query.TempUeId"
Michel Roy's avatar
Michel Roy committed
            "$ref": "#/components/parameters/Query.UeIpv4Address"
Michel Roy's avatar
Michel Roy committed
            "$ref": "#/components/parameters/Query.UeIpv6Address"
Michel Roy's avatar
Michel Roy committed
            "$ref": "#/components/parameters/Query.NatedIpAddress"
Michel Roy's avatar
Michel Roy committed
            "$ref": "#/components/parameters/Query.GtpTeid"
Michel Roy's avatar
Michel Roy committed
            "$ref": "#/components/parameters/Query.CellId"
Michel Roy's avatar
Michel Roy committed
            "$ref": "#/components/parameters/Query.ErabIdArr"
          }
        ],
        "responses": {
          "200": {
            "description": "Successful response to s1_bearer_info request",
Michel Roy's avatar
Michel Roy committed
            "content": {
              "application/json": {
                "schema": {
Michel Roy's avatar
Michel Roy committed
                  "$ref": "#/components/schemas/S1BearerInfo"
Michel Roy's avatar
Michel Roy committed
            "$ref": "#/components/responses/400"
Michel Roy's avatar
Michel Roy committed
            "$ref": "#/components/responses/401"
Michel Roy's avatar
Michel Roy committed
            "$ref": "#/components/responses/403"
Michel Roy's avatar
Michel Roy committed
            "$ref": "#/components/responses/404"
Michel Roy's avatar
Michel Roy committed
            "$ref": "#/components/responses/406"
Michel Roy's avatar
Michel Roy committed
            "$ref": "#/components/responses/429"
Michel Roy's avatar
Michel Roy committed
        "x-swagger-router-controller": "queries"
Michel Roy's avatar
Michel Roy committed
    "/queries/layer2_meas": {
      "get": {
Michel Roy's avatar
Michel Roy committed
        "tags": [
Michel Roy's avatar
Michel Roy committed
          "rni"
Michel Roy's avatar
Michel Roy committed
        ],
        "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"
          }
        ],
        "responses": {
          "200": {
Michel Roy's avatar
Michel Roy committed
            "description": "Successful response to layer2 measurements info request",
            "content": {
              "application/json": {
Michel Roy's avatar
Michel Roy committed
                "schema": {
Michel Roy's avatar
Michel Roy committed
                  "$ref": "#/components/schemas/L2Meas"
Michel Roy's avatar
Michel Roy committed
            "$ref": "#/components/responses/400"
Michel Roy's avatar
Michel Roy committed
            "$ref": "#/components/responses/401"
Michel Roy's avatar
Michel Roy committed
            "$ref": "#/components/responses/403"
Michel Roy's avatar
Michel Roy committed
            "$ref": "#/components/responses/404"
Michel Roy's avatar
Michel Roy committed
            "$ref": "#/components/responses/406"
          },
          "414": {
            "$ref": "#/components/responses/414"
Michel Roy's avatar
Michel Roy committed
            "$ref": "#/components/responses/429"
Michel Roy's avatar
Michel Roy committed
        "x-swagger-router-controller": "queries"
Michel Roy's avatar
Michel Roy committed
    "/subscriptions": {
      "get": {
Michel Roy's avatar
Michel Roy committed
        "tags": [
Michel Roy's avatar
Michel Roy committed
          "rni"
Michel Roy's avatar
Michel Roy committed
        ],
        "summary": "Retrieve information on subscriptions for notifications",
        "description": "Queries information on subscriptions for notifications",
        "operationId": "subscriptionLinkList_subscriptionsGET",
        "parameters": [
          {
            "$ref": "#/components/parameters/Query.SubscriptionType"
          }
        ],
        "responses": {
          "200": {
Michel Roy's avatar
Michel Roy committed
            "description": "Response body contains the list of links to requestors subscriptions.",
            "content": {
              "application/json": {
Michel Roy's avatar
Michel Roy committed
                "schema": {
Michel Roy's avatar
Michel Roy committed
                  "$ref": "#/components/schemas/SubscriptionLinkList"
Michel Roy's avatar
Michel Roy committed
                },
                "example": {
Michel Roy's avatar
Michel Roy committed
                  "_links": {
                    "self": {
                      "href": "http://meAppServer.example.com/rni/v2/subscriptions"
                    }
                  },
                  "subscription": [
                    {
                      "_links": {
                        "self": {
                          "href": "http://meAppServer.example.com/rni/v2/subscriptions/sub123"
                        }
                      },
                      "callbackReference": "http://my.callback.com/rni-cell-change/some-id",
                      "subscriptionType": "CellChangeSubscription"
                    }
                  ]
Michel Roy's avatar
Michel Roy committed
            "$ref": "#/components/responses/400"
Michel Roy's avatar
Michel Roy committed
            "$ref": "#/components/responses/401"
Michel Roy's avatar
Michel Roy committed
            "$ref": "#/components/responses/403"
Michel Roy's avatar
Michel Roy committed
            "$ref": "#/components/responses/404"
Michel Roy's avatar
Michel Roy committed
            "$ref": "#/components/responses/406"
Michel Roy's avatar
Michel Roy committed
            "$ref": "#/components/responses/429"
Michel Roy's avatar
Michel Roy committed
        "x-swagger-router-controller": "subscriptions"
Michel Roy's avatar
Michel Roy committed
        "tags": [
Michel Roy's avatar
Michel Roy committed
          "rni"
Michel Roy's avatar
Michel Roy committed
        "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": {
Michel Roy's avatar
Michel Roy committed
                "$ref": "#/components/schemas/InlineSubscription"
              },
              "example": {
                "subscriptionType": "CellChangeSubscription",
                "callbackReference": "http://my.callback.com/rni-cell-change/some-id",
                "filterCriteriaAssocHo": {
                  "appInstanceId": "myApp",
                  "associateId": [
                    {
                      "type": 1,
                      "value": "10.100.0.1"
                    }
                  ],
                  "ecgi": [
                    {
                      "plmn": {
                        "mnc": "01",
                        "mcc": "001"
Michel Roy's avatar
Michel Roy committed
                      },
Michel Roy's avatar
Michel Roy committed
                      "cellId": "ACBDEFA"
Michel Roy's avatar
Michel Roy committed
                  ],
                  "hoStatus": [
                    1,
                    2
                  ]
Michel Roy's avatar
Michel Roy committed
                },
Michel Roy's avatar
Michel Roy committed
                "expiryDeadline": {
                  "seconds": 1977836800,
                  "nanoseconds": 0
Michel Roy's avatar
Michel Roy committed
        },
        "responses": {
          "201": {
Michel Roy's avatar
Michel Roy committed
            "description": "Successful subscription",
            "content": {
              "application/json": {
Michel Roy's avatar
Michel Roy committed
                "schema": {
Michel Roy's avatar
Michel Roy committed
                  "$ref": "#/components/schemas/InlineSubscription"
                },
                "example": {
                  "subscriptionType": "CellChangeSubscription",
                  "callbackReference": "http://my.callback.com/rni-cell-change/some-id",
                  "_links": {
                    "self": {
                      "href": "http://meAppServer.example.com/rni/v2/subscriptions/sub123"
Michel Roy's avatar
Michel Roy committed
                  "filterCriteriaAssocHo": {
                    "appInstanceId": "myApp",
                    "associateId": [
                      {
                        "type": 1,
                        "value": "10.100.0.1"
Michel Roy's avatar
Michel Roy committed
                    ],
                    "ecgi": [
                      {
                        "plmn": {
                          "mnc": "01",
                          "mcc": "001"
                        },
                        "cellId": "ACBDEFA"
                      }
                    ],
                    "hoStatus": [
                      1,
                      2
                    ]
                  },
                  "expiryDeadline": {
                    "seconds": 1977836800,
                    "nanoseconds": 0
Michel Roy's avatar
Michel Roy committed
            "$ref": "#/components/responses/400"
Michel Roy's avatar
Michel Roy committed
            "$ref": "#/components/responses/401"
Michel Roy's avatar
Michel Roy committed
            "$ref": "#/components/responses/403"
Michel Roy's avatar
Michel Roy committed
            "$ref": "#/components/responses/404"
Michel Roy's avatar
Michel Roy committed
            "$ref": "#/components/responses/406"
Michel Roy's avatar
Michel Roy committed
            "$ref": "#/components/responses/412"
Michel Roy's avatar
Michel Roy committed
            "$ref": "#/components/responses/422"
Michel Roy's avatar
Michel Roy committed
            "$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": {
Michel Roy's avatar
Michel Roy committed
                        "$ref": "#/components/schemas/InlineNotification"
                      },
                      "example": {
                        "notificationType": "CellChangeNotification",
                        "associateId": [
                          {
                            "type": 1,
                            "value": "10.100.0.1"
Michel Roy's avatar
Michel Roy committed
                        ],
                        "hoStatus": 1,
                        "srcEcgi": {
                          "plmn": {
                            "mnc": "01",
                            "mcc": "001"
                          },
                          "cellId": "ACBDEFA"
Michel Roy's avatar
Michel Roy committed
                        },
Michel Roy's avatar
Michel Roy committed
                        "tempUeId": {
                          "mmec": 1,
                          "mtmsi": 69967622812
                        },
                        "timeStamp": {
                          "seconds": 1977836800,
                          "nanoseconds": 0
                        },
                        "trgEcgi": {
                          "plmn": {
                            "mnc": "01",
                            "mcc": "001"
                          },
                          "cellId": "FEDCBAA"
Michel Roy's avatar
Michel Roy committed
                        }
                      }
                    }
                  }
                },
                "responses": {
                  "204": {
                    "$ref": "#/components/responses/204"
                  }
Michel Roy's avatar
Michel Roy committed
        "x-swagger-router-controller": "subscriptions"
Michel Roy's avatar
Michel Roy committed
    "/subscriptions/{subscriptionId}": {
      "get": {
Michel Roy's avatar
Michel Roy committed
        "tags": [
Michel Roy's avatar
Michel Roy committed
          "rni"
Michel Roy's avatar
Michel Roy committed
        "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",
        "parameters": [
          {
Michel Roy's avatar
Michel Roy committed
            "$ref": "#/components/parameters/Path.subscrId"
          }
        ],
        "responses": {
          "200": {
Michel Roy's avatar
Michel Roy committed
            "description": "Subscription information regarding subscription notifications",
            "content": {
              "application/json": {
Michel Roy's avatar
Michel Roy committed
                "schema": {
Michel Roy's avatar
Michel Roy committed
                  "$ref": "#/components/schemas/InlineSubscription"
                },
                "example": {
                  "subscriptionType": "CellChangeSubscription",
                  "callbackReference": "http://my.callback.com/rni-cell-change/some-id",
                  "_links": {
                    "self": {
                      "href": "http://meAppServer.example.com/rni/v2/subscriptions/sub123"
Michel Roy's avatar
Michel Roy committed
                  "filterCriteriaAssocHo": {
                    "appInstanceId": "myApp",
                    "associateId": [
                      {
                        "type": 1,
                        "value": "10.100.0.1"
Michel Roy's avatar
Michel Roy committed
                    ],
                    "ecgi": [
                      {
                        "plmn": {
                          "mnc": "01",
                          "mcc": "001"
                        },
                        "cellId": "ACBDEFA"
                      }
                    ],
                    "hoStatus": [
                      1,
                      2
                    ]
                  },
                  "expiryDeadline": {
                    "seconds": 1977836800,
                    "nanoseconds": 0
Michel Roy's avatar
Michel Roy committed
            "$ref": "#/components/responses/400"
Michel Roy's avatar
Michel Roy committed
            "$ref": "#/components/responses/401"
Michel Roy's avatar
Michel Roy committed
            "$ref": "#/components/responses/403"
Michel Roy's avatar
Michel Roy committed
            "$ref": "#/components/responses/404"
Michel Roy's avatar
Michel Roy committed
            "$ref": "#/components/responses/406"
Michel Roy's avatar
Michel Roy committed
            "$ref": "#/components/responses/429"
Michel Roy's avatar
Michel Roy committed
        },
        "x-swagger-router-controller": "subscriptions"
Michel Roy's avatar
Michel Roy committed
        "tags": [
Michel Roy's avatar
Michel Roy committed
          "rni"
Michel Roy's avatar
Michel Roy committed
        "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": {
Michel Roy's avatar
Michel Roy committed
                "$ref": "#/components/schemas/InlineSubscription"
              },
              "example": {
                "subscriptionType": "CellChangeSubscription",
                "callbackReference": "http://my.callback.com/rni-cell-change/some-id",
                "_links": {
                  "self": {
                    "href": "http://meAppServer.example.com/rni/v2/subscriptions/sub123"
Michel Roy's avatar
Michel Roy committed
                "filterCriteriaAssocHo": {
                  "appInstanceId": "myApp",
                  "associateId": [
                    {
                      "type": 1,
                      "value": "10.100.0.1"
Michel Roy's avatar
Michel Roy committed
                  ],
                  "ecgi": [
                    {
                      "plmn": {
                        "mnc": "01",
                        "mcc": "001"
                      },
                      "cellId": "ACBDEFA"
                    }
                  ],
                  "hoStatus": [
                    1,
                    2
                  ]
                },
                "expiryDeadline": {
                  "seconds": 1977836800,
                  "nanoseconds": 0
Michel Roy's avatar
Michel Roy committed
          }
        },
        "parameters": [
          {
            "$ref": "#/components/parameters/Path.subscrId"
          }
        ],
        "responses": {
          "200": {
            "description": "Successful subscription to response to subscription notifications",
            "content": {
              "application/json": {
                "schema": {
Michel Roy's avatar
Michel Roy committed
                  "$ref": "#/components/schemas/InlineSubscription"
Michel Roy's avatar
Michel Roy committed
                },
                "example": {
Michel Roy's avatar
Michel Roy committed
                  "subscriptionType": "CellChangeSubscription",
                  "callbackReference": "http://my.callback.com/rni-cell-change/some-id",
                  "_links": {
                    "self": {
                      "href": "http://meAppServer.example.com/rni/v2/subscriptions/sub123"
Michel Roy's avatar
Michel Roy committed
                  },
                  "filterCriteriaAssocHo": {
                    "appInstanceId": "myApp",
                    "associateId": [
                      {
                        "type": 1,
                        "value": "10.100.0.1"
                      }
                    ],
                    "ecgi": [
                      {
                        "plmn": {
                          "mnc": "01",
                          "mcc": "001"
                        },
                        "cellId": "ACBDEFA"
                      }
                    ],
                    "hoStatus": [
                      1,
                      2
                    ]
                  },
                  "expiryDeadline": {
                    "seconds": 1977836800,
                    "nanoseconds": 0
Michel Roy's avatar
Michel Roy committed
          "400": {
            "$ref": "#/components/responses/400"
          },
          "401": {
            "$ref": "#/components/responses/401"
          },
          "403": {
            "$ref": "#/components/responses/403"
          },
          "404": {
Michel Roy's avatar
Michel Roy committed
            "$ref": "#/components/responses/404"
Michel Roy's avatar
Michel Roy committed
            "$ref": "#/components/responses/406"
Michel Roy's avatar
Michel Roy committed
            "$ref": "#/components/responses/412"
Michel Roy's avatar
Michel Roy committed
            "$ref": "#/components/responses/422"
Michel Roy's avatar
Michel Roy committed
            "$ref": "#/components/responses/429"
Michel Roy's avatar
Michel Roy committed
        },
        "x-swagger-router-controller": "subscriptions"
      },
      "delete": {
Michel Roy's avatar
Michel Roy committed
        "tags": [
Michel Roy's avatar
Michel Roy committed
          "rni"
Michel Roy's avatar
Michel Roy committed
        "summary": "Cancel an existing subscription",
        "description": "Cancels an existing subscription, identified by its self-referring URI returned on creation (initial POST)",
        "operationId": "subscriptionsDELETE",
        "parameters": [
          {
Michel Roy's avatar
Michel Roy committed
            "$ref": "#/components/parameters/Path.subscrId"
          }
        ],
        "responses": {
          "204": {
Michel Roy's avatar
Michel Roy committed
            "$ref": "#/components/responses/204"
          },
          "401": {
            "$ref": "#/components/responses/401"
          },
          "403": {
            "$ref": "#/components/responses/403"
          },
          "404": {
            "$ref": "#/components/responses/404"
          },
          "429": {
            "$ref": "#/components/responses/429"
Michel Roy's avatar
Michel Roy committed
        "x-swagger-router-controller": "subscriptions"
Michel Roy's avatar
Michel Roy committed
    }
  },
  "components": {
    "responses": {
      "204": {
        "description": "No Content"
      },
      "400": {
        "description": "Bad Request : used to indicate that incorrect parameters were passed to the request.",
        "content": {
Michel Roy's avatar
Michel Roy committed
          "application/problem+json": {
            "schema": {
Michel Roy's avatar
Michel Roy committed
              "$ref": "#/components/schemas/ProblemDetails"
Michel Roy's avatar
Michel Roy committed
          }
        }
      },
      "401": {
        "description": "Unauthorized :  used when the client did not submit credentials.",
        "content": {
Michel Roy's avatar
Michel Roy committed
          "application/problem+json": {
            "schema": {
Michel Roy's avatar
Michel Roy committed
              "$ref": "#/components/schemas/ProblemDetails"
Michel Roy's avatar
Michel Roy committed
          }
        }
      },
      "403": {
        "description": "Forbidden :  operation is not allowed given the current status of the resource.",
        "content": {
Michel Roy's avatar
Michel Roy committed
          "application/problem+json": {
            "schema": {
Michel Roy's avatar
Michel Roy committed
              "$ref": "#/components/schemas/ProblemDetails"
Michel Roy's avatar
Michel Roy committed
          }
        }
      },
      "404": {
        "description": "Not Found :  used when a client provided a URI that cannot be mapped to a valid resource URI.",
        "content": {
Michel Roy's avatar
Michel Roy committed
          "application/problem+json": {
            "schema": {
Michel Roy's avatar
Michel Roy committed
              "$ref": "#/components/schemas/ProblemDetails"
Michel Roy's avatar
Michel Roy committed
          }
        }
      },
      "406": {
        "description": "Not Acceptable : used to indicate that the server cannot provide the any of the content formats supported by the client.",
        "content": {
Michel Roy's avatar
Michel Roy committed
          "application/problem+json": {
            "schema": {
Michel Roy's avatar
Michel Roy committed
              "$ref": "#/components/schemas/ProblemDetails"
Michel Roy's avatar
Michel Roy committed
          }
        }
      },
      "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": {
Michel Roy's avatar
Michel Roy committed
          "application/problem+json": {
            "schema": {
Michel Roy's avatar
Michel Roy committed
              "$ref": "#/components/schemas/ProblemDetails"
Michel Roy's avatar
Michel Roy committed
      "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": {
Michel Roy's avatar
Michel Roy committed
          "application/problem+json": {
            "schema": {
Michel Roy's avatar
Michel Roy committed
              "$ref": "#/components/schemas/ProblemDetails"
Michel Roy's avatar
Michel Roy committed
          }
        }
      },
      "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": {
Michel Roy's avatar
Michel Roy committed
          "application/problem+json": {
            "schema": {
Michel Roy's avatar
Michel Roy committed
              "$ref": "#/components/schemas/ProblemDetails"
Michel Roy's avatar
Michel Roy committed
          }
        }
      },
      "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": {
Michel Roy's avatar
Michel Roy committed
          "application/problem+json": {
            "schema": {
Michel Roy's avatar
Michel Roy committed
              "$ref": "#/components/schemas/ProblemDetails"
Michel Roy's avatar
Michel Roy committed
            },
            "example": {
              "application/problem+json": {
Michel Roy's avatar
Michel Roy committed
                "type": "https://meAppServer.example.com/rni/v2/probs/too-many targets",
                "title": "Too many targets",
                "status": "422",
                "detail": "The target area for the request is considered too large",
                "instance": "/meAppClient.example.com/77777/msgs/abc"
Michel Roy's avatar
Michel Roy committed
          }
        }
      },
      "429": {
        "description": "Too Many Requests : used when a rate limiter has triggered.",
        "content": {
Michel Roy's avatar
Michel Roy committed
          "application/problem+json": {
            "schema": {
Michel Roy's avatar
Michel Roy committed
              "$ref": "#/components/schemas/ProblemDetails"
Michel Roy's avatar
Michel Roy committed
          }
        }
      }
    },
    "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": "array",
          "items": {
            "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": "array",
          "items": {
            "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": "array",
          "items": {
            "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": "array",
          "items": {
            "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": "array",
          "items": {
            "type": "string"
          }
        },
        "x-exportParamName": "GtpTeid"
      },
      "Query.ErabId": {
        "name": "erab_id",
        "in": "query",
        "description": "E-RAB identifier",
        "required": false,
        "schema": {
          "type": "integer",
Michel Roy's avatar
Michel Roy committed
          "format": "int32"
Michel Roy's avatar
Michel Roy committed
        },
        "x-exportParamName": "ErabId",
        "x-optionalDataType": "Int32"
      },
      "Query.ErabIdArr": {
        "name": "erab_id",
        "in": "query",
        "description": "Comma separated list of E-RAB identifiers",
        "required": false,
        "schema": {
          "type": "array",
          "items": {
            "type": "integer",
Michel Roy's avatar
Michel Roy committed
            "format": "int32"
Michel Roy's avatar
Michel Roy committed
          }
        },
        "x-exportParamName": "ErabIdArr"
      },
      "Query.Qci": {
        "name": "qci",
        "in": "query",
        "description": "QoS Class Identifier as defined in ETSI TS 123 401",
        "required": false,
        "schema": {
          "type": "integer",
Michel Roy's avatar
Michel Roy committed
          "format": "int32"
Michel Roy's avatar
Michel Roy committed
        },
        "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": {
          "type": "integer",
Michel Roy's avatar
Michel Roy committed
          "format": "int32"
Michel Roy's avatar
Michel Roy committed
        },
        "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",
Michel Roy's avatar
Michel Roy committed
          "format": "int32"
Michel Roy's avatar
Michel Roy committed
        },
        "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",
Michel Roy's avatar
Michel Roy committed
          "format": "int32"
Michel Roy's avatar
Michel Roy committed
        },
        "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",
Michel Roy's avatar
Michel Roy committed
          "format": "int32"
Michel Roy's avatar
Michel Roy committed
1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520
        },
        "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": "array",
          "items": {
            "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": {
          "type": "integer"
        },
        "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": {
          "type": "integer"
        },
        "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": {
          "type": "integer"
        },
        "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": {
          "type": "integer"
        },
        "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",
        "required": false,
        "schema": {
          "type": "integer"
        },
        "x-exportParamName": "UlGbrPdrCell"
      },
      "Query.DlNonGbrPdrCell": {
        "name": "dl_nongbr_pdr_cell",
        "in": "query",
        "description": "Packet discard rate for downlink non-GBR traffic in percentage as defined in ETSI TS 136 314",
        "required": false,
        "schema": {
          "type": "integer"
        },
        "x-exportParamName": "DlNonGbrPdrCell"
      },
      "Query.UlNonGbrPdrCell": {
        "name": "ul_nongbr_pdr_cell",
        "in": "query",
        "description": "Packet discard rate for uplink non-GBR traffic in percentage as defined in ETSI TS 136 314",
        "required": false,
        "schema": {
          "type": "integer"
        },
        "x-exportParamName": "UlNonGbrPdrCell"
      },
      "Query.DlGbrDelayUe": {
        "name": "dl_gbr_delay_ue",
        "in": "query",
        "description": "Packet delay of downlink GBR traffic of a UE as defined in ETSI TS 136 314",
        "required": false,
        "schema": {
          "type": "integer"
        },
        "x-exportParamName": "DlGbrDelayUe"
      },
      "Query.UlGbrDelayUe": {
        "name": "ul_gbr_delay_ue",
        "in": "query",
        "description": "Packet delay of uplink GBR traffic of a UE as defined in ETSI TS 136 314",
        "required": false,
        "schema": {
          "type": "integer"
        },
        "x-exportParamName": "UlGbrDelayUe"
      },
      "Query.DlNonGbrDelayUe": {
        "name": "dl_nongbr_delay_ue",
        "in": "query",
        "description": "Packet delay of downlink non-GBR traffic of a UE as defined in ETSI TS 136 314",
        "required": false,
        "schema": {
          "type": "integer"
        },
        "x-exportParamName": "DlNonGbrDelayUe"
      },
      "Query.UlNonGbrDelayUe": {
        "name": "ul_nongbr_delay_ue",
        "in": "query",
        "description": "Packet delay of uplink non-GBR traffic of a UE as defined in ETSI TS 136 314",
        "required": false,
        "schema": {
          "type": "integer"
        },
        "x-exportParamName": "UlNonGbrDelayUe"
      },
      "Query.DlGbrPdrUe": {
        "name": "dl_gbr_pdr_ue",
        "in": "query",
        "description": "Packet discard rate of downlink GBR traffic of a UE in percentage as defined in ETSI TS 136 314",
        "required": false,
        "schema": {
          "type": "integer"
        },
        "x-exportParamName": "DlGbrPdrUe"
      },
      "Query.UlGbrPdrUe": {
        "name": "ul_gbr_pdr_ue",
        "in": "query",
        "description": "Packet discard rate of uplink GBR traffic of a UE in percentage as defined in ETSI TS 136 314",
        "required": false,
        "schema": {
          "type": "integer"
        },
        "x-exportParamName": "UlGbrPdrUe"
      },
      "Query.DlNonGbrPdrUe": {
        "name": "dl_nongbr_pdr_ue",
        "in": "query",
        "description": "Packet discard rate of downlink non-GBR traffic of a UE in percentage as defined in ETSI TS 136 314",
        "required": false,
        "schema": {
          "type": "integer"
        },
        "x-exportParamName": "DlNonGbrPdrUe"
      },
      "Query.UlNonGbrPdrUe": {
        "name": "ul_nongbr_pdr_ue",
        "in": "query",
        "description": "Packet discard rate of uplink non-GBR traffic of a UE in percentage as defined in ETSI TS 136 314",
        "required": false,
        "schema": {
          "type": "integer"
        },
        "x-exportParamName": "UlNonGbrPdrUe"
      },
      "Query.DlGbrThroughputUe": {
        "name": "dl_gbr_throughput_ue",
        "in": "query",
        "description": "Scheduled throughput of downlink GBR traffic of a UE as defined in ETSI TS 136 314",
        "required": false,
        "schema": {
          "type": "integer"
        },
        "x-exportParamName": "DlGbrThroughputUe"
      },
      "Query.UlGbrThroughputUe": {
        "name": "ul_gbr_throughput_ue",
        "in": "query",
        "description": "Scheduled throughput of uplink GBR traffic of a UE as defined in ETSI TS 136 314",
        "required": false,
        "schema": {
          "type": "integer"
        },
        "x-exportParamName": "UlGbrThroughputUe"
      },
      "Query.DlNonGbrThroughputUe": {
        "name": "dl_nongbr_throughput_ue",
        "in": "query",
        "description": "Scheduled throughput of downlink non-GBR traffic of a UE as defined in ETSI TS 136 314",
        "required": false,
        "schema": {
          "type": "integer"
        },
        "x-exportParamName": "DlNonGbrThroughputUe"
      },
      "Query.UlNonGbrThroughputUe": {
        "name": "ul_nongbr_throughput_ue",
        "in": "query",
        "description": "Scheduled throughput of uplink non-GBR traffic of a UE as defined in ETSI TS 136 314",
        "required": false,
        "schema": {
          "type": "integer"
        },
        "x-exportParamName": "UlNonGbrThroughputUe"
      },
      "Query.DlGbrDataVolumeUe": {
        "name": "dl_gbr_data_volume_ue",
        "in": "query",
        "description": "Data volume of downlink GBR traffic of a UE as defined in ETSI TS 136 314",
        "required": false,
        "schema": {
          "type": "integer"
        },
        "x-exportParamName": "DlGbrDataVolumeUe"
      },
      "Query.UlGbrDataVolumeUe": {
        "name": "ul_gbr_data_volume_ue",
        "in": "query",
        "description": "Data volume of uplink GBR traffic of a UE as defined in ETSI TS 136 314",
        "required": false,
        "schema": {
          "type": "integer"
        },
        "x-exportParamName": "UlGbrDataVolumeUe"
      },
      "Query.DlNonGbrDataVolumeUe": {
        "name": "dl_nongbr_data_volume_ue",
        "in": "query",
        "description": "Data volume of downlink non-GBR traffic of a UE as defined in ETSI TS 136 314",
        "required": false,
        "schema": {
          "type": "integer"
        },
        "x-exportParamName": "DlNonGbrDataVolumeUe"
      },
      "Query.UlNonGbrDataVolumeUe": {
        "name": "ul_nongbr_data_volume_ue",
        "in": "query",
        "description": "Data volume of uplink non-GBR traffic of a UE as defined in ETSI TS 136 314",
        "required": false,
        "schema": {
          "type": "integer"
        },
        "x-exportParamName": "UlNonGbrDataVolumeUe"
      },
      "Query.SubscriptionType": {
        "name": "subscription_type",
        "in": "query",
Michel Roy's avatar
Michel Roy committed
        "description": "Filter on a specific subscription type. Permitted values: cell_change, rab_est, rab_mod, rab_rel, meas_rep_ue, nr_meas_rep_ue, timing_advance_ue, ca_reconf, s1_bearer.",
Michel Roy's avatar
Michel Roy committed
        "required": false,
        "schema": {
          "type": "string"
        },
        "x-exportParamName": "SubscriptionType"
      }
    },
    "schemas": {
      "AssociateId": {
        "properties": {
          "type": {
Michel Roy's avatar
Michel Roy committed
            "description": "Numeric value (0-255) corresponding to specified type of identifier as following: <p>0 = reserved. <p>1 = UE_IPv4_ADDRESS. <p>2 = UE_IPV6_ADDRESS. <p>3 = NATED_IP_ADDRESS. <p>4 = GTP_TEID.",
Michel Roy's avatar
Michel Roy committed
            "enum": [
Michel Roy's avatar
Michel Roy committed
            "type": "integer",
Michel Roy's avatar
Michel Roy committed
            "x-etsi-mec-cardinality": "1",
            "x-etsi-mec-origin-type": "Enum"
          },
          "value": {
            "description": "Value for the identifier.",
            "type": "string",
            "x-etsi-mec-cardinality": "1",
            "x-etsi-mec-origin-type": "String"
          }
        }
      },
      "CaReconfNotification": {
        "properties": {
          "associateId": {
            "description": "0 to N identifiers to associate the event for a specific UE or flow.",
            "items": {
              "$ref": "#/components/schemas/AssociateId"
            },
            "minItems": 0,
            "type": "array",
            "x-etsi-mec-cardinality": "0..N",
            "x-etsi-mec-origin-type": "AssociateId"
Michel Roy's avatar
Michel Roy committed
          "carrierAggregationMeasInfo": {
            "description": "This parameter can be repeated to contain information of all the carriers assign for Carrier Aggregation up to M.",
            "items": {
              "type": "object",
              "properties": {
Michel Roy's avatar
Michel Roy committed
                "cellIdNei": {
Michel Roy's avatar
Michel Roy committed
                  "$ref": "#/components/schemas/CellId"
Michel Roy's avatar
Michel Roy committed
                },
                "cellIdSrv": {
Michel Roy's avatar
Michel Roy committed
                  "$ref": "#/components/schemas/CellId"
Michel Roy's avatar
Michel Roy committed
                },
                "rsrpNei": {
                  "description": "Reference Signal Received Power as defined in ETSI TS 136 214 [i.5].",
Michel Roy's avatar
Michel Roy committed
                  "format": "uint32",
Michel Roy's avatar
Michel Roy committed
                  "type": "integer",
Michel Roy's avatar
Michel Roy committed
                  "x-etsi-mec-cardinality": "0..1",
                  "x-etsi-mec-origin-type": "Uint32"
                },
                "rsrpSrv": {
                  "description": "Reference Signal Received Power as defined in ETSI TS 136 214 [i.5].",
Michel Roy's avatar
Michel Roy committed
                  "format": "uint32",
Michel Roy's avatar
Michel Roy committed
                  "type": "integer",
Michel Roy's avatar
Michel Roy committed
                  "x-etsi-mec-cardinality": "0..1",
                  "x-etsi-mec-origin-type": "Uint32"
                },
                "rsrqNei": {
                  "description": "Reference Signal Received Quality as defined in ETSI TS 136 214 [i.5].",
Michel Roy's avatar
Michel Roy committed
                  "format": "uint32",
Michel Roy's avatar
Michel Roy committed
                  "type": "integer",
Michel Roy's avatar
Michel Roy committed
                  "x-etsi-mec-cardinality": "0..1",
                  "x-etsi-mec-origin-type": "Uint32"
                },
                "rsrqSrv": {
                  "description": "Reference Signal Received Quality as defined in ETSI TS 136 214 [i.5].",
Michel Roy's avatar
Michel Roy committed
                  "format": "uint32",
Michel Roy's avatar
Michel Roy committed
                  "type": "integer",
Michel Roy's avatar
Michel Roy committed
                  "x-etsi-mec-cardinality": "0..1",
                  "x-etsi-mec-origin-type": "Uint32"
Michel Roy's avatar
Michel Roy committed
            "minItems": 0,
Michel Roy's avatar
Michel Roy committed
            "required": [
              "cellIdSrv",
              "cellIdNei"
            ],
            "type": "array",
            "x-etsi-mec-cardinality": "0..M",
            "x-etsi-mec-origin-type": "Structure (inlined)"
          },
          "ecgi": {
Michel Roy's avatar
Michel Roy committed
            "$ref": "#/components/schemas/Ecgi"
Michel Roy's avatar
Michel Roy committed
          },
          "notificationType": {
            "description": "Shall be set to \"CaReConfNotification\".",
            "type": "string",
            "x-etsi-mec-cardinality": "1",
            "x-etsi-mec-origin-type": "String"
          },
          "secondaryCellAdd": {
            "description": "",
            "items": {
              "type": "object",
              "properties": {
                "ecgi": {
Michel Roy's avatar
Michel Roy committed
                  "$ref": "#/components/schemas/Ecgi"
Michel Roy's avatar
Michel Roy committed
            "minItems": 0,
Michel Roy's avatar
Michel Roy committed
            "required": [
              "ecgi"
            ],
            "type": "array",
            "x-etsi-mec-cardinality": "0..N",
            "x-etsi-mec-origin-type": "Structure (inlined)"
Michel Roy's avatar
Michel Roy committed
          "secondaryCellRemove": {
            "description": "",
            "items": {
              "type": "object",
              "properties": {
Michel Roy's avatar
Michel Roy committed
                "ecgi": {
Michel Roy's avatar
Michel Roy committed
                  "$ref": "#/components/schemas/Ecgi"
Michel Roy's avatar
Michel Roy committed
            "minItems": 0,
Michel Roy's avatar
Michel Roy committed
            "required": [
              "ecgi"
            ],
            "type": "array",
            "x-etsi-mec-cardinality": "0..N",
            "x-etsi-mec-origin-type": "Structure (inlined)"
          },
          "timeStamp": {
Michel Roy's avatar
Michel Roy committed
            "$ref": "#/components/schemas/TimeStamp"
Michel Roy's avatar
Michel Roy committed
        "required": [
          "notificationType",
          "ecgi"
Michel Roy's avatar
Michel Roy committed
        "type": "object",
        "x-etsi-ref": "6.4.8"
      },
      "CaReconfSubscription": {
        "properties": {
          "_links": {
            "description": "Hyperlink related to the resource. This shall be only included in the HTTP responses and in HTTP PUT requests.",
            "properties": {
              "self": {
Michel Roy's avatar
Michel Roy committed
                "$ref": "#/components/schemas/LinkType"
Michel Roy's avatar
Michel Roy committed
              }
            },
            "required": [
              "self"
            ],
            "type": "object",
            "x-etsi-mec-cardinality": "0..1",
            "x-etsi-mec-origin-type": "Structure (inlined)"
          },
          "callbackReference": {
            "description": "URI selected by the service consumer to receive notifications on the subscribed RNIS information. This shall be included both in the request and in response.",
            "format": "uri",
            "type": "string",
            "x-etsi-mec-cardinality": "1",
            "x-etsi-mec-origin-type": "URI"
          },
          "expiryDeadline": {
Michel Roy's avatar
Michel Roy committed
            "$ref": "#/components/schemas/TimeStamp"
Michel Roy's avatar
Michel Roy committed
          },
          "filterCriteriaAssoc": {
            "description": "List of filtering criteria for the subscription. Any filtering criteria from below, which is included in the request, shall also be included in the response.",
            "properties": {
              "appInstanceId": {
                "description": "Unique identifier for the MEC application instance.",
                "type": "string",
                "x-etsi-mec-cardinality": "0..1",
                "x-etsi-mec-origin-type": "String"
              },
              "associateId": {
                "description": "0 to N identifiers to associate the information for a specific UE or flow.",
                "items": {
                  "$ref": "#/components/schemas/AssociateId"
                },
                "minItems": 0,
                "type": "array",
                "x-etsi-mec-cardinality": "0..N",
                "x-etsi-mec-origin-type": "AssociateId"
              },
              "ecgi": {
                "description": "E-UTRAN Cell Global Identifier.",
                "items": {
                  "$ref": "#/components/schemas/Ecgi"
                },
                "minItems": 0,
                "type": "array",
                "x-etsi-mec-cardinality": "0..N",
                "x-etsi-mec-origin-type": "Ecgi"
              }
            },
            "type": "object",
            "x-etsi-mec-cardinality": "1",
            "x-etsi-mec-origin-type": "Structure (inlined)"
          },
          "subscriptionType": {
            "description": "Shall be set to \"CaReconfSubscription\".",
            "type": "string",
            "x-etsi-mec-cardinality": "1",
            "x-etsi-mec-origin-type": "String"
Michel Roy's avatar
Michel Roy committed
        },
        "required": [
          "subscriptionType",
          "callbackReference",
          "filterCriteriaAssoc"
Michel Roy's avatar
Michel Roy committed
        "type": "object",
        "x-etsi-ref": "6.3.8"
      },
      "CellChangeNotification": {
        "properties": {
          "associateId": {
            "description": "0 to N identifiers to associate the event for a specific UE or flow.",
            "items": {
              "$ref": "#/components/schemas/AssociateId"
            },
            "minItems": 0,
            "type": "array",
            "x-etsi-mec-cardinality": "0..N",
            "x-etsi-mec-origin-type": "AssociateId"
          },
          "hoStatus": {
Michel Roy's avatar
Michel Roy committed
            "description": "Indicate the status of the UE handover procedure. Values are defined as following: <p>1 = IN_PREPARATION. <p>2 = IN_EXECUTION. <p>3 = COMPLETED. <p>4 = REJECTED. <p>5 = CANCELLED.",
Michel Roy's avatar
Michel Roy committed
            "enum": [
Michel Roy's avatar
Michel Roy committed
            "type": "integer",
Michel Roy's avatar
Michel Roy committed
            "x-etsi-mec-cardinality": "1",
            "x-etsi-mec-origin-type": "Enum"
          },
          "notificationType": {
            "description": "Shall be set to \"CellChangeNotification\".",
            "type": "string",
            "x-etsi-mec-cardinality": "1",
            "x-etsi-mec-origin-type": "String"
          },
          "srcEcgi": {
Michel Roy's avatar
Michel Roy committed
            "$ref": "#/components/schemas/Ecgi"
Michel Roy's avatar
Michel Roy committed
          },
          "tempUeId": {
            "description": "The temporary identifier allocated for the specific UE as defined below.",
            "properties": {
              "mmec": {
                "description": "MMEC as defined in ETSI TS 136 413 [i.3].",
                "type": "string",
                "x-etsi-mec-cardinality": "1",
                "x-etsi-mec-origin-type": "String"
              },
              "mtmsi": {
                "description": "M-TMSI as defined in ETSI TS 136 413 [i.3].",
                "type": "string",
                "x-etsi-mec-cardinality": "1",
                "x-etsi-mec-origin-type": "String"
Michel Roy's avatar
Michel Roy committed
            "required": [
              "mmec",
              "mtmsi"
            ],
            "type": "object",
            "x-etsi-mec-cardinality": "0..1",
            "x-etsi-mec-origin-type": "Structure (inlined)"
          },
          "timeStamp": {
Michel Roy's avatar
Michel Roy committed
            "$ref": "#/components/schemas/TimeStamp"
Michel Roy's avatar
Michel Roy committed
          },
          "trgEcgi": {
Michel Roy's avatar
Michel Roy committed
            "description": "E-UTRAN Cell Global Identifier of the target cell.\nNOTE: Cardinality N is valid only in case of statuses IN_PREPARATION, REJECTED and CANCELLED.",
Michel Roy's avatar
Michel Roy committed
            "items": {
              "$ref": "#/components/schemas/Ecgi"
            },
            "minItems": 1,
            "type": "array",
            "x-etsi-mec-cardinality": "1..N",
            "x-etsi-mec-origin-type": "Ecgi"
          }
        },
        "required": [
          "notificationType",
          "srcEcgi",
          "trgEcgi",
          "hoStatus"
        ],
        "type": "object",
        "x-etsi-ref": "6.4.2"
      },
      "CellChangeSubscription": {
        "properties": {
          "_links": {
            "description": "Hyperlink related to the resource. This shall be only included in the HTTP responses and in HTTP PUT requests.",
            "properties": {
              "self": {
Michel Roy's avatar
Michel Roy committed
                "$ref": "#/components/schemas/LinkType"
Michel Roy's avatar
Michel Roy committed
            },
            "required": [
              "self"
            ],
            "type": "object",
            "x-etsi-mec-cardinality": "0..1",
            "x-etsi-mec-origin-type": "Structure (inlined)"
          },
          "callbackReference": {
Michel Roy's avatar
Michel Roy committed
            "description": "URI selected by the service consumerto receive notifications on the subscribed RNIS information. This shall be included both in the request and in response.",
Michel Roy's avatar
Michel Roy committed
            "format": "uri",
            "type": "string",
            "x-etsi-mec-cardinality": "1",
            "x-etsi-mec-origin-type": "URI"
          },
          "expiryDeadline": {
Michel Roy's avatar
Michel Roy committed
            "$ref": "#/components/schemas/TimeStamp"
Michel Roy's avatar
Michel Roy committed
          },
          "filterCriteriaAssocHo": {
            "description": "List of filtering criteria for the subscription. Any filtering criteria from below, which is included in the request, shall also be included in the response.",
            "properties": {
              "appInstanceId": {
                "description": "Unique identifier for the MEC application instance.",
                "type": "string",
                "x-etsi-mec-cardinality": "0..1",
                "x-etsi-mec-origin-type": "String"
              },
              "associateId": {
                "description": "0 to N identifiers to associate the information for a specific UE or flow.",
                "items": {
                  "$ref": "#/components/schemas/AssociateId"
                },
                "minItems": 0,
                "type": "array",
                "x-etsi-mec-cardinality": "0..N",
                "x-etsi-mec-origin-type": "AssociateId"
              },
              "ecgi": {
                "description": "E-UTRAN Cell Global Identifier.",
                "items": {
                  "$ref": "#/components/schemas/Ecgi"
                },
                "minItems": 0,
                "type": "array",
                "x-etsi-mec-cardinality": "0..N",
                "x-etsi-mec-origin-type": "Ecgi"
              },
              "hoStatus": {
Michel Roy's avatar
Michel Roy committed
                "description": "In case hoStatus is not included in the subscription request, the default value 3 = COMPLETED shall be used and included in the response: <p>1 = IN_PREPARATION. <p>2 = IN_EXECUTION. <p>3 = COMPLETED. <p>4 = REJECTED. <p>5 = CANCELLED.",
Michel Roy's avatar
Michel Roy committed
                "items": {
                  "$ref": "#/components/schemas/Enum"
                },
                "minItems": 0,
                "type": "array",
                "x-etsi-mec-cardinality": "0..N",
                "x-etsi-mec-origin-type": "Enum"
              }
            },
            "type": "object",
            "x-etsi-mec-cardinality": "1",
            "x-etsi-mec-origin-type": "Structure (inlined)"
          },
          "subscriptionType": {
            "description": "Shall be set to \"CellChangeSubscription\".",
            "type": "string",
            "x-etsi-mec-cardinality": "1",
            "x-etsi-mec-origin-type": "String"
          }
        },
        "required": [
          "subscriptionType",
          "callbackReference",
          "filterCriteriaAssocHo"
        ],
        "type": "object",
        "x-etsi-ref": "6.3.2"
      },
      "CellId": {
        "description": "String representing the E-UTRAN Cell Identity. Encoded as a bit string (size (28)) as defined in ETSI TS 136 413 [i.3].",
        "type": "string"
      },
      "Ecgi": {
        "properties": {
          "cellId": {
Michel Roy's avatar
Michel Roy committed
            "$ref": "#/components/schemas/CellId"
Michel Roy's avatar
Michel Roy committed
          },
          "plmn": {
Michel Roy's avatar
Michel Roy committed
            "$ref": "#/components/schemas/Plmn"
Michel Roy's avatar
Michel Roy committed
          }
        },
        "required": [
          "plmn",
          "cellId"
        ],
        "type": "object",
        "x-etsi-ref": "6.5.6"
      },
      "Enum": {
        "type": "integer"
      },
      "ExpiryNotification": {
        "properties": {
          "_links": {
            "description": "List of hyperlinks related to the resource.",
            "properties": {
              "self": {
                "description": "Self referring URI. This shall be included in the response from the RNIS. The URI shall be unique within the RNI API as it acts as an ID for the subscription.",
                "format": "uri",
                "type": "string",
                "x-etsi-mec-cardinality": "1",
                "x-etsi-mec-origin-type": "URI"
              }
            },
            "required": [
              "self"
            ],
            "type": "object",
            "x-etsi-mec-cardinality": "1",
            "x-etsi-mec-origin-type": "Structure (inlined)"
          },
          "expiryDeadline": {
Michel Roy's avatar
Michel Roy committed
            "$ref": "#/components/schemas/TimeStamp"
Michel Roy's avatar
Michel Roy committed
          },
          "timeStamp": {
Michel Roy's avatar
Michel Roy committed
            "$ref": "#/components/schemas/TimeStamp"
Michel Roy's avatar
Michel Roy committed
          }
        },
        "required": [
          "_links",
          "expiryDeadline"
        ],
        "type": "object",
        "x-etsi-ref": "6.4.9"
      },
      "L2Meas": {
        "properties": {
          "cellInfo": {
            "description": "The per cell measurement information as defined below.",
            "items": {
              "type": "object",
              "properties": {
                "dl_gbr_pdr_cell": {
                  "description": "It indicates the packet discard rate in percentage of the downlink GBR traffic in a cell, as defined in ETSI TS 136 314 [i.11].",
                  "type": "integer",
                  "x-etsi-mec-cardinality": "0..1",
                  "x-etsi-mec-origin-type": "Integer (0..100)"
                },
                "dl_gbr_prb_usage_cell": {
                  "description": "It indicates the PRB usage for downlink GBR traffic, as defined in ETSI TS 136 314 [i.11] and ETSI TS 136 423 [i.12].",
                  "type": "integer",
                  "x-etsi-mec-cardinality": "0..1",
                  "x-etsi-mec-origin-type": "Integer (0..100)"
                },
                "dl_nongbr_pdr_cell": {
                  "description": "It indicates the packet discard rate in percentage of the downlink non-GBR traffic in a cell, as defined in ETSI TS 136 314 [i.11].",
                  "type": "integer",
                  "x-etsi-mec-cardinality": "0..1",
                  "x-etsi-mec-origin-type": "Integer (0..100)"
                },
                "dl_nongbr_prb_usage_cell": {
                  "description": "It indicates (in percentage) the PRB usage for downlink non-GBR traffic, as defined in ETSI TS 136 314 [i.11] and ETSI TS 136 423 [i.12].",
                  "type": "integer",
                  "x-etsi-mec-cardinality": "0..1",
                  "x-etsi-mec-origin-type": "Integer (0..100)"
                },
                "dl_total_prb_usage_cell": {
                  "description": "It indicates (in percentage) the PRB usage for total downlink traffic, as defined in ETSI TS 136 314 [i.11] and ETSI TS 136 423 [i.12].",
                  "type": "integer",
                  "x-etsi-mec-cardinality": "0..1",
                  "x-etsi-mec-origin-type": "Integer (0..100)"
                },
                "ecgi": {
Michel Roy's avatar
Michel Roy committed
                  "$ref": "#/components/schemas/Ecgi"
Michel Roy's avatar
Michel Roy committed
                },
                "number_of_active_ue_dl_gbr_cell": {
                  "description": "It indicates the number of active UEs with downlink GBR traffic, as defined in ETSI TS 136 314 [i.11].",
                  "type": "integer",
                  "x-etsi-mec-cardinality": "0..1",
                  "x-etsi-mec-origin-type": "Integer"
                },
                "number_of_active_ue_dl_nongbr_cell": {
                  "description": "It indicates the number of active UEs with downlink non-GBR traffic, as defined in ETSI TS 136 314 [i.11].",
                  "type": "integer",
                  "x-etsi-mec-cardinality": "0..1",
                  "x-etsi-mec-origin-type": "Integer"
                },
                "number_of_active_ue_ul_gbr_cell": {
                  "description": "It indicates the number of active UEs with uplink GBR traffic, as defined in ETSI TS 136 314 [i.11].",
                  "type": "integer",
                  "x-etsi-mec-cardinality": "0..1",
                  "x-etsi-mec-origin-type": "Integer"
                },
                "number_of_active_ue_ul_nongbr_cell": {
                  "description": "It indicates the number of active UEs with uplink non-GBR traffic, as defined in ETSI TS 136 314 [i.11].",
                  "type": "integer",
                  "x-etsi-mec-cardinality": "0..1",
                  "x-etsi-mec-origin-type": "Integer"
                },
                "received_dedicated_preambles_cell": {
                  "description": "It indicates (in percentage) the received dedicated preamples, as defined in ETSI TS 136 314 [i.11].",
                  "type": "integer",
                  "x-etsi-mec-cardinality": "0..1",
                  "x-etsi-mec-origin-type": "Integer (0..100)"
                },
                "received_randomly_selected_preambles_high_range_cell": {
                  "description": "It indicates (in percentage) the received randomly selected preambles in the high range, as defined in ETSI TS 136 314 [i.11].",
                  "type": "integer",
                  "x-etsi-mec-cardinality": "0..1",
                  "x-etsi-mec-origin-type": "Integer (0..100)"
                },
                "received_randomly_selected_preambles_low_range_cell": {
                  "description": "It indicates (in percentage) the received randomly selected preambles in the low range, as defined in ETSI TS 136 314 [i.11].",
                  "type": "integer",
                  "x-etsi-mec-cardinality": "0..1",
                  "x-etsi-mec-origin-type": "Integer (0..100)"
                },
                "ul_gbr_pdr_cell": {
                  "description": "It indicates the packet discard rate in percentage of the uplink GBR traffic in a cell, as defined in ETSI TS 136 314 [i.11].",
                  "type": "integer",
                  "x-etsi-mec-cardinality": "0..1",
                  "x-etsi-mec-origin-type": "Integer (0..100)"
                },
                "ul_gbr_prb_usage_cell": {
                  "description": "It indicates (in percentage) the PRB usage for uplink GBR traffic, as defined in ETSI TS 136 314 [i.11] and ETSI TS 136 423 [i.12].",
                  "type": "integer",
                  "x-etsi-mec-cardinality": "0..1",
                  "x-etsi-mec-origin-type": "Integer (0..100)"
                },
                "ul_nongbr_pdr_cell": {
                  "description": "It indicates the packet discard rate in percentage of the uplink non-GBR traffic in a cell, as defined in ETSI TS 136 314 [i.11].",
                  "type": "integer",
                  "x-etsi-mec-cardinality": "0..1",
                  "x-etsi-mec-origin-type": "Integer (0..100)"
                },
                "ul_nongbr_prb_usage_cell": {
                  "description": "It indicates (in percentage) the PRB usage for uplink non-GBR traffic, as defined in ETSI TS 136 314 [i.11] and ETSI TS 136 423 [i.12].",
                  "type": "integer",
                  "x-etsi-mec-cardinality": "0..1",
                  "x-etsi-mec-origin-type": "Integer (0..100)"
                },
                "ul_total_prb_usage_cell": {
                  "description": "It indicates (in percentage) the PRB usage for total uplink traffic, as defined in ETSI TS 136 314 [i.11] and ETSI TS 136 423 [i.12].",
                  "type": "integer",
                  "x-etsi-mec-cardinality": "0..1",
                  "x-etsi-mec-origin-type": "Integer (0..100)"
Michel Roy's avatar
Michel Roy committed
            "minItems": 0,
Michel Roy's avatar
Michel Roy committed
            "required": [
              "ecgi"
            ],
            "type": "array",
            "x-etsi-mec-cardinality": "0..N",
            "x-etsi-mec-origin-type": "Structure (inlined)"
Michel Roy's avatar
Michel Roy committed
          "cellUEInfo": {
            "description": "The per cell per UE layer 2 measurements information as defined below.",
            "items": {
              "type": "object",
              "properties": {
Michel Roy's avatar
Michel Roy committed
                "associateId": {
Michel Roy's avatar
Michel Roy committed
                  "$ref": "#/components/schemas/AssociateId"
Michel Roy's avatar
Michel Roy committed
                },
                "dl_gbr_data_volume_ue": {
                  "description": "It indicates the data volume of the downlink GBR traffic of a UE, as defined in ETSI TS 136 314 [i.11].",
                  "type": "integer",
                  "x-etsi-mec-cardinality": "0..1",
                  "x-etsi-mec-origin-type": "Integer"
                },
                "dl_gbr_delay_ue": {
                  "description": "It indicates the packet delay of the downlink GBR traffic of a UE, as defined in ETSI TS 136 314 [i.11].",
                  "type": "integer",
                  "x-etsi-mec-cardinality": "0..1",
                  "x-etsi-mec-origin-type": "Integer"
                },
                "dl_gbr_pdr_ue": {
                  "description": "It indicates the packet discard rate in percentage of the downlink GBR traffic of a UE, as defined in ETSI TS 136 314 [i.11].",
                  "type": "integer",
                  "x-etsi-mec-cardinality": "0..1",
                  "x-etsi-mec-origin-type": "Integer (0..100)"
                },
                "dl_gbr_throughput_ue": {
                  "description": "It indicates the scheduled throughput of the downlink GBR traffic of a UE, as defined in ETSI TS 136 314 [i.11].",
                  "type": "integer",
                  "x-etsi-mec-cardinality": "0..1",
                  "x-etsi-mec-origin-type": "Integer"
                },
                "dl_nongbr_data_volume_ue": {
                  "description": "It indicates the data volume of the downlink non-GBR traffic of a UE, as defined in ETSI TS 136 314 [i.11].",
                  "type": "integer",
                  "x-etsi-mec-cardinality": "0..1",
                  "x-etsi-mec-origin-type": "Integer"
                },
                "dl_nongbr_delay_ue": {
                  "description": "It indicates the packet delay of the downlink non-GBR traffic of a UE, as defined in ETSI TS 136 314 [i.11].",
                  "type": "integer",
                  "x-etsi-mec-cardinality": "0..1",
                  "x-etsi-mec-origin-type": "Integer"
                },
                "dl_nongbr_pdr_ue": {
                  "description": "It indicates the packet discard rate in percentage of the downlink nonGBR traffic of a UE, as defined in ETSI TS 136 314 [i.11].",
                  "type": "integer",
                  "x-etsi-mec-cardinality": "0..1",
                  "x-etsi-mec-origin-type": "Integer (0..100)"
                },
                "dl_nongbr_throughput_ue": {
                  "description": "It indicates the scheduled throughput of the downlink nonGBR traffic of a UE, as defined in ETSI TS 136 314 [i.11].",
                  "type": "integer",
                  "x-etsi-mec-cardinality": "0..1",
                  "x-etsi-mec-origin-type": "Integer"
                },
                "ecgi": {
Michel Roy's avatar
Michel Roy committed
                  "$ref": "#/components/schemas/Ecgi"
Michel Roy's avatar
Michel Roy committed
                },
                "ul_gbr_data_volume_ue": {
                  "description": "It indicates the data volume of the uplink GBR traffic of a UE, as defined in ETSI TS 136 314 [i.11].",
                  "type": "integer",
                  "x-etsi-mec-cardinality": "0..1",
                  "x-etsi-mec-origin-type": "Integer"
                },
                "ul_gbr_delay_ue": {
                  "description": "It indicates the packet delay of the uplink GBR traffic of a UE, as defined in ETSI TS 136 314 [i.11].",
                  "type": "integer",
                  "x-etsi-mec-cardinality": "0..1",
                  "x-etsi-mec-origin-type": "Integer"
                },
                "ul_gbr_pdr_ue": {
                  "description": "It indicates the packet discard rate in percentage of the uplink GBR traffic of a UE, as defined in ETSI TS 136 314 [i.11].",
                  "type": "integer",
                  "x-etsi-mec-cardinality": "0..1",
                  "x-etsi-mec-origin-type": "Integer (0..100)"
                },
                "ul_gbr_throughput_ue": {
                  "description": "It indicates the scheduled throughput of the uplink GBR traffic of a UE, as defined in ETSI TS 136 314 [i.11].",
                  "type": "integer",
                  "x-etsi-mec-cardinality": "0..1",
                  "x-etsi-mec-origin-type": "Integer"
                },
                "ul_nongbr_data_volume_ue": {
                  "description": "It indicates the data volume of the uplink non-GBR traffic of a UE, as defined in ETSI TS 136 314 [i.11].",
                  "type": "integer",
                  "x-etsi-mec-cardinality": "0..1",
                  "x-etsi-mec-origin-type": "Integer"
                },
                "ul_nongbr_delay_ue": {
                  "description": "It indicates the packet delay of the uplink non-GBR traffic of a UE, as defined in ETSI TS 136 314 [i.11].",
                  "type": "integer",
                  "x-etsi-mec-cardinality": "0..1",
                  "x-etsi-mec-origin-type": "Integer"
                },
                "ul_nongbr_pdr_ue": {
                  "description": "It indicates the packet discard rate in percentage of the uplink nonGBR traffic of a UE, as defined in ETSI TS 136 314 [i.11].",
                  "type": "integer",
                  "x-etsi-mec-cardinality": "0..1",
                  "x-etsi-mec-origin-type": "Integer (0..100)"
                },
                "ul_nongbr_throughput_ue": {
                  "description": "It indicates the scheduled throughput of the uplink non-GBR traffic of a UE, as defined in ETSI TS 136 314 [i.11].",
                  "type": "integer",
                  "x-etsi-mec-cardinality": "0..1",
                  "x-etsi-mec-origin-type": "Integer"
Michel Roy's avatar
Michel Roy committed
            "minItems": 0,
Michel Roy's avatar
Michel Roy committed
            "required": [
              "ecgi",
              "associateId"
            ],
            "type": "array",
            "x-etsi-mec-cardinality": "0..N",
            "x-etsi-mec-origin-type": "Structure (inlined)"
          },
          "timeStamp": {
Michel Roy's avatar
Michel Roy committed
            "$ref": "#/components/schemas/TimeStamp"
Michel Roy's avatar
Michel Roy committed
        },
        "type": "object",
        "x-etsi-ref": "6.2.4a"
Michel Roy's avatar
Michel Roy committed
      "LinkType": {
        "properties": {
          "href": {
            "description": "URI referring to a resource",
            "format": "uri",
            "type": "string",
            "x-etsi-mec-cardinality": "1",
            "x-etsi-mec-origin-type": "URI"
Michel Roy's avatar
Michel Roy committed
        },
        "required": [
          "href"
Michel Roy's avatar
Michel Roy committed
        "type": "object",
        "x-etsi-ref": "6.5.2"
      },
      "MeasQuantityResultsNr": {
        "properties": {
          "rsrp": {
            "description": "Reference Signal Received Power as defined in ETSI TS 138 331 [i.13].",
Michel Roy's avatar
Michel Roy committed
            "format": "uint8",
Michel Roy's avatar
Michel Roy committed
            "type": "integer",
            "x-etsi-mec-cardinality": "0..1",
            "x-etsi-mec-origin-type": "Uint8"
          },
          "rsrq": {
            "description": "Reference Signal Received Quality as defined in ETSI TS 138 331 [i.13].",
Michel Roy's avatar
Michel Roy committed
            "format": "uint8",
Michel Roy's avatar
Michel Roy committed
            "type": "integer",
            "x-etsi-mec-cardinality": "0..1",
            "x-etsi-mec-origin-type": "Uint8"
          },
          "sinr": {
            "description": "Reference Signal to Interference & Noise Ratio as defined in ETSI TS 138 331 [i.13].",
Michel Roy's avatar
Michel Roy committed
            "format": "uint8",
Michel Roy's avatar
Michel Roy committed
            "type": "integer",
            "x-etsi-mec-cardinality": "0..1",
            "x-etsi-mec-origin-type": "Uint8"
          }
        },
        "type": "object",
        "x-etsi-ref": "6.5.11"
      },
      "MeasRepUeNotification": {
        "properties": {
          "associateId": {
            "description": "0 to N identifiers to associate the event for a specific UE or flow.",
            "items": {
              "$ref": "#/components/schemas/AssociateId"
            },
            "minItems": 0,
            "type": "array",
            "x-etsi-mec-cardinality": "0..N",
            "x-etsi-mec-origin-type": "AssociateId"
          },
          "carrierAggregationMeasInfo": {
            "description": "This parameter can be repeated to contain information of all the carriers assign for Carrier Aggregation up to M.",
            "items": {
              "type": "object",
              "properties": {
Michel Roy's avatar
Michel Roy committed
                "cellIdNei": {
Michel Roy's avatar
Michel Roy committed
                  "$ref": "#/components/schemas/CellId"
Michel Roy's avatar
Michel Roy committed
                },
                "cellIdSrv": {
Michel Roy's avatar
Michel Roy committed
                  "$ref": "#/components/schemas/CellId"
Michel Roy's avatar
Michel Roy committed
                },
                "rsrpNei": {
                  "description": "Reference Signal Received Power as defined in ETSI TS 136 214 [i.5].",
Michel Roy's avatar
Michel Roy committed
                  "format": "uint8",
Michel Roy's avatar
Michel Roy committed
                  "type": "integer",
                  "x-etsi-mec-cardinality": "0..1",
                  "x-etsi-mec-origin-type": "Uint8"
                },
                "rsrpNeiEx": {
                  "description": "Extended Reference Signal Received Power, with value mapping defined in ETSI TS 136 133 [i.16].",
Michel Roy's avatar
Michel Roy committed
                  "format": "uint8",
Michel Roy's avatar
Michel Roy committed
                  "type": "integer",
                  "x-etsi-mec-cardinality": "0..1",
                  "x-etsi-mec-origin-type": "Uint8"
                },
                "rsrpSrv": {
                  "description": "Reference Signal Received Power as defined in ETSI TS 136 214 [i.5].",
Michel Roy's avatar
Michel Roy committed
                  "format": "uint8",
Michel Roy's avatar
Michel Roy committed
                  "type": "integer",
                  "x-etsi-mec-cardinality": "0..1",
                  "x-etsi-mec-origin-type": "Uint8"
                },
                "rsrpSrvEx": {
                  "description": "Extended Reference Signal Received Power, with value mapping defined in ETSI TS 136 133 [i.16].",
Michel Roy's avatar
Michel Roy committed
                  "format": "uint8",
Michel Roy's avatar
Michel Roy committed
                  "type": "integer",
                  "x-etsi-mec-cardinality": "0..1",
                  "x-etsi-mec-origin-type": "Uint8"
                },
                "rsrqNei": {
                  "description": "Reference Signal Received Quality as defined in ETSI TS 136 214 [i.5].",
Michel Roy's avatar
Michel Roy committed
                  "format": "uint8",
Michel Roy's avatar
Michel Roy committed
                  "type": "integer",
                  "x-etsi-mec-cardinality": "0..1",
                  "x-etsi-mec-origin-type": "Uint8"
                },
                "rsrqNeiEx": {
                  "description": "Extended Reference Signal Received Quality, with value mapping defined in ETSI TS 136 133 [i.16].",
Michel Roy's avatar
Michel Roy committed
                  "format": "uint8",
Michel Roy's avatar
Michel Roy committed
                  "type": "integer",
                  "x-etsi-mec-cardinality": "0..1",
                  "x-etsi-mec-origin-type": "Uint8"
                },
                "rsrqSrv": {
                  "description": "Reference Signal Received Quality as defined in ETSI TS 136 214 [i.5].",
Michel Roy's avatar
Michel Roy committed
                  "format": "uint8",
Michel Roy's avatar
Michel Roy committed
                  "type": "integer",
                  "x-etsi-mec-cardinality": "0..1",
                  "x-etsi-mec-origin-type": "Uint8"
                },
                "rsrqSrvEx": {
                  "description": "Extended Reference Signal Received Quality, with value mapping defined in ETSI TS 136 133 [i.16].",
Michel Roy's avatar
Michel Roy committed
                  "format": "uint8",
Michel Roy's avatar
Michel Roy committed
                  "type": "integer",
                  "x-etsi-mec-cardinality": "0..1",
                  "x-etsi-mec-origin-type": "Uint8"
                },
                "sinrNei": {
                  "description": "Reference Signal \"Signal to Interference plus Noise Ratio\", with value mapping defined in ETSI TS 136 133 [i.16].",
Michel Roy's avatar
Michel Roy committed
                  "format": "uint8",
Michel Roy's avatar
Michel Roy committed
                  "type": "integer",
                  "x-etsi-mec-cardinality": "0..1",
                  "x-etsi-mec-origin-type": "Uint8"
                },
                "sinrSrv": {
                  "description": "Reference Signal \"Signal to Interference plus Noise Ratio\", with value mapping defined in ETSI TS 136 133 [i.16].",
Michel Roy's avatar
Michel Roy committed
                  "format": "uint8",
Michel Roy's avatar
Michel Roy committed
                  "type": "integer",
                  "x-etsi-mec-cardinality": "0..1",
                  "x-etsi-mec-origin-type": "Uint8"
Michel Roy's avatar
Michel Roy committed
            "minItems": 0,
Michel Roy's avatar
Michel Roy committed
            "required": [
              "cellIdSrv"
            ],
            "type": "array",
            "x-etsi-mec-cardinality": "0..M",
            "x-etsi-mec-origin-type": "Structure (inlined)"
          },
          "ecgi": {
Michel Roy's avatar
Michel Roy committed
            "$ref": "#/components/schemas/Ecgi"
Michel Roy's avatar
Michel Roy committed
          },
          "eutranNeighbourCellMeasInfo": {
            "description": "This parameter can be repeated to contain information of all the neighbouring cells up to N.",
            "items": {
              "type": "object",
              "properties": {
                "ecgi": {
Michel Roy's avatar
Michel Roy committed
                  "$ref": "#/components/schemas/Ecgi"
Michel Roy's avatar
Michel Roy committed
                },
                "rsrp": {
                  "description": "Reference Signal Received Power as defined in ETSI TS 136 214 [i.5].",
Michel Roy's avatar
Michel Roy committed
                  "format": "uint8",
Michel Roy's avatar
Michel Roy committed
                  "type": "integer",
                  "x-etsi-mec-cardinality": "0..1",
                  "x-etsi-mec-origin-type": "Uint8"
                },
                "rsrpEx": {
                  "description": "Extended Reference Signal Received Power, with value mapping defined in ETSI TS 136 133 [i.16].",
Michel Roy's avatar
Michel Roy committed
                  "format": "uint8",
Michel Roy's avatar
Michel Roy committed
                  "type": "integer",
                  "x-etsi-mec-cardinality": "0..1",
                  "x-etsi-mec-origin-type": "Uint8"
                },
                "rsrq": {
                  "description": "Reference Signal Received Quality as defined in ETSI TS 136 214 [i.5].",
Michel Roy's avatar
Michel Roy committed
                  "format": "uint8",
Michel Roy's avatar
Michel Roy committed
                  "type": "integer",
                  "x-etsi-mec-cardinality": "0..1",
                  "x-etsi-mec-origin-type": "Uint8"
                },
                "rsrqEx": {
                  "description": "Extended Reference Signal Received Quality, with value mapping defined in ETSI TS 136 133 [i.16].",
Michel Roy's avatar
Michel Roy committed
                  "format": "uint8",
Michel Roy's avatar
Michel Roy committed
                  "type": "integer",
                  "x-etsi-mec-cardinality": "0..1",
                  "x-etsi-mec-origin-type": "Uint8"
                },
                "sinr": {
                  "description": "Reference Signal \"Signal to Interference plus Noise Ratio\", with value mapping defined in ETSI TS 136 133 [i.16].",
Michel Roy's avatar
Michel Roy committed
                  "format": "uint8",
Michel Roy's avatar
Michel Roy committed
                  "type": "integer",
                  "x-etsi-mec-cardinality": "0..1",
                  "x-etsi-mec-origin-type": "Uint8"
                }
              }
            },
Michel Roy's avatar
Michel Roy committed
            "minItems": 0,
Michel Roy's avatar
Michel Roy committed
            "required": [
              "ecgi"
            ],
            "type": "array",
            "x-etsi-mec-cardinality": "0..N",
            "x-etsi-mec-origin-type": "Structure (inlined)"
          },
          "heightUe": {
            "description": "Indicates height of the UE in meters relative to the sea level as defined in ETSI TS 136.331 [i.7].",
            "type": "integer",
            "x-etsi-mec-cardinality": "0..1",
            "x-etsi-mec-origin-type": "Int"
          },
          "newRadioMeasInfo": {
            "description": "5G New Radio secondary serving cells measurement information.",
            "items": {
              "type": "object",
              "properties": {
                "nrBNCs": {
                  "description": "Measurement quantities concerning the best neighbours of the secondary serving cells",
                  "properties": {
                    "nrBNCellInfo": {
                      "description": "Best neighbours of the secondary serving cell(s) info",
                      "items": {
                        "type": "object",
                        "properties": {
                          "nrBNCellGId": {
Michel Roy's avatar
Michel Roy committed
                            "$ref": "#/components/schemas/NrCellId"
Michel Roy's avatar
Michel Roy committed
                          },
                          "nrBNCellPlmn": {
                            "description": "Public land mobile network identities",
                            "items": {
                              "$ref": "#/components/schemas/Plmn"
                            },
                            "minItems": 1,
                            "type": "array",
                            "x-etsi-mec-cardinality": "1..P",
                            "x-etsi-mec-origin-type": "Plmn"
                          }
                        }
                      },
Michel Roy's avatar
Michel Roy committed
                      "minItems": 1,
Michel Roy's avatar
Michel Roy committed
                      "required": [
                        "nrBNCellPlmn",
                        "nrBNCellGId"
                      ],
                      "type": "array",
                      "x-etsi-mec-cardinality": "1..P",
                      "x-etsi-mec-origin-type": "Structure (inlined)"
                    },
                    "nrBNCellRsrp": {
                      "description": "Reference Signal Received Power measurement according to mapping table in ETSI TS 138.133 [i.14].",
Michel Roy's avatar
Michel Roy committed
                      "format": "uint8",
Michel Roy's avatar
Michel Roy committed
                      "type": "integer",
                      "x-etsi-mec-cardinality": "0..1",
                      "x-etsi-mec-origin-type": "Uint8"
                    },
                    "nrBNCellRsrq": {
                      "description": "Reference Signal Received Quality measurement according to mapping table in ETSI TS 138.133 [i.14].",
Michel Roy's avatar
Michel Roy committed
                      "format": "uint8",
Michel Roy's avatar
Michel Roy committed
                      "type": "integer",
                      "x-etsi-mec-cardinality": "0..1",
                      "x-etsi-mec-origin-type": "Uint8"
                    },
                    "nrBNCellRssi": {
                      "description": "Reference signal SINR measurement according to mapping table in ETSI TS 138.133 [i.14].",
Michel Roy's avatar
Michel Roy committed
                      "format": "uint8",
Michel Roy's avatar
Michel Roy committed
                      "type": "integer",
                      "x-etsi-mec-cardinality": "0..1",
                      "x-etsi-mec-origin-type": "Uint8"
                    }
Michel Roy's avatar
Michel Roy committed
                  "required": [
                    "nrBNCellInfo"
                  ],
                  "type": "object",
                  "x-etsi-mec-cardinality": "0..1",
                  "x-etsi-mec-origin-type": "Structure (inlined)"
                },
                "nrCarrierFreq": {
                  "description": "ARFCN applicable for a downlink, uplink or bi-directional (TDD) NR carrier frequency, as defined in ETSI TS 138.101 [i.15].",
Michel Roy's avatar
Michel Roy committed
                  "format": "uint32",
Michel Roy's avatar
Michel Roy committed
                  "type": "integer",
Michel Roy's avatar
Michel Roy committed
                  "x-etsi-mec-cardinality": "1",
                  "x-etsi-mec-origin-type": "Uint32"
                },
                "nrSCs": {
                  "description": "Measurement quantities concerning the secondary serving cells.",
                  "properties": {
                    "nrSCellInfo": {
                      "description": "Secondary serving cell(s) info.",
                      "items": {
                        "type": "object",
                        "properties": {
                          "nrSCellGId": {
Michel Roy's avatar
Michel Roy committed
                            "$ref": "#/components/schemas/NrCellId"
Michel Roy's avatar
Michel Roy committed
                          },
                          "nrSCellPlmn": {
                            "description": "Public land mobile network identities.",
                            "items": {
                              "$ref": "#/components/schemas/Plmn"
                            },
                            "minItems": 1,
                            "type": "array",
                            "x-etsi-mec-cardinality": "1..P",
                            "x-etsi-mec-origin-type": "Plmn"
                          }
                        }
                      },
Michel Roy's avatar
Michel Roy committed
                      "minItems": 1,
Michel Roy's avatar
Michel Roy committed
                      "required": [
                        "nrSCellPlmn",
                        "nrSCellGId"
                      ],
                      "type": "array",
                      "x-etsi-mec-cardinality": "1..P",
                      "x-etsi-mec-origin-type": "Structure (inlined)"
                    },
                    "nrSCellRsrp": {
                      "description": "Reference Signal Received Power measurement according to mapping table in ETSI TS 138.133 [i.14].",
Michel Roy's avatar
Michel Roy committed
                      "format": "uint8",
Michel Roy's avatar
Michel Roy committed
                      "type": "integer",
                      "x-etsi-mec-cardinality": "0..1",
                      "x-etsi-mec-origin-type": "Uint8"
Michel Roy's avatar
Michel Roy committed
                    "nrSCellRsrq": {
                      "description": "Reference Signal Received Quality measurement according to mapping table in ETSI TS 138.133 [i.14].",
Michel Roy's avatar
Michel Roy committed
                      "format": "uint8",
Michel Roy's avatar
Michel Roy committed
                      "type": "integer",
                      "x-etsi-mec-cardinality": "0..1",
                      "x-etsi-mec-origin-type": "Uint8"
Michel Roy's avatar
Michel Roy committed
                    "nrSCellRssi": {
                      "description": "Reference signal SINR measurement according to mapping table in ETSI TS 138.133 [i.14].",
Michel Roy's avatar
Michel Roy committed
                      "format": "uint8",
Michel Roy's avatar
Michel Roy committed
                      "type": "integer",
                      "x-etsi-mec-cardinality": "0..1",
                      "x-etsi-mec-origin-type": "Uint8"
                    }
Michel Roy's avatar
Michel Roy committed
                  "required": [
                    "nrSCellInfo"
                  ],
                  "type": "object",
                  "x-etsi-mec-cardinality": "1",
                  "x-etsi-mec-origin-type": "Structure (inlined)"
Michel Roy's avatar
Michel Roy committed
            "minItems": 0,
Michel Roy's avatar
Michel Roy committed
            "required": [
              "nrCarrierFreq",
              "nrSCs"
            ],
            "type": "array",
            "x-etsi-mec-cardinality": "0..N",
            "x-etsi-mec-origin-type": "Structure (inlined)"
          },
          "newRadioMeasNeiInfo": {
            "description": "Measurement quantities concerning the 5G NR neighbours.",
            "items": {
              "type": "object",
              "properties": {
                "nrNCellInfo": {
                  "description": "5G NR neighbour cell info.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "nrNCellGId": {
Michel Roy's avatar
Michel Roy committed
                        "$ref": "#/components/schemas/NrCellId"
Michel Roy's avatar
Michel Roy committed
                      },
                      "nrNCellPlmn": {
                        "description": "Public land mobile network identities.",
                        "items": {
                          "$ref": "#/components/schemas/Plmn"
                        },
                        "minItems": 1,
                        "type": "array",
                        "x-etsi-mec-cardinality": "1..P",
                        "x-etsi-mec-origin-type": "Plmn"
                      }
                    }
                  },
Michel Roy's avatar
Michel Roy committed
                  "minItems": 1,
Michel Roy's avatar
Michel Roy committed
                  "required": [
                    "nrNCellPlmn",
                    "nrNCellGId"
                  ],
                  "type": "array",
                  "x-etsi-mec-cardinality": "1..P",
                  "x-etsi-mec-origin-type": "Structure (inlined)"
                },
                "nrNCellRsrp": {
                  "description": "Reference Signal Received Power measurement according to mapping table in ETSI TS 138.133 [i.14].",
Michel Roy's avatar
Michel Roy committed
                  "format": "uint8",
Michel Roy's avatar
Michel Roy committed
                  "type": "integer",
                  "x-etsi-mec-cardinality": "0..1",
                  "x-etsi-mec-origin-type": "Uint8"
                },
                "nrNCellRsrq": {
                  "description": "Reference Signal Received Quality measurement according to mapping table in ETSI TS 138.133 [i.14].",
Michel Roy's avatar
Michel Roy committed
                  "format": "uint8",
Michel Roy's avatar
Michel Roy committed
                  "type": "integer",
                  "x-etsi-mec-cardinality": "0..1",
                  "x-etsi-mec-origin-type": "Uint8"
                },
                "nrNCellRssi": {
                  "description": "Reference signal SINR measurement according to mapping table in ETSI TS 138.133 [i.14].",
Michel Roy's avatar
Michel Roy committed
                  "format": "uint8",
Michel Roy's avatar
Michel Roy committed
                  "type": "integer",
                  "x-etsi-mec-cardinality": "0..1",
                  "x-etsi-mec-origin-type": "Uint8"
                },
                "rsIndexResults": {
Michel Roy's avatar
Michel Roy committed
                  "$ref": "#/components/schemas/RsIndexResults"
Michel Roy's avatar
Michel Roy committed
            "minItems": 0,
Michel Roy's avatar
Michel Roy committed
            "required": [
              "nrNCellInfo"
            ],
            "type": "array",
            "x-etsi-mec-cardinality": "0..N",
            "x-etsi-mec-origin-type": "Structure (inlined)"
          },
          "notificationType": {
            "description": "Shall be set to \"MeasRepUeNotification\".",
            "type": "string",
            "x-etsi-mec-cardinality": "1",
            "x-etsi-mec-origin-type": "String"
          },
          "rsrp": {
            "description": "Reference Signal Received Power as defined in ETSI TS 136 214 [i.5].",
Michel Roy's avatar
Michel Roy committed
            "format": "uint8",
Michel Roy's avatar
Michel Roy committed
            "type": "integer",
            "x-etsi-mec-cardinality": "1",
            "x-etsi-mec-origin-type": "Uint8"
          },
          "rsrpEx": {
            "description": "Extended Reference Signal Received Power, with value mapping defined in ETSI TS 136 133 [i.16].",
Michel Roy's avatar
Michel Roy committed
            "format": "uint8",
Michel Roy's avatar
Michel Roy committed
            "type": "integer",
            "x-etsi-mec-cardinality": "0..1",
            "x-etsi-mec-origin-type": "Uint8"
          },
          "rsrq": {
            "description": "Reference Signal Received Quality as defined in ETSI TS 136 214 [i.5].",
Michel Roy's avatar
Michel Roy committed
            "format": "uint8",
Michel Roy's avatar
Michel Roy committed
            "type": "integer",
            "x-etsi-mec-cardinality": "1",
            "x-etsi-mec-origin-type": "Uint8"
          },
          "rsrqEx": {
            "description": "Extended Reference Signal Received Quality, with value mapping defined in ETSI TS 136 133 [i.16].",
Michel Roy's avatar
Michel Roy committed
            "format": "uint8",
Michel Roy's avatar
Michel Roy committed
            "type": "integer",
            "x-etsi-mec-cardinality": "0..1",
            "x-etsi-mec-origin-type": "Uint8"
          },
          "sinr": {
            "description": "Reference Signal \"Signal to Interference plus Noise Ratio\", with value mapping defined in ETSI TS 136 133 [i.16].",
Michel Roy's avatar
Michel Roy committed
            "format": "uint8",
Michel Roy's avatar
Michel Roy committed
            "type": "integer",
            "x-etsi-mec-cardinality": "0..1",
            "x-etsi-mec-origin-type": "Uint8"
          },
          "timeStamp": {
Michel Roy's avatar
Michel Roy committed
            "$ref": "#/components/schemas/TimeStamp"
Michel Roy's avatar
Michel Roy committed
          },
          "trigger": {
Michel Roy's avatar
Michel Roy committed
            "$ref": "#/components/schemas/Trigger"
Michel Roy's avatar
Michel Roy committed
          }
        },
        "required": [
          "notificationType",
          "ecgi",
          "rsrp",
          "rsrq",
          "trigger"
        ],
        "type": "object",
        "x-etsi-ref": "6.4.6"
      },
      "MeasRepUeSubscription": {
        "properties": {
          "_links": {
            "description": "Hyperlink related to the resource. This shall be only included in the HTTP responses and in HTTP PUT requests.",
            "properties": {
              "self": {
Michel Roy's avatar
Michel Roy committed
                "$ref": "#/components/schemas/LinkType"
Michel Roy's avatar
Michel Roy committed
            },
            "required": [
              "self"
            ],
            "type": "object",
            "x-etsi-mec-cardinality": "0..1",
            "x-etsi-mec-origin-type": "Structure (inlined)"
          },
          "callbackReference": {
            "description": "URI selected by the service consumer to receive notifications on the subscribed RNIS information. This shall be included both in the request and in response.",
            "format": "uri",
            "type": "string",
            "x-etsi-mec-cardinality": "1",
            "x-etsi-mec-origin-type": "URI"
          },
          "expiryDeadline": {
Michel Roy's avatar
Michel Roy committed
            "$ref": "#/components/schemas/TimeStamp"
Michel Roy's avatar
Michel Roy committed
          },
          "filterCriteriaAssocTri": {
            "description": "List of filtering criteria for the subscription. Any filtering criteria from below, which is included in the request, shall also be included in the response.",
            "properties": {
              "appInstanceId": {
                "description": "Unique identifier for the MEC application instance.",
                "type": "string",
                "x-etsi-mec-cardinality": "0..1",
                "x-etsi-mec-origin-type": "String"
              },
              "associateId": {
                "description": "0 to N identifiers to associate the information for a specific UE or flow.",
                "items": {
                  "$ref": "#/components/schemas/AssociateId"
                },
                "minItems": 0,
                "type": "array",
                "x-etsi-mec-cardinality": "0..N",
                "x-etsi-mec-origin-type": "AssociateId"
              },
              "ecgi": {
                "description": "E-UTRAN Cell Global Identifier.",
                "items": {
                  "$ref": "#/components/schemas/Ecgi"
                },
                "minItems": 0,
                "type": "array",
                "x-etsi-mec-cardinality": "0..N",
                "x-etsi-mec-origin-type": "Ecgi"
              },
              "trigger": {
                "description": "Corresponds to a specific E-UTRAN UE Measurement Report trigger.",
                "items": {
                  "$ref": "#/components/schemas/Trigger"
                },
                "minItems": 0,
                "type": "array",
                "x-etsi-mec-cardinality": "0..N",
                "x-etsi-mec-origin-type": "Trigger"
Michel Roy's avatar
Michel Roy committed
            },
            "type": "object",
            "x-etsi-mec-cardinality": "1",
            "x-etsi-mec-origin-type": "Structure (inlined)"
          },
          "subscriptionType": {
            "description": "Shall be set to \"MeasRepUeSubscription\".",
            "type": "string",
            "x-etsi-mec-cardinality": "1",
            "x-etsi-mec-origin-type": "String"
Michel Roy's avatar
Michel Roy committed
        },
        "required": [
          "subscriptionType",
          "callbackReference",
          "filterCriteriaAssocTri"
        ],
        "type": "object",
        "x-etsi-ref": "6.3.6"
Michel Roy's avatar
Michel Roy committed
      "MeasTaNotification": {
        "properties": {
          "associateId": {
            "description": "0 to N identifiers to associate the event for a specific UE or flow.",
            "items": {
              "$ref": "#/components/schemas/AssociateId"
            },
            "minItems": 0,
            "type": "array",
            "x-etsi-mec-cardinality": "0..N",
            "x-etsi-mec-origin-type": "AssociateId"
          },
          "ecgi": {
Michel Roy's avatar
Michel Roy committed
            "$ref": "#/components/schemas/Ecgi"
Michel Roy's avatar
Michel Roy committed
          },
          "notificationType": {
            "description": "Shall be set to \"MeasTaNotification\".",
            "type": "string",
            "x-etsi-mec-cardinality": "1",
            "x-etsi-mec-origin-type": "String"
          },
          "timeStamp": {
Michel Roy's avatar
Michel Roy committed
            "$ref": "#/components/schemas/TimeStamp"
Michel Roy's avatar
Michel Roy committed
          },
          "timingAdvance": {
            "description": "The timing advance as defined in ETSI TS 136 214 [i.5].",
Michel Roy's avatar
Michel Roy committed
            "format": "uint32",
Michel Roy's avatar
Michel Roy committed
            "type": "integer",
Michel Roy's avatar
Michel Roy committed
            "x-etsi-mec-cardinality": "1",
            "x-etsi-mec-origin-type": "Uint32"
          }
        },
        "required": [
          "notificationType",
          "ecgi",
          "timingAdvance"
Michel Roy's avatar
Michel Roy committed
        "type": "object",
        "x-etsi-ref": "6.4.7"
      },
      "MeasTaSubscription": {
        "properties": {
          "_links": {
            "description": "Hyperlink related to the resource. This shall be only included in the HTTP responses and in HTTP PUT requests.",
            "properties": {
              "self": {
Michel Roy's avatar
Michel Roy committed
                "$ref": "#/components/schemas/LinkType"
Michel Roy's avatar
Michel Roy committed
              }
            },
            "required": [
              "self"
            ],
            "type": "object",
            "x-etsi-mec-cardinality": "0..1",
            "x-etsi-mec-origin-type": "Structure (inlined)"
          },
          "callbackReference": {
            "description": "URI selected by the service consumer to receive notifications on the subscribed RNIS information. This shall be included both in the request and in response.",
            "format": "uri",
            "type": "string",
            "x-etsi-mec-cardinality": "1",
            "x-etsi-mec-origin-type": "URI"
          },
          "expiryDeadline": {
Michel Roy's avatar
Michel Roy committed
            "$ref": "#/components/schemas/TimeStamp"
Michel Roy's avatar
Michel Roy committed
          },
          "filterCriteriaAssoc": {
            "description": "List of filtering criteria for the subscription. Any filtering criteria from below, which is included in the request, shall also be included in the response.",
            "properties": {
              "appInstanceId": {
                "description": "Unique identifier for the MEC application instance.",
                "type": "string",
                "x-etsi-mec-cardinality": "0..1",
                "x-etsi-mec-origin-type": "String"
              },
              "associateId": {
                "description": "0 to N identifiers to associate the information for a specific UE or flow.",
                "items": {
                  "$ref": "#/components/schemas/AssociateId"
                },
                "minItems": 0,
                "type": "array",
                "x-etsi-mec-cardinality": "0..N",
                "x-etsi-mec-origin-type": "AssociateId"
              },
              "ecgi": {
                "description": "E-UTRAN Cell Global Identifier.",
                "items": {
                  "$ref": "#/components/schemas/Ecgi"
                },
                "minItems": 0,
                "type": "array",
                "x-etsi-mec-cardinality": "0..N",
                "x-etsi-mec-origin-type": "Ecgi"
              }
            },
            "type": "object",
            "x-etsi-mec-cardinality": "1",
            "x-etsi-mec-origin-type": "Structure (inlined)"
          },
          "subscriptionType": {
            "description": "Shall be set to \"MeasTaSubscription\".",
            "type": "string",
            "x-etsi-mec-cardinality": "1",
            "x-etsi-mec-origin-type": "String"
Michel Roy's avatar
Michel Roy committed
        },
        "required": [
          "subscriptionType",
          "callbackReference",
          "filterCriteriaAssoc"
Michel Roy's avatar
Michel Roy committed
        "type": "object",
        "x-etsi-ref": "6.3.7"
      },
      "NRcgi": {
        "properties": {
          "nrcellId": {
Michel Roy's avatar
Michel Roy committed
            "$ref": "#/components/schemas/NrCellId"
Michel Roy's avatar
Michel Roy committed
          },
          "plmn": {
Michel Roy's avatar
Michel Roy committed
            "$ref": "#/components/schemas/Plmn"
Michel Roy's avatar
Michel Roy committed
        "required": [
          "plmn",
          "nrcellId"
Michel Roy's avatar
Michel Roy committed
        "type": "object",
        "x-etsi-ref": "6.5.7"
      },
      "NrCellId": {
        "description": "String representing the NR Cell Identity. Encoded as a bit string (size (36)) as defined in ETSI TS 138 423 [i.17].",
        "type": "string"
      },
      "NrMeasRepUeNotification": {
        "properties": {
          "associateId": {
            "description": "0 to N identifiers to associate the event for a specific UE or flow.",
            "items": {
              "$ref": "#/components/schemas/AssociateId"
Michel Roy's avatar
Michel Roy committed
            "minItems": 0,
            "type": "array",
            "x-etsi-mec-cardinality": "0..N",
            "x-etsi-mec-origin-type": "AssociateId"
Michel Roy's avatar
Michel Roy committed
          "eutraNeighCellMeasInfo": {
            "description": "This parameter can be repeated to contain measurement information of all the neighbouring cells up to N. It shall not be included if nrNeighCellMeasInfo is included.",
            "items": {
              "type": "object",
              "properties": {
Michel Roy's avatar
Michel Roy committed
                "ecgi": {
Michel Roy's avatar
Michel Roy committed
                  "$ref": "#/components/schemas/Ecgi"
Michel Roy's avatar
Michel Roy committed
                },
                "rsrp": {
                  "description": "Reference Signal Received Power as defined in ETSI TS 138 331 [i.13].",
Michel Roy's avatar
Michel Roy committed
                  "format": "uint8",
Michel Roy's avatar
Michel Roy committed
                  "type": "integer",
                  "x-etsi-mec-cardinality": "0..1",
                  "x-etsi-mec-origin-type": "Uint8"
                },
                "rsrq": {
                  "description": "Reference Signal Received Quality as defined in ETSI TS 138 331 [i.13].",
Michel Roy's avatar
Michel Roy committed
                  "format": "uint8",
Michel Roy's avatar
Michel Roy committed
                  "type": "integer",
                  "x-etsi-mec-cardinality": "0..1",
                  "x-etsi-mec-origin-type": "Uint8"
                },
                "sinr": {
                  "description": "Reference Signal plus Interference Noise Ratio as defined in ETSI TS 138 331 [i.13].",
Michel Roy's avatar
Michel Roy committed
                  "format": "uint8",
Michel Roy's avatar
Michel Roy committed
                  "type": "integer",
                  "x-etsi-mec-cardinality": "0..1",
                  "x-etsi-mec-origin-type": "Uint8"
Michel Roy's avatar
Michel Roy committed
            "minItems": 0,
Michel Roy's avatar
Michel Roy committed
            "required": [
              "ecgi"
            ],
            "type": "array",
            "x-etsi-mec-cardinality": "0..N",
            "x-etsi-mec-origin-type": "Structure (inlined)"
          },
          "notificationType": {
            "description": "Shall be set to \"NrMeasRepUeNotification\".",
            "type": "string",
            "x-etsi-mec-cardinality": "1",
            "x-etsi-mec-origin-type": "String"
          },
          "nrNeighCellMeasInfo": {
            "description": "This parameter can be repeated to contain measurement information of all the neighbouring cells up to N. It shall not be included if eutraNeighCellMeasInfo is included.",
            "items": {
              "type": "object",
              "properties": {
                "measQuantityResultsCsiRsCell": {
Michel Roy's avatar
Michel Roy committed
                  "$ref": "#/components/schemas/MeasQuantityResultsNr"
Michel Roy's avatar
Michel Roy committed
                },
                "measQuantityResultsSsbCell": {
Michel Roy's avatar
Michel Roy committed
                  "$ref": "#/components/schemas/MeasQuantityResultsNr"
Michel Roy's avatar
Michel Roy committed
                },
                "nrcgi": {
Michel Roy's avatar
Michel Roy committed
                  "$ref": "#/components/schemas/NrCellId"
Michel Roy's avatar
Michel Roy committed
                },
                "rsIndexResults": {
Michel Roy's avatar
Michel Roy committed
                  "$ref": "#/components/schemas/RsIndexResults"
Michel Roy's avatar
Michel Roy committed
            "minItems": 0,
Michel Roy's avatar
Michel Roy committed
            "required": [
              "nrcgi"
            ],
            "type": "array",
            "x-etsi-mec-cardinality": "0..N",
            "x-etsi-mec-origin-type": "Structure (inlined)"
          },
          "servCellMeasInfo": {
            "description": "This parameter can be repeated to contain information of all the serving cells up to N.",
            "items": {
              "type": "object",
              "properties": {
                "nCell": {
                  "description": "Measurement information relating to the best neighbour of this serving cell.",
                  "properties": {
                    "measQuantityResultsCsiRsCell": {
Michel Roy's avatar
Michel Roy committed
                      "$ref": "#/components/schemas/MeasQuantityResultsNr"
Michel Roy's avatar
Michel Roy committed
                    "measQuantityResultsSsbCell": {
Michel Roy's avatar
Michel Roy committed
                      "$ref": "#/components/schemas/MeasQuantityResultsNr"
Michel Roy's avatar
Michel Roy committed
                    },
                    "rsIndexResults": {
Michel Roy's avatar
Michel Roy committed
                      "$ref": "#/components/schemas/RsIndexResults"
Michel Roy's avatar
Michel Roy committed
                    }
                  },
                  "type": "object",
                  "x-etsi-mec-cardinality": "0..1",
                  "x-etsi-mec-origin-type": "Structure (inlined)"
                },
                "nrcgi": {
Michel Roy's avatar
Michel Roy committed
                  "$ref": "#/components/schemas/NRcgi"
Michel Roy's avatar
Michel Roy committed
                },
                "sCell": {
                  "description": "Measurement information relating to this serving cell.",
                  "properties": {
                    "measQuantityResultsCsiRsCell": {
Michel Roy's avatar
Michel Roy committed
                      "$ref": "#/components/schemas/MeasQuantityResultsNr"
Michel Roy's avatar
Michel Roy committed
                    },
                    "measQuantityResultsSsbCell": {
Michel Roy's avatar
Michel Roy committed
                      "$ref": "#/components/schemas/MeasQuantityResultsNr"
Michel Roy's avatar
Michel Roy committed
                    },
                    "rsIndexResults": {
Michel Roy's avatar
Michel Roy committed
                      "$ref": "#/components/schemas/RsIndexResults"
Michel Roy's avatar
Michel Roy committed
                    }
                  },
                  "type": "object",
                  "x-etsi-mec-cardinality": "1",
                  "x-etsi-mec-origin-type": "Structure (inlined)"
                }
              }
            },
Michel Roy's avatar
Michel Roy committed
            "minItems": 0,
Michel Roy's avatar
Michel Roy committed
            "required": [
              "nrcgi",
              "sCell"
            ],
            "type": "array",
            "x-etsi-mec-cardinality": "0..N",
            "x-etsi-mec-origin-type": "Structure (inlined)"
          },
          "timeStamp": {
Michel Roy's avatar
Michel Roy committed
            "$ref": "#/components/schemas/TimeStamp"
Michel Roy's avatar
Michel Roy committed
          },
          "triggerNr": {
Michel Roy's avatar
Michel Roy committed
            "$ref": "#/components/schemas/TriggerNr"
Michel Roy's avatar
Michel Roy committed
        "required": [
          "notificationType",
          "triggerNr"
        ],
        "type": "object",
        "x-etsi-ref": "6.4.11"
      },
      "NrMeasRepUeSubscription": {
        "properties": {
          "_links": {
            "description": "Hyperlink related to the resource. This shall be only included in the HTTP responses and in HTTP PUT requests.",
            "properties": {
              "self": {
Michel Roy's avatar
Michel Roy committed
                "$ref": "#/components/schemas/LinkType"
Michel Roy's avatar
Michel Roy committed
              }
            },
            "required": [
              "self"
            ],
            "type": "object",
            "x-etsi-mec-cardinality": "0..1",
            "x-etsi-mec-origin-type": "Structure (inlined)"
          },
          "callbackReference": {
            "description": "URI selected by the service consumer to receive notifications on the subscribed RNIS information. This shall be included both in the request and in response.",
            "format": "uri",
            "type": "string",
            "x-etsi-mec-cardinality": "1",
            "x-etsi-mec-origin-type": "URI"
          },
          "expiryDeadline": {
Michel Roy's avatar
Michel Roy committed
            "$ref": "#/components/schemas/TimeStamp"
Michel Roy's avatar
Michel Roy committed
          },
          "filterCriteriaNrMrs": {
            "description": "List of filtering criteria for the subscription. Any filtering criteria from below, which is included in the request, shall also be included in the response.",
            "properties": {
              "appInstanceId": {
                "description": "Unique identifier for the MEC application instance.",
                "type": "string",
                "x-etsi-mec-cardinality": "0..1",
                "x-etsi-mec-origin-type": "String"
              },
              "associateId": {
                "description": "0 to N identifiers to associate the information for a specific UE or flow.",
                "items": {
                  "$ref": "#/components/schemas/AssociateId"
                },
                "minItems": 0,
                "type": "array",
                "x-etsi-mec-cardinality": "0..N",
                "x-etsi-mec-origin-type": "AssociateId"
              },
              "nrcgi": {
                "description": "NR Cell Global Identier.",
                "items": {
                  "$ref": "#/components/schemas/NRcgi"
                },
                "minItems": 0,
                "type": "array",
                "x-etsi-mec-cardinality": "0..N",
                "x-etsi-mec-origin-type": "NRcgi"
              },
              "triggerNr": {
                "description": "Corresponds to a specific 5G UE Measurement Report trigger.",
                "items": {
                  "$ref": "#/components/schemas/TriggerNr"
                },
                "minItems": 0,
                "type": "array",
                "x-etsi-mec-cardinality": "0..N",
                "x-etsi-mec-origin-type": "TriggerNr"
              }
            },
            "type": "object",
            "x-etsi-mec-cardinality": "1",
            "x-etsi-mec-origin-type": "Structure (inlined)"
          },
          "subscriptionType": {
            "description": "Shall be set to \"NrMeasRepUeSubscription\".",
            "type": "string",
            "x-etsi-mec-cardinality": "1",
            "x-etsi-mec-origin-type": "String"
          }
Michel Roy's avatar
Michel Roy committed
        "required": [
          "subscriptionType",
          "callbackReference",
          "filterCriteriaNrMrs"
        ],
        "type": "object",
        "x-etsi-ref": "6.3.11"
      },
      "Plmn": {
        "properties": {
          "mcc": {
            "description": "The Mobile Country Code part of PLMN Identity as defined in ETSI TS 136 413 [i.3].",
            "type": "string",
            "x-etsi-mec-cardinality": "1",
            "x-etsi-mec-origin-type": "String"
          },
          "mnc": {
            "description": "The Mobile Network Code part of PLMN Identity as defined in ETSI TS 136 413 [i.3].",
            "type": "string",
            "x-etsi-mec-cardinality": "1",
            "x-etsi-mec-origin-type": "String"
          }
Michel Roy's avatar
Michel Roy committed
        "required": [
          "mcc",
          "mnc"
        ],
        "type": "object",
        "x-etsi-ref": "6.5.5"
Michel Roy's avatar
Michel Roy committed
      "PlmnInfo": {
        "properties": {
          "appInstanceId": {
            "description": "Unique identifier for the MEC application instance.",
            "type": "string",
            "x-etsi-mec-cardinality": "1",
            "x-etsi-mec-origin-type": "String"
          },
          "plmn": {
            "description": "Public Land Mobile Network Identity.",
            "items": {
              "$ref": "#/components/schemas/Plmn"
            },
            "minItems": 1,
            "type": "array",
            "x-etsi-mec-cardinality": "1..N",
            "x-etsi-mec-origin-type": "Plmn"
          },
          "timeStamp": {
Michel Roy's avatar
Michel Roy committed
            "$ref": "#/components/schemas/TimeStamp"
Michel Roy's avatar
Michel Roy committed
        "required": [
          "appInstanceId",
          "plmn"
        ],
        "type": "object",
        "x-etsi-ref": "6.2.2"
Michel Roy's avatar
Michel Roy committed
      "ProblemDetails": {
        "properties": {
          "detail": {
            "description": "A human-readable explanation specific to this occurrence of the problem",
            "type": "string",
            "x-etsi-mec-cardinality": "0..1",
            "x-etsi-mec-origin-type": "String"
          },
          "instance": {
            "description": "A URI reference that identifies the specific occurrence of the problem",
            "format": "uri",
            "type": "string",
            "x-etsi-mec-cardinality": "0..1",
            "x-etsi-mec-origin-type": "URI"
          },
          "status": {
            "description": "The HTTP status code for this occurrence of the problem",
Michel Roy's avatar
Michel Roy committed
            "format": "uint32",
Michel Roy's avatar
Michel Roy committed
            "type": "integer",
            "x-etsi-mec-cardinality": "0..1",
            "x-etsi-mec-origin-type": "Uint32"
          },
          "title": {
            "description": "A short, human-readable summary of the problem type",
            "type": "string",
            "x-etsi-mec-cardinality": "0..1",
            "x-etsi-mec-origin-type": "String"
          },
          "type": {
            "description": "A URI reference according to IETF RFC 3986 that identifies the problem type",
            "format": "uri",
            "type": "string",
            "x-etsi-mec-cardinality": "0..1",
            "x-etsi-mec-origin-type": "URI"
          }
Michel Roy's avatar
Michel Roy committed
        "type": "object"
      },
      "RabEstNotification": {
        "properties": {
          "associateId": {
            "description": "0 to N identifiers to bind the event for a specific UE or flow. ",
            "items": {
              "$ref": "#/components/schemas/AssociateId"
            },
            "minItems": 0,
            "type": "array",
            "x-etsi-mec-cardinality": "0..N",
            "x-etsi-mec-origin-type": "AssociateId"
          },
          "ecgi": {
Michel Roy's avatar
Michel Roy committed
            "$ref": "#/components/schemas/Ecgi"
Michel Roy's avatar
Michel Roy committed
          },
          "erabId": {
            "description": "The attribute that uniquely identifies a Radio Access bearer for specific UE as defined in ETSI TS 136 413 [i.3].",
            "type": "integer",
            "x-etsi-mec-cardinality": "1",
            "x-etsi-mec-origin-type": "Integer"
          },
          "erabQosParameters": {
            "description": "QoS parameters for the E-RAB as defined below.",
            "properties": {
              "qci": {
                "description": "QoS Class Identifier as defined in ETSI TS 123 401 [i.4].",
                "type": "integer",
                "x-etsi-mec-cardinality": "1",
                "x-etsi-mec-origin-type": "Integer"
              },
              "qosInformation": {
Michel Roy's avatar
Michel Roy committed
                "description": "The QoS information for the E-RAB.",
Michel Roy's avatar
Michel Roy committed
                "properties": {
                  "erabGbrDl": {
                    "description": "This attribute indicates the guaranteed downlink E-RAB Bit Rate as defined in ETSI TS 123 401 [i.4] for this bearer.",
                    "type": "integer",
                    "x-etsi-mec-cardinality": "1",
                    "x-etsi-mec-origin-type": "Integer"
                  },
                  "erabGbrUl": {
                    "description": "This attribute indicates the guaranteed uplink E-RAB Bit Rate as defined in ETSI TS 123 401 [i.4] for this bearer.",
                    "type": "integer",
                    "x-etsi-mec-cardinality": "1",
                    "x-etsi-mec-origin-type": "Integer"
                  },
                  "erabMbrDl": {
                    "description": "This attribute indicates the maximum downlink E-RAB Bit Rate as defined in ETSI TS 123 401 [i.4] for this bearer.",
                    "type": "integer",
                    "x-etsi-mec-cardinality": "1",
                    "x-etsi-mec-origin-type": "Integer"
                  },
                  "erabMbrUl": {
                    "description": "This attribute indicates the maximum uplink E-RAB Bit Rate as defined in ETSI TS 123 401 [i.4] for this bearer.",
                    "type": "integer",
                    "x-etsi-mec-cardinality": "1",
                    "x-etsi-mec-origin-type": "Integer"
                  }
                },
                "required": [
                  "erabMbrDl",
                  "erabMbrUl",
                  "erabGbrDl",
                  "erabGbrUl"
                ],
                "type": "object",
                "x-etsi-mec-cardinality": "0..1",
                "x-etsi-mec-origin-type": "Structure (inlined)"
              }
            },
            "required": [
              "qci"
            ],
            "type": "object",
            "x-etsi-mec-cardinality": "0..1",
            "x-etsi-mec-origin-type": "Structure (inlined)"
          },
          "notificationType": {
            "description": "Shall be set to \"RabEstNotification\".",
            "type": "string",
            "x-etsi-mec-cardinality": "1",
            "x-etsi-mec-origin-type": "String"
          },
          "tempUeId": {
            "description": "The temporary identifier allocated for the specific UE as defined below. ",
            "properties": {
              "mmec": {
                "description": "MMEC as defined in ETSI TS 136 413 [i.3].",
                "type": "string",
                "x-etsi-mec-cardinality": "1",
                "x-etsi-mec-origin-type": "String"
              },
              "mtmsi": {
                "description": "M-TMSI as defined in ETSI TS 136 413 [i.3].",
                "type": "string",
                "x-etsi-mec-cardinality": "1",
                "x-etsi-mec-origin-type": "String"
              }
            },
            "required": [
              "mmec",
              "mtmsi"
            ],
            "type": "object",
            "x-etsi-mec-cardinality": "0..1",
            "x-etsi-mec-origin-type": "Structure (inlined)"
          },
          "timeStamp": {
Michel Roy's avatar
Michel Roy committed
            "$ref": "#/components/schemas/TimeStamp"
Michel Roy's avatar
Michel Roy committed
        "required": [
          "notificationType",
          "ecgi",
          "erabId"
        ],
        "type": "object",
        "x-etsi-ref": "6.4.3"
      },
      "RabEstSubscription": {
        "properties": {
          "_links": {
            "description": "Hyperlink related to the resource. This shall be only included in the HTTP responses and in HTTP PUT requests.",
            "properties": {
              "self": {
Michel Roy's avatar
Michel Roy committed
                "$ref": "#/components/schemas/LinkType"
Michel Roy's avatar
Michel Roy committed
              }
            },
            "required": [
              "self"
            ],
            "type": "object",
            "x-etsi-mec-cardinality": "0..1",
            "x-etsi-mec-origin-type": "Structure (inlined)"
          },
          "callbackReference": {
            "description": "URI selected by the service consumer to receive notifications on the subscribed RNIS information. This shall be included both in the request and in response.",
            "format": "uri",
            "type": "string",
            "x-etsi-mec-cardinality": "1",
            "x-etsi-mec-origin-type": "URI"
          },
          "expiryDeadline": {
Michel Roy's avatar
Michel Roy committed
            "$ref": "#/components/schemas/TimeStamp"
Michel Roy's avatar
Michel Roy committed
          },
          "filterCriteriaQci": {
            "description": "List of filtering criteria for the subscription. Any filtering criteria from below, which is included in the request, shall also be included in the response.",
            "properties": {
              "appInstanceId": {
                "description": "Unique identifier for the MEC application instance.",
                "type": "string",
                "x-etsi-mec-cardinality": "0..1",
                "x-etsi-mec-origin-type": "String"
              },
              "ecgi": {
                "description": "E-UTRAN Cell Global Identifier.",
                "items": {
                  "$ref": "#/components/schemas/Ecgi"
                },
                "minItems": 0,
                "type": "array",
                "x-etsi-mec-cardinality": "0..N",
                "x-etsi-mec-origin-type": "Ecgi"
              },
              "qci": {
                "description": "QoS Class Identifier as defined in ETSI TS 123 401 [i.4].",
                "type": "integer",
                "x-etsi-mec-cardinality": "1",
                "x-etsi-mec-origin-type": "Integer"
              }
            },
            "required": [
              "qci"
            ],
            "type": "object",
            "x-etsi-mec-cardinality": "1",
            "x-etsi-mec-origin-type": "Structure (inlined)"
          },
          "subscriptionType": {
            "description": "Shall be set to \"RabEstSubscription\".",
            "type": "string",
            "x-etsi-mec-cardinality": "1",
            "x-etsi-mec-origin-type": "String"
          }
Michel Roy's avatar
Michel Roy committed
        "required": [
          "subscriptionType",
          "callbackReference",
          "filterCriteriaQci"
        ],
        "type": "object",
        "x-etsi-ref": "6.3.3"
Michel Roy's avatar
Michel Roy committed
      "RabInfo": {
        "properties": {
          "appInstanceId": {
            "description": "Unique identifier for the MEC application instance.",
            "type": "string",
            "x-etsi-mec-cardinality": "1",
            "x-etsi-mec-origin-type": "String"
          },
          "cellUserInfo": {
            "description": "The information on users per cell as defined below.",
            "items": {
              "type": "object",
              "properties": {
                "ecgi": {
Michel Roy's avatar
Michel Roy committed
                  "$ref": "#/components/schemas/Ecgi"
Michel Roy's avatar
Michel Roy committed
                },
                "ueInfo": {
                  "description": "Information on UEs in the specific cell as defined below.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "associateId": {
                        "description": "0 to N identifiers to associate the event for a specific UE or flow.",
                        "items": {
                          "$ref": "#/components/schemas/AssociateId"
                        },
                        "minItems": 0,
                        "type": "array",
                        "x-etsi-mec-cardinality": "0..N",
                        "x-etsi-mec-origin-type": "AssociateId"
                      },
                      "erabInfo": {
                        "description": "Information on E-RAB as defined below.",
                        "items": {
                          "type": "object",
                          "properties": {
                            "erabId": {
                              "description": "The attribute that uniquely identifies a Radio Access bearer for specific UE as defined in ETSI TS 136 413 [i.3].",
                              "type": "integer",
                              "x-etsi-mec-cardinality": "1",
                              "x-etsi-mec-origin-type": "Integer"
                            },
                            "erabQosParameters": {
                              "description": "QoS parameters for the E-RAB as defined below.",
                              "properties": {
                                "qci": {
                                  "description": "QoS Class Identifier as defined in ETSI TS 123 401 [i.4].",
                                  "type": "integer",
                                  "x-etsi-mec-cardinality": "1",
                                  "x-etsi-mec-origin-type": "Integer"
                                },
                                "qosInformation": {
Michel Roy's avatar
Michel Roy committed
                                  "description": "The QoS information for the E-RAB.",
Michel Roy's avatar
Michel Roy committed
                                  "properties": {
                                    "erabGbrDl": {
                                      "description": "This attribute indicates the guaranteed downlink E-RAB Bit Rate as defined in ETSI TS 123 401 [i.4] for this bearer.",
                                      "type": "integer",
                                      "x-etsi-mec-cardinality": "1",
                                      "x-etsi-mec-origin-type": "Integer"
                                    },
                                    "erabGbrUl": {
                                      "description": "This attribute indicates the guaranteed uplink E-RAB Bit Rate as defined in ETSI TS 123 401 [i.4] for this bearer.",
                                      "type": "integer",
                                      "x-etsi-mec-cardinality": "1",
                                      "x-etsi-mec-origin-type": "Integer"
                                    },
                                    "erabMbrDl": {
                                      "description": "This attribute indicates the maximum downlink E-RAB Bit Rate as defined in ETSI TS 123 401 [i.4] for this bearer.",
                                      "type": "integer",
                                      "x-etsi-mec-cardinality": "1",
                                      "x-etsi-mec-origin-type": "Integer"
                                    },
                                    "erabMbrUl": {
                                      "description": "This attribute indicates the maximum uplink E-RAB Bit Rate as defined in ETSI TS 123 401 [i.4] for this bearer.",
                                      "type": "integer",
                                      "x-etsi-mec-cardinality": "1",
                                      "x-etsi-mec-origin-type": "Integer"
                                    }
                                  },
                                  "required": [
                                    "erabMbrDl",
                                    "erabMbrUl",
                                    "erabGbrDl",
                                    "erabGbrUl"
                                  ],
                                  "type": "object",
                                  "x-etsi-mec-cardinality": "0..1",
                                  "x-etsi-mec-origin-type": "Structure (inlined)"
                                }
                              },
                              "required": [
                                "qci"
                              ],
Michel Roy's avatar
Michel Roy committed
                              "type": "object",
Michel Roy's avatar
Michel Roy committed
                              "x-etsi-mec-cardinality": "0..1",
                              "x-etsi-mec-origin-type": "Structure (inlined)"
                            }
                          }
                        },
Michel Roy's avatar
Michel Roy committed
                        "minItems": 1,
Michel Roy's avatar
Michel Roy committed
                        "required": [
                          "erabId"
                        ],
                        "type": "array",
                        "x-etsi-mec-cardinality": "1..N",
                        "x-etsi-mec-origin-type": "Structure (inlined)"
                      }
                    }
                  },
                  "minItems": 1,
                  "required": [
                    "erabInfo"
                  ],
                  "type": "array",
                  "x-etsi-mec-cardinality": "1..N",
                  "x-etsi-mec-origin-type": "Structure (inlined)"
                }
              }
            },
            "minItems": 0,
            "required": [
              "ecgi",
              "ueInfo"
            ],
            "type": "array",
            "x-etsi-mec-cardinality": "0..N",
            "x-etsi-mec-origin-type": "Structure (inlined)"
          },
          "requestId": {
            "description": "Unique identifier allocated by the service consumer for the RAB Information request.",
            "type": "string",
            "x-etsi-mec-cardinality": "1",
            "x-etsi-mec-origin-type": "String"
          },
          "timeStamp": {
Michel Roy's avatar
Michel Roy committed
            "$ref": "#/components/schemas/TimeStamp"
Michel Roy's avatar
Michel Roy committed
        "required": [
          "appInstanceId",
          "requestId"
        ],
        "type": "object",
        "x-etsi-ref": "6.2.3"
      },
      "RabModNotification": {
        "properties": {
          "associateId": {
            "description": "0 to N identifiers to bind the event for a specific UE or flow. ",
            "items": {
              "$ref": "#/components/schemas/AssociateId"
            },
            "minItems": 0,
            "type": "array",
            "x-etsi-mec-cardinality": "0..N",
            "x-etsi-mec-origin-type": "AssociateId"
          },
          "ecgi": {
Michel Roy's avatar
Michel Roy committed
            "$ref": "#/components/schemas/Ecgi"
Michel Roy's avatar
Michel Roy committed
          },
          "erabId": {
            "description": "The attribute that uniquely identifies a Radio Access bearer for specific UE as defined in ETSI TS 136 413 [i.3].",
            "type": "integer",
            "x-etsi-mec-cardinality": "1",
            "x-etsi-mec-origin-type": "Integer"
          },
          "erabQosParameters": {
            "description": "The QoS parameters for the E-RAB as defined below.",
            "properties": {
              "qci": {
                "description": "QoS Class Identifier as defined in ETSI TS 123 401 [i.4].",
                "type": "integer",
                "x-etsi-mec-cardinality": "1",
                "x-etsi-mec-origin-type": "Integer"
              },
              "qosInformation": {
                "description": "The QoS Information for the E-RAB as defined below.",
                "properties": {
                  "erabGbrDl": {
                    "description": "This attribute indicates the guaranteed downlink E-RAB Bit Rate as defined in ETSI TS 123 401 [i.4] for this bearer.",
                    "type": "integer",
                    "x-etsi-mec-cardinality": "1",
                    "x-etsi-mec-origin-type": "Integer"
                  },
                  "erabGbrUl": {
                    "description": "This attribute indicates the guaranteed uplink E-RAB Bit Rate as defined in ETSI TS 123 401 [i.4] for this bearer.",
                    "type": "integer",
                    "x-etsi-mec-cardinality": "1",
                    "x-etsi-mec-origin-type": "Integer"
                  },
                  "erabMbrDl": {
                    "description": "This attribute indicates the maximum downlink E-RAB Bit Rate as defined in ETSI TS 123 401 [i.4] for this bearer.",
                    "type": "integer",
                    "x-etsi-mec-cardinality": "1",
                    "x-etsi-mec-origin-type": "Integer"
                  },
                  "erabMbrUl": {
                    "description": "This attribute indicates the maximum uplink E-RAB Bit Rate as defined in ETSI TS 123 401 [i.4] for this bearer.",
                    "type": "integer",
                    "x-etsi-mec-cardinality": "1",
                    "x-etsi-mec-origin-type": "Integer"
                  }
                },
                "required": [
                  "erabMbrDl",
                  "erabMbrUl",
                  "erabGbrDl",
                  "erabGbrUl"
                ],
                "type": "object",
                "x-etsi-mec-cardinality": "0..1",
                "x-etsi-mec-origin-type": "Structure (inlined)"
              }
            },
            "required": [
              "qci"
            ],
            "type": "object",
            "x-etsi-mec-cardinality": "0..1",
            "x-etsi-mec-origin-type": "Structure (inlined)"
          },
          "notificationType": {
            "description": "Shall be set to \"RabModNotification\".",
            "type": "string",
            "x-etsi-mec-cardinality": "1",
            "x-etsi-mec-origin-type": "String"
          },
          "timeStamp": {
Michel Roy's avatar
Michel Roy committed
            "$ref": "#/components/schemas/TimeStamp"
Michel Roy's avatar
Michel Roy committed
        "required": [
          "notificationType",
          "ecgi",
          "erabId"
        ],
        "type": "object",
        "x-etsi-ref": "6.4.4"
      },
      "RabModSubscription": {
        "properties": {
          "_links": {
            "description": "Hyperlink related to the resource. This shall be only included in the HTTP responses and in HTTP PUT requests.",
            "properties": {
              "self": {
Michel Roy's avatar
Michel Roy committed
                "$ref": "#/components/schemas/LinkType"
Michel Roy's avatar
Michel Roy committed
              }
            },
            "required": [
              "self"
            ],
            "type": "object",
            "x-etsi-mec-cardinality": "0..1",
            "x-etsi-mec-origin-type": "Structure (inlined)"
          },
          "callbackReference": {
            "description": "URI selected by the service consumer to receive notifications on the subscribed RNIS information. This shall be included both in the request and in response.",
            "format": "uri",
            "type": "string",
            "x-etsi-mec-cardinality": "1",
            "x-etsi-mec-origin-type": "URI"
          },
          "expiryDeadline": {
Michel Roy's avatar
Michel Roy committed
            "$ref": "#/components/schemas/TimeStamp"
Michel Roy's avatar
Michel Roy committed
          },
          "filterCriteriaQci": {
            "description": "List of filtering criteria for the subscription. Any filtering criteria from below, which is included in the request, shall also be included in the response.",
            "properties": {
              "appInstanceId": {
                "description": "Unique identifier for the MEC application instance.",
                "type": "string",
                "x-etsi-mec-cardinality": "0..1",
                "x-etsi-mec-origin-type": "String"
              },
              "ecgi": {
                "description": "E-UTRAN Cell Global Identifier.",
                "items": {
                  "$ref": "#/components/schemas/Ecgi"
                },
                "minItems": 0,
                "type": "array",
                "x-etsi-mec-cardinality": "0..N",
                "x-etsi-mec-origin-type": "Ecgi"
              },
              "erabId": {
                "description": "The attribute that uniquely identifies a Radio Access bearer for specific UE as defined in ETSI TS 136 413 [i.3].",
                "type": "integer",
                "x-etsi-mec-cardinality": "1",
                "x-etsi-mec-origin-type": "Integer"
              },
              "qci": {
                "description": "QoS Class Identifier as defined in ETSI TS 123 401 [i.4].",
                "type": "integer",
                "x-etsi-mec-cardinality": "1",
                "x-etsi-mec-origin-type": "Integer"
              }
            },
            "required": [
              "erabId",
              "qci"
            ],
            "type": "object",
            "x-etsi-mec-cardinality": "1",
            "x-etsi-mec-origin-type": "Structure (inlined)"
          },
          "subscriptionType": {
            "description": "Shall be set to \"RabModSubscription\".",
            "type": "string",
            "x-etsi-mec-cardinality": "1",
            "x-etsi-mec-origin-type": "String"
          }
Michel Roy's avatar
Michel Roy committed
        "required": [
          "subscriptionType",
          "callbackReference",
          "filterCriteriaQci"
        ],
        "type": "object",
        "x-etsi-ref": "6.3.4"
      },
      "RabRelNotification": {
        "properties": {
          "associateId": {
            "description": "0 to N identifiers to bind the event for a specific UE or flow as defined below.",
            "items": {
              "$ref": "#/components/schemas/AssociateId"
            },
            "minItems": 0,
            "type": "array",
            "x-etsi-mec-cardinality": "0..N",
            "x-etsi-mec-origin-type": "AssociateId"
          },
          "ecgi": {
Michel Roy's avatar
Michel Roy committed
            "$ref": "#/components/schemas/Ecgi"
Michel Roy's avatar
Michel Roy committed
          },
          "erabReleaseInfo": {
            "description": "The release information for the E-RAB as defined below.",
            "properties": {
              "erabId": {
                "description": "The attribute that uniquely identifies a Radio Access bearer for specific UE as defined in ETSI TS 136 413 [i.3].",
                "type": "integer",
                "x-etsi-mec-cardinality": "1",
                "x-etsi-mec-origin-type": "Integer"
              }
            },
            "required": [
              "erabId"
            ],
            "type": "object",
            "x-etsi-mec-cardinality": "1",
            "x-etsi-mec-origin-type": "Structure (inlined)"
          },
          "notificationType": {
            "description": "Shall be set to \"RabRelNotification\".",
            "type": "string",
            "x-etsi-mec-cardinality": "1",
            "x-etsi-mec-origin-type": "String"
          },
          "timeStamp": {
Michel Roy's avatar
Michel Roy committed
            "$ref": "#/components/schemas/TimeStamp"
Michel Roy's avatar
Michel Roy committed
        "required": [
          "notificationType",
          "ecgi",
          "erabReleaseInfo"
        ],
        "type": "object",
        "x-etsi-ref": "6.4.5"
Michel Roy's avatar
Michel Roy committed
      "RabRelSubscription": {
        "properties": {
          "_links": {
            "description": "Hyperlink related to the resource. This shall be only included in the HTTP responses and in HTTP PUT requests.",
            "properties": {
              "self": {
Michel Roy's avatar
Michel Roy committed
                "$ref": "#/components/schemas/LinkType"
Michel Roy's avatar
Michel Roy committed
              }
            },
            "required": [
              "self"
            ],
            "type": "object",
            "x-etsi-mec-cardinality": "0..1",
            "x-etsi-mec-origin-type": "Structure (inlined)"
          },
          "callbackReference": {
            "description": "URI selected by the service consumer to receive notifications on the subscribed RNIS information. This shall be included both in the request and in response.",
            "format": "uri",
            "type": "string",
            "x-etsi-mec-cardinality": "1",
            "x-etsi-mec-origin-type": "URI"
          },
          "expiryDeadline": {
Michel Roy's avatar
Michel Roy committed
            "$ref": "#/components/schemas/TimeStamp"
Michel Roy's avatar
Michel Roy committed
          },
          "filterCriteriaQci": {
            "description": "List of filtering criteria for the subscription. Any filtering criteria from below, which is included in the request, shall also be included in the response.",
            "properties": {
              "appInstanceId": {
                "description": "Unique identifier for the MEC application instance.",
                "type": "string",
                "x-etsi-mec-cardinality": "0..1",
                "x-etsi-mec-origin-type": "String"
              },
              "ecgi": {
                "description": "E-UTRAN Cell Global Identifier.",
                "items": {
                  "$ref": "#/components/schemas/Ecgi"
                },
                "minItems": 0,
                "type": "array",
                "x-etsi-mec-cardinality": "0..N",
                "x-etsi-mec-origin-type": "Ecgi"
              },
              "erabId": {
                "description": "The attribute that uniquely identifies a Radio Access bearer for specific UE as defined in ETSI TS 136 413 [i.3].",
                "type": "integer",
                "x-etsi-mec-cardinality": "1",
                "x-etsi-mec-origin-type": "Integer"
              },
              "qci": {
                "description": "QoS Class Identifier as defined in ETSI TS 123 401 [i.4].",
                "type": "integer",
                "x-etsi-mec-cardinality": "1",
                "x-etsi-mec-origin-type": "Integer"
              }
            },
            "required": [
              "erabId",
              "qci"
            ],
            "type": "object",
            "x-etsi-mec-cardinality": "1",
            "x-etsi-mec-origin-type": "Structure (inlined)"
          },
          "subscriptionType": {
            "description": "Shall be set to \"RabRelSubscription\".",
            "type": "string",
            "x-etsi-mec-cardinality": "1",
            "x-etsi-mec-origin-type": "String"
          }
Michel Roy's avatar
Michel Roy committed
        "required": [
          "subscriptionType",
          "callbackReference",
          "filterCriteriaQci"
        ],
        "type": "object",
        "x-etsi-ref": "6.3.5"
      },
      "ResultsPerCsiRsIndex": {
        "description": "",
        "properties": {
          "csiRsIndex": {
            "description": "",
            "type": "integer",
            "x-etsi-mec-cardinality": "1",
            "x-etsi-mec-origin-type": "Uint8"
          },
          "csiRsResults": {
Michel Roy's avatar
Michel Roy committed
            "$ref": "#/components/schemas/MeasQuantityResultsNr"
Michel Roy's avatar
Michel Roy committed
        "required": [
          "csiRsIndex"
        ],
        "type": "object"
      },
      "ResultsPerCsiRsIndexList": {
        "properties": {
          "resultsPerCsiRsIndex": {
            "description": "",
            "items": {
Michel Roy's avatar
Michel Roy committed
              "type": "object",
              "properties": {
                "csiRsIndex": {
                  "description": "",
Michel Roy's avatar
Michel Roy committed
                  "format": "uint8",
Michel Roy's avatar
Michel Roy committed
                  "type": "integer",
                  "x-etsi-mec-cardinality": "1",
                  "x-etsi-mec-origin-type": "Uint8"
                },
                "csiRsResults": {
                  "$ref": "#/components/schemas/MeasQuantityResultsNr"
                }
              }
Michel Roy's avatar
Michel Roy committed
            },
            "minItems": 0,
Michel Roy's avatar
Michel Roy committed
            "required": [
              "csiRsIndex"
            ],
Michel Roy's avatar
Michel Roy committed
            "type": "array",
            "x-etsi-mec-cardinality": "0..P",
            "x-etsi-mec-origin-type": "Structure (inline)"
          }
Michel Roy's avatar
Michel Roy committed
        "type": "object",
        "x-etsi-ref": "6.5.10"
      },
      "ResultsPerSsbIndex": {
        "description": "",
        "properties": {
          "ssbIndex": {
            "description": "",
            "type": "integer",
            "x-etsi-mec-cardinality": "1",
            "x-etsi-mec-origin-type": "Uint8"
          },
          "ssbResults": {
Michel Roy's avatar
Michel Roy committed
            "$ref": "#/components/schemas/MeasQuantityResultsNr"
Michel Roy's avatar
Michel Roy committed
        "required": [
          "ssbIndex"
        ],
        "type": "object"
Michel Roy's avatar
Michel Roy committed
      "ResultsPerSsbIndexList": {
        "properties": {
          "resultsPerSsbIndex": {
            "description": "",
            "items": {
Michel Roy's avatar
Michel Roy committed
              "type": "object",
              "properties": {
                "ssbIndex": {
                  "description": "",
Michel Roy's avatar
Michel Roy committed
                  "format": "uint8",
Michel Roy's avatar
Michel Roy committed
                  "type": "integer",
                  "x-etsi-mec-cardinality": "1",
                  "x-etsi-mec-origin-type": "Uint8"
                },
                "ssbResults": {
                  "$ref": "#/components/schemas/MeasQuantityResultsNr"
                }
              }
Michel Roy's avatar
Michel Roy committed
            },
            "minItems": 0,
Michel Roy's avatar
Michel Roy committed
            "required": [
              "ssbIndex"
            ],
Michel Roy's avatar
Michel Roy committed
            "type": "array",
            "x-etsi-mec-cardinality": "0..P",
            "x-etsi-mec-origin-type": "Structure (inline)"
          }
Michel Roy's avatar
Michel Roy committed
        "type": "object",
        "x-etsi-ref": "6.5.9"
      },
      "RsIndexResults": {
        "properties": {
          "resultsCsiRsIndexes": {
Michel Roy's avatar
Michel Roy committed
            "$ref": "#/components/schemas/ResultsPerCsiRsIndexList"
Michel Roy's avatar
Michel Roy committed
          },
          "resultsSsbIndexes": {
Michel Roy's avatar
Michel Roy committed
            "$ref": "#/components/schemas/ResultsPerSsbIndexList"
Michel Roy's avatar
Michel Roy committed
        "required": [
          "resultsSsbIndexes",
          "resultsCsiRsIndexes"
        ],
        "type": "object",
        "x-etsi-ref": "6.5.8"
      },
      "S1BearerInfo": {
        "properties": {
          "s1UeInfo": {
            "description": "Information on a specific UE as defined below.",
            "items": {
              "properties": {
                "associateId": {
                  "description": "1 to N identifiers to associate the information for a specific UE or flow.",
                  "items": {
                    "$ref": "#/components/schemas/AssociateId"
                  },
                  "minItems": 1,
                  "type": "array",
                  "x-etsi-mec-cardinality": "1..N",
                  "x-etsi-mec-origin-type": "AssociateId"
                },
                "ecgi": {
                  "description": "E-UTRAN Cell Global Identifier.",
                  "items": {
                    "$ref": "#/components/schemas/Ecgi"
                  },
                  "minItems": 1,
                  "type": "array",
                  "x-etsi-mec-cardinality": "1..N",
                  "x-etsi-mec-origin-type": "Ecgi"
                },
                "s1BearerInfoDetailed": {
                  "description": "S1 bearer information as defined below.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "enbInfo": {
                        "description": "S1 bearer information on eNB side as defined below.",
                        "properties": {
                          "ipAddress": {
                            "description": "eNB transport layer address of this S1 bearer.",
                            "type": "string",
                            "x-etsi-mec-cardinality": "1",
                            "x-etsi-mec-origin-type": "String"
                          },
                          "tunnelId": {
                            "description": "eNB GTP-U TEID of this S1 bearer.",
                            "type": "string",
                            "x-etsi-mec-cardinality": "1",
                            "x-etsi-mec-origin-type": "String"
                          }
                        },
                        "required": [
                          "ipAddress",
                          "tunnelId"
                        ],
                        "type": "object",
                        "x-etsi-mec-cardinality": "1",
                        "x-etsi-mec-origin-type": "Structure (inlined)"
                      },
                      "erabId": {
                        "description": "The attribute that uniquely identifies a S1 bearer for a specific UE, as defined in ETSI TS 136 413 [i.3].",
                        "type": "integer",
                        "x-etsi-mec-cardinality": "1",
                        "x-etsi-mec-origin-type": "Integer"
                      },
                      "sGwInfo": {
                        "description": "S1 bearer information on GW side as defined below.",
                        "properties": {
                          "ipAddress": {
                            "description": "SGW transport layer address of this S1 bearer.",
                            "type": "string",
                            "x-etsi-mec-cardinality": "1",
                            "x-etsi-mec-origin-type": "String"
                          },
                          "tunnelId": {
                            "description": "SGW GTP-U TEID of this S1 bearer.",
                            "type": "string",
                            "x-etsi-mec-cardinality": "1",
                            "x-etsi-mec-origin-type": "String"
                          }
                        },
                        "required": [
                          "ipAddress",
                          "tunnelId"
                        ],
                        "type": "object",
                        "x-etsi-mec-cardinality": "1",
                        "x-etsi-mec-origin-type": "Structure (inlined)"
                      }
                    }
                  },
Michel Roy's avatar
Michel Roy committed
                  "minItems": 1,
Michel Roy's avatar
Michel Roy committed
                  "required": [
                    "erabId",
                    "enbInfo",
                    "sGwInfo"
                  ],
                  "type": "array",
                  "x-etsi-mec-cardinality": "1..N",
                  "x-etsi-mec-origin-type": "Structure (inlined)"
                },
                "tempUeId": {
                  "description": "The temporary identifier allocated for the specific UE as defined below.",
                  "properties": {
                    "mmec": {
                      "description": "MMEC as defined in ETSI TS 136 413 [i.3].",
                      "type": "string",
                      "x-etsi-mec-cardinality": "1",
                      "x-etsi-mec-origin-type": "String"
                    },
                    "mtmsi": {
                      "description": "M-TMSI as defined in ETSI TS 136 413 [i.3].",
                      "type": "string",
                      "x-etsi-mec-cardinality": "1",
                      "x-etsi-mec-origin-type": "String"
                    }
                  },
                  "required": [
                    "mmec",
                    "mtmsi"
                  ],
                  "type": "object",
                  "x-etsi-mec-cardinality": "0..1",
                  "x-etsi-mec-origin-type": "Structure (inlined)"
                }
              },
              "type": "object"
            },
            "minItems": 1,
            "required": [
              "associateId",
              "ecgi",
              "s1BearerInfoDetailed"
            ],
            "type": "array",
            "x-etsi-mec-cardinality": "1..N",
            "x-etsi-mec-origin-type": "Structure (inlined)"
          },
          "timeStamp": {
Michel Roy's avatar
Michel Roy committed
            "$ref": "#/components/schemas/TimeStamp"
Michel Roy's avatar
Michel Roy committed
        "required": [
          "s1UeInfo"
        ],
        "type": "object",
        "x-etsi-ref": "6.2.4"
      },
      "S1BearerNotification": {
        "properties": {
          "notificationType": {
            "description": "Shall be set to \"S1BearerNotification\".",
            "type": "string",
            "x-etsi-mec-cardinality": "1",
            "x-etsi-mec-origin-type": "String"
          },
          "s1Event": {
            "description": "The subscribed event that triggered this notification in S1BearerSubscription.",
Michel Roy's avatar
Michel Roy committed
            "type": "integer",
Michel Roy's avatar
Michel Roy committed
            "x-etsi-mec-cardinality": "1",
            "x-etsi-mec-origin-type": "Enum"
          },
          "s1UeInfo": {
            "description": "Information on specific UE that matches the criteria in S1BearerSubscription as defined below.",
Michel Roy's avatar
Michel Roy committed
            "properties": {
              "associateId": {
                "description": "0 to N identifiers to associate the information for a specific UE or flow.",
                "items": {
                  "$ref": "#/components/schemas/AssociateId"
Michel Roy's avatar
Michel Roy committed
                "minItems": 0,
                "type": "array",
                "x-etsi-mec-cardinality": "0..N",
                "x-etsi-mec-origin-type": "AssociateId"
              },
              "ecgi": {
                "description": "E-UTRAN Cell Global Identifier.",
                "items": {
                  "$ref": "#/components/schemas/Ecgi"
Michel Roy's avatar
Michel Roy committed
                "minItems": 1,
                "type": "array",
                "x-etsi-mec-cardinality": "1..N",
                "x-etsi-mec-origin-type": "Ecgi"
              },
              "s1BearerInfo": {
                "description": "S1 bearer information as defined below.",
                "items": {
                  "type": "object",
                  "properties": {
                    "enbInfo": {
                      "description": "S1 bearer information on eNB side as defined below.",
                      "properties": {
                        "ipAddress": {
                          "description": "eNB transport layer address of this S1 bearer.",
                          "type": "string",
                          "x-etsi-mec-cardinality": "1",
                          "x-etsi-mec-origin-type": "String"
Michel Roy's avatar
Michel Roy committed
                        "tunnelId": {
                          "description": "eNB GTP-U TEID of this S1 bearer.",
                          "type": "string",
                          "x-etsi-mec-cardinality": "1",
                          "x-etsi-mec-origin-type": "String"
                        }
Michel Roy's avatar
Michel Roy committed
                      "required": [
                        "ipAddress",
                        "tunnelId"
                      ],
                      "type": "object",
Michel Roy's avatar
Michel Roy committed
                      "x-etsi-mec-cardinality": "1",
Michel Roy's avatar
Michel Roy committed
                      "x-etsi-mec-origin-type": "Structure (inlined)"
Michel Roy's avatar
Michel Roy committed
                    "erabId": {
                      "description": "The attribute that uniquely identifies a S1 bearer for a specific UE, as defined in ETSI TS 136 413 [i.3].",
                      "type": "integer",
Michel Roy's avatar
Michel Roy committed
                      "x-etsi-mec-cardinality": "1",
Michel Roy's avatar
Michel Roy committed
                      "x-etsi-mec-origin-type": "Integer"
                    },
                    "sGwInfo": {
                      "description": "S1 bearer information on GW side as defined below.",
                      "properties": {
                        "ipAddress": {
                          "description": "SGW transport layer address of this S1 bearer.",
                          "type": "string",
                          "x-etsi-mec-cardinality": "1",
                          "x-etsi-mec-origin-type": "String"
                        },
                        "tunnelId": {
                          "description": "SGW GTP-U TEID of this S1 bearer.",
                          "type": "string",
                          "x-etsi-mec-cardinality": "1",
                          "x-etsi-mec-origin-type": "String"
                        }
                      },
                      "required": [
                        "ipAddress",
                        "tunnelId"
                      ],
                      "type": "object",
                      "x-etsi-mec-cardinality": "1",
                      "x-etsi-mec-origin-type": "Structure (inlined)"
Michel Roy's avatar
Michel Roy committed
                  }
                },
                "minItems": 1,
                "required": [
                  "erabId",
                  "enbInfo",
                  "sGwInfo"
                ],
                "type": "array",
                "x-etsi-mec-cardinality": "1..N",
                "x-etsi-mec-origin-type": "Structure (inlined)"
Michel Roy's avatar
Michel Roy committed
              "tempUeId": {
                "description": "The temporary identifier allocated for the specific UE as defined below.",
                "properties": {
                  "mmec": {
                    "description": "MMEC as defined in ETSI TS 136 413 [i.3].",
                    "type": "string",
                    "x-etsi-mec-cardinality": "1",
                    "x-etsi-mec-origin-type": "String"
                  },
                  "mtmsi": {
                    "description": "M-TMSI as defined in ETSI TS 136 413 [i.3].",
                    "type": "string",
                    "x-etsi-mec-cardinality": "1",
                    "x-etsi-mec-origin-type": "String"
                  }
                },
                "required": [
                  "mmec",
                  "mtmsi"
                ],
                "type": "object",
                "x-etsi-mec-cardinality": "0..1",
                "x-etsi-mec-origin-type": "Structure (inlined)"
              }
Michel Roy's avatar
Michel Roy committed
            },
            "required": [
              "ecgi",
              "s1BearerInfo"
            ],
            "type": "object",
            "x-etsi-mec-cardinality": "1",
            "x-etsi-mec-origin-type": "Structure (inlined)"
          },
          "timeStamp": {
Michel Roy's avatar
Michel Roy committed
            "$ref": "#/components/schemas/TimeStamp"
Michel Roy's avatar
Michel Roy committed
        "required": [
          "notificationType",
          "s1Event",
          "s1UeInfo"
        ],
        "type": "object",
        "x-etsi-ref": "6.4.10"
Michel Roy's avatar
Michel Roy committed
      "S1BearerSubscription": {
        "properties": {
          "S1BearerSubscriptionCriteria": {
            "description": "As defined below.",
            "properties": {
              "associateId": {
                "description": "0 to N identifiers to associate the events for a specific UE or a flow.",
                "items": {
                  "$ref": "#/components/schemas/AssociateId"
                },
                "minItems": 0,
                "type": "array",
                "x-etsi-mec-cardinality": "0..N",
                "x-etsi-mec-origin-type": "AssociateId"
              },
              "ecgi": {
                "description": "E-UTRAN Cell Global Identifier.",
                "items": {
                  "$ref": "#/components/schemas/Ecgi"
                },
                "minItems": 0,
                "type": "array",
                "x-etsi-mec-cardinality": "0..N",
                "x-etsi-mec-origin-type": "Ecgi"
              },
              "erabId": {
                "description": "The attribute that uniquely identifies a S1 bearer for a specific UE, as defined in ETSI TS 136 413 [i.3].",
                "items": {
                  "type": "integer"
                },
                "minItems": 0,
                "type": "array",
                "x-etsi-mec-cardinality": "0..N",
                "x-etsi-mec-origin-type": "Integer"
              }
            },
            "type": "object",
            "x-etsi-mec-cardinality": "1",
            "x-etsi-mec-origin-type": "Structure (inlined)"
          },
          "_links": {
            "description": "Hyperlink related to the resource. This shall be only included in the HTTP responses and in HTTP PUT requests.",
            "properties": {
              "self": {
Michel Roy's avatar
Michel Roy committed
                "$ref": "#/components/schemas/LinkType"
Michel Roy's avatar
Michel Roy committed
              }
            },
            "required": [
              "self"
            ],
            "type": "object",
            "x-etsi-mec-cardinality": "0..1",
            "x-etsi-mec-origin-type": "Structure (inlined)"
          },
          "callbackReference": {
            "description": "URI selected by the service consumer, to receive notifications on the subscribed RNIS information. This shall be included in the request and response.",
            "format": "uri",
            "type": "string",
            "x-etsi-mec-cardinality": "1",
            "x-etsi-mec-origin-type": "URI"
          },
          "eventType": {
Michel Roy's avatar
Michel Roy committed
            "description": "Description of the subscribed event. The event is included both in the request and in the response. \\nFor the eventType, the following values are currently defined: <p>0 = RESERVED. <p>1 = S1_BEARER_ESTABLISH. <p>2 = S1_BEARER_MODIFY. <p>3 = S1_BEARER_RELEASE.",
Michel Roy's avatar
Michel Roy committed
            "items": {
              "$ref": "#/components/schemas/Enum"
            },
            "minItems": 1,
            "type": "array",
            "x-etsi-mec-cardinality": "1..N",
            "x-etsi-mec-origin-type": "Enum"
          },
          "expiryDeadline": {
Michel Roy's avatar
Michel Roy committed
            "$ref": "#/components/schemas/TimeStamp"
Michel Roy's avatar
Michel Roy committed
          },
          "subscriptionType": {
            "description": "Shall be set to \"S1BearerSubscription\".",
            "type": "string",
            "x-etsi-mec-cardinality": "1",
            "x-etsi-mec-origin-type": "String"
          }
Michel Roy's avatar
Michel Roy committed
        "required": [
          "subscriptionType",
          "callbackReference",
          "eventType",
          "S1BearerSubscriptionCriteria"
        ],
        "type": "object",
        "x-etsi-ref": "6.3.9"
      },
      "SubscriptionLinkList": {
        "properties": {
          "_links": {
            "description": "List of hyperlinks related to the resource.",
            "properties": {
              "self": {
Michel Roy's avatar
Michel Roy committed
                "$ref": "#/components/schemas/LinkType"
Michel Roy's avatar
Michel Roy committed
              },
              "subscription": {
                "description": "A link to a subscription.",
                "items": {
                  "type": "object",
                  "properties": {
                    "href": {
                      "description": "The URI referring to the subscription.",
                      "format": "uri",
                      "type": "string",
                      "x-etsi-mec-cardinality": "1",
                      "x-etsi-mec-origin-type": "URI"
                    },
                    "subscriptionType": {
                      "description": "Type of the subscription. The string shall be set according to the \"subscriptionType\" attribute of the associated subscription data type event defined in clause 6.3.",
                      "type": "string",
                      "x-etsi-mec-cardinality": "1",
                      "x-etsi-mec-origin-type": "String"
                    }
                  }
                },
Michel Roy's avatar
Michel Roy committed
                "minItems": 0,
Michel Roy's avatar
Michel Roy committed
                "required": [
                  "href",
                  "subscriptionType"
                ],
                "type": "array",
                "x-etsi-mec-cardinality": "0..N",
                "x-etsi-mec-origin-type": "Structure (inlined)"
              }
            },
            "required": [
              "self"
            ],
            "type": "object",
            "x-etsi-mec-cardinality": "1",
            "x-etsi-mec-origin-type": "Structure (inlined)"
          }
Michel Roy's avatar
Michel Roy committed
        "required": [
          "_links"
        ],
        "type": "object",
        "x-etsi-ref": "6.3.10"
      },
      "TimeStamp": {
        "properties": {
          "nanoSeconds": {
            "description": "The nanoseconds part of the time. Time is defined as Unix-time since January 1, 1970, 00:00:00 UTC.",
Michel Roy's avatar
Michel Roy committed
            "format": "uint32",
Michel Roy's avatar
Michel Roy committed
            "type": "integer",
Michel Roy's avatar
Michel Roy committed
            "x-etsi-mec-cardinality": "1",
            "x-etsi-mec-origin-type": "Uint32"
          },
          "seconds": {
            "description": "The seconds part of the time. Time is defined as Unixtime since January 1, 1970, 00:00:00 UTC.",
Michel Roy's avatar
Michel Roy committed
            "format": "uint32",
Michel Roy's avatar
Michel Roy committed
            "type": "integer",
Michel Roy's avatar
Michel Roy committed
            "x-etsi-mec-cardinality": "1",
            "x-etsi-mec-origin-type": "Uint32"
          }
Michel Roy's avatar
Michel Roy committed
        "required": [
          "seconds",
          "nanoSeconds"
        ],
        "type": "object",
        "x-etsi-ref": "6.5.3"
Michel Roy's avatar
Michel Roy committed
      "Trigger": {
Michel Roy's avatar
Michel Roy committed
        "description": "As defined in Ref ETSI TS 136 331 [i.7] <p>0 = NOT_AVAILABLE <p>1 = PERIODICAL_REPORT_STRONGEST_CELLS <p>2 = PERIODICAL_REPORT_STRONGEST_CELLS_FOR_SON <p>3 = PERIODICAL_REPORT_CGI <p>4 = INTRA_PERIODICAL_REPORT_STRONGEST_CELLS <p>5 = INTRA_PERIODICAL_REPORT_CGI <p>10 = EVENT_A1 <p>11 = EVENT_A2 <p>12 = EVENT_A3 <p>13 = EVENT_A4 <p>14 = EVENT_A5 <p>15 = EVENT_A6 <p>20 = EVENT_B1 <p>21 = EVENT_B2 <p>20 = EVENT_B1-NR <p>21 = EVENT_B2-NR <p>30 = EVENT_C1 <p>31 = EVENT_C2 <p>40 = EVENT_W1 <p>41 = EVENT_W2 <p>42 = EVENT_W3 <p>50 = EVENT_V1 <p>51 = EVENT_V2 <p>60 = EVENT_H1 <p>61 = EVENT_H2",
Michel Roy's avatar
Michel Roy committed
        "enum": [
Michel Roy's avatar
Michel Roy committed
        "type": "integer"
Michel Roy's avatar
Michel Roy committed
      },
      "TriggerNr": {
Michel Roy's avatar
Michel Roy committed
        "description": "The enumeration Trigger represents specified triggers for a 5G UE Measurement Report. Full details can be found in ETSI TS 138 331 [i.13]). <p>0 = NOT_AVAILABLE <p>1 = NR_PERIODICAL <p>2 = NR_CGI <p>10 = EVENT_A1 <p>11 = EVENT_A2 <p>12 = EVENT_A3 <p>13 = EVENT_A4 <p>14 = EVENT_A5 <p>15 = EVENT_A6 <p>20 = INTER_RAT_PERIODICAL <p>21 = INTER_RAT_CGI <p>30 = EVENT_B1 <p>31 = EVENT_B2",
Michel Roy's avatar
Michel Roy committed
        "enum": [
Michel Roy's avatar
Michel Roy committed
        "type": "integer"
Michel Roy's avatar
Michel Roy committed
      },
      "InlineSubscription": {
        "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"
        }
      },
      "InlineNotification": {
        "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"
        }