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 measurement report notifications from Radio Network Information Service",
        "operationId": "MeasRepUe_subscriptionsGET",
        "produces": [
          "application/json",
          "application/problem+json"
        ],
        "parameters": [
          {
            "$ref": "#/parameters/Path.subscrId"
          }
        ],
        "responses": {
          "200": {
            "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"
                }
              }
            }
          },
          "429": {
            "description": "Too Many Requests",
            "schema": {
              "type": "object",
              "properties": {
                "ProblemDetails": {
                  "$ref": "#/definitions/ProblemDetails"
                }
              }
            }
          }
        }
      },
      "put": {
        "description": "Updates a subscription to UE measurement report notifications from Radio Network Information Service",
        "operationId": "MeasRepUeReport_subscriptionsPUT",
        "produces": [
          "application/json",
          "application/problem+json"
        ],
        "parameters": [
          {
            "$ref": "#/parameters/Path.subscrId"
          },
          {
            "$ref": "#/parameters/Body.MeasRepUeSubscription"
          }
        ],
        "responses": {
            "description": "Successful update 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"
                }
              }
            }
          },
          "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": "MeasRepUe_subscriptionsSubscrIdDELETE",
        "produces": [
          "application/json"
        ],
        "parameters": [
          {
            "$ref": "#/parameters/Path.subscrId"
          }
        ],
        "responses": {
          "204": {
            "description": "No Content. Successful deletion of UE Measurment Report subscription"
          }
        },
        "x-swagger-router-controller": "Default"
      }
    },
    "/subscriptions/rab_est": {
      "get": {
        "description": "The GET method can be used to request information about the rab_est subscriptions for this requestor",
        "operationId": "SubscriptionLinkList_subscriptions_re_GET",
        "produces": [
          "application/json",
          "application/problem+json"
        ],
        "responses": {
          "200": {
            "description": "Response body contains the list of links to requestors rab_est subscriptions.",
            "schema": {
              "type": "object",
              "properties": {
                "SubscriptionLinkList": {
                  "$ref": "#/definitions/SubscriptionLinkList"
                }
              }
            },
            "examples": {
              "application/json": {
                "SubscriptionLinkList": {
                  "_links": {
                    "self": "http://meAppServer.example.com/rni/v1/subscriptions/rab_est",
                    "susbcription": [
                      {
                        "href": "http://meAppClient.example.com/rni/v1/notifications/rab_est/77777",
                        "subscriptionType": "RAB_ESTABLISHMENT"
                      },
                      {
                        "href": "http://meAppClient.example.com/rni/v1/notifications/rab_est/77778",
                        "subscriptionType": "RAB_ESTABLISHMENT"
                      }
                    ]
                  }
                }
              }
            }
          },
          "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 RAB establishment notifications from Radio Network Information Service",
        "operationId": "RabEstSubscription_subscriptionsPOST",
        "produces": [
          "application/json",
          "application/problem+json"
        ],
        "parameters": [
          {
            "$ref": "#/parameters/Body.RabEstSubscriptionPost"
          }
        ],
        "responses": {
          "201": {
            "description": "Successful subscription to RAB establishment notifications",
            "schema": {
              "type": "object",
              "properties": {
                "RabEstSubscription": {
                  "$ref": "#/definitions/RabEstSubscription"
                }
              }
            },
            "examples": {
              "application/json": {
                "RabEstSubscription": {
                  "callbackReference": "http://meAppClient.example.com/rni/v1/notifications/rab_est/77777",
                  "_links": {
                    "self": "http://meAppServer.example.com/rni/v1/subscriptions/rab_est/sub123"
                  },
                  "filterCriteriaAssocQci": {
                    "appInsId": "app01",
                    "associateId": {
                      "type": "1",
                      "value": "192.0.2.0"
                    },
                    "plmn": {
                      "mnc": "01",
                      "mcc": "001"
                    },
                    "cellId": "0x800000B",
                    "qci": 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/rab_est/{subscriptionId}": {
      "get": {
        "description": "Creates a subscription to RAB establishment notifications from Radio Network Information Service",
        "operationId": "RabEstSubscription_subscriptionsGET",
        "produces": [
          "application/json",
          "application/problem+json"
        ],
        "parameters": [
          {
            "$ref": "#/parameters/Path.subscrId"
          }
        ],
        "responses": {
            "description": "Subscription information regarding RAB establishment notifications",
            "schema": {
              "type": "object",
              "properties": {
                "RabEstSubscription": {
                  "$ref": "#/definitions/RabEstSubscription"
                }
              }
            },
            "examples": {
              "application/json": {
                "RabEstSubscription": {
                  "callbackReference": "http://meAppClient.example.com/rni/v1/notifications/rab_est/77777",
                  "_links": {
                    "self": "http://meAppServer.example.com/rni/v1/subscriptions/rab_est/sub123"
                  },
                  "filterCriteriaAssocQci": {
                    "appInsId": "app01",
                    "associateId": {
                      "type": "1",
                      "value": "192.0.2.0"
                    },
                    "plmn": {
                      "mnc": "01",
                      "mcc": "001"
                    },
                    "cellId": "0x800000B",
                    "qci": 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": "Updates a subscription to RAB establishment notifications from Radio Network Information Service",
        "operationId": "RabEstSubscription_subscriptionsPUT",
        "produces": [
          "application/json",
          "application/problem+json"
        ],
        "parameters": [
          {
            "$ref": "#/parameters/Path.subscrId"
          },
          {
            "$ref": "#/parameters/Body.RabEstSubscription"
          }
        ],
        "responses": {
            "description": "Successful subscription update to RAB establishment notifications",
            "schema": {
              "type": "object",
              "properties": {
                "RabEstSubscription": {
                  "$ref": "#/definitions/RabEstSubscription"
                }
              }
            },
            "examples": {
              "application/json": {
                "RabEstSubscription": {
                  "callbackReference": "http://meAppClient.example.com/rni/v1/notifications/rab_est/77777",
                  "_links": {
                    "self": "http://meAppServer.example.com/rni/v1/subscriptions/rab_est/sub123"
                  },
                  "filterCriteriaAssocQci": {
                    "appInsId": "app01",
                    "associateId": {
                      "type": "1",
                      "value": "192.0.2.0"
                    },
                    "plmn": {
                      "mnc": "01",
                      "mcc": "001"
                    },
                    "cellId": "0x800000B",
                    "qci": 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": "RabEst_subscriptionsSubscrIdDELETE",
        "produces": [
          "application/json"
        ],
        "parameters": [
          {
            "$ref": "#/parameters/Path.subscrId"
          }
        ],
        "responses": {
          "204": {
            "description": "No Content. Successful deletion of Rab Establishment subscription"
          }
        },
        "x-swagger-router-controller": "Default"
      }
    },
    "/subscriptions/rab_mod": {
      "get": {
        "description": "The GET method can be used to request information about the rab_mod subscriptions for this requestor",
        "operationId": "SubscriptionLinkList_subscriptions_rm_GET",
        "produces": [
          "application/json",
          "application/problem+json"
        ],
        "responses": {
          "200": {
            "description": "Response body contains the list of links to requestors rab_mod subscriptions.",
            "schema": {
              "type": "object",
              "properties": {
                "SubscriptionLinkList": {
                  "$ref": "#/definitions/SubscriptionLinkList"
                }
              }
            },
            "examples": {
              "application/json": {
                "SubscriptionLinkList": {
                  "_links": {
                    "self": "http://meAppServer.example.com/rni/v1/subscriptions/rab_mod",
                    "susbcription": [
                      {
                        "href": "http://meAppClient.example.com/rni/v1/notifications/rab_mod/77777",
                        "subscriptionType": "RAB_MODIFICATION"
                      },
                      {
                        "href": "http://meAppClient.example.com/rni/v1/notifications/rab_mod/77778",
                        "subscriptionType": "RAB_MODIFICATION"
                      }
                    ]
                  }
                }
              }
            }
          },
          "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 RAB Modification notifications from Radio Network Information Service",
        "operationId": "RabModSubscription_subscriptionsPOST",
        "produces": [
          "application/json",
          "application/problem+json"
        ],
        "parameters": [
          {
            "$ref": "#/parameters/Body.RabModSubscriptionPost"
          }
        ],
        "responses": {
          "201": {
            "description": "Successful subscription to RAB Modification notifications",
            "schema": {
              "type": "object",
              "properties": {
                "RabModSubscription": {
                  "$ref": "#/definitions/RabModSubscription"
                }
              }
            },
            "examples": {
              "application/json": {
                "RabModSubscription": {
                  "callbackReference": "http://meAppClient.example.com/rni/v1/notifications/rab_mod/77777",
                  "_links": {
                    "self": "http://meAppServer.example.com/rni/v1/subscriptions/rab_mod/sub123"
                  },
                  "filterCriteriaAssocQci": {
                    "appInsId": "app01",
                    "associateId": {
                      "type": "1",
                      "value": "192.0.2.0"
                    },
                    "plmn": {
                      "mnc": "01",
                      "mcc": "001"
                    },
                    "cellId": "0x800000B",
                    "qci": 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/rab_mod/{subscriptionId}": {
      "get": {
        "description": "Creates a subscription to RAB Modification notifications from Radio Network Information Service",
        "operationId": "RabModSubscription_subscriptionsGET",
        "produces": [
          "application/json",
          "application/problem+json"
        ],
        "parameters": [
          {
            "$ref": "#/parameters/Path.subscrId"
          }
        ],
        "responses": {
            "description": "Subscription information regarding RAB Modification notifications",
            "schema": {
              "type": "object",
              "properties": {
                "RabModSubscription": {
                  "$ref": "#/definitions/RabModSubscription"
                }
              }
            },
            "examples": {
              "application/json": {
                "RabModSubscription": {
                  "callbackReference": "http://meAppClient.example.com/rni/v1/notifications/rab_mod/77777",
                  "_links": {
                    "self": "http://meAppServer.example.com/rni/v1/subscriptions/rab_mod/sub123"
                  },
                  "filterCriteriaAssocQci": {
                    "appInsId": "app01",
                    "associateId": {
                      "type": "1",
                      "value": "192.0.2.0"
                    },
                    "plmn": {
                      "mnc": "01",
                      "mcc": "001"
                    },
                    "cellId": "0x800000B",
                    "qci": 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": "Updates a subscription to RAB Modification notifications from Radio Network Information Service",
        "operationId": "RabModSubscription_subscriptionsPUT",
        "produces": [
          "application/json",
          "application/problem+json"
        ],
        "parameters": [
          {
            "$ref": "#/parameters/Path.subscrId"
          },
          {
            "$ref": "#/parameters/Body.RabModSubscription"
          }
        ],
        "responses": {
            "description": "Successful subscription update to RAB Modification notifications",
            "schema": {
              "type": "object",
              "properties": {
                "RabModSubscription": {
                  "$ref": "#/definitions/RabModSubscription"
                }
              }
            },
            "examples": {
              "application/json": {
                "RabModSubscription": {
                  "callbackReference": "http://meAppClient.example.com/rni/v1/notifications/rab_mod/77777",
                  "_links": {
                    "self": "http://meAppServer.example.com/rni/v1/subscriptions/rab_mod/sub123"
                  },
                  "filterCriteriaAssocQci": {
                    "appInsId": "app01",
                    "associateId": {
                      "type": "1",
                      "value": "192.0.2.0"
                    },
                    "plmn": {
                      "mnc": "01",
                      "mcc": "001"
                    },
                    "cellId": "0x800000B",
                    "qci": 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": "RabMod_subscriptionsSubscrIdDELETE",
        "produces": [
          "application/json"
        ],
        "parameters": [
          {
            "$ref": "#/parameters/Path.subscrId"
          }
        ],
        "responses": {
          "204": {
            "description": "No Content. Successful deletion of Rab Modification subscription"
          }
        },
        "x-swagger-router-controller": "Default"
      }
    },
    "/subscriptions/rab_rel": {
      "get": {
        "description": "The GET method can be used to request information about the rab_rel subscriptions for this requestor",
        "operationId": "SubscriptionLinkList_subscriptions_rr_GET",
        "produces": [
          "application/json",
          "application/problem+json"
        ],
        "responses": {
          "200": {
            "description": "Response body contains the list of links to requestors rab_rel subscriptions.",
            "schema": {
              "type": "object",
              "properties": {
                "SubscriptionLinkList": {
                  "$ref": "#/definitions/SubscriptionLinkList"
                }
              }
            },
            "examples": {
              "application/json": {
                "SubscriptionLinkList": {
                  "_links": {
                    "self": "http://meAppServer.example.com/rni/v1/subscriptions/rab_rel",
                    "susbcription": [
                      {
                        "href": "http://meAppClient.example.com/rni/v1/notifications/rab_rel/77777",
                        "subscriptionType": "RAB_RELEASE"
                      },
                      {
                        "href": "http://meAppClient.example.com/rni/v1/notifications/rab_rel/77778",
                        "subscriptionType": "RAB_RELEASE"
                      }
                    ]
                  }
                }
              }
            }
          },
          "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 RAB Release notifications from Radio Network Information Service",
        "operationId": "RabRelSubscription_subscriptionsPOST",
        "produces": [
          "application/json",
          "application/problem+json"
        ],
        "parameters": [
          {
            "$ref": "#/parameters/Body.RabRelSubscriptionPost"
          }
        ],
        "responses": {
          "201": {
            "description": "Successful subscription to RAB Release notifications",
            "schema": {
              "type": "object",
              "properties": {
                "RabRelSubscription": {
                  "$ref": "#/definitions/RabRelSubscription"
                }
              }
            },
            "examples": {
              "application/json": {
                "RabRelSubscription": {
                  "callbackReference": "http://meAppClient.example.com/rni/v1/notifications/rab_rel/77777",
                  "_links": {
                    "self": "http://meAppServer.example.com/rni/v1/subscriptions/rab_rel/sub123"
                  },
                  "filterCriteriaAssocQci": {
                    "appInsId": "app01",
                    "associateId": {
                      "type": "1",
                      "value": "192.0.2.0"
                    },
                    "plmn": {
                      "mnc": "01",
                      "mcc": "001"
                    },
                    "cellId": "0x800000B",
                    "qci": 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/rab_rel/{subscriptionId}": {
      "get": {
        "description": "Creates a subscription to RAB Release notifications from Radio Network Information Service",
        "operationId": "RabRelSubscription_subscriptionsGET",
        "produces": [
          "application/json",
          "application/problem+json"
        ],
        "parameters": [
          {
            "$ref": "#/parameters/Path.subscrId"
          }
        ],
        "responses": {
            "description": "Subscription information regarding RAB Release notifications",
            "schema": {
              "type": "object",
              "properties": {
                "RabRelSubscription": {
                  "$ref": "#/definitions/RabRelSubscription"
                }
              }
            },
            "examples": {
              "application/json": {
                "RabRelSubscription": {
                  "callbackReference": "http://meAppClient.example.com/rni/v1/notifications/rab_rel/77777",
                  "_links": {
                    "self": "http://meAppServer.example.com/rni/v1/subscriptions/rab_rel/sub123"
                  },
                  "filterCriteriaAssocQci": {
                    "appInsId": "app01",
                    "associateId": {
                      "type": "1",
                      "value": "192.0.2.0"
                    },
                    "plmn": {
                      "mnc": "01",
                      "mcc": "001"
                    },
                    "cellId": "0x800000B",
                    "qci": 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": "Updates a subscription to RAB Release notifications from Radio Network Information Service",
        "operationId": "RabRelSubscription_subscriptionsPUT",
        "produces": [
          "application/json",
          "application/problem+json"
        ],
        "parameters": [
          {
            "$ref": "#/parameters/Path.subscrId"
          },
          {
            "$ref": "#/parameters/Body.RabRelSubscription"
          }
        ],
        "responses": {
            "description": "Successful subscription update to RAB Release notifications",
            "schema": {
              "type": "object",
              "properties": {
                "RabRelSubscription": {
                  "$ref": "#/definitions/RabRelSubscription"
                }
              }
            },
            "examples": {
              "application/json": {
                "RabRelSubscription": {
                  "callbackReference": "http://meAppClient.example.com/rni/v1/notifications/rab_rel/77777",
                  "_links": {
                    "self": "http://meAppServer.example.com/rni/v1/subscriptions/rab_rel/sub123"
                  },
                  "filterCriteriaAssocQci": {
                    "appInsId": "app01",
                    "associateId": {
                      "type": "1",
                      "value": "192.0.2.0"
                    },
                    "plmn": {
                      "mnc": "01",
                      "mcc": "001"
                    },
                    "cellId": "0x800000B",
                    "qci": 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": "RabRel_subscriptionsSubscrIdDELETE",
        "produces": [
          "application/json"
        ],
        "parameters": [
          {
            "$ref": "#/parameters/Path.subscrId"
          }
        ],
        "responses": {
          "204": {
            "description": "No Content. Successful deletion of Rab Release subscription"
          }
        },
        "x-swagger-router-controller": "Default"
      }
    },
    "/subscriptions/ca_reconf": {
      "get": {
        "description": "The GET method can be used to request information about the ca_reconf subscriptions for this requestor",
        "operationId": "SubscriptionLinkList_subscriptions_cr_GET",
        "produces": [
          "application/json",
          "application/problem+json"
        ],
        "responses": {
          "200": {
            "description": "Response body contains the list of links to requestors ca_reconf subscriptions.",
            "schema": {
              "type": "object",
              "properties": {
                "SubscriptionLinkList": {
                  "$ref": "#/definitions/SubscriptionLinkList"
                }
              }
            },
            "examples": {
              "application/json": {
                "SubscriptionLinkList": {
                  "_links": {
                    "self": "http://meAppServer.example.com/rni/v1/subscriptions/ca_reconf",
                    "susbcription": [
                      {
                        "href": "http://meAppClient.example.com/rni/v1/notifications/ca_reconf/77777",
                        "subscriptionType": "CA_RECONF"
                      },
                      {
                        "href": "http://meAppClient.example.com/rni/v1/notifications/ca_reconf/77778",
                        "subscriptionType": "CA_RECONF"
                      }
                    ]
                  }
                }
              }
            }
          },
          "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 Carrier Aggregation Reconfiguration notifications from Radio Network Information Service",
        "operationId": "CaReConfSubscription_subscriptionsPOST",
        "produces": [
          "application/json",
          "application/problem+json"
        ],
        "parameters": [
          {
            "$ref": "#/parameters/Body.CaReConfSubscriptionPost"
          }
        ],
        "responses": {
          "201": {
            "description": "Successful subscription to Carrier Aggregation Reconfiguration notifications",
            "schema": {
              "type": "object",
              "properties": {
                "CaReConfSubscription": {
                  "$ref": "#/definitions/CaReConfSubscription"
                }
              }
            },
            "examples": {
              "application/json": {
                "CaReConfSubscription": {
                  "callbackReference": "http://meAppClient.example.com/rni/v1/notifications/ca_reconf/77777",
                  "_links": {
                    "self": "http://meAppServer.example.com/rni/v1/subscriptions/ca_reconf/sub123"
                  },
                  "filterCriteriaAssoc": {
                    "appInsId": "app01",
                    "associateId": {
                      "type": "1",
                      "value": "192.0.2.0"
                    },
                    "plmn": {
                      "mnc": "01",
                      "mcc": "001"
                    },
                    "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/ca_reconf/{subscriptionId}": {
      "get": {
        "description": "Creates a subscription to Carrier Aggregation Reconfiguration notifications from Radio Network Information Service",
        "operationId": "CaReConfSubscription_subscriptionsGET",
        "produces": [
          "application/json",
          "application/problem+json"
        ],
        "parameters": [
          {
            "$ref": "#/parameters/Path.subscrId"
          }
        ],
        "responses": {
            "description": "Subscription information regarding Carrier Aggregation Reconfiguration notifications",
            "schema": {
              "type": "object",
              "properties": {
                "CaReConfSubscription": {
                  "$ref": "#/definitions/CaReConfSubscription"
                }
              }
            },
            "examples": {
              "application/json": {
                "CaReConfSubscription": {
                  "callbackReference": "http://meAppClient.example.com/rni/v1/notifications/ca_reconf/77777",
                  "_links": {
                    "self": "http://meAppServer.example.com/rni/v1/subscriptions/ca_reconf/sub123"
                  },
                  "filterCriteriaAssoc": {
                    "appInsId": "app01",
                    "associateId": {
                      "type": "1",
                      "value": "192.0.2.0"
                    },
                    "plmn": {
                      "mnc": "01",
                      "mcc": "001"
                    },
                    "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 Carrier Aggregation Reconfiguration notifications from Radio Network Information Service",
        "operationId": "CaReConfSubscription_subscriptionsPUT",
        "produces": [
          "application/json",
          "application/problem+json"
        ],
        "parameters": [
          {
            "$ref": "#/parameters/Path.subscrId"
          },
          {
            "$ref": "#/parameters/Body.CaReConfSubscription"
          }
        ],
        "responses": {
            "description": "Successful subscription to Carrier Aggregation Reconfiguration notifications",
            "schema": {
              "type": "object",
              "properties": {
                "CaReConfSubscription": {
                  "$ref": "#/definitions/CaReConfSubscription"
                }
              }
            },
            "examples": {
              "application/json": {
                "CaReConfSubscription": {
                  "callbackReference": "http://meAppClient.example.com/rni/v1/notifications/ca_reconf/77777",
                  "_links": {
                    "self": "http://meAppServer.example.com/rni/v1/subscriptions/ca_reconf/sub123"
                  },
                  "filterCriteriaAssoc": {
                    "appInsId": "app01",
                    "associateId": {
                      "type": "1",
                      "value": "192.0.2.0"
                    },
                    "plmn": {
                      "mnc": "01",
                      "mcc": "001"
                    },
                    "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",
5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 5611 5612 5613 5614 5615 5616 5617 5618 5619 5620 5621 5622 5623 5624 5625 5626 5627 5628 5629 5630 5631 5632 5633 5634 5635 5636 5637 5638 5639 5640 5641 5642 5643 5644 5645 5646 5647 5648 5649 5650 5651 5652 5653 5654 5655 5656 5657 5658 5659 5660 5661 5662 5663 5664 5665 5666 5667 5668 5669 5670 5671 5672 5673 5674 5675 5676 5677 5678 5679 5680 5681 5682 5683 5684 5685 5686 5687 5688 5689 5690 5691 5692 5693 5694 5695 5696 5697 5698 5699 5700 5701 5702 5703 5704 5705 5706 5707 5708 5709 5710 5711 5712 5713 5714 5715 5716 5717 5718 5719 5720 5721 5722 5723 5724 5725 5726 5727 5728 5729 5730 5731 5732 5733 5734 5735 5736 5737 5738 5739 5740 5741 5742 5743 5744 5745 5746 5747 5748 5749 5750 5751 5752 5753 5754 5755 5756 5757 5758 5759 5760 5761 5762 5763 5764 5765 5766 5767 5768 5769 5770 5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 5817 5818 5819 5820 5821 5822 5823 5824 5825 5826 5827 5828 5829 5830 5831 5832 5833 5834 5835 5836 5837 5838 5839 5840 5841 5842 5843 5844 5845 5846 5847 5848 5849 5850 5851 5852 5853 5854 5855 5856 5857 5858 5859 5860 5861 5862 5863 5864 5865 5866 5867 5868 5869 5870 5871 5872 5873 5874 5875 5876 5877 5878 5879 5880 5881 5882 5883 5884 5885 5886 5887 5888 5889 5890 5891 5892 5893 5894 5895 5896 5897 5898 5899 5900 5901 5902 5903 5904 5905 5906 5907 5908 5909 5910 5911 5912 5913 5914 5915 5916 5917 5918 5919 5920 5921 5922 5923 5924 5925 5926 5927 5928 5929 5930 5931 5932 5933 5934 5935 5936 5937 5938 5939 5940 5941 5942 5943 5944 5945 5946 5947 5948 5949 5950 5951 5952 5953 5954 5955 5956 5957 5958 5959 5960 5961 5962 5963 5964 5965 5966 5967 5968 5969 5970 5971 5972 5973 5974 5975 5976 5977 5978 5979 5980 5981 5982 5983 5984 5985 5986 5987 5988 5989 5990 5991 5992 5993 5994 5995 5996 5997 5998 5999 6000 6001 6002 6003 6004 6005 6006 6007 6008 6009 6010 6011 6012 6013 6014 6015 6016 6017 6018 6019 6020
                  "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": "CaReConf_subscriptionsSubscrIdDELETE",
        "produces": [
          "application/json"
        ],
        "parameters": [
          {
            "$ref": "#/parameters/Path.subscrId"
          }
        ],
        "responses": {
          "204": {
            "description": "No Content"
          }
        },
        "x-swagger-router-controller": "Default"
      }
    }
  },
  "definitions": {
    "ProblemDetails": {
      "type": "object",
      "properties": {
        "type": {
          "$ref": "#/definitions/Problem.type"
        },
        "title": {
          "$ref": "#/definitions/Problem.title"
        },
        "status": {
          "$ref": "#/definitions/Problem.status"
        },
        "detail": {
          "$ref": "#/definitions/Problem.detail"
        },
        "instance": {
          "$ref": "#/definitions/Problem.instance"
        }
      }
    },
    "Problem.type": {
      "type": "string",
      "format": "uri",
      "description": "A URI reference according to IETF RFC 3986 that identifies the problem type"
    },
    "Problem.title": {
      "type": "string",
      "description": "A short, human-readable summary of the problem type"
    },
    "Problem.status": {
      "type": "integer",
      "format": "uint32",
      "description": "The HTTP status code for this occurrence of the problem"
    },
    "Problem.detail": {
      "type": "string",
      "description": "A human-readable explanation specific to this occurrence of the problem"
    },
    "Problem.instance": {
      "type": "string",
      "format": "uri",
      "description": "A URI reference that identifies the specific occurrence of the problem"
    },
    "PlmnInfo": {
      "type": "object",
      "required": [
        "appInsId",
        "ecgi"
      ],
      "properties": {
        "timeStamp": {
          "$ref": "#/definitions/TimeStamp"
        },
        "appInsId": {
          "$ref": "#/definitions/AppInsId"
        },
        "ecgi": {
          "$ref": "#/definitions/Ecgi"
        }
      }
    },
    "RabInfo": {
      "type": "object",
      "required": [
        "appInsId",
        "requestId"
      ],
      "properties": {
        "timeStamp": {
          "$ref": "#/definitions/TimeStamp"
        },
        "appInsId": {
          "$ref": "#/definitions/AppInsId"
        },
        "requestId": {
          "$ref": "#/definitions/RequestId"
        },
        "cellUserInfo": {
          "type": "array",
          "items": {
            "$ref": "#/definitions/CellUserInfo"
          }
        }
      }
    },
    "S1BearerInfo": {
      "type": "object",
      "required": [
        "s1UeInfo"
      ],
      "properties": {
        "timeStamp": {
          "$ref": "#/definitions/TimeStamp"
        },
        "s1UeInfo": {
          "type": "array",
          "items": {
            "$ref": "#/definitions/S1UeInfo"
          }
        }
      }
    },
    "S1UeInfo": {
      "type": "object",
      "required": [
        "tempUeId",
        "ecgi",
        "s1BearerInfoDetailed"
      ],
      "properties": {
        "tempUeId": {
          "type": "array",
          "items": {
            "$ref": "#/definitions/TempUeId"
          }
        },
        "associateId": {
          "type": "array",
          "items": {
            "$ref": "#/definitions/AssociateId"
          }
        },
        "ecgi": {
          "type": "array",
          "items": {
            "$ref": "#/definitions/Ecgi"
          }
        },
        "s1BearerInfoDetailed": {
          "type": "array",
          "items": {
            "$ref": "#/definitions/S1BearerInfoDetailed"
          }
        }
      },
      "description": "The information on users per cell."
    },
    "S1BearerInfoDetailed": {
      "type": "object",
      "required": [
        "erabId",
        "s1EnbInfo"
      ],
      "properties": {
        "erabId": {
          "$ref": "#/definitions/ErabId"
        },
        "s1EnbInfo": {
          "$ref": "#/definitions/S1EnbInfo"
        },
        "sGwInfo": {
          "$ref": "#/definitions/SGwInfo"
        }
      },
      "description": "Information on UEs in the specific cell."
    },
    "ErabId": {
      "type": "integer",
      "format": "int32",
      "description": "The element that uniquely identifies a S1 bearer for a specific UE, as defined in ETSI TS 136 413",
      "example": 10
    },
    "TempUeId": {
      "type": "object",
      "required": [
        "mmec",
        "mtmsi"
      ],
      "properties": {
        "mmec": {
          "$ref": "#/definitions/Mmec"
        },
        "mtmsi": {
          "$ref": "#/definitions/Mtmsi"
        }
      }
    },
    "Mmec": {
      "type": "string",
      "description": "MMEC as defined in ETSI TS 136 413",
      "example": "0"
    },
    "Mtmsi": {
      "type": "string",
      "description": "M-TMSI as defined in ETSI TS 136 413",
      "example": "1234"
    },
    "S1EnbInfo": {
      "type": "object",
      "required": [
        "ipAddress",
        "tunnelId"
      ],
      "properties": {
        "ipAddress": {
          "type": "string",
          "description": "eNB transport layer address of this S1 bearer.",
          "example": "192.0.2.0"
        },
        "tunnelId": {
          "type": "string",
          "description": "eNB GTP-U TEID of this S1 bearer.",
          "example": "1111"
        }
      }
    },
    "SGwInfo": {
      "type": "object",
      "required": [
        "ipAddress",
        "tunnelId"
      ],
      "properties": {
        "ipAddress": {
          "type": "string",
          "description": "SGW transport layer address of this S1 bearer.",
          "example": "192.0.2.1"
        },
        "tunnelId": {
          "type": "string",
          "description": "SGW GTP-U TEID of this S1 bearer.",
          "example": "2222"
        }
      }
    },
    "TimeStamp": {
      "type": "object",
      "required": [
        "nanoSeconds",
        "seconds"
      ],
      "properties": {
        "seconds": {
          "type": "integer",
          "format": "uint32",
          "description": "The seconds part of the time. Time is defined as Unix-time since January 1, 1970, 00:00:00 UTC",
          "example": 1577836800
        },
        "nanoSeconds": {
          "type": "integer",
          "format": "uint32",
          "description": "The nanoseconds part of the time. Time is defined as Unix-time since January 1, 1970, 00:00:00 UTC",
          "example": 0
        }
      }
    },
    "AppInsId": {
      "type": "string",
      "format": "string",
      "description": "Unique identifier for the mobile edge application instance",
      "example": "01"
    },
    "RequestId": {
      "type": "string",
      "format": "string",
      "description": "Unique identifier allocated by the Mobile Edge application for the  Information request.",
      "example": "01"
    },
    "CellUserInfo": {
      "type": "object",
      "required": [
        "ecgi",
        "ueInfo"
      ],
      "properties": {
        "ecgi": {
          "$ref": "#/definitions/Ecgi"
        },
        "ueInfo": {
          "type": "array",
          "items": {
            "$ref": "#/definitions/UeInfo"
          }
        }
      },
      "description": "The information on users per cell."
    },
    "Ecgi": {
      "type": "object",
      "required": [
        "cellid",
        "plmn"
      ],
      "properties": {
        "plmn": {
          "$ref": "#/definitions/Plmn"
        },
        "cellid": {
          "$ref": "#/definitions/CellId"
        }
      },
      "description": "E-UTRAN CelI Global Identifier as defined in 3GPP TS 36.413"
    },
    "Plmn": {
      "type": "object",
      "required": [
        "mcc",
        "mnc"
      ],
      "properties": {
        "mcc": {
          "type": "string",
          "format": "string",
          "description": "The Mobile Country Code part of PLMN Identity as defined in 3GPP TS 36.413",
          "example": "001"
        },
        "mnc": {
          "type": "string",
          "format": "string",
          "description": "The Mobile Network Code part of PLMN Identity as defined in 3GPP TS 36.413",
          "example": "01"
        }
      }
    },
    "CellId": {
      "type": "array",
      "items": {
        "type": "string",
        "format": "binary"
      },
      "description": "The E-UTRAN Cell Identity as a bit string (size (28)), as defined in 3GPP TS 36.413",
      "example": "0x800000A"
    },
    "UeInfo": {
      "type": "object",
      "required": [
        "erabInfo"
      ],
      "properties": {
        "associateId": {
          "type": "array",
          "items": {
            "$ref": "#/definitions/AssociateId"
          }
        },
        "erabInfo": {
          "type": "array",
          "items": {
            "$ref": "#/definitions/ErabQosParameters"
          }
        }
      },
      "description": "Information on UEs in the specific cell."
    },
    "AssociateId": {
      "type": "object",
      "required": [
        "type",
        "value"
      ],
      "properties": {
        "type": {
          "type": "string",
          "enum": [
            "RESERVED",
            "UE_IPV4_ADDRESS",
            "UE_IPV6_ADDRESS",
            "NATED_IP_ADDRESS",
            "GTP_TEID"
          ],
          "description": "Numeric value (0-255) corresponding to specified type of identifier",
          "example": "UE_IPV4_ADDRESS"
        },
        "value": {
          "type": "integer",
          "format": "int32",
          "description": "Value for the identifier",
          "example": 1
        }
      }
    },
    "ErabQosParameters": {
      "type": "object",
      "properties": {
        "qci": {
          "$ref": "#/definitions/ErabQosParameters_qci"
        }
      }
    },
    "Qci": {
      "type": "integer",
      "format": "int32",
      "description": "QoS Class Identifier as defined in TS 23.401",
      "example": 7
    },
    "QosInformation": {
      "type": "object",
      "required": [
        "erabGbrDl",
        "erabGbrUl",
        "erabMbrDl",
        "erabMbrUl"
      ],
      "properties": {
        "erabMbrDl": {
          "type": "integer",
          "format": "int32",
          "description": "This IE indicates the maximum downlink E-RAB Bit Rate as defined in TS 23.401 for this bearer.",
          "example": 10
        },
        "erabMbrUl": {
          "type": "integer",
          "format": "int32",
          "description": "This IE indicates the maximum uplink E-RAB Bit Rate as defined in TS 23.401 for this bearer.",
          "example": 10
        },
        "erabGbrDl": {
          "type": "integer",
          "format": "int32",
          "description": "This IE indicates the guaranteed  downlink E-RAB Bit Rate as defined in TS 23.401 for this bearer.",
          "example": 10
        },
        "erabGbrUl": {
          "type": "integer",
          "format": "int32",
          "description": "This IE indicates the guaranteed  uplink E-RAB Bit Rate as defined in TS 23.401 for this bearer.",
          "example": 10
        }
      }
    },
6022 6023 6024 6025 6026 6027 6028 6029 6030 6031 6032 6033 6034 6035 6036 6037 6038 6039 6040 6041 6042 6043 6044 6045 6046 6047 6048 6049 6050 6051 6052 6053 6054 6055 6056 6057 6058 6059 6060 6061 6062 6063 6064 6065 6066 6067 6068 6069 6070 6071 6072 6073 6074 6075 6076 6077 6078 6079 6080 6081 6082 6083 6084 6085 6086 6087 6088 6089 6090 6091 6092 6093 6094 6095 6096 6097 6098 6099 6100 6101 6102 6103 6104 6105 6106 6107 6108 6109 6110 6111 6112 6113 6114 6115 6116 6117 6118 6119 6120 6121 6122 6123 6124 6125 6126 6127 6128 6129 6130 6131 6132 6133 6134 6135 6136 6137 6138 6139 6140 6141 6142 6143 6144 6145 6146 6147 6148 6149 6150 6151 6152 6153 6154 6155 6156 6157 6158 6159 6160 6161 6162 6163 6164 6165 6166 6167 6168 6169 6170 6171 6172 6173 6174 6175 6176 6177 6178 6179 6180 6181 6182 6183 6184 6185 6186 6187 6188 6189 6190 6191 6192 6193 6194 6195 6196 6197 6198 6199 6200 6201 6202 6203 6204 6205 6206 6207 6208 6209 6210 6211 6212 6213 6214 6215 6216 6217 6218 6219 6220 6221 6222 6223 6224 6225 6226 6227 6228 6229 6230 6231 6232 6233 6234 6235 6236 6237 6238 6239 6240 6241 6242 6243 6244 6245 6246 6247 6248 6249 6250 6251 6252 6253 6254 6255 6256 6257 6258 6259 6260 6261 6262 6263 6264 6265 6266 6267 6268 6269 6270 6271 6272 6273 6274 6275 6276 6277 6278 6279 6280 6281 6282 6283 6284 6285 6286 6287 6288 6289 6290 6291 6292 6293 6294 6295 6296 6297 6298 6299 6300 6301 6302 6303 6304 6305 6306 6307 6308 6309 6310 6311 6312 6313 6314 6315 6316 6317 6318 6319 6320 6321 6322 6323 6324 6325 6326 6327 6328 6329 6330 6331 6332 6333 6334 6335 6336 6337 6338 6339 6340 6341 6342 6343 6344 6345 6346 6347 6348 6349 6350 6351 6352 6353 6354 6355 6356 6357 6358 6359 6360 6361 6362 6363 6364 6365 6366 6367 6368 6369 6370 6371 6372 6373 6374 6375 6376 6377 6378 6379 6380 6381 6382 6383 6384 6385 6386 6387 6388 6389 6390 6391 6392 6393 6394 6395 6396 6397 6398 6399 6400 6401 6402 6403 6404 6405 6406 6407 6408 6409 6410 6411 6412 6413 6414 6415 6416 6417 6418 6419 6420 6421 6422 6423 6424 6425 6426 6427 6428 6429 6430 6431 6432 6433 6434 6435 6436 6437 6438 6439 6440 6441 6442 6443 6444 6445 6446 6447 6448 6449 6450 6451 6452 6453 6454 6455 6456 6457 6458 6459 6460 6461 6462 6463 6464 6465 6466 6467 6468 6469 6470 6471 6472 6473 6474 6475 6476 6477 6478 6479 6480 6481 6482 6483 6484 6485 6486 6487 6488 6489 6490 6491 6492 6493 6494 6495 6496 6497 6498 6499 6500 6501 6502 6503 6504 6505 6506 6507 6508 6509 6510 6511 6512 6513 6514 6515 6516 6517 6518 6519 6520 6521 6522 6523 6524 6525 6526 6527 6528 6529 6530 6531 6532 6533 6534 6535 6536 6537 6538 6539 6540 6541 6542 6543 6544 6545 6546 6547 6548 6549 6550 6551 6552 6553 6554 6555 6556 6557 6558 6559 6560 6561 6562 6563 6564 6565 6566 6567 6568 6569 6570 6571 6572 6573 6574 6575 6576 6577 6578 6579 6580 6581 6582 6583 6584 6585
      "type": "object",
      "required": [
        "_links"
      ],
      "properties": {
        "_links": {
          "$ref": "#/definitions/LinkList"
        },
        "subscription": {
          "$ref": "#/definitions/Subscription"
        }
      }
    },
    "MeasRepUeSubscriptionPost": {
      "type": "object",
      "required": [
        "callbackReference",
        "filterCriteria"
      ],
      "properties": {
        "callbackReference": {
          "$ref": "#/definitions/CallbackReference"
        },
        "filterCriteria": {
          "$ref": "#/definitions/FilterCriteriaAssocTri"
        },
        "expiryDeadline": {
          "$ref": "#/definitions/TimeStamp"
        }
      }
    },
    "MeasRepUeSubscription": {
      "type": "object",
      "required": [
        "callbackReference",
        "_links",
        "filterCriteria"
      ],
      "properties": {
        "callbackReference": {
          "$ref": "#/definitions/CallbackReference"
        },
        "_links": {
          "$ref": "#/definitions/Link"
        },
        "filterCriteria": {
          "$ref": "#/definitions/FilterCriteriaAssocTri"
        },
        "expiryDeadline": {
          "$ref": "#/definitions/TimeStamp"
        }
      }
    },
    "S1BearerSubscriptionPost": {
      "type": "object",
      "required": [
        "callbackReference",
        "s1BearerSubscriptionCriteria"
      ],
      "properties": {
        "callbackReference": {
          "$ref": "#/definitions/CallbackReference"
        },
        "eventType": {
          "$ref": "#/definitions/EventType"
        },
        "s1BearerSubscriptionCriteria": {
          "$ref": "#/definitions/S1BearerSubscriptionCriteria"
        },
        "expiryDeadline": {
          "$ref": "#/definitions/TimeStamp"
        }
      }
    },
    "S1BearerSubscription": {
      "type": "object",
      "required": [
        "callbackReference",
        "_links",
        "s1BearerSubscriptionCriteria"
      ],
      "properties": {
        "callbackReference": {
          "$ref": "#/definitions/CallbackReference"
        },
        "_links": {
          "$ref": "#/definitions/Link"
        },
        "eventType": {
          "$ref": "#/definitions/EventType"
        },
        "s1BearerSubscriptionCriteria": {
          "$ref": "#/definitions/S1BearerSubscriptionCriteria"
        },
        "expiryDeadline": {
          "$ref": "#/definitions/TimeStamp"
        }
      }
    },
    "RabEstSubscription": {
      "type": "object",
      "required": [
        "callbackReference",
        "_links",
        "filterCriteria"
      ],
      "properties": {
        "callbackReference": {
          "$ref": "#/definitions/CallbackReference"
        },
        "_links": {
          "$ref": "#/definitions/Link"
        },
        "filterCriteria": {
          "$ref": "#/definitions/FilterCriteriaAssocQci"
        },
        "expiryDeadline": {
          "$ref": "#/definitions/TimeStamp"
        }
      }
    },
    "RabEstSubscriptionPost": {
      "type": "object",
      "required": [
        "callbackReference",
        "filterCriteria"
      ],
      "properties": {
        "callbackReference": {
          "$ref": "#/definitions/CallbackReference"
        },
        "filterCriteria": {
          "$ref": "#/definitions/FilterCriteriaAssocQci"
        },
        "expiryDeadline": {
          "$ref": "#/definitions/TimeStamp"
        }
      }
    },
    "RabModSubscription": {
      "type": "object",
      "required": [
        "callbackReference",
        "_links",
        "filterCriteria"
      ],
      "properties": {
        "callbackReference": {
          "$ref": "#/definitions/CallbackReference"
        },
        "_links": {
          "$ref": "#/definitions/Link"
        },
        "filterCriteria": {
          "$ref": "#/definitions/FilterCriteriaAssocQci"
        },
        "expiryDeadline": {
          "$ref": "#/definitions/TimeStamp"
        }
      }
    },
    "RabModSubscriptionPost": {
      "type": "object",
      "required": [
        "callbackReference",
        "filterCriteria"
      ],
      "properties": {
        "callbackReference": {
          "$ref": "#/definitions/CallbackReference"
        },
        "filterCriteria": {
          "$ref": "#/definitions/FilterCriteriaAssocQci"
        },
        "expiryDeadline": {
          "$ref": "#/definitions/TimeStamp"
        }
      }
    },
    "RabRelSubscription": {
      "type": "object",
      "required": [
        "callbackReference",
        "_links",
        "filterCriteria"
      ],
      "properties": {
        "callbackReference": {
          "$ref": "#/definitions/CallbackReference"
        },
        "_links": {
          "$ref": "#/definitions/Link"
        },
        "filterCriteria": {
          "$ref": "#/definitions/FilterCriteriaAssocQci"
        },
        "expiryDeadline": {
          "$ref": "#/definitions/TimeStamp"
        }
      }
    },
    "RabRelSubscriptionPost": {
      "type": "object",
      "required": [
        "callbackReference",
        "filterCriteria"
      ],
      "properties": {
        "callbackReference": {
          "$ref": "#/definitions/CallbackReference"
        },
        "filterCriteria": {
          "$ref": "#/definitions/FilterCriteriaAssocQci"
        },
        "expiryDeadline": {
          "$ref": "#/definitions/TimeStamp"
        }
      }
    },
    "CaReConfSubscription": {
      "type": "object",
      "required": [
        "callbackReference",
        "_links",
        "filterCriteria"
      ],
      "properties": {
        "callbackReference": {
          "$ref": "#/definitions/CallbackReference"
        },
        "_links": {
          "$ref": "#/definitions/Link"
        },
        "filterCriteria": {
          "$ref": "#/definitions/FilterCriteriaAssoc"
        },
        "expiryDeadline": {
          "$ref": "#/definitions/TimeStamp"
        }
      }
    },
    "CaReConfSubscriptionPost": {
      "type": "object",
      "required": [
        "callbackReference",
        "filterCriteria"
      ],
      "properties": {
        "callbackReference": {
          "$ref": "#/definitions/CallbackReference"
        },
        "filterCriteria": {
          "$ref": "#/definitions/FilterCriteriaAssoc"
        },
        "expiryDeadline": {
          "$ref": "#/definitions/TimeStamp"
        }
      }
    },
    "CellChangeSubscriptionPost": {
      "type": "object",
      "required": [
        "callbackReference",
        "filterCriteria"
      ],
      "properties": {
        "callbackReference": {
          "$ref": "#/definitions/CallbackReference"
        },
        "filterCriteria": {
          "$ref": "#/definitions/FilterCriteriaAssocHo"
        },
        "expiryDeadline": {
          "$ref": "#/definitions/TimeStamp"
        }
      }
    },
    "CellChangeSubscription": {
      "type": "object",
      "required": [
        "callbackReference",
        "_links",
        "filterCriteria"
      ],
      "properties": {
        "callbackReference": {
          "$ref": "#/definitions/CallbackReference"
        },
        "_links": {
          "$ref": "#/definitions/Link"
        },
        "filterCriteria": {
          "$ref": "#/definitions/FilterCriteriaAssocHo"
        },
        "expiryDeadline": {
          "$ref": "#/definitions/TimeStamp"
        }
      }
    },
    "MeasTaSubscriptionPost": {
      "type": "object",
      "required": [
        "callbackReference",
        "filterCriteria"
      ],
      "properties": {
        "callbackReference": {
          "$ref": "#/definitions/CallbackReference"
        },
        "filterCriteria": {
          "$ref": "#/definitions/FilterCriteriaAssoc"
        },
        "expiryDeadline": {
          "$ref": "#/definitions/TimeStamp"
        }
      }
    },
    "MeasTaSubscription": {
      "type": "object",
      "required": [
        "callbackReference",
        "_links",
        "filterCriteria"
      ],
      "properties": {
        "callbackReference": {
          "$ref": "#/definitions/CallbackReference"
        },
        "_links": {
          "$ref": "#/definitions/Link"
        },
        "filterCriteria": {
          "$ref": "#/definitions/FilterCriteriaAssoc"
        },
        "expiryDeadline": {
          "$ref": "#/definitions/TimeStamp"
        }
      }
    },
    "CallbackReference": {
      "type": "string",
      "format": "uri",
      "description": "URL selected by the Mobile Edge application to receive notifications on the subscribed RNIS information.",
      "example": "http://meAppClient.example.com/rni/v1/"
    },
    "Link": {
      "type": "object",
      "properties": {
        "self": {
          "$ref": "#/definitions/LinkType"
        }
      },
      "description": "List of hyperlinks related to the resource"
    },
    "LinkList": {
      "type": "object",
      "required": [
        "self"
      ],
      "properties": {
        "self": {
          "$ref": "#/definitions/LinkType"
        },
        "subscription": {
          "$ref": "#/definitions/Subscription"
        }
      },
      "description": "List of hyperlinks related to the resource"
    },
    "LinkType": {
      "description": "URI referring to a resource",
      "type": "string",
      "format": "uri",
      "example": "http://meAppClient.example.com/rni/v1/"
    },
    "Subscription": {
      "type": "object",
      "required": [
        "href",
        "subscriptionType"
      ],
      "properties": {
        "href": {
          "$ref": "#/definitions/LinkType"
        },
        "subscriptionType": {
          "$ref": "#/definitions/SubscriptionType"
        }
      },
      "description": "A link to a subscription."
    },
    "SubscriptionType": {
      "type": "string",
      "description": "Numeric value corresponding to specified type of subscription.",
      "enum": [
        "RESERVED",
        "CELL_CHANGE",
        "RAB_ESTABLISHMENT",
        "RAB_MODIFICATION",
        "RAB_RELEASE",
        "MEAS_ REPORT_UE",
        "MEAS_TIMING_ADVANCE",
        "CA_RECONF",
        "S1_BEARE"
      ],
      "example": "CELL_CHANGE"
    },
    "FilterCriteriaAssoc": {
      "type": "object",
      "properties": {
        "appInsId": {
          "$ref": "#/definitions/AppInsId"
        },
        "associateId": {
          "$ref": "#/definitions/AssociateId"
        },
        "plmn": {
          "$ref": "#/definitions/Plmn"
        },
        "cellId": {
          "$ref": "#/definitions/CellId"
        }
      },
      "description": "List of filtering criteria for the subscription."
    },
    "FilterCriteriaAssocQci": {
      "type": "object",
      "properties": {
        "appInsId": {
          "$ref": "#/definitions/AppInsId"
        },
        "associateId": {
          "$ref": "#/definitions/AssociateId"
        },
        "plmn": {
          "$ref": "#/definitions/Plmn"
        },
        "cellId": {
          "$ref": "#/definitions/CellId"
        },
        "qci": {
          "$ref": "#/definitions/Qci"
        }
      },
      "description": "List of filtering criteria for the subscription."
    },
    "FilterCriteriaAssocHo": {
      "type": "object",
      "properties": {
        "appInsId": {
          "$ref": "#/definitions/AppInsId"
        },
        "associateId": {
          "$ref": "#/definitions/AssociateId"
        },
        "plmn": {
          "$ref": "#/definitions/Plmn"
        },
        "cellId": {
          "$ref": "#/definitions/CellId"
        },
        "hoStatus": {
          "$ref": "#/definitions/HoStatus"
        }
      },
      "description": "List of filtering criteria for the subscription."
    },
    "FilterCriteriaAssocTri": {
      "type": "object",
      "properties": {
        "appInsId": {
          "$ref": "#/definitions/AppInsId"
        },
        "associateId": {
          "$ref": "#/definitions/AssociateId"
        },
        "plmn": {
          "$ref": "#/definitions/Plmn"
        },
        "cellId": {
          "$ref": "#/definitions/CellId"
        },
        "trigger": {
          "$ref": "#/definitions/Trigger"
        }
      },
      "description": "List of filtering criteria for the subscription."
    },
    "S1BearerSubscriptionCriteria": {
      "type": "object",
      "properties": {
        "associateId": {
          "$ref": "#/definitions/AssociateId"
        },
        "plmn": {
          "$ref": "#/definitions/Plmn"
        },
        "cellId": {
          "$ref": "#/definitions/CellId"
        },
        "erabId": {
          "$ref": "#/definitions/ErabId"
        }
      },
      "description": "List of filtering criteria for the subscription."
    },
    "HoStatus": {
      "type": "string",
      "description": "Description of the subscribed to event",
      "enum": [
        "RESERVED",
        "IN_PREPARATION",
        "IN_EXECUTION",
        "COMPLETED",
        "REJECTED",
        "CANCELLED"
      ],
      "example": "COMPLETED"
    },
    "EventType": {
      "type": "string",
      "description": "Description of the subscribed event.",
      "enum": [
        "RESERVED",
        "S1_BEARER_ESTABLISH",
        "S1_BEARER_MODIFY",
        "S1_BEARER_RELEASE"
      ],
      "example": "S1_BEARER_ESTABLISH"
    },
    "Trigger": {
      "type": "string",
      "description": "Unique identifier for the mobile edge application instance",
      "enum": [
        "NOT_AVAILABLE",
        "PERIODICAL_REPORT_STRONGEST_CELLS",
        "PERIODICAL_REPORT_STRONGEST_CELLS_FOR_SON",
        "PERIODICAL_REPORT_CGI",
        "EVENT_A1",
        "EVENT_A2",
        "EVENT_A3",
        "EVENT_A4",
        "EVENT_A5",
        "EVENT_A6",
        "EVENT_B1",
        "EVENT_B2",
        "EVENT_C1",
        "EVENT_C2",
        "EVENT_W1",
        "EVENT_W2",
        "EVENT_W3"
      ],
      "example": "EVENT_A3"
    },
    "ErabQosParameters_qci": {
      "type": "object",
      "properties": {
        "qosInformation": {
          "$ref": "#/definitions/QosInformation"
        }
      },
      "description": "QoS Class Identifier as defined in TS 23.401"
    }
  }