RniAPI.json 191 KB
Newer Older
{
  "swagger": "2.0",
  "info": {
    "description": "The ETSI MEC ISG MEC012 Radio Network Information API described using OpenAPI",
    "version": "1.1.1",
    "title": "RNI API",
    "license": {
      "name": "ETSI Forge copyright notice",
      "url": "https://forge.etsi.org/etsi-forge-copyright-notice.txt"
    }
  },
  "externalDocs": {
    "description": "ETSI GS MEC012 Radio Network Information API, V1.1.1",
14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465
    "url": "http://www.etsi.org/deliver/etsi_gs/MEC/001_099/012/01.01.01_60/gs_mec012v010101p.pdf"
  },
  "host": "127.0.0.1:8081",
  "basePath": "/rni/v1",
  "schemes": [
    "http",
    "https"
  ],
  "consumes": [
    "application/json"
  ],
  "produces": [
    "application/json"
  ],
  "security": [
    {
      "OauthSecurity": [
        "all"
      ]
    }
  ],
  "securityDefinitions": {
    "OauthSecurity": {
      "type": "oauth2",
      "flow": "application",
      "tokenUrl": "https://oauth.exampleAPI/token",
      "scopes": {
        "all": "Single oauth2 scope for API"
      }
    }
  },
  "parameters": {
    "Body.CellChangeSubscriptionPost": {
      "name": "CellChangeSubscriptionPost",
      "in": "body",
      "description": "Use to creates a subscription to cell change notifications based on the\n   filter criteria",
      "required": true,
      "schema": {
        "type": "object",
        "properties": {
          "CellChangeSubscription": {
            "$ref": "#/definitions/CellChangeSubscriptionPost"
          }
        }
      }
    },
    "Body.CellChangeSubscription": {
      "name": "CellChangeSubscription",
      "in": "body",
      "description": "Use to creates a subscription to cell change notifications based on the filter criteria",
      "required": true,
      "schema": {
        "type": "object",
        "properties": {
          "CellChangeSubscription": {
            "$ref": "#/definitions/CellChangeSubscription"
          }
        }
      }
    },
    "Body.S1BearerSubscriptionPost": {
      "name": "S1BearerSubscriptionPost",
      "in": "body",
      "description": "Use to creates a subscription to S1 Bearer notifications based on the filter criteria",
      "required": true,
      "schema": {
        "type": "object",
        "properties": {
          "S1BearerSubscription": {
            "$ref": "#/definitions/S1BearerSubscriptionPost"
          }
        }
      }
    },
    "Body.S1BearerSubscription": {
      "name": "S1BearerSubscription",
      "in": "body",
      "description": "Use to creates a subscription to S1 Bearer notifications based on the filter criteria",
      "required": true,
      "schema": {
        "type": "object",
        "properties": {
          "S1BearerSubscription": {
            "$ref": "#/definitions/S1BearerSubscription"
          }
        }
      }
    },
    "Body.MeasTaSubscriptionPost": {
      "name": "MeasTaSubscriptionPost",
      "in": "body",
      "description": "Use to creates a subscription to UE Timing Advance notifications based on the filter criteria",
      "required": true,
      "schema": {
        "type": "object",
        "properties": {
          "MeasTaSubscription": {
            "$ref": "#/definitions/MeasTaSubscriptionPost"
          }
        }
      }
    },
    "Body.MeasTaSubscription": {
      "name": "MeasTaSubscription",
      "in": "body",
      "description": "Use to creates a subscription to UE Timing Advance notifications based on the filter criteria",
      "required": true,
      "schema": {
        "type": "object",
        "properties": {
          "MeasTaSubscription": {
            "$ref": "#/definitions/MeasTaSubscription"
          }
        }
      }
    },
    "Body.MeasRepUeSubscriptionPost": {
      "name": "MeasRepUeSubscriptionPost",
      "in": "body",
      "description": "Use to creates a subscription to UE measurement report notifications based on the filter criteria",
      "required": true,
      "schema": {
        "type": "object",
        "properties": {
          "MeasRepUeSubscription": {
            "$ref": "#/definitions/MeasRepUeSubscriptionPost"
          }
        }
      }
    },
    "Body.MeasRepUeSubscription": {
      "name": "MeasRepUeSubscription",
      "in": "body",
      "description": "Use to creates a subscription to UE measurement report notifications based on the filter criteria",
      "required": true,
      "schema": {
        "type": "object",
        "properties": {
          "MeasRepUeSubscription": {
            "$ref": "#/definitions/MeasRepUeSubscription"
          }
        }
      }
    },
    "Body.RabEstSubscriptionPost": {
      "name": "RabEstSubscriptionPost",
      "in": "body",
      "description": "Use to creates a subscription to RAB establishment notifications based on the filter criteria",
      "required": true,
      "schema": {
        "type": "object",
        "properties": {
          "RabEstSubscription": {
            "$ref": "#/definitions/RabEstSubscriptionPost"
          }
        }
      }
    },
    "Body.RabEstSubscription": {
      "name": "RabEstSubscription",
      "in": "body",
      "description": "Use to creates a subscription to RAB establishment notifications based on the filter criteria",
      "required": true,
      "schema": {
        "type": "object",
        "properties": {
          "RabEstSubscription": {
            "$ref": "#/definitions/RabEstSubscription"
          }
        }
      }
    },
    "Body.RabModSubscriptionPost": {
      "name": "RabEstSubscriptionPost",
      "in": "body",
      "description": "Use to creates a subscription to RAB Modification notifications based on the filter criteria",
      "required": true,
      "schema": {
        "type": "object",
        "properties": {
          "RabModSubscription": {
            "$ref": "#/definitions/RabModSubscriptionPost"
          }
        }
      }
    },
    "Body.RabModSubscription": {
      "name": "RabEstSubscription",
      "in": "body",
      "description": "Use to creates a subscription to RAB Modification notifications based on the filter criteria",
      "required": true,
      "schema": {
        "type": "object",
        "properties": {
          "RabModSubscription": {
            "$ref": "#/definitions/RabModSubscription"
          }
        }
      }
    },
    "Body.RabRelSubscriptionPost": {
      "name": "RabRelSubscriptionPost",
      "in": "body",
      "description": "Use to creates a subscription to RAB Release notifications based on the filter criteria",
      "required": true,
      "schema": {
        "type": "object",
        "properties": {
          "RabRelSubscription": {
            "$ref": "#/definitions/RabRelSubscriptionPost"
          }
        }
      }
    },
    "Body.RabRelSubscription": {
      "name": "RabRelSubscription",
      "in": "body",
      "description": "Use to creates a subscription to RAB Release notifications based on the filter criteria",
      "required": true,
      "schema": {
        "type": "object",
        "properties": {
          "RabRelSubscription": {
            "$ref": "#/definitions/RabRelSubscription"
          }
        }
      }
    },
    "Body.CaReConfSubscriptionPost": {
      "name": "CaReConfSubscriptionPost",
      "in": "body",
      "description": "Use to creates a subscription to Carrier Aggregation Reconfiguration notifications based on the filter criteria",
      "required": true,
      "schema": {
        "type": "object",
        "properties": {
          "CaReConfSubscription": {
            "$ref": "#/definitions/CaReConfSubscriptionPost"
          }
        }
      }
    },
    "Body.CaReConfSubscription": {
      "name": "CaReConfSubscription",
      "in": "body",
      "description": "Use to creates a subscription to Carrier Aggregation Reconfiguration notifications based on the filter criteria",
      "required": true,
      "schema": {
        "type": "object",
        "properties": {
          "CaReConfSubscription": {
            "$ref": "#/definitions/CaReConfSubscription"
          }
        }
      }
    },
    "Path.subscrId": {
      "name": "subscriptionId",
      "in": "path",
      "description": "Subscription Id, specifically the \"self\" returned in the subscription request",
      "required": true,
      "type": "string",
      "format": "uri"
    },
    "Query.AppInsId": {
      "name": "app_ins_id",
      "in": "query",
      "description": "Application instance identifier",
      "required": false,
      "type": "string"
    },
    "Query.AppInsIdArr": {
      "name": "app_ins_id",
      "in": "query",
      "description": "Application instance identifier",
      "required": true,
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "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,
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "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,
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "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,
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "Query.GtpTeId": {
      "name": "gtp_teid",
      "in": "query",
      "description": "Comma separated list of GTP TEID addresses as defined for the type for AssociateId",
      "required": false,
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "Query.CellId": {
      "name": "cell_id",
      "in": "query",
      "description": "E-UTRAN Cell Identity as a bit string (size (28)), as defined in ETSI TS 136 413",
      "required": false,
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "Query.ErabGbrDl": {
      "name": "erab_gbr_dl",
      "in": "query",
      "description": "Guaranteed downlink E-RAB Bit Rate as defined in ETSI TS 123 401",
      "required": false,
      "type": "integer",
      "format": "uint32"
    },
    "Query.ErabGbrUl": {
      "name": "erab_gbr_ul",
      "in": "query",
      "description": "Guaranteed uplink E-RAB Bit Rate as defined in ETSI TS 123 401",
      "required": false,
      "type": "integer",
      "format": "uint32"
    },
    "Query.ErabId": {
      "name": "erab_id",
      "in": "query",
      "description": "E-RAB identifier",
      "required": false,
      "type": "integer",
      "format": "uint32"
    },
    "Query.ErabIdArr": {
      "name": "erab_id",
      "in": "query",
      "description": "E-RAB identifier",
      "required": false,
      "type": "array",
      "items": {
        "type": "integer",
        "format": "uint32"
      }
    },
    "Query.ErabMbrDl": {
      "name": "erab_mbr_dl",
      "in": "query",
      "description": "Maximum downlink E-RAB Bit Rate as defined in ETSI TS 123 401",
      "required": false,
      "type": "integer",
      "format": "uint32"
    },
    "Query.ErabMbrUl": {
      "name": "erab_mbr_ul",
      "in": "query",
      "description": "Maximum uplink E-RAB Bit Rate as defined in ETSI TS 123 401",
      "required": false,
      "type": "integer",
      "format": "uint32"
    },
    "Query.Qci": {
      "name": "qci",
      "in": "query",
      "description": "QoS Class Identifier as defined in ETSI TS 123 401",
      "required": false,
      "type": "integer",
      "format": "uint32"
    },
    "Query.TempUeId": {
      "name": "temp_ue_id",
      "in": "query",
      "description": "The temporary identifier allocated for the specific UE as defined in ETSI TS 136 413",
      "required": false,
      "type": "array",
      "items": {
        "type": "string"
      }
    }
  },
  "paths": {
    "/resources/rab_info": {
      "get": {
        "description": "Gets information on existing E-RABs that are associated with a specific mobile edge application instance",
        "operationId": "rab_infoGET",
        "produces": [
          "application/json"
        ],
        "parameters": [
          {
            "$ref": "#/parameters/Query.AppInsId"
          },
          {
            "$ref": "#/parameters/Query.CellId"
          },
          {
            "$ref": "#/parameters/Query.UeIpv4Address"
          },
          {
            "$ref": "#/parameters/Query.UeIpv6Address"
          },
          {
            "$ref": "#/parameters/Query.NatedIpAddress"
          },
          {
            "$ref": "#/parameters/Query.GtpTeId"
          },
          {
            "$ref": "#/parameters/Query.ErabId"
          },
          {
            "$ref": "#/parameters/Query.Qci"
          },
          {
            "$ref": "#/parameters/Query.ErabMbrDl"
          },
          {
            "$ref": "#/parameters/Query.ErabMbrUl"
          },
          {
            "$ref": "#/parameters/Query.ErabGbrDl"
          },
          {
            "$ref": "#/parameters/Query.ErabGbrUl"
          }
        ],
        "responses": {
          "200": {
            "description": "Successful response to rab_info request",
            "schema": {
              "type": "object",
              "properties": {
                "RabInfo": {
                  "$ref": "#/definitions/RabInfo"
                }
              }
            },
            "examples": {
              "application/json": {
                "RabInfo": {
                  "timeStamp": {
                    "seconds": 1577836800,
                    "nanoSeconds": 0
                  },
                  "appInId": "01",
                  "requestId": "01",
                  "cellUserInfo": {
                    "ecgi": {
                      "plmn": {
                        "mcc": "001",
                        "mnc": "01"
                      },
                      "cellId": "0x800000A"
                    },
                    "ueInfo": {
                      "associateId": null,
                      "type": "1",
                      "value": "192.0.2.0",
                      "erabInfo": {
                        "erabId": 10
                      },
                      "erabQosParameters": {
                        "qci": 7,
                        "qosInformation": {
                          "erabMbrDl": 10,
                          "erabMbrUl": 10,
                          "erabGbrDl": 10,
                          "erabGbrUl": 10
                        }
                      }
                    }
                  }
                }
              }
            }
          },
          "400": {
            "description": "Bad Request",
            "schema": {
              "type": "object",
              "properties": {
                "ProblemDetails": {
                  "$ref": "#/definitions/ProblemDetails"
                }
              }
            }
          },
          "401": {
            "description": "Unauthorized",
            "schema": {
              "type": "object",
              "properties": {
                "ProblemDetails": {
                  "$ref": "#/definitions/ProblemDetails"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "schema": {
              "type": "object",
              "properties": {
                "ProblemDetails": {
                  "$ref": "#/definitions/ProblemDetails"
                }
              }
            }
          },
          "404": {
            "description": "Not Found",
            "schema": {
              "type": "object",
              "properties": {
                "ProblemDetails": {
                  "$ref": "#/definitions/ProblemDetails"
                }
              }
            }
          },
          "406": {
            "description": "Not Acceptable",
            "schema": {
              "type": "object",
              "properties": {
                "ProblemDetails": {
                  "$ref": "#/definitions/ProblemDetails"
                }
              }
            }
          },
          "429": {
            "description": "Too Many Requests",
            "schema": {
              "type": "object",
              "properties": {
                "ProblemDetails": {
                  "$ref": "#/definitions/ProblemDetails"
                }
              }
            }
          }
        },
        "x-swagger-router-controller": "Default"
      }
    },
    "/resources/plmn_info": {
      "get": {
        "description": "Gets the information on Mobile Network(s) that are associated with a specific mobile edge application instance",
        "operationId": "plmn_infoGET",
        "produces": [
          "application/json"
        ],
        "parameters": [
          {
            "$ref": "#/parameters/Query.AppInsIdArr"
          }
        ],
        "responses": {
          "200": {
            "description": "Successful response to rab_info request",
            "schema": {
              "type": "object",
              "properties": {
                "PlmnInfo": {
                  "$ref": "#/definitions/PlmnInfo"
                }
              }
            },
            "examples": {
              "application/json": {
                "PlmnInfo": {
                  "timeStamp": {
                    "seconds": 1577836800,
                    "nanoSeconds": 0
                  },
                  "appInId": "01",
                  "ecgi": {
                    "plmn": {
                      "mcc": "001",
                      "mnc": "01"
                    },
                    "cellId": "0x800000A"
                  }
                }
              }
            }
          },
          "400": {
            "description": "Bad Request",
            "schema": {
              "type": "object",
              "properties": {
                "ProblemDetails": {
                  "$ref": "#/definitions/ProblemDetails"
                }
              }
            }
          },
          "401": {
            "description": "Unauthorized",
            "schema": {
              "type": "object",
              "properties": {
                "ProblemDetails": {
                  "$ref": "#/definitions/ProblemDetails"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "schema": {
              "type": "object",
              "properties": {
                "ProblemDetails": {
                  "$ref": "#/definitions/ProblemDetails"
                }
              }
            }
          },
          "404": {
            "description": "Not Found",
            "schema": {
              "type": "object",
              "properties": {
                "ProblemDetails": {
                  "$ref": "#/definitions/ProblemDetails"
                }
              }
            }
          },
          "406": {
            "description": "Not Acceptable",
            "schema": {
              "type": "object",
              "properties": {
                "ProblemDetails": {
                  "$ref": "#/definitions/ProblemDetails"
                }
              }
            }
          },
          "429": {
            "description": "Too Many Requests",
            "schema": {
              "type": "object",
              "properties": {
                "ProblemDetails": {
                  "$ref": "#/definitions/ProblemDetails"
                }
              }
            }
          }
        },
        "x-swagger-router-controller": "Default"
      }
    },
    "/resources/s1_bearer_info": {
      "get": {
        "description": "Gets information on existing E-RABs that are associated with a specific mobile edge application instance",
        "operationId": "s1_bearer_infoGET",
        "produces": [
          "application/json"
        ],
        "parameters": [
          {
            "$ref": "#/parameters/Query.TempUeId"
          },
          {
            "$ref": "#/parameters/Query.UeIpv4Address"
          },
          {
            "$ref": "#/parameters/Query.UeIpv6Address"
          },
          {
            "$ref": "#/parameters/Query.NatedIpAddress"
          },
          {
            "$ref": "#/parameters/Query.GtpTeId"
          },
          {
            "$ref": "#/parameters/Query.CellId"
          },
          {
            "$ref": "#/parameters/Query.ErabIdArr"
          }
        ],
        "responses": {
          "200": {
            "description": "Successful response to s1_bearer_info request",
            "schema": {
              "type": "object",
              "properties": {
                "S1BearerInfo": {
                  "$ref": "#/definitions/S1BearerInfo"
                }
              }
            },
            "examples": {
              "application/json": {
                "S1BearerInfo": {
                  "timeStamp": {
                    "seconds": 1577836800,
                    "nanoSeconds": 0
                  },
                  "s1UeInfo": [
                    {
                      "tempUeId": {
                        "mmec": "0",
                        "mtmsi": "1234"
                      },
                      "associateId": [
                        {
                          "type": "1",
                          "value": "192.0.2.0"
                        },
                        {
                          "type": "3",
                          "value": "198.51.100.0"
                        }
                      ],
                      "ecgi": {
                        "plmn": {
                          "mcc": "001",
                          "mnc": "01"
                        },
                        "cellid": "0x800000A"
                      },
                      "s1BearerInfoDetailed": [
                        {
                          "erabId": 1,
                          "s1EnbInfo": {
                            "ipAddress": "192.0.2.0",
                            "tunnelId": "1111"
                          },
                          "sGwInfo": {
                            "ipAddress": "192.0.2.1",
                            "tunnelId": "2222"
                          }
                        }
                      ]
                    },
                    {
                      "tempUeId": {
                        "mmec": "0",
                        "mtmsi": "1234"
                      },
                      "associateId": {
                        "type": "1",
                        "value": "192.0.2.0"
                      },
                      "ecgi": {
                        "plmn": {
                          "mcc": "001",
                          "mnc": "01"
                        },
                        "cellid": "0x800000B"
                      },
                      "s1BearerInfoDetailed": [
                        {
                          "erabId": 2,
                          "s1EnbInfo": {
                            "ipAddress": "192.0.2.0",
                            "tunnelId": "3333"
                          },
                          "sGwInfo": {
                            "ipAddress": "192.0.2.1",
                            "tunnelId": "4444"
                          }
                        }
                      ]
                    }
                  ]
                }
              }
            }
          },
          "400": {
            "description": "Bad Request",
            "schema": {
              "type": "object",
              "properties": {
                "ProblemDetails": {
                  "$ref": "#/definitions/ProblemDetails"
                }
              }
            }
          },
          "401": {
            "description": "Unauthorized",
            "schema": {
              "type": "object",
              "properties": {
                "ProblemDetails": {
                  "$ref": "#/definitions/ProblemDetails"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "schema": {
              "type": "object",
              "properties": {
                "ProblemDetails": {
                  "$ref": "#/definitions/ProblemDetails"
                }
              }
            }
          },
          "404": {
            "description": "Not Found",
            "schema": {
              "type": "object",
              "properties": {
                "ProblemDetails": {
                  "$ref": "#/definitions/ProblemDetails"
                }
              }
            }
          },
          "406": {
            "description": "Not Acceptable",
            "schema": {
              "type": "object",
              "properties": {
                "ProblemDetails": {
                  "$ref": "#/definitions/ProblemDetails"
                }
              }
            }
          },
          "429": {
            "description": "Too Many Requests",
            "schema": {
              "type": "object",
              "properties": {
                "ProblemDetails": {
                  "$ref": "#/definitions/ProblemDetails"
                }
              }
            }
          }
        },
        "x-swagger-router-controller": "Default"
      }
    },
    "/subscriptions/": {
      "get": {
        "description": "The GET method can be used to request information about the subscriptions for this requestor",
        "operationId": "SubscriptionLinkList_subscriptionsGET",
        "produces": [
          "application/json",
          "application/problem+json"
        ],
        "responses": {
          "200": {
            "description": "Response body contains the list of links to requestors subscriptions.",
            "schema": {
              "type": "object",
              "properties": {
                "SubscriptionLinkList": {
                  "$ref": "#/definitions/SubscriptionLinkList"
                }
              }
            },
            "examples": {
              "application/json": {
                "SubscriptionLinkList": {
                  "_links": {
                    "self": "http://meAppServer.example.com/rni/v1/subscriptions",
                    "susbcription": [
                      {
                        "href": "http://meAppClient.example.com/rni/v1/notifications/cell_change/77777",
                        "subscriptionType": "CELL_CHANGE"
                      },
                      {
                        "href": "http://meAppClient.example.com/rni/v1/notifications/MeasTa/77777",
                        "subscriptionType": "MEAS_TIMING_ADVANCE"
                      }
                    ]
                  }
                }
              }
            }
          },
          "400": {
            "description": "Bad Request",
            "schema": {
              "type": "object",
              "properties": {
                "ProblemDetails": {
                  "$ref": "#/definitions/ProblemDetails"
                }
              }
            }
          },
          "401": {
            "description": "Unauthorized",
            "schema": {
              "type": "object",
              "properties": {
                "ProblemDetails": {
                  "$ref": "#/definitions/ProblemDetails"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "schema": {
              "type": "object",
              "properties": {
                "ProblemDetails": {
                  "$ref": "#/definitions/ProblemDetails"
                }
              }
            }
          },
          "404": {
            "description": "Not Found",
            "schema": {
              "type": "object",
              "properties": {
                "ProblemDetails": {
                  "$ref": "#/definitions/ProblemDetails"
                }
              }
            }
          },
          "406": {
            "description": "Not Acceptable",
            "schema": {
              "type": "object",
              "properties": {
                "ProblemDetails": {
                  "$ref": "#/definitions/ProblemDetails"
                }
              }
            }
          },
          "429": {
            "description": "Too Many Requests",
            "schema": {
              "type": "object",
              "properties": {
                "ProblemDetails": {
                  "$ref": "#/definitions/ProblemDetails"
                }
              }
            }
          }
        },
        "x-swagger-router-controller": "Default"
      }
    },
    "/subscriptions/cell_change": {
      "get": {
        "description": "The GET method can be used to request information about the cell_change subscriptions for this requestor",
        "operationId": "SubscriptionLinkList_subscriptions_cc_GET",
        "produces": [
          "application/json",
          "application/problem+json"
        ],
        "responses": {
          "200": {
            "description": "Response body contains the list of links to requestors cell_change subscriptions.",
            "schema": {
              "type": "object",
              "properties": {
                "SubscriptionLinkList": {
                  "$ref": "#/definitions/SubscriptionLinkList"
                }
              }
            },
            "examples": {
              "application/json": {
                "SubscriptionLinkList": {
                  "_links": {
                    "self": "http://meAppServer.example.com/rni/v1/subscriptions/cell_change",
                    "susbcription": [
                      {
                        "href": "http://meAppClient.example.com/rni/v1/notifications/cell_change/77777",
                        "subscriptionType": "CELL_CHANGE"
                      },
                      {
                        "href": "http://meAppClient.example.com/rni/v1/notifications/cell_change/77778",
                        "subscriptionType": "CELL_CHANGE"
                      }
                    ]
                  }
                }
              }
            }
          },
          "400": {
            "description": "Bad Request",
            "schema": {
              "type": "object",
              "properties": {
                "ProblemDetails": {
                  "$ref": "#/definitions/ProblemDetails"
                }
              }
            }
          },
          "401": {
            "description": "Unauthorized",
            "schema": {
              "type": "object",
              "properties": {
                "ProblemDetails": {
                  "$ref": "#/definitions/ProblemDetails"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "schema": {
              "type": "object",
              "properties": {
                "ProblemDetails": {
                  "$ref": "#/definitions/ProblemDetails"
                }
              }
            }
          },
          "404": {
            "description": "Not Found",
            "schema": {
              "type": "object",
              "properties": {
                "ProblemDetails": {
                  "$ref": "#/definitions/ProblemDetails"
                }
              }
            }
          },
          "406": {
            "description": "Not Acceptable",
            "schema": {
              "type": "object",
              "properties": {
                "ProblemDetails": {
                  "$ref": "#/definitions/ProblemDetails"
                }
              }
            }
          },
          "429": {
            "description": "Too Many Requests",
            "schema": {
              "type": "object",
              "properties": {
                "ProblemDetails": {
                  "$ref": "#/definitions/ProblemDetails"
                }
              }
            }
          }
        },
        "x-swagger-router-controller": "Default"
      },
      "post": {
        "description": "Creates a subscription to cell change notifications from Radio Network Information Service",
        "operationId": "CellChange_subscriptionsPOST",
        "produces": [
          "application/json",
          "application/problem+json"
        ],
        "parameters": [
          {
            "$ref": "#/parameters/Body.CellChangeSubscriptionPost"
          }
        ],
        "responses": {
          "201": {
            "description": "Successful subscription to response to UE cell change notifications",
            "schema": {
              "type": "object",
              "properties": {
                "CellChangeSubscription": {
                  "$ref": "#/definitions/CellChangeSubscription"
                }
              }
            },
            "examples": {
              "application/json": {
                "CellChangeSubscription": {
                  "callbackReference": "http://meAppClient.example.com/rni/v1/notifications/cell_change/77777",
                  "_links": {
                    "self": "http://meAppServer.example.com/rni/v1/subscriptions/cell_change/sub123"
                  },
                  "filterCriteria": {
                    "associateId": {
                      "type": "1",
                      "value": "192.0.2.0"
                    },
                    "plmn": {
                      "mnc": "01",
                      "mcc": "001"
                    },
                    "appInsId": "01",
                    "trigger": 6,
                    "cellId": "0x800000B"
                  },
                  "expiryDeadline": {
                    "seconds": 1577836800,
                    "nanoSeconds": 0
                  }
                }
              }
            }
          },
          "400": {
            "description": "Bad Request",
            "schema": {
              "type": "object",
              "properties": {
                "ProblemDetails": {
                  "$ref": "#/definitions/ProblemDetails"
                }
              }
            }
          },
          "401": {
            "description": "Unauthorized",
            "schema": {
              "type": "object",
              "properties": {
                "ProblemDetails": {
                  "$ref": "#/definitions/ProblemDetails"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "schema": {
              "type": "object",
              "properties": {
                "ProblemDetails": {
                  "$ref": "#/definitions/ProblemDetails"
                }
              }
            }
          },
          "404": {
            "description": "Not Found",
            "schema": {
              "type": "object",
              "properties": {
                "ProblemDetails": {
                  "$ref": "#/definitions/ProblemDetails"
                }
              }
            }
          },
          "406": {
            "description": "Not Acceptable",
            "schema": {
              "type": "object",
              "properties": {
                "ProblemDetails": {
                  "$ref": "#/definitions/ProblemDetails"
                }
              }
            }
          },
          "415": {
            "description": "Unsupported Media Type",
            "schema": {
              "type": "object",
              "properties": {
                "ProblemDetails": {
                  "$ref": "#/definitions/ProblemDetails"
                }
              }
            }
          },
          "422": {
            "description": "Unprocessable Entity",
            "schema": {
              "type": "object",
              "properties": {
                "ProblemDetails": {
                  "$ref": "#/definitions/ProblemDetails"
                }
              }
            },
            "examples": {
              "application/problem+json": {
                "ProblemDetails": {
                  "type": "https://meAppServer.example.com/rni/v1/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"
                }
              }
            }
          },
          "429": {
            "description": "Too Many Requests",
            "schema": {
              "type": "object",
              "properties": {
                "ProblemDetails": {
                  "$ref": "#/definitions/ProblemDetails"
                }
              }
            }
          }
        },
        "x-swagger-router-controller": "Default"
      }
    },
    "/subscriptions/cell_change/{subscriptionId}": {
      "get": {
        "description": "Get cell change subscription information",
        "operationId": "CellChange_subscriptionsGET",
        "produces": [
          "application/json",
          "application/problem+json"
        ],
        "parameters": [
          {
            "$ref": "#/parameters/Path.subscrId"
          }
        ],
        "responses": {
          "200": {
            "description": "Subscription information regarding cell change notifications",
            "schema": {
              "type": "object",
              "properties": {
                "CellChangeSubscription": {
                  "$ref": "#/definitions/CellChangeSubscription"
                }
              }
            },
            "examples": {
              "application/json": {
                "CellChangeSubscription": {
                  "callbackReference": "http://meAppClient.example.com/rni/v1/notifications/cell_change/77777",
                  "_links": {
                    "self": "http://meAppServer.example.com/rni/v1/subscriptions/cell_change/sub123"
                  },
                  "filterCriteria": {
                    "appInsId": "01",
                    "associateId": {
                      "type": "1",
                      "value": "192.0.2.0"
                    },
                    "plmn": {
                      "mnc": "01",
                      "mcc": "001"
                    },
                    "cellId": "0x800000B",
                    "hoStatus": 3
                  },
                  "expiryDeadline": {
                    "seconds": 1577836800,
                    "nanoSeconds": 0
                  }
                }
              }
            }
          },
          "400": {
            "description": "Bad Request",
            "schema": {
              "type": "object",
              "properties": {
                "ProblemDetails": {
                  "$ref": "#/definitions/ProblemDetails"
                }
              }
            }
          },
          "401": {
            "description": "Unauthorized",
            "schema": {
              "type": "object",
              "properties": {
                "ProblemDetails": {
                  "$ref": "#/definitions/ProblemDetails"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "schema": {
              "type": "object",
              "properties": {
                "ProblemDetails": {
                  "$ref": "#/definitions/ProblemDetails"
                }
              }
            }
          },
          "404": {
            "description": "Not Found",
            "schema": {
              "type": "object",
              "properties": {
                "ProblemDetails": {
                  "$ref": "#/definitions/ProblemDetails"
                }
              }
            }
          },
          "406": {
            "description": "Not Acceptable",
            "schema": {
              "type": "object",
              "properties": {
                "ProblemDetails": {
                  "$ref": "#/definitions/ProblemDetails"
                }
              }
            }
          },
          "429": {
            "description": "Too Many Requests",
            "schema": {
              "type": "object",
              "properties": {
                "ProblemDetails": {
                  "$ref": "#/definitions/ProblemDetails"
                }
              }
            }
          }
        }
      },
      "put": {
        "description": "Updates a subscription to cell change notifications from Radio Network Information Service",
        "operationId": "CellChange_subscriptionsPUT",
        "produces": [
          "application/json",
          "application/problem+json"
        ],
        "parameters": [
          {
            "$ref": "#/parameters/Body.CellChangeSubscription"
          },
          {
            "$ref": "#/parameters/Path.subscrId"
          }
        ],
        "responses": {
            "description": "Successful subscription to response to cell change notifications",
            "schema": {
              "type": "object",
              "properties": {
                "CellChangeSubscription": {
                  "$ref": "#/definitions/CellChangeSubscription"
                }
              }
            },
            "examples": {
              "application/json": {
                "CellChangeSubscription": {
                  "callbackReference": "http://meAppClient.example.com/rni/v1/notifications/cell_change/77777",
                  "_links": {
                    "self": "http://meAppServer.example.com/rni/v1/subscriptions/cell_change/sub123"
                  },
                  "filterCriteria": {
                    "appInsId": "01",
                    "associateId": {
                      "type": "1",
                      "value": "192.0.2.0"
                    },
                    "plmn": {
                      "mnc": "01",
                      "mcc": "001"
                    },
                    "cellId": "0x800000B",
                    "hoStatus": 3
                  },
                  "expiryDeadline": {
                    "seconds": 1577836800,
                    "nanoSeconds": 0
                  }
                }
              }
            }
          },
          "400": {
            "description": "Bad Request",
            "schema": {
              "type": "object",
              "properties": {
                "ProblemDetails": {
                  "$ref": "#/definitions/ProblemDetails"
                }
              }
            }
          },
          "401": {
            "description": "Unauthorized",
            "schema": {
              "type": "object",
              "properties": {
                "ProblemDetails": {
                  "$ref": "#/definitions/ProblemDetails"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "schema": {
              "type": "object",
              "properties": {
                "ProblemDetails": {
                  "$ref": "#/definitions/ProblemDetails"
                }
              }
            }
          },
          "404": {
            "description": "Not Found",
            "schema": {
              "type": "object",
              "properties": {
                "ProblemDetails": {
                  "$ref": "#/definitions/ProblemDetails"
                }
              }
            }
          },
          "406": {
            "description": "Not Acceptable",
            "schema": {
              "type": "object",
              "properties": {
                "ProblemDetails": {
                  "$ref": "#/definitions/ProblemDetails"
                }
              }
            }
          },
          "412": {
            "description": "Precondition failed",
            "schema": {
              "type": "object",
              "properties": {
                "ProblemDetails": {
                  "$ref": "#/definitions/ProblemDetails"
                }
              }
            }
          },
          "422": {
            "description": "Unprocessable Entity",
            "schema": {
              "type": "object",
              "properties": {
                "ProblemDetails": {
                  "$ref": "#/definitions/ProblemDetails"
                }
              }
            },
            "examples": {
              "application/problem+json": {
                "ProblemDetails": {
                  "type": "https://meAppServer.example.com/rni/v1/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"
                }
              }
            }
          },
          "429": {
            "description": "Too Many Requests",
            "schema": {
              "type": "object",
              "properties": {
                "ProblemDetails": {
                  "$ref": "#/definitions/ProblemDetails"
                }
              }
            }
          }
        }
      },
      "delete": {
        "description": "Method to delete a subscription",
        "operationId": "CellChange_subscriptionsSubscrIdDELETE",
        "produces": [
          "application/json"
        ],
        "parameters": [
          {
            "$ref": "#/parameters/Path.subscrId"
          }
        ],
        "responses": {
          "204": {
            "description": "No Content"
          }
        },
        "x-swagger-router-controller": "Default"
      }
    },
    "/subscriptions/s1_bearer": {
      "get": {
        "description": "The GET method can be used to request information about the s1_bearer subscriptions for this requestor",
        "operationId": "SubscriptionLinkList_subscriptions_s1_GET",
        "produces": [
          "application/json",
          "application/problem+json"
        ],
        "responses": {
          "200": {
            "description": "Response body contains the list of links to requestors s1_bearer subscriptions.",
            "schema": {
              "type": "object",
              "properties": {
                "SubscriptionLinkList": {
                  "$ref": "#/definitions/SubscriptionLinkList"
                }
              }
            },
            "examples": {
              "application/json": {
                "SubscriptionLinkList": {
                  "_links": {
                    "self": "http://meAppServer.example.com/rni/v1/subscriptions/s1_bearer",
                    "susbcription": [
                      {
                        "href": "http://meAppClient.example.com/rni/v1/notifications/s1_bearer/77777",
                        "subscriptionType": "S1_BEARER"
                      },
                      {
                        "href": "http://meAppClient.example.com/rni/v1/notifications/s1_bearer/77778",
                        "subscriptionType": "S1_BEARER"
                      }
                    ]
                  }
                }
              }
            }
          },
          "400": {
            "description": "Bad Request",
            "schema": {
              "type": "object",
              "properties": {
                "ProblemDetails": {
                  "$ref": "#/definitions/ProblemDetails"
                }
              }
            }
          },
          "401": {
            "description": "Unauthorized",
            "schema": {
              "type": "object",
              "properties": {
                "ProblemDetails": {
                  "$ref": "#/definitions/ProblemDetails"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "schema": {
              "type": "object",
              "properties": {
                "ProblemDetails": {
                  "$ref": "#/definitions/ProblemDetails"
                }
              }
            }
          },
          "404": {
            "description": "Not Found",
            "schema": {
              "type": "object",
              "properties": {
                "ProblemDetails": {
                  "$ref": "#/definitions/ProblemDetails"
                }
              }
            }
          },
          "406": {
            "description": "Not Acceptable",
            "schema": {
              "type": "object",
              "properties": {
                "ProblemDetails": {
                  "$ref": "#/definitions/ProblemDetails"
                }
              }
            }
          },
          "429": {
            "description": "Too Many Requests",
            "schema": {
              "type": "object",
              "properties": {
                "ProblemDetails": {
                  "$ref": "#/definitions/ProblemDetails"
                }
              }
            }
          }
        },
        "x-swagger-router-controller": "Default"
      },
      "post": {
        "description": "Creates a subscription to S1 bearer notifications from Radio Network Information Service",
        "operationId": "S1BearerSubscription_subscriptionsPOST",
        "produces": [
          "application/json",
          "application/problem+json"
        ],
        "parameters": [
          {
            "$ref": "#/parameters/Body.S1BearerSubscriptionPost"
          }
        ],
        "responses": {
          "201": {
            "description": "Successful subscription to response to S1 Bearer notifications",
            "schema": {
              "type": "object",
              "properties": {
                "S1BearerSubscription": {
                  "$ref": "#/definitions/S1BearerSubscription"
                }
              }
            },
            "examples": {
              "application/json": {
                "S1BearerSubscription": {
                  "callbackReference": "http://meAppClient.example.com/rni/v1/notifications/s1_bearer/77777",
                  "_links": {
                    "self": "http://meAppServer.example.com/rni/v1/subscriptions/s1_bearer/sub123"
                  },
                  "eventType": 1,
                  "s1BearerSubscriptionCriteria": {
                    "associateId": {
                      "type": "1",
                      "value": "192.0.2.0"
                    },
                    "plmn": {
                      "mnc": "01",
                      "mcc": "001"
                    },
                    "cellId": "0x800000B",
                    "erabId": 1
                  },
                  "expiryDeadline": {
                    "seconds": 1577836800,
                    "nanoSeconds": 0
                  }
                }
              }
            }
          },
          "400": {
            "description": "Bad Request",
            "schema": {
              "type": "object",
              "properties": {
                "ProblemDetails": {
                  "$ref": "#/definitions/ProblemDetails"
                }
              }
            }
          },
          "401": {
            "description": "Unauthorized",
            "schema": {
              "type": "object",
              "properties": {
                "ProblemDetails": {
                  "$ref": "#/definitions/ProblemDetails"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "schema": {
              "type": "object",
              "properties": {
                "ProblemDetails": {
                  "$ref": "#/definitions/ProblemDetails"
                }
              }
            }
          },
          "404": {
            "description": "Not Found",
            "schema": {
              "type": "object",
              "properties": {
                "ProblemDetails": {
                  "$ref": "#/definitions/ProblemDetails"
                }
              }
            }
          },
          "406": {
            "description": "Not Acceptable",
            "schema": {
              "type": "object",
              "properties": {
                "ProblemDetails": {
                  "$ref": "#/definitions/ProblemDetails"
                }
              }
            }
          },
          "415": {
            "description": "Unsupported Media Type",
            "schema": {
              "type": "object",
              "properties": {
                "ProblemDetails": {
                  "$ref": "#/definitions/ProblemDetails"
                }
              }
            }
          },
          "422": {
            "description": "Unprocessable Entity",
            "schema": {
              "type": "object",
              "properties": {
                "ProblemDetails": {
                  "$ref": "#/definitions/ProblemDetails"
                }
              }
            },
            "examples": {
              "application/problem+json": {
                "ProblemDetails": {
                  "type": "https://meAppServer.example.com/rni/v1/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"
                }
              }
            }
          },
          "429": {
            "description": "Too Many Requests",
            "schema": {
              "type": "object",
              "properties": {
                "ProblemDetails": {
                  "$ref": "#/definitions/ProblemDetails"
                }
              }
            }
          }
        },
        "x-swagger-router-controller": "Default"
      }
    },
    "/subscriptions/s1_bearer/{subscriptionId}": {
      "get": {
        "description": "Gets a subscription to S1 bearer notifications from Radio Network Information Service",
        "operationId": "S1BearerSubscription_subscriptionsGET",
        "produces": [
          "application/json",
          "application/problem+json"
        ],
        "parameters": [
          {
            "$ref": "#/parameters/Path.subscrId"
          }
        ],
        "responses": {
          "200": {
            "description": "Successful subscription to response to S1 Bearer notifications",
            "schema": {
              "type": "object",
              "properties": {
                "S1BearerSubscription": {
                  "$ref": "#/definitions/S1BearerSubscription"
                }
              }
            },
            "examples": {
              "application/json": {
                "S1BearerSubscription": {
                  "callbackReference": "http://meAppClient.example.com/rni/v1/notifications/s1_bearer/77777",
                  "_links": {
                    "self": "http://meAppServer.example.com/rni/v1/subscriptions/s1_bearer/sub123"
                  },
                  "eventType": 1,
                  "s1BearerSubscriptionCriteria": {
                    "associateId": {
                      "type": "1",
                      "value": "192.0.2.0"
                    },
                    "plmn": {
                      "mnc": "01",
                      "mcc": "001"
                    },
                    "cellId": "0x800000B",
                    "erabId": 1
                  },
                  "expiryDeadline": {
                    "seconds": 1577836800,
                    "nanoSeconds": 0
                  }
                }
              }
            }
          },
          "400": {
            "description": "Bad Request",
            "schema": {
              "type": "object",
              "properties": {
                "ProblemDetails": {
                  "$ref": "#/definitions/ProblemDetails"
                }
              }
            }
          },
          "401": {
            "description": "Unauthorized",
            "schema": {
              "type": "object",
              "properties": {
                "ProblemDetails": {
                  "$ref": "#/definitions/ProblemDetails"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "schema": {
              "type": "object",
              "properties": {
                "ProblemDetails": {
                  "$ref": "#/definitions/ProblemDetails"
                }
              }
            }
          },
          "404": {
            "description": "Not Found",
            "schema": {
              "type": "object",
              "properties": {
                "ProblemDetails": {
                  "$ref": "#/definitions/ProblemDetails"
                }
              }
            }
          },
          "406": {
            "description": "Not Acceptable",
            "schema": {
              "type": "object",
              "properties": {
                "ProblemDetails": {
                  "$ref": "#/definitions/ProblemDetails"
                }
              }
            }
          },
          "429": {
            "description": "Too Many Requests",
            "schema": {
              "type": "object",
              "properties": {
                "ProblemDetails": {
                  "$ref": "#/definitions/ProblemDetails"
                }
              }
            }
          }
        }
      },
      "put": {
        "description": "Update a subscription to S1 bearer notifications from Radio Network Information Service",
        "operationId": "S1BearerSubscription_subscriptionsPUT",
        "produces": [
          "application/json",
          "application/problem+json"
        ],
        "parameters": [
          {
            "$ref": "#/parameters/Path.subscrId"
          },
          {
            "$ref": "#/parameters/Body.S1BearerSubscription"
          }
        ],
        "responses": {
            "description": "Successful subscription update to response to S1 Bearer notifications",
            "schema": {
              "type": "object",
              "properties": {
                "S1BearerSubscription": {
                  "$ref": "#/definitions/S1BearerSubscription"
                }
              }
            },
            "examples": {
              "application/json": {
                "S1BearerSubscription": {
                  "callbackReference": "http://meAppClient.example.com/rni/v1/notifications/s1_bearer/77777",
                  "_links": {
                    "self": "http://meAppServer.example.com/rni/v1/subscriptions/s1_bearer/sub123"
                  },
                  "eventType": 1,
                  "s1BearerSubscriptionCriteria": {
                    "associateId": {
                      "type": "1",
                      "value": "192.0.2.0"
                    },
                    "plmn": {
                      "mnc": "01",
                      "mcc": "001"
                    },
                    "cellId": "0x800000B",
                    "erabId": 1
                  },
                  "expiryDeadline": {
                    "seconds": 1577836800,
                    "nanoSeconds": 0
                  }
                }
              }
            }
          },
          "400": {
            "description": "Bad Request",
            "schema": {
              "type": "object",
              "properties": {
                "ProblemDetails": {
                  "$ref": "#/definitions/ProblemDetails"
                }
              }
            }
          },
          "401": {
            "description": "Unauthorized",
            "schema": {
              "type": "object",
              "properties": {
                "ProblemDetails": {
                  "$ref": "#/definitions/ProblemDetails"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "schema": {
              "type": "object",
              "properties": {
                "ProblemDetails": {
                  "$ref": "#/definitions/ProblemDetails"
                }
              }
            }
          },
          "404": {
            "description": "Not Found",
            "schema": {
              "type": "object",
              "properties": {
                "ProblemDetails": {
                  "$ref": "#/definitions/ProblemDetails"
                }
              }
            }
          },
          "406": {
            "description": "Not Acceptable",
            "schema": {
              "type": "object",
              "properties": {
                "ProblemDetails": {
                  "$ref": "#/definitions/ProblemDetails"
                }
              }
            }
          },
          "412": {
            "description": "Precondition failed",
            "schema": {
              "type": "object",
              "properties": {
                "ProblemDetails": {
                  "$ref": "#/definitions/ProblemDetails"
                }
              }
            }
          },
          "422": {
            "description": "Unprocessable Entity",
            "schema": {
              "type": "object",
              "properties": {
                "ProblemDetails": {
                  "$ref": "#/definitions/ProblemDetails"
                }
              }
            },
            "examples": {
              "application/problem+json": {
                "ProblemDetails": {
                  "type": "https://meAppServer.example.com/rni/v1/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"
                }
              }
            }
          },
          "429": {
            "description": "Too Many Requests",
            "schema": {
              "type": "object",
              "properties": {
                "ProblemDetails": {
                  "$ref": "#/definitions/ProblemDetails"
                }
              }
            }
          }
        }
      },
      "delete": {
        "description": "Method to delete a subscription",
        "operationId": "S1Bearer_subscriptionsSubscrIdDELETE",
        "produces": [
          "application/json"
        ],
        "parameters": [
          {
            "$ref": "#/parameters/Path.subscrId"
          }
        ],
        "responses": {
          "204": {
            "description": "No Content"
          }
        },
        "x-swagger-router-controller": "Default"
      }
    },
    "/subscriptions/ta": {
      "get": {
        "description": "The GET method can be used to request information about the ta subscriptions for this requestor",
        "operationId": "SubscriptionLinkList_subscriptions_ta_GET",
        "produces": [
          "application/json",
          "application/problem+json"
        ],
        "responses": {
          "200": {
            "description": "Response body contains the list of links to requestors ta subscriptions.",
            "schema": {
              "type": "object",
              "properties": {
                "SubscriptionLinkList": {
                  "$ref": "#/definitions/SubscriptionLinkList"
                }
              }
            },
            "examples": {
              "application/json": {
                "SubscriptionLinkList": {
                  "_links": {
                    "self": "http://meAppServer.example.com/rni/v1/subscriptions/ta",
                    "susbcription": [
                      {
                        "href": "http://meAppClient.example.com/rni/v1/notifications/ta/77777",
                        "subscriptionType": "MEAS_ REPORT_UE"
                      },
                      {
                        "href": "http://meAppClient.example.com/rni/v1/notifications/ta/77778",
                        "subscriptionType": "MEAS_ REPORT_UE"
                      }
                    ]
                  }
                }
              }
            }
          },
          "400": {
            "description": "Bad Request",
            "schema": {
              "type": "object",
              "properties": {
                "ProblemDetails": {
                  "$ref": "#/definitions/ProblemDetails"
                }
              }
            }
          },
          "401": {
            "description": "Unauthorized",
            "schema": {
              "type": "object",
              "properties": {
                "ProblemDetails": {
                  "$ref": "#/definitions/ProblemDetails"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "schema": {
              "type": "object",
              "properties": {
                "ProblemDetails": {
                  "$ref": "#/definitions/ProblemDetails"
                }
              }
            }
          },
          "404": {
            "description": "Not Found",
            "schema": {
              "type": "object",
              "properties": {
                "ProblemDetails": {
                  "$ref": "#/definitions/ProblemDetails"
                }
              }
            }
          },
          "406": {
            "description": "Not Acceptable",
            "schema": {
              "type": "object",
              "properties": {
                "ProblemDetails": {
                  "$ref": "#/definitions/ProblemDetails"
                }
              }
            }
          },
          "429": {
            "description": "Too Many Requests",
            "schema": {
              "type": "object",
              "properties": {
                "ProblemDetails": {
                  "$ref": "#/definitions/ProblemDetails"
                }
              }
            }
          }
        },
        "x-swagger-router-controller": "Default"
      },
      "post": {
        "description": "Creates a subscription to UE Timing Advance notifications from Radio Network Information Service",
        "operationId": "MeasTa_subscriptionsPOST",
        "produces": [
          "application/json",
          "application/problem+json"
        ],
        "parameters": [
          {
            "$ref": "#/parameters/Body.MeasTaSubscriptionPost"
          }
        ],
        "responses": {
          "201": {
            "description": "Successful subscription to response to UE Timing Advance notifications",
            "schema": {
              "type": "object",
              "properties": {
                "MeasTaSubscription": {
                  "$ref": "#/definitions/MeasTaSubscription"
                }
              }
            },
            "examples": {
              "application/json": {
                "MeasTaSubscription": {
                  "callbackReference": "http://meAppClient.example.com/rni/v1/notifications/ta/77777",
                  "_links": {
                    "self": "http://meAppServer.example.com/rni/v1/subscriptions/ta/sub123"
                  },
                  "filterCriteria": {
                    "associateId": {
                      "type": "1",
                      "value": "192.0.2.0"
                    },
                    "plmn": {
                      "mnc": "01",
                      "mcc": "001"
                    },
                    "appInsId": "01",
                    "trigger": 6,
                    "cellId": "0x800000B"
                  },
                  "expiryDeadline": {
                    "seconds": 1577836800,
                    "nanoSeconds": 0
                  }
                }
              }
            }
          },
          "400": {
            "description": "Bad Request",
            "schema": {
              "type": "object",
              "properties": {
                "ProblemDetails": {
                  "$ref": "#/definitions/ProblemDetails"
                }
              }
            }
          },
          "401": {
            "description": "Unauthorized",
            "schema": {
              "type": "object",
              "properties": {
                "ProblemDetails": {
                  "$ref": "#/definitions/ProblemDetails"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "schema": {
              "type": "object",
              "properties": {
                "ProblemDetails": {
                  "$ref": "#/definitions/ProblemDetails"
                }
              }
            }
          },
          "404": {
            "description": "Not Found",
            "schema": {
              "type": "object",
              "properties": {
                "ProblemDetails": {
                  "$ref": "#/definitions/ProblemDetails"
                }
              }
            }
          },
          "406": {
            "description": "Not Acceptable",
            "schema": {
              "type": "object",
              "properties": {
                "ProblemDetails": {
                  "$ref": "#/definitions/ProblemDetails"
                }
              }
            }
          },
          "415": {
            "description": "Unsupported Media Type",
            "schema": {
              "type": "object",
              "properties": {
                "ProblemDetails": {
                  "$ref": "#/definitions/ProblemDetails"
                }
              }
            }
          },
          "422": {
            "description": "Unprocessable Entity",
            "schema": {
              "type": "object",
              "properties": {
                "ProblemDetails": {
                  "$ref": "#/definitions/ProblemDetails"
                }
              }
            },
            "examples": {
              "application/problem+json": {
                "ProblemDetails": {
                  "type": "https://meAppServer.example.com/rni/v1/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"
                }
              }
            }
          },
          "429": {
            "description": "Too Many Requests",
            "schema": {
              "type": "object",
              "properties": {
                "ProblemDetails": {
                  "$ref": "#/definitions/ProblemDetails"
                }
              }
            }
          }
        },
        "x-swagger-router-controller": "Default"
      }
    },
    "/subscriptions/ta/{subscriptionId}": {
      "get": {
        "description": "Gets UE Timing Advance subscription information from Radio Network Information Service",
        "operationId": "MeasTa_subscriptionsGET",
        "produces": [
          "application/json",
          "application/problem+json"
        ],
        "parameters": [
          {
            "$ref": "#/parameters/Path.subscrId"
          }
        ],
        "responses": {
          "200": {
            "description": "Subscription information regarding UE Timing Advance notifications",
            "schema": {
              "type": "object",
              "properties": {
                "MeasTaSubscription": {
                  "$ref": "#/definitions/MeasTaSubscription"
                }
              }
            },
            "examples": {
              "application/json": {
                "MeasTaSubscription": {
                  "callbackReference": "http://meAppClient.example.com/rni/v1/notifications/ta/77777",
                  "_links": {
                    "self": "http://meAppServer.example.com/rni/v1/subscriptions/ta/sub123"
                  },
                  "filterCriteria": {
                    "associateId": {
                      "type": "1",
                      "value": "192.0.2.0"
                    },
                    "plmn": {
                      "mnc": "01",
                      "mcc": "001"
                    },
                    "appInsId": "01",
                    "trigger": 6,
                    "cellId": "0x800000B"
                  },
                  "expiryDeadline": {
                    "seconds": 1577836800,
                    "nanoSeconds": 0
                  }
                }
              }
            }
          },
          "400": {
            "description": "Bad Request",
            "schema": {
              "type": "object",
              "properties": {
                "ProblemDetails": {
                  "$ref": "#/definitions/ProblemDetails"
                }
              }
            }
          },
          "401": {
            "description": "Unauthorized",
            "schema": {
              "type": "object",
              "properties": {
                "ProblemDetails": {
                  "$ref": "#/definitions/ProblemDetails"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "schema": {
              "type": "object",
              "properties": {
                "ProblemDetails": {
                  "$ref": "#/definitions/ProblemDetails"
                }
              }
            }
          },
          "404": {
            "description": "Not Found",
            "schema": {
              "type": "object",
              "properties": {
                "ProblemDetails": {
                  "$ref": "#/definitions/ProblemDetails"
                }
              }
            }
          },
          "406": {
            "description": "Not Acceptable",
            "schema": {
              "type": "object",
              "properties": {
                "ProblemDetails": {
                  "$ref": "#/definitions/ProblemDetails"
                }
              }
            }
          },
          "429": {
            "description": "Too Many Requests",
            "schema": {
              "type": "object",
              "properties": {
                "ProblemDetails": {
                  "$ref": "#/definitions/ProblemDetails"
                }
              }
            }
          }
        }
      },
      "put": {
        "description": "Updates a subscription to UE Timing Advance notifications from Radio Network Information Service",
        "operationId": "MeasTa_subscriptionsPUT",
        "produces": [
          "application/json",
          "application/problem+json"
        ],
        "parameters": [
          {
            "$ref": "#/parameters/Path.subscrId"
          },
          {
            "$ref": "#/parameters/Body.MeasTaSubscription"
          }
        ],
        "responses": {
          "200": {
            "description": "Successful subscription to response to UE Timing Advance notifications",
            "schema": {
              "type": "object",
              "properties": {
                "MeasTaSubscription": {
                  "$ref": "#/definitions/MeasTaSubscription"
                }
              }
            },
            "examples": {
              "application/json": {
                "MeasTaSubscription": {
                  "callbackReference": "http://meAppClient.example.com/rni/v1/notifications/ta/77777",
                  "_links": {
                    "self": "http://meAppServer.example.com/rni/v1/subscriptions/ta/sub123"
                  },
                  "filterCriteria": {
                    "associateId": {
                      "type": "1",
                      "value": "192.0.2.0"
                    },
                    "plmn": {
                      "mnc": "01",
                      "mcc": "001"
                    },
                    "appInsId": "01",
                    "trigger": 6,
                    "cellId": "0x800000B"
                  },
                  "expiryDeadline": {
                    "seconds": 1577836800,
                    "nanoSeconds": 0
                  }
                }
              }
            }
          },
          "400": {
            "description": "Bad Request",
            "schema": {
              "type": "object",
              "properties": {
                "ProblemDetails": {
                  "$ref": "#/definitions/ProblemDetails"
                }
              }
            }
          },
          "401": {
            "description": "Unauthorized",
            "schema": {
              "type": "object",
              "properties": {
                "ProblemDetails": {
                  "$ref": "#/definitions/ProblemDetails"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "schema": {
              "type": "object",
              "properties": {
                "ProblemDetails": {
                  "$ref": "#/definitions/ProblemDetails"
                }
              }
            }
          },
          "404": {
            "description": "Not Found",
            "schema": {
              "type": "object",
              "properties": {
                "ProblemDetails": {
                  "$ref": "#/definitions/ProblemDetails"
                }
              }
            }
          },
          "406": {
            "description": "Not Acceptable",
            "schema": {
              "type": "object",
              "properties": {
                "ProblemDetails": {
                  "$ref": "#/definitions/ProblemDetails"
                }
              }
            }
          },
          "412": {
            "description": "Precondition failed",
            "schema": {
              "type": "object",
              "properties": {
                "ProblemDetails": {
                  "$ref": "#/definitions/ProblemDetails"
                }
              }
            }
          },
          "422": {
            "description": "Unprocessable Entity",
            "schema": {
              "type": "object",
              "properties": {
                "ProblemDetails": {
                  "$ref": "#/definitions/ProblemDetails"
                }
              }
            },
            "examples": {
              "application/problem+json": {
                "ProblemDetails": {
                  "type": "https://meAppServer.example.com/rni/v1/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"
                }
              }
            }
          },
          "429": {
            "description": "Too Many Requests",
            "schema": {
              "type": "object",
              "properties": {
                "ProblemDetails": {
                  "$ref": "#/definitions/ProblemDetails"
                }
              }
            }
          }
        }
      },
      "delete": {
        "description": "Method to delete a subscription",
        "operationId": "MeasTa_subscriptionsSubscrIdDELETE",
        "produces": [
          "application/json"
        ],
        "parameters": [
          {
            "$ref": "#/parameters/Path.subscrId"
          }
        ],
        "responses": {
          "204": {
            "description": "No Content"
          }
        },
        "x-swagger-router-controller": "Default"
      }
    },
    "/subscriptions/meas_rep_ue": {
      "get": {
        "description": "The GET method can be used to request information about the meas_rep_ue subscriptions for this requestor",
        "operationId": "SubscriptionLinkList_subscriptions_mr_GET",
        "produces": [
          "application/json",
          "application/problem+json"
        ],
        "responses": {
          "200": {
            "description": "Response body contains the list of links to requestors meas_rep_ue subscriptions.",
            "schema": {
              "type": "object",
              "properties": {
                "SubscriptionLinkList": {
                  "$ref": "#/definitions/SubscriptionLinkList"
                }
              }
            },
            "examples": {
              "application/json": {
                "SubscriptionLinkList": {
                  "_links": {
                    "self": "http://meAppServer.example.com/rni/v1/subscriptions/meas_rep_ue",
                    "susbcription": [
                      {
                        "href": "http://meAppClient.example.com/rni/v1/notifications/meas_rep_ue/77777",
                        "subscriptionType": "MEAS_ REPORT_UE"
                      },
                      {
                        "href": "http://meAppClient.example.com/rni/v1/notifications/meas_rep_ue/77778",
                        "subscriptionType": "MEAS_ REPORT_UE"
                      }
                    ]
                  }
                }
              }
            }
          },
          "400": {
            "description": "Bad Request",
            "schema": {
              "type": "object",
              "properties": {
                "ProblemDetails": {
                  "$ref": "#/definitions/ProblemDetails"
                }
              }
            }
          },
          "401": {
            "description": "Unauthorized",
            "schema": {
              "type": "object",
              "properties": {
                "ProblemDetails": {
                  "$ref": "#/definitions/ProblemDetails"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "schema": {
              "type": "object",
              "properties": {
                "ProblemDetails": {
                  "$ref": "#/definitions/ProblemDetails"
                }
              }
            }
          },
          "404": {
            "description": "Not Found",
            "schema": {
              "type": "object",
              "properties": {
                "ProblemDetails": {
                  "$ref": "#/definitions/ProblemDetails"
                }
              }
            }
          },
          "406": {
            "description": "Not Acceptable",
            "schema": {
              "type": "object",
              "properties": {
                "ProblemDetails": {
                  "$ref": "#/definitions/ProblemDetails"
                }
              }
            }
          },
          "429": {
            "description": "Too Many Requests",
            "schema": {
              "type": "object",
              "properties": {
                "ProblemDetails": {
                  "$ref": "#/definitions/ProblemDetails"
                }
              }
            }
          }
        },
        "x-swagger-router-controller": "Default"
      },
      "post": {
        "description": "Creates a subscription to UE measurement report notifications from Radio Network Information Service",
        "operationId": "MeasRepUe_subscriptionsPOST",
        "produces": [
          "application/json",
          "application/problem+json"
        ],
        "parameters": [
          {
            "$ref": "#/parameters/Body.MeasRepUeSubscriptionPost"
          }
        ],
        "responses": {
          "201": {
            "description": "Successful subscription to response to UE measurement report notifications",
            "schema": {
              "type": "object",
              "properties": {
                "MeasRepUeSubscription": {
                  "$ref": "#/definitions/MeasRepUeSubscription"
                }
              }
            },
            "examples": {
              "application/json": {
                "MeasRepUeSubscription": {
                  "callbackReference": "http://meAppClient.example.com/rni/v1/notifications/meas_rep_ue/77777",
                  "_links": {
                    "self": "http://meAppServer.example.com/rni/v1/subscriptions/meas_rep_ue/sub123"
                  },
                  "filterCriteria": {
                    "associateId": {
                      "type": "1",
                      "value": "192.0.2.0"
                    },
                    "plmn": {
                      "mnc": "01",
                      "mcc": "001"
                    },
                    "appInsId": "01",
                    "trigger": 6,
                    "cellId": "0x800000B"
                  },
                  "expiryDeadline": {
                    "seconds": 1577836800,
                    "nanoSeconds": 0
                  }
                }
              }
            }
          },
          "400": {
            "description": "Bad Request",
            "schema": {
              "type": "object",
              "properties": {
                "ProblemDetails": {
                  "$ref": "#/definitions/ProblemDetails"
                }
              }
            }
          },
          "401": {
            "description": "Unauthorized",
            "schema": {
              "type": "object",
              "properties": {
                "ProblemDetails": {
                  "$ref": "#/definitions/ProblemDetails"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "schema": {
              "type": "object",
              "properties": {
                "ProblemDetails": {
                  "$ref": "#/definitions/ProblemDetails"
                }
              }
            }
          },
          "404": {
            "description": "Not Found",
            "schema": {
              "type": "object",
              "properties": {
                "ProblemDetails": {
                  "$ref": "#/definitions/ProblemDetails"
                }
              }
            }
          },
          "406": {
            "description": "Not Acceptable",
            "schema": {
              "type": "object",
              "properties": {
                "ProblemDetails": {
                  "$ref": "#/definitions/ProblemDetails"
                }
              }
            }
          },
          "415": {
            "description": "Unsupported Media Type",
            "schema": {
              "type": "object",
              "properties": {
                "ProblemDetails": {
                  "$ref": "#/definitions/ProblemDetails"
                }
              }
            }
          },
          "422": {
            "description": "Unprocessable Entity",
            "schema": {
              "type": "object",
              "properties": {
                "ProblemDetails": {
                  "$ref": "#/definitions/ProblemDetails"
                }
              }
            },
            "examples": {
              "application/problem+json": {
                "ProblemDetails": {
                  "type": "https://meAppServer.example.com/rni/v1/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"
                }
              }
            }
          },
          "429": {
            "description": "Too Many Requests",
            "schema": {
              "type": "object",
              "properties": {
                "ProblemDetails": {
                  "$ref": "#/definitions/ProblemDetails"
                }
              }
            }
          }
        },
        "x-swagger-router-controller": "Default"
      }
    },
    "/subscriptions/meas_rep_ue/{subscriptionId}": {
      "get": {
        "description": "Creates a subscription to UE meas