RniAPI.json 179 KB
Newer Older
Michel Roy's avatar
Michel Roy committed
                    "notificationSubscription": {
                      "oneOf": [
                        {
                          "$ref": "#/components/schemas/CellChangeSubscription"
                        },
                        {
                          "$ref": "#/components/schemas/RabEstSubscription"
                        },
                        {
                          "$ref": "#/components/schemas/RabModSubscription"
                        },
                        {
                          "$ref": "#/components/schemas/RabRelSubscription"
                        },
                        {
                          "$ref": "#/components/schemas/MeasRepUeSubscription"
                        },
                        {
                          "$ref": "#/components/schemas/NrMeasRepUeSubscription"
                        },
                        {
                          "$ref": "#/components/schemas/MeasTaSubscription"
                        },
                        {
                          "$ref": "#/components/schemas/CaReconfSubscription"
                        },
                        {
                          "$ref": "#/components/schemas/S1BearerSubscription"
                        }
                      ],
                      "discriminator": {
                        "propertyName": "subscriptionType"
                      }
                    }
                  }
                },
                "example": {
                  "notificationSubscription": {
                    "subscriptionType": "CellChangeSubscription",
                    "callbackReference": "http://my.callback.com/rni-cell-change/some-id",
                    "_links": {
                      "self": {
                        "href": "http://meAppServer.example.com/rni/v2/subscriptions/sub123"
                      }
                    },
                    "filterCriteriaAssocHo": {
                      "appInstanceId": "myApp",
                      "associateId": [
                        {
Michel Roy's avatar
Michel Roy committed
                          "type": 1,
Michel Roy's avatar
Michel Roy committed
                          "value": "10.100.0.1"
                        }
                      ],
                      "ecgi": [
                        {
                          "plmn": {
                            "mnc": "01",
                            "mcc": "001"
                          },
                          "cellId": "ACBDEFA"
                        }
                      ],
                      "hoStatus": [
Michel Roy's avatar
Michel Roy committed
                        1,
                        2
Michel Roy's avatar
Michel Roy committed
                      ]
                    },
                    "expiryDeadline": {
                      "seconds": 1977836800,
                      "nanoseconds": 0
                    }
                  }
Michel Roy's avatar
Michel Roy committed
          "400": {
            "$ref": "#/components/responses/400"
          },
          "401": {
            "$ref": "#/components/responses/401"
          },
          "403": {
            "$ref": "#/components/responses/403"
          },
Michel Roy's avatar
Michel Roy committed
            "$ref": "#/components/responses/404"
Michel Roy's avatar
Michel Roy committed
            "$ref": "#/components/responses/406"
Michel Roy's avatar
Michel Roy committed
            "$ref": "#/components/responses/412"
Michel Roy's avatar
Michel Roy committed
            "$ref": "#/components/responses/422"
Michel Roy's avatar
Michel Roy committed
            "$ref": "#/components/responses/429"
Michel Roy's avatar
Michel Roy committed
        },
        "x-swagger-router-controller": "subscriptions"
      },
      "delete": {
Michel Roy's avatar
Michel Roy committed
        "tags": [
Michel Roy's avatar
Michel Roy committed
          "rni"
Michel Roy's avatar
Michel Roy committed
        "summary": "Cancel an existing subscription",
        "description": "Cancels an existing subscription, identified by its self-referring URI returned on creation (initial POST)",
        "operationId": "subscriptionsDELETE",
        "parameters": [
          {
Michel Roy's avatar
Michel Roy committed
            "$ref": "#/components/parameters/Path.subscrId"
          }
        ],
        "responses": {
          "204": {
Michel Roy's avatar
Michel Roy committed
            "$ref": "#/components/responses/204"
          },
          "401": {
            "$ref": "#/components/responses/401"
          },
          "403": {
            "$ref": "#/components/responses/403"
          },
          "404": {
            "$ref": "#/components/responses/404"
          },
          "429": {
            "$ref": "#/components/responses/429"
Michel Roy's avatar
Michel Roy committed
        "x-swagger-router-controller": "subscriptions"
Michel Roy's avatar
Michel Roy committed
    }
  },
  "components": {
    "responses": {
      "204": {
        "description": "No Content"
      },
      "400": {
        "description": "Bad Request : used to indicate that incorrect parameters were passed to the request.",
        "content": {
          "application/json": {
            "schema": {
              "type": "object",
              "properties": {
Michel Roy's avatar
Michel Roy committed
                "problemDetails": {
                  "$ref": "#/components/schemas/ProblemDetails"
Michel Roy's avatar
Michel Roy committed
          }
        }
      },
      "401": {
        "description": "Unauthorized :  used when the client did not submit credentials.",
        "content": {
          "application/json": {
            "schema": {
              "type": "object",
              "properties": {
Michel Roy's avatar
Michel Roy committed
                "problemDetails": {
                  "$ref": "#/components/schemas/ProblemDetails"
Michel Roy's avatar
Michel Roy committed
          }
        }
      },
      "403": {
        "description": "Forbidden :  operation is not allowed given the current status of the resource.",
        "content": {
          "application/json": {
            "schema": {
              "type": "object",
Michel Roy's avatar
Michel Roy committed
                "problemDetails"
              "properties": {
Michel Roy's avatar
Michel Roy committed
                "problemDetails": {
                  "$ref": "#/components/schemas/ProblemDetails"
Michel Roy's avatar
Michel Roy committed
          }
        }
      },
      "404": {
        "description": "Not Found :  used when a client provided a URI that cannot be mapped to a valid resource URI.",
        "content": {
          "application/json": {
            "schema": {
              "type": "object",
              "properties": {
Michel Roy's avatar
Michel Roy committed
                "problemDetails": {
                  "$ref": "#/components/schemas/ProblemDetails"
Michel Roy's avatar
Michel Roy committed
          }
        }
      },
      "406": {
        "description": "Not Acceptable : used to indicate that the server cannot provide the any of the content formats supported by the client.",
        "content": {
          "application/json": {
            "schema": {
              "type": "object",
              "properties": {
Michel Roy's avatar
Michel Roy committed
                "problemDetails": {
                  "$ref": "#/components/schemas/ProblemDetails"
Michel Roy's avatar
Michel Roy committed
          }
        }
      },
      "412": {
        "description": "Precondition failed :  used when a condition has failed during conditional requests, e.g. when using ETags to avoid write conflicts when using PUT",
        "content": {
          "application/json": {
            "schema": {
              "type": "object",
              "properties": {
Michel Roy's avatar
Michel Roy committed
                "problemDetails": {
                  "$ref": "#/components/schemas/ProblemDetails"
Michel Roy's avatar
Michel Roy committed
      "414": {
        "description": "URI Too Long : used to indicate that the server is refusing to process the request because the request URI is longer than the server is willing or able to process.",
        "content": {
          "application/json": {
            "schema": {
              "type": "object",
              "properties": {
Michel Roy's avatar
Michel Roy committed
                "problemDetails": {
                  "$ref": "#/components/schemas/ProblemDetails"
Michel Roy's avatar
Michel Roy committed
          }
        }
      },
      "415": {
        "description": "Unsupported Media Type :  used to indicate that the server or the client does not support the content type of the entity body.",
        "content": {
          "application/json": {
            "schema": {
              "type": "object",
              "properties": {
Michel Roy's avatar
Michel Roy committed
                "problemDetails": {
                  "$ref": "#/components/schemas/ProblemDetails"
Michel Roy's avatar
Michel Roy committed
          }
        }
      },
      "422": {
        "description": "Unprocessable Entity : used to indicate that the server understands the content type of the request entity and that the syntax of the request entity is correct but that the server is unable to process the contained instructions. This error condition can occur if an JSON request body is syntactically correct but semantically incorrect, for example if the target area for the request is considered too large. This error condition can also occur if the capabilities required by the request are not supported.",
        "content": {
          "application/json": {
            "schema": {
              "type": "object",
              "properties": {
Michel Roy's avatar
Michel Roy committed
                "problemDetails": {
                  "$ref": "#/components/schemas/ProblemDetails"
Michel Roy's avatar
Michel Roy committed
            },
            "example": {
              "application/problem+json": {
                "problemDetails": {
                  "type": "https://meAppServer.example.com/rni/v2/probs/too-many targets",
                  "title": "Too many targets",
                  "status": "422",
                  "detail": "The target area for the request is considered too large",
                  "instance": "/meAppClient.example.com/77777/msgs/abc"
Michel Roy's avatar
Michel Roy committed
          }
        }
      },
      "429": {
        "description": "Too Many Requests : used when a rate limiter has triggered.",
        "content": {
          "application/json": {
            "schema": {
              "type": "object",
              "properties": {
Michel Roy's avatar
Michel Roy committed
                "problemDetails": {
                  "$ref": "#/components/schemas/ProblemDetails"
Michel Roy's avatar
Michel Roy committed
          }
        }
      }
    },
    "parameters": {
      "Path.subscrId": {
        "name": "subscriptionId",
        "in": "path",
        "description": "Subscription Id, specifically the \"Self-referring URI\" returned in the subscription request",
        "required": true,
        "schema": {
          "type": "string",
          "format": "uri"
        },
        "x-exportParamName": "SubscriptionId"
      },
      "Query.AppInsId": {
        "name": "app_ins_id",
        "in": "query",
        "description": "Application instance identifier",
        "required": false,
        "schema": {
          "type": "string"
        },
        "x-exportParamName": "AppInsId",
        "x-optionalDataType": "String"
      },
      "Query.AppInsIdArr": {
        "name": "app_ins_id",
        "in": "query",
        "description": "Comma separated list of Application instance identifiers",
        "required": true,
        "schema": {
          "type": "array",
          "items": {
            "type": "string"
          }
        },
        "x-exportParamName": "AppInsIdArr"
      },
      "Query.CellId": {
        "name": "cell_id",
        "in": "query",
        "description": "Comma separated list of E-UTRAN Cell Identities",
        "required": false,
        "schema": {
          "type": "array",
          "items": {
            "type": "string"
          }
        },
        "x-exportParamName": "CellId"
      },
      "Query.UeIpv4Address": {
        "name": "ue_ipv4_address",
        "in": "query",
        "description": "Comma separated list of IE IPv4 addresses as defined for the type for AssociateId",
        "required": false,
        "schema": {
          "type": "array",
          "items": {
            "type": "string"
          }
        },
        "x-exportParamName": "UeIpv4Address"
      },
      "Query.UeIpv6Address": {
        "name": "ue_ipv6_address",
        "in": "query",
        "description": "Comma separated list of IE IPv6 addresses as defined for the type for AssociateId",
        "required": false,
        "schema": {
          "type": "array",
          "items": {
            "type": "string"
          }
        },
        "x-exportParamName": "UeIpv6Address"
      },
      "Query.NatedIpAddress": {
        "name": "nated_ip_address",
        "in": "query",
        "description": "Comma separated list of IE NATed IP addresses as defined for the type for AssociateId",
        "required": false,
        "schema": {
          "type": "array",
          "items": {
            "type": "string"
          }
        },
        "x-exportParamName": "NatedIpAddress"
      },
      "Query.GtpTeid": {
        "name": "gtp_teid",
        "in": "query",
        "description": "Comma separated list of GTP TEID addresses as defined for the type for AssociateId",
        "required": false,
        "schema": {
          "type": "array",
          "items": {
            "type": "string"
          }
        },
        "x-exportParamName": "GtpTeid"
      },
      "Query.ErabId": {
        "name": "erab_id",
        "in": "query",
        "description": "E-RAB identifier",
        "required": false,
        "schema": {
          "type": "integer",
Michel Roy's avatar
Michel Roy committed
          "format": "int32"
Michel Roy's avatar
Michel Roy committed
        },
        "x-exportParamName": "ErabId",
        "x-optionalDataType": "Int32"
      },
      "Query.ErabIdArr": {
        "name": "erab_id",
        "in": "query",
        "description": "Comma separated list of E-RAB identifiers",
        "required": false,
        "schema": {
          "type": "array",
          "items": {
            "type": "integer",
Michel Roy's avatar
Michel Roy committed
            "format": "int32"
Michel Roy's avatar
Michel Roy committed
          }
        },
        "x-exportParamName": "ErabIdArr"
      },
      "Query.Qci": {
        "name": "qci",
        "in": "query",
        "description": "QoS Class Identifier as defined in ETSI TS 123 401",
        "required": false,
        "schema": {
          "type": "integer",
Michel Roy's avatar
Michel Roy committed
          "format": "int32"
Michel Roy's avatar
Michel Roy committed
        },
        "x-exportParamName": "Qci",
        "x-optionalDataType": "Int32"
      },
      "Query.ErabMbrDl": {
        "name": "erab_mbr_dl",
        "in": "query",
        "description": "Maximum downlink E-RAB Bit Rate as defined in ETSI TS 123 401",
        "required": false,
        "schema": {
          "type": "integer",
Michel Roy's avatar
Michel Roy committed
          "format": "int32"
Michel Roy's avatar
Michel Roy committed
        },
        "x-exportParamName": "ErabMbrDl",
        "x-optionalDataType": "Int32"
      },
      "Query.ErabMbrUl": {
        "name": "erab_mbr_ul",
        "in": "query",
        "description": "Maximum uplink E-RAB Bit Rate as defined in ETSI TS 123 401",
        "required": false,
        "schema": {
          "type": "integer",
Michel Roy's avatar
Michel Roy committed
          "format": "int32"
Michel Roy's avatar
Michel Roy committed
        },
        "x-exportParamName": "ErabMbrUl",
        "x-optionalDataType": "Int32"
      },
      "Query.ErabGbrDl": {
        "name": "erab_gbr_dl",
        "in": "query",
        "description": "Guaranteed downlink E-RAB Bit Rate as defined in ETSI TS 123 401",
        "required": false,
        "schema": {
          "type": "integer",
Michel Roy's avatar
Michel Roy committed
          "format": "int32"
Michel Roy's avatar
Michel Roy committed
        },
        "x-exportParamName": "ErabGbrDl",
        "x-optionalDataType": "Int32"
      },
      "Query.ErabGbrUl": {
        "name": "erab_gbr_ul",
        "in": "query",
        "description": "Guaranteed uplink E-RAB Bit Rate as defined in ETSI TS 123 401",
        "required": false,
        "schema": {
          "type": "integer",
Michel Roy's avatar
Michel Roy committed
          "format": "int32"
Michel Roy's avatar
Michel Roy committed
1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839
        },
        "x-exportParamName": "ErabGbrUl",
        "x-optionalDataType": "Int32"
      },
      "Query.TempUeId": {
        "name": "temp_ue_id",
        "in": "query",
        "description": "Comma separated list of temporary identifiers allocated for the specific UE as defined in   ETSI TS 136 413",
        "required": false,
        "schema": {
          "type": "array",
          "items": {
            "type": "string"
          }
        },
        "x-exportParamName": "TempUeId"
      },
      "Query.DlGbrPrbUsageCell": {
        "name": "dl_gbr_prb_usage_cell",
        "in": "query",
        "description": "PRB usage for downlink GBR traffic in percentage as defined in ETSI TS 136 314",
        "required": false,
        "schema": {
          "type": "integer"
        },
        "x-exportParamName": "DlGbrPrbUsageCell"
      },
      "Query.UlGbrPrbUsageCell": {
        "name": "ul_gbr_prb_usage_cell",
        "in": "query",
        "description": "PRB usage for uplink GBR traffic in percentage as defined in ETSI TS 136 314",
        "required": false,
        "schema": {
          "type": "integer"
        },
        "x-exportParamName": "UlGbrPrbUsageCell"
      },
      "Query.DlNonGbrPrbUsageCell": {
        "name": "dl_nongbr_prb_usage_cell",
        "in": "query",
        "description": "PRB usage for downlink non-GBR traffic in percentage as defined in ETSI TS 136 314",
        "required": false,
        "schema": {
          "type": "integer"
        },
        "x-exportParamName": "DlNonGbrPrbUsageCell"
      },
      "Query.UlNonGbrPrbUsageCell": {
        "name": "ul_nongbr_prb_usage_cell",
        "in": "query",
        "description": "PRB usage for uplink non-GBR traffic in percentage as defined in ETSI TS 136 314",
        "required": false,
        "schema": {
          "type": "integer"
        },
        "x-exportParamName": "UlNonGbrPrbUsageCell"
      },
      "Query.DlTotalPrbUsageCell": {
        "name": "dl_total_prb_usage_cell",
        "in": "query",
        "description": "PRB usage for total downlink traffic in percentage as defined in ETSI TS 136 314",
        "required": false,
        "schema": {
          "type": "integer"
        },
        "x-exportParamName": "DlTotalPrbUsageCell"
      },
      "Query.UlTotalPrbUsageCell": {
        "name": "ul_total_prb_usage_cell",
        "in": "query",
        "description": "PRB usage for total uplink traffic in percentage as defined in ETSI TS 136 314",
        "required": false,
        "schema": {
          "type": "integer"
        },
        "x-exportParamName": "UlTotalPrbUsageCell"
      },
      "Query.ReceivedDedicatedPreamblesCell": {
        "name": "received_dedicated_preambles_cell",
        "in": "query",
        "description": "Received dedicated preambles in percentage as defined in ETSI TS 136 314",
        "required": false,
        "schema": {
          "type": "integer"
        },
        "x-exportParamName": "ReceivedDedicatedPreamblesCell"
      },
      "Query.ReceivedRandomPreamblesLowRangeCell": {
        "name": "received_randomly_selected_preambles_low_range_cell",
        "in": "query",
        "description": "Received randomly selected preambles in the low range in percentage as defined in ETSI TS 136 314",
        "required": false,
        "schema": {
          "type": "integer"
        },
        "x-exportParamName": "ReceivedRandomPreamblesLowRangeCell"
      },
      "Query.ReceivedRandomPreamblesHighRangeCell": {
        "name": "received_randomly_selected_preambles_high_range_cell",
        "in": "query",
        "description": "Received rendomly selected preambles in the high range in percentage as defined in ETSI TS 136 314",
        "required": false,
        "schema": {
          "type": "integer"
        },
        "x-exportParamName": "ReceivedRandomPreamblesHighRangeCell"
      },
      "Query.NumberOfActiveUeDlGbrCell": {
        "name": "number_of_active_ue_dl_gbr_cell",
        "in": "query",
        "description": "Number of active UEs with downlink GBR traffic as defined in ETSI TS 136 314",
        "required": false,
        "schema": {
          "type": "integer"
        },
        "x-exportParamName": "NumberOfActiveUeDlGbrCell"
      },
      "Query.NumberOfActiveUeUlGbrCell": {
        "name": "number_of_active_ue_ul_gbr_cell",
        "in": "query",
        "description": "Number of active UEs with uplink GBR traffic as defined in ETSI TS 136 314",
        "required": false,
        "schema": {
          "type": "integer"
        },
        "x-exportParamName": "NumberOfActiveUeUlGbrCell"
      },
      "Query.NumberOfActiveUeDlNonGbrCell": {
        "name": "number_of_active_ue_dl_nongbr_cell",
        "in": "query",
        "description": "Number of active UEs with downlink non-GBR traffic as defined in ETSI TS 136 314",
        "required": false,
        "schema": {
          "type": "integer"
        },
        "x-exportParamName": "NumberOfActiveUeDlNonGbrCell"
      },
      "Query.NumberOfActiveUeUlNonGbrCell": {
        "name": "number_of_active_ue_ul_nongbr_cell",
        "in": "query",
        "description": "Number of active UEs with uplink non-GBR traffic as defined in ETSI TS 136 314",
        "required": false,
        "schema": {
          "type": "integer"
        },
        "x-exportParamName": "NumberOfActiveUeUlNonGbrCell"
      },
      "Query.DlGbrPdrCell": {
        "name": "dl_gbr_pdr_cell",
        "in": "query",
        "description": "Packet discard rate for downlink GBR traffic in percentage as defined in ETSI TS 136 314",
        "required": false,
        "schema": {
          "type": "integer"
        },
        "x-exportParamName": "DlGbrPdrCell"
      },
      "Query.UlGbrPdrCell": {
        "name": "ul_gbr_pdr_cell",
        "in": "query",
        "description": "Packet discard rate for uplink GBR traffic in percentage as defined in ETSI TS 136 314",
        "required": false,
        "schema": {
          "type": "integer"
        },
        "x-exportParamName": "UlGbrPdrCell"
      },
      "Query.DlNonGbrPdrCell": {
        "name": "dl_nongbr_pdr_cell",
        "in": "query",
        "description": "Packet discard rate for downlink non-GBR traffic in percentage as defined in ETSI TS 136 314",
        "required": false,
        "schema": {
          "type": "integer"
        },
        "x-exportParamName": "DlNonGbrPdrCell"
      },
      "Query.UlNonGbrPdrCell": {
        "name": "ul_nongbr_pdr_cell",
        "in": "query",
        "description": "Packet discard rate for uplink non-GBR traffic in percentage as defined in ETSI TS 136 314",
        "required": false,
        "schema": {
          "type": "integer"
        },
        "x-exportParamName": "UlNonGbrPdrCell"
      },
      "Query.DlGbrDelayUe": {
        "name": "dl_gbr_delay_ue",
        "in": "query",
        "description": "Packet delay of downlink GBR traffic of a UE as defined in ETSI TS 136 314",
        "required": false,
        "schema": {
          "type": "integer"
        },
        "x-exportParamName": "DlGbrDelayUe"
      },
      "Query.UlGbrDelayUe": {
        "name": "ul_gbr_delay_ue",
        "in": "query",
        "description": "Packet delay of uplink GBR traffic of a UE as defined in ETSI TS 136 314",
        "required": false,
        "schema": {
          "type": "integer"
        },
        "x-exportParamName": "UlGbrDelayUe"
      },
      "Query.DlNonGbrDelayUe": {
        "name": "dl_nongbr_delay_ue",
        "in": "query",
        "description": "Packet delay of downlink non-GBR traffic of a UE as defined in ETSI TS 136 314",
        "required": false,
        "schema": {
          "type": "integer"
        },
        "x-exportParamName": "DlNonGbrDelayUe"
      },
      "Query.UlNonGbrDelayUe": {
        "name": "ul_nongbr_delay_ue",
        "in": "query",
        "description": "Packet delay of uplink non-GBR traffic of a UE as defined in ETSI TS 136 314",
        "required": false,
        "schema": {
          "type": "integer"
        },
        "x-exportParamName": "UlNonGbrDelayUe"
      },
      "Query.DlGbrPdrUe": {
        "name": "dl_gbr_pdr_ue",
        "in": "query",
        "description": "Packet discard rate of downlink GBR traffic of a UE in percentage as defined in ETSI TS 136 314",
        "required": false,
        "schema": {
          "type": "integer"
        },
        "x-exportParamName": "DlGbrPdrUe"
      },
      "Query.UlGbrPdrUe": {
        "name": "ul_gbr_pdr_ue",
        "in": "query",
        "description": "Packet discard rate of uplink GBR traffic of a UE in percentage as defined in ETSI TS 136 314",
        "required": false,
        "schema": {
          "type": "integer"
        },
        "x-exportParamName": "UlGbrPdrUe"
      },
      "Query.DlNonGbrPdrUe": {
        "name": "dl_nongbr_pdr_ue",
        "in": "query",
        "description": "Packet discard rate of downlink non-GBR traffic of a UE in percentage as defined in ETSI TS 136 314",
        "required": false,
        "schema": {
          "type": "integer"
        },
        "x-exportParamName": "DlNonGbrPdrUe"
      },
      "Query.UlNonGbrPdrUe": {
        "name": "ul_nongbr_pdr_ue",
        "in": "query",
        "description": "Packet discard rate of uplink non-GBR traffic of a UE in percentage as defined in ETSI TS 136 314",
        "required": false,
        "schema": {
          "type": "integer"
        },
        "x-exportParamName": "UlNonGbrPdrUe"
      },
      "Query.DlGbrThroughputUe": {
        "name": "dl_gbr_throughput_ue",
        "in": "query",
        "description": "Scheduled throughput of downlink GBR traffic of a UE as defined in ETSI TS 136 314",
        "required": false,
        "schema": {
          "type": "integer"
        },
        "x-exportParamName": "DlGbrThroughputUe"
      },
      "Query.UlGbrThroughputUe": {
        "name": "ul_gbr_throughput_ue",
        "in": "query",
        "description": "Scheduled throughput of uplink GBR traffic of a UE as defined in ETSI TS 136 314",
        "required": false,
        "schema": {
          "type": "integer"
        },
        "x-exportParamName": "UlGbrThroughputUe"
      },
      "Query.DlNonGbrThroughputUe": {
        "name": "dl_nongbr_throughput_ue",
        "in": "query",
        "description": "Scheduled throughput of downlink non-GBR traffic of a UE as defined in ETSI TS 136 314",
        "required": false,
        "schema": {
          "type": "integer"
        },
        "x-exportParamName": "DlNonGbrThroughputUe"
      },
      "Query.UlNonGbrThroughputUe": {
        "name": "ul_nongbr_throughput_ue",
        "in": "query",
        "description": "Scheduled throughput of uplink non-GBR traffic of a UE as defined in ETSI TS 136 314",
        "required": false,
        "schema": {
          "type": "integer"
        },
        "x-exportParamName": "UlNonGbrThroughputUe"
      },
      "Query.DlGbrDataVolumeUe": {
        "name": "dl_gbr_data_volume_ue",
        "in": "query",
        "description": "Data volume of downlink GBR traffic of a UE as defined in ETSI TS 136 314",
        "required": false,
        "schema": {
          "type": "integer"
        },
        "x-exportParamName": "DlGbrDataVolumeUe"
      },
      "Query.UlGbrDataVolumeUe": {
        "name": "ul_gbr_data_volume_ue",
        "in": "query",
        "description": "Data volume of uplink GBR traffic of a UE as defined in ETSI TS 136 314",
        "required": false,
        "schema": {
          "type": "integer"
        },
        "x-exportParamName": "UlGbrDataVolumeUe"
      },
      "Query.DlNonGbrDataVolumeUe": {
        "name": "dl_nongbr_data_volume_ue",
        "in": "query",
        "description": "Data volume of downlink non-GBR traffic of a UE as defined in ETSI TS 136 314",
        "required": false,
        "schema": {
          "type": "integer"
        },
        "x-exportParamName": "DlNonGbrDataVolumeUe"
      },
      "Query.UlNonGbrDataVolumeUe": {
        "name": "ul_nongbr_data_volume_ue",
        "in": "query",
        "description": "Data volume of uplink non-GBR traffic of a UE as defined in ETSI TS 136 314",
        "required": false,
        "schema": {
          "type": "integer"
        },
        "x-exportParamName": "UlNonGbrDataVolumeUe"
      },
      "Query.SubscriptionType": {
        "name": "subscription_type",
        "in": "query",
Michel Roy's avatar
Michel Roy committed
        "description": "Filter on a specific subscription type. Permitted values: cell_change, rab_est, rab_mod, rab_rel, meas_rep_ue, nr_meas_rep_ue, timing_advance_ue, ca_reconf, s1_bearer.",
Michel Roy's avatar
Michel Roy committed
        "required": false,
        "schema": {
          "type": "string"
        },
        "x-exportParamName": "SubscriptionType"
      }
    },
    "schemas": {
      "AssociateId": {
        "properties": {
          "type": {
Michel Roy's avatar
Michel Roy committed
            "description": "Numeric value (0-255) corresponding to specified type of identifier as following: <p>0 = reserved. <p>1 = UE_IPv4_ADDRESS. <p>2 = UE_IPV6_ADDRESS. <p>3 = NATED_IP_ADDRESS. <p>4 = GTP_TEID.",
Michel Roy's avatar
Michel Roy committed
            "enum": [
Michel Roy's avatar
Michel Roy committed
            "type": "integer",
Michel Roy's avatar
Michel Roy committed
            "x-etsi-mec-cardinality": "1",
            "x-etsi-mec-origin-type": "Enum"
          },
          "value": {
            "description": "Value for the identifier.",
            "type": "string",
            "x-etsi-mec-cardinality": "1",
            "x-etsi-mec-origin-type": "String"
          }
        }
      },
      "CaReconfNotification": {
        "properties": {
          "associateId": {
            "description": "0 to N identifiers to associate the event for a specific UE or flow.",
            "items": {
              "$ref": "#/components/schemas/AssociateId"
            },
            "minItems": 0,
            "type": "array",
            "x-etsi-mec-cardinality": "0..N",
            "x-etsi-mec-origin-type": "AssociateId"
Michel Roy's avatar
Michel Roy committed
          "carrierAggregationMeasInfo": {
            "description": "This parameter can be repeated to contain information of all the carriers assign for Carrier Aggregation up to M.",
            "items": {
              "type": "object",
              "properties": {
Michel Roy's avatar
Michel Roy committed
                "cellIdNei": {
Michel Roy's avatar
Michel Roy committed
                  "$ref": "#/components/schemas/CellId"
Michel Roy's avatar
Michel Roy committed
                },
                "cellIdSrv": {
Michel Roy's avatar
Michel Roy committed
                  "$ref": "#/components/schemas/CellId"
Michel Roy's avatar
Michel Roy committed
                },
                "rsrpNei": {
                  "description": "Reference Signal Received Power as defined in ETSI TS 136 214 [i.5].",
Michel Roy's avatar
Michel Roy committed
                  "format": "int32",
                  "type": "integer",
Michel Roy's avatar
Michel Roy committed
                  "x-etsi-mec-cardinality": "0..1",
                  "x-etsi-mec-origin-type": "Uint32"
                },
                "rsrpSrv": {
                  "description": "Reference Signal Received Power as defined in ETSI TS 136 214 [i.5].",
Michel Roy's avatar
Michel Roy committed
                  "format": "int32",
                  "type": "integer",
Michel Roy's avatar
Michel Roy committed
                  "x-etsi-mec-cardinality": "0..1",
                  "x-etsi-mec-origin-type": "Uint32"
                },
                "rsrqNei": {
                  "description": "Reference Signal Received Quality as defined in ETSI TS 136 214 [i.5].",
Michel Roy's avatar
Michel Roy committed
                  "format": "int32",
                  "type": "integer",
Michel Roy's avatar
Michel Roy committed
                  "x-etsi-mec-cardinality": "0..1",
                  "x-etsi-mec-origin-type": "Uint32"
                },
                "rsrqSrv": {
                  "description": "Reference Signal Received Quality as defined in ETSI TS 136 214 [i.5].",
Michel Roy's avatar
Michel Roy committed
                  "format": "int32",
                  "type": "integer",
Michel Roy's avatar
Michel Roy committed
                  "x-etsi-mec-cardinality": "0..1",
                  "x-etsi-mec-origin-type": "Uint32"
Michel Roy's avatar
Michel Roy committed
            "minItems": 0,
Michel Roy's avatar
Michel Roy committed
            "required": [
              "cellIdSrv",
              "cellIdNei"
            ],
            "type": "array",
            "x-etsi-mec-cardinality": "0..M",
            "x-etsi-mec-origin-type": "Structure (inlined)"
          },
          "ecgi": {
Michel Roy's avatar
Michel Roy committed
            "$ref": "#/components/schemas/Ecgi"
Michel Roy's avatar
Michel Roy committed
          },
          "notificationType": {
            "description": "Shall be set to \"CaReConfNotification\".",
            "type": "string",
            "x-etsi-mec-cardinality": "1",
            "x-etsi-mec-origin-type": "String"
          },
          "secondaryCellAdd": {
            "description": "",
            "items": {
              "type": "object",
              "properties": {
                "ecgi": {
Michel Roy's avatar
Michel Roy committed
                  "$ref": "#/components/schemas/Ecgi"
Michel Roy's avatar
Michel Roy committed
            "minItems": 0,
Michel Roy's avatar
Michel Roy committed
            "required": [
              "ecgi"
            ],
            "type": "array",
            "x-etsi-mec-cardinality": "0..N",
            "x-etsi-mec-origin-type": "Structure (inlined)"
Michel Roy's avatar
Michel Roy committed
          "secondaryCellRemove": {
            "description": "",
            "items": {
              "type": "object",
              "properties": {
Michel Roy's avatar
Michel Roy committed
                "ecgi": {
Michel Roy's avatar
Michel Roy committed
                  "$ref": "#/components/schemas/Ecgi"
Michel Roy's avatar
Michel Roy committed
            "minItems": 0,
Michel Roy's avatar
Michel Roy committed
            "required": [
              "ecgi"
            ],
            "type": "array",
            "x-etsi-mec-cardinality": "0..N",
            "x-etsi-mec-origin-type": "Structure (inlined)"
          },
          "timeStamp": {
Michel Roy's avatar
Michel Roy committed
            "$ref": "#/components/schemas/TimeStamp"
Michel Roy's avatar
Michel Roy committed
        "required": [
          "notificationType",
          "ecgi"
Michel Roy's avatar
Michel Roy committed
        "type": "object",
        "x-etsi-ref": "6.4.8"
      },
      "CaReconfSubscription": {
        "properties": {
          "_links": {
            "description": "Hyperlink related to the resource. This shall be only included in the HTTP responses and in HTTP PUT requests.",
            "properties": {
              "self": {
Michel Roy's avatar
Michel Roy committed
                "$ref": "#/components/schemas/LinkType"
Michel Roy's avatar
Michel Roy committed
              }
            },
            "required": [
              "self"