{
  "openapi": "3.0.0",
  "info": {
    "title": "RSVP-MIB MIB API",
    "version": "1.0.0",
    "description": "The MIB module to describe the RSVP Protocol\n\n⚠️ **IMPORTANT - MIB DATA ACCESS**:\nThis YANG model exists for SMIv2-to-YANG translation purposes, but MIB data on IOS-XE devices is primarily accessed via **SNMP protocol**, not RESTCONF.\n\n**RESTCONF Limitation**: Many MIB paths may return 404 errors via RESTCONF `/data` endpoints because the device exposes MIB data through SNMP, not the YANG datastore.\n\n**Recommended Access Methods**:\n- Use SNMP (v2c/v3) to query MIB data directly\n- Use NETCONF `<get>` operations for devices supporting YANG-modeled MIB access\n- Check device capabilities: some newer IOS-XE versions may support limited RESTCONF access to specific MIBs\n\n**YANG Model Purpose**: These YANG models define the structure of SNMP MIBs in YANG format for tooling compatibility, but do not guarantee RESTCONF data availability.\n\n\n**📊 YANG Tree:** [View RSVP-MIB structure](https://jeremycohoe.github.io/cisco-ios-xe-openapi-swagger/yang-trees/RSVP-MIB.html)",
    "contact": {
      "name": "Cisco DevNet",
      "url": "https://developer.cisco.com"
    },
    "x-yang-module": "RSVP-MIB",
    "x-model-type": "mib"
  },
  "servers": [
    {
      "url": "https://{device}/restconf",
      "description": "RESTCONF server",
      "variables": {
        "device": {
          "default": "10.1.1.1",
          "description": "Device hostname or IP address"
        }
      }
    }
  ],
  "paths": {
    "/data/RSVP-MIB:rsvpGenObjects": {
      "get": {
        "summary": "Get rsvpGenObjects data",
        "description": "Retrieve rsvpGenObjects operational data from MIB",
        "tags": [
          "RSVP-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "description": "This object\tkeeps a\tcount of the number of bad\n          RSVP\tpackets\treceived.",
                  "properties": {
                    "rsvpBadPackets": {
                      "type": "integer",
                      "description": "This object\tkeeps a\tcount of the number of bad\n          RSVP\tpackets\treceived.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "rsvpSenderNewIndex": {
                      "type": "string",
                      "description": "This  object  is  used  to\tassign\tvalues\tto\n          rsvpSenderNumber   as   described  in  'Textual\n          Conventions for SNMPv2'.  The  network  manager\n          reads  the  object,\tand  then writes the value\n          back\tin the SET that\tcreates\ta new instance\tof\n          rsvpSenderEntry.   If  the  SET  fails with the\n          code\t'inconsistentValue', then the process must\n          be  repeated;  If  the  SET\tsucceeds, then the\n          object is incremented, and the new instance\tis\n          created according to\tthe manager's directions.",
                      "x-yang-type": "snmpv2-tc:TestAndIncr"
                    },
                    "rsvpResvNewIndex": {
                      "type": "string",
                      "description": "This  object  is  used  to\tassign\tvalues\tto\n          rsvpResvNumber   as\t described   in\t  'Textual\n          Conventions for SNMPv2'.  The  network  manager\n          reads  the  object,\tand  then writes the value\n          back\tin the SET that\tcreates\ta new instance\tof\n          rsvpResvEntry.   If the SET fails with the code\n          'inconsistentValue',\tthen the process  must\tbe\n          repeated;  If the SET succeeds, then\tthe object\n          is incremented, and the new instance\tis created\n          according to\tthe manager's directions.",
                      "x-yang-type": "snmpv2-tc:TestAndIncr"
                    },
                    "rsvpResvFwdNewIndex": {
                      "type": "string",
                      "description": "This  object  is  used  to\tassign\tvalues\tto\n          rsvpResvFwdNumber   as  described  in  'Textual\n          Conventions for SNMPv2'.  The  network  manager\n          reads  the  object,\tand  then writes the value\n          back\tin the SET that\tcreates\ta new instance\tof\n          rsvpResvFwdEntry.   If  the\tSET fails with the\n          code\t'inconsistentValue', then the process must\n          be  repeated;  If  the  SET\tsucceeds, then the\n          object is incremented, and the new instance\tis\n          created according to\tthe manager's directions.",
                      "x-yang-type": "snmpv2-tc:TestAndIncr"
                    },
                    "rsvpSessionNewIndex": {
                      "type": "string",
                      "description": "This  object  is  used  to\tassign\tvalues\tto\n          rsvpSessionNumber   as  described  in  'Textual\n          Conventions for SNMPv2'.  The  network  manager\n          reads  the  object,\tand  then writes the value\n          back\tin the SET that\tcreates\ta new instance\tof\n          rsvpSessionEntry.   If  the\tSET fails with the\n          code\t'inconsistentValue', then the process must\n          be  repeated;  If  the  SET\tsucceeds, then the\n          object is incremented, and the new instance\tis\n          created according to\tthe manager's directions.",
                      "x-yang-type": "snmpv2-tc:TestAndIncr"
                    }
                  }
                },
                "example": {
                  "RSVP-MIB:rsvpGenObjects": {
                    "rsvpBadPackets": 1234567890,
                    "rsvpSenderNewIndex": "example-string",
                    "rsvpResvNewIndex": "example-string",
                    "rsvpResvFwdNewIndex": "example-string",
                    "rsvpSessionNewIndex": "example-string"
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-rsvpGenObjects",
        "parameters": [
          {
            "name": "Accept",
            "in": "header",
            "required": false,
            "description": "RESTCONF response media type (RFC 8040)",
            "schema": {
              "type": "string",
              "default": "application/yang-data+json",
              "enum": [
                "application/yang-data+json",
                "application/yang-data+xml"
              ]
            }
          },
          {
            "name": "depth",
            "in": "query",
            "required": false,
            "description": "Limit the depth of returned sub-tree data (RFC 8040 Section 4.8.2). Use 'unbounded' for full depth.",
            "schema": {
              "type": "string",
              "default": "unbounded"
            }
          },
          {
            "name": "fields",
            "in": "query",
            "required": false,
            "description": "Select specific fields to return (RFC 8040 Section 4.8.3). Example: fields=name;status",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "content",
            "in": "query",
            "required": false,
            "description": "Filter by config state: 'config' (config true only), 'nonconfig' (config false only), or 'all'.",
            "schema": {
              "type": "string",
              "enum": [
                "config",
                "nonconfig",
                "all"
              ],
              "default": "all"
            }
          }
        ]
      },
      "x-yang-path": "/rsvpGenObjects",
      "x-restconf-kind": "container"
    },
    "/data/RSVP-MIB:rsvpSessionTable": {
      "get": {
        "summary": "Get rsvpSessionTable data",
        "description": "Retrieve rsvpSessionTable operational data from MIB",
        "tags": [
          "RSVP-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "description": "A table  of\t all  sessions\tseen  by  a  given\n        system.",
                  "properties": {
                    "rsvpSessionEntry": {
                      "type": "array",
                      "description": "A single session seen by a given system.",
                      "items": {
                        "type": "object",
                        "properties": {
                          "rsvpSessionNumber": {
                            "type": "string",
                            "description": "The\tnumber of this session.\t This is for  SNMP\n            Indexing  purposes  only and\thas no relation\tto\n            any protocol\tvalue.",
                            "x-yang-type": "integrated-services:SessionNumber"
                          },
                          "rsvpSessionType": {
                            "type": "string",
                            "description": "The\ttype of\tsession\t(IP4, IP6, IP6\twith  flow\n            information,\tetc).",
                            "x-yang-type": "integrated-services:SessionType"
                          },
                          "rsvpSessionDestAddr": {
                            "type": "string",
                            "description": "The\tdestination address used by all\tsenders\tin\n            this\t session.   This object\tmay not\tbe changed\n            when\tthe  value  of\tthe  RowStatus\tobject\tis\n            'active'.",
                            "format": "binary"
                          },
                          "rsvpSessionDestAddrLength": {
                            "type": "integer",
                            "description": "The\tCIDR prefix length of the session address,\n            which   is\t32  for\t IP4  host  and\t multicast\n            addresses, and 128  for  IP6\t addresses.   This\n            object may not be changed when the value of the\n            RowStatus object is 'active'.",
                            "minimum": -2147483648,
                            "maximum": 2147483647
                          },
                          "rsvpSessionProtocol": {
                            "type": "string",
                            "description": "The\tIP Protocol used by  this  session.   This\n            object may not be changed when the value of the\n            RowStatus object is 'active'.",
                            "x-yang-type": "integrated-services:Protocol"
                          },
                          "rsvpSessionPort": {
                            "type": "string",
                            "description": "The\t UDP  or  TCP  port  number  used   as\t a\n            destination\t port  for  all\t senders  in  this\n            session.  If\tthe IP protocol\tin use,\t specified\n            by  rsvpSenderProtocol, is 50 (ESP) or 51 (AH),\n            this\t represents  a\tvirtual\t destination  port\n            number.   A value of\tzero indicates that the\tIP\n            protocol in use  does  not  have  ports.   This\n            object may not be changed when the value of the\n            RowStatus object is 'active'.",
                            "x-yang-type": "integrated-services:Port"
                          },
                          "rsvpSessionSenders": {
                            "type": "integer",
                            "description": "The\tnumber of distinct senders currently known\n            to be part of this session.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "rsvpSessionReceivers": {
                            "type": "integer",
                            "description": "The\tnumber of reservations being requested\tof\n            this\tsystem for this\tsession.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "rsvpSessionRequests": {
                            "type": "integer",
                            "description": "The\tnumber of reservation requests this system\n            is sending upstream for this\tsession.",
                            "minimum": 0,
                            "maximum": 4294967295
                          }
                        }
                      }
                    }
                  }
                },
                "example": {
                  "RSVP-MIB:rsvpSessionTable": {
                    "rsvpSessionEntry": [
                      {
                        "rsvpSessionNumber": "example-string",
                        "rsvpSessionType": "ethernetCsmacd(6)",
                        "rsvpSessionDestAddr": "192.168.1.1",
                        "rsvpSessionDestAddrLength": -2147483648,
                        "rsvpSessionProtocol": "example-string",
                        "rsvpSessionPort": "example-string",
                        "rsvpSessionSenders": 0,
                        "rsvpSessionReceivers": 0,
                        "rsvpSessionRequests": 0
                      },
                      {
                        "rsvpSessionNumber": "example-string",
                        "rsvpSessionType": "ethernetCsmacd(6)",
                        "rsvpSessionDestAddr": "192.168.1.1",
                        "rsvpSessionDestAddrLength": -2147483648,
                        "rsvpSessionProtocol": "example-string",
                        "rsvpSessionPort": "example-string",
                        "rsvpSessionSenders": 0,
                        "rsvpSessionReceivers": 0,
                        "rsvpSessionRequests": 0
                      },
                      {
                        "rsvpSessionNumber": "example-string",
                        "rsvpSessionType": "ethernetCsmacd(6)",
                        "rsvpSessionDestAddr": "192.168.1.1",
                        "rsvpSessionDestAddrLength": -2147483648,
                        "rsvpSessionProtocol": "example-string",
                        "rsvpSessionPort": "example-string",
                        "rsvpSessionSenders": 0,
                        "rsvpSessionReceivers": 0,
                        "rsvpSessionRequests": 0
                      }
                    ]
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-rsvpSessionTable",
        "parameters": [
          {
            "name": "Accept",
            "in": "header",
            "required": false,
            "description": "RESTCONF response media type (RFC 8040)",
            "schema": {
              "type": "string",
              "default": "application/yang-data+json",
              "enum": [
                "application/yang-data+json",
                "application/yang-data+xml"
              ]
            }
          },
          {
            "name": "depth",
            "in": "query",
            "required": false,
            "description": "Limit the depth of returned sub-tree data (RFC 8040 Section 4.8.2). Use 'unbounded' for full depth.",
            "schema": {
              "type": "string",
              "default": "unbounded"
            }
          },
          {
            "name": "fields",
            "in": "query",
            "required": false,
            "description": "Select specific fields to return (RFC 8040 Section 4.8.3). Example: fields=name;status",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "content",
            "in": "query",
            "required": false,
            "description": "Filter by config state: 'config' (config true only), 'nonconfig' (config false only), or 'all'.",
            "schema": {
              "type": "string",
              "enum": [
                "config",
                "nonconfig",
                "all"
              ],
              "default": "all"
            }
          }
        ]
      },
      "x-yang-path": "/rsvpSessionTable",
      "x-restconf-kind": "container"
    },
    "/data/RSVP-MIB:rsvpSessionTable/rsvpSessionEntry": {
      "get": {
        "summary": "Get rsvpSessionEntry list",
        "description": "Retrieve list of rsvpSessionEntry entries from MIB",
        "tags": [
          "RSVP-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "A single session seen by a given system.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "rsvpSessionNumber": {
                        "type": "string",
                        "description": "The\tnumber of this session.\t This is for  SNMP\n            Indexing  purposes  only and\thas no relation\tto\n            any protocol\tvalue.",
                        "x-yang-type": "integrated-services:SessionNumber"
                      },
                      "rsvpSessionType": {
                        "type": "string",
                        "description": "The\ttype of\tsession\t(IP4, IP6, IP6\twith  flow\n            information,\tetc).",
                        "x-yang-type": "integrated-services:SessionType"
                      },
                      "rsvpSessionDestAddr": {
                        "type": "string",
                        "description": "The\tdestination address used by all\tsenders\tin\n            this\t session.   This object\tmay not\tbe changed\n            when\tthe  value  of\tthe  RowStatus\tobject\tis\n            'active'.",
                        "format": "binary"
                      },
                      "rsvpSessionDestAddrLength": {
                        "type": "integer",
                        "description": "The\tCIDR prefix length of the session address,\n            which   is\t32  for\t IP4  host  and\t multicast\n            addresses, and 128  for  IP6\t addresses.   This\n            object may not be changed when the value of the\n            RowStatus object is 'active'.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "rsvpSessionProtocol": {
                        "type": "string",
                        "description": "The\tIP Protocol used by  this  session.   This\n            object may not be changed when the value of the\n            RowStatus object is 'active'.",
                        "x-yang-type": "integrated-services:Protocol"
                      },
                      "rsvpSessionPort": {
                        "type": "string",
                        "description": "The\t UDP  or  TCP  port  number  used   as\t a\n            destination\t port  for  all\t senders  in  this\n            session.  If\tthe IP protocol\tin use,\t specified\n            by  rsvpSenderProtocol, is 50 (ESP) or 51 (AH),\n            this\t represents  a\tvirtual\t destination  port\n            number.   A value of\tzero indicates that the\tIP\n            protocol in use  does  not  have  ports.   This\n            object may not be changed when the value of the\n            RowStatus object is 'active'.",
                        "x-yang-type": "integrated-services:Port"
                      },
                      "rsvpSessionSenders": {
                        "type": "integer",
                        "description": "The\tnumber of distinct senders currently known\n            to be part of this session.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "rsvpSessionReceivers": {
                        "type": "integer",
                        "description": "The\tnumber of reservations being requested\tof\n            this\tsystem for this\tsession.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "rsvpSessionRequests": {
                        "type": "integer",
                        "description": "The\tnumber of reservation requests this system\n            is sending upstream for this\tsession.",
                        "minimum": 0,
                        "maximum": 4294967295
                      }
                    }
                  }
                },
                "example": {
                  "RSVP-MIB:rsvpSessionEntry": [
                    {
                      "rsvpSessionNumber": "example-string",
                      "rsvpSessionType": "ethernetCsmacd(6)",
                      "rsvpSessionDestAddr": "192.168.1.1",
                      "rsvpSessionDestAddrLength": -2147483648,
                      "rsvpSessionProtocol": "example-string",
                      "rsvpSessionPort": "example-string",
                      "rsvpSessionSenders": 0,
                      "rsvpSessionReceivers": 0,
                      "rsvpSessionRequests": 0
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-rsvpSessionEntry",
        "parameters": [
          {
            "name": "Accept",
            "in": "header",
            "required": false,
            "description": "RESTCONF response media type (RFC 8040)",
            "schema": {
              "type": "string",
              "default": "application/yang-data+json",
              "enum": [
                "application/yang-data+json",
                "application/yang-data+xml"
              ]
            }
          },
          {
            "name": "depth",
            "in": "query",
            "required": false,
            "description": "Limit the depth of returned sub-tree data (RFC 8040 Section 4.8.2). Use 'unbounded' for full depth.",
            "schema": {
              "type": "string",
              "default": "unbounded"
            }
          },
          {
            "name": "fields",
            "in": "query",
            "required": false,
            "description": "Select specific fields to return (RFC 8040 Section 4.8.3). Example: fields=name;status",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "content",
            "in": "query",
            "required": false,
            "description": "Filter by config state: 'config' (config true only), 'nonconfig' (config false only), or 'all'.",
            "schema": {
              "type": "string",
              "enum": [
                "config",
                "nonconfig",
                "all"
              ],
              "default": "all"
            }
          }
        ]
      },
      "x-yang-path": "/rsvpSessionTable/rsvpSessionEntry",
      "x-restconf-kind": "container"
    },
    "/data/RSVP-MIB:rsvpSessionTable/rsvpSessionEntry={rsvpSessionNumber}": {
      "get": {
        "summary": "Get rsvpSessionEntry entry",
        "description": "Retrieve specific rsvpSessionEntry entry by key from MIB",
        "tags": [
          "RSVP-MIB"
        ],
        "parameters": [
          {
            "name": "rsvpSessionNumber",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            },
            "example": "1"
          },
          {
            "name": "Accept",
            "in": "header",
            "required": false,
            "description": "RESTCONF response media type (RFC 8040)",
            "schema": {
              "type": "string",
              "default": "application/yang-data+json",
              "enum": [
                "application/yang-data+json",
                "application/yang-data+xml"
              ]
            }
          },
          {
            "name": "depth",
            "in": "query",
            "required": false,
            "description": "Limit the depth of returned sub-tree data (RFC 8040 Section 4.8.2). Use 'unbounded' for full depth.",
            "schema": {
              "type": "string",
              "default": "unbounded"
            }
          },
          {
            "name": "fields",
            "in": "query",
            "required": false,
            "description": "Select specific fields to return (RFC 8040 Section 4.8.3). Example: fields=name;status",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "content",
            "in": "query",
            "required": false,
            "description": "Filter by config state: 'config' (config true only), 'nonconfig' (config false only), or 'all'.",
            "schema": {
              "type": "string",
              "enum": [
                "config",
                "nonconfig",
                "all"
              ],
              "default": "all"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "rsvpSessionNumber": {
                      "type": "string",
                      "description": "The\tnumber of this session.\t This is for  SNMP\n            Indexing  purposes  only and\thas no relation\tto\n            any protocol\tvalue.",
                      "x-yang-type": "integrated-services:SessionNumber"
                    },
                    "rsvpSessionType": {
                      "type": "string",
                      "description": "The\ttype of\tsession\t(IP4, IP6, IP6\twith  flow\n            information,\tetc).",
                      "x-yang-type": "integrated-services:SessionType"
                    },
                    "rsvpSessionDestAddr": {
                      "type": "string",
                      "description": "The\tdestination address used by all\tsenders\tin\n            this\t session.   This object\tmay not\tbe changed\n            when\tthe  value  of\tthe  RowStatus\tobject\tis\n            'active'.",
                      "format": "binary"
                    },
                    "rsvpSessionDestAddrLength": {
                      "type": "integer",
                      "description": "The\tCIDR prefix length of the session address,\n            which   is\t32  for\t IP4  host  and\t multicast\n            addresses, and 128  for  IP6\t addresses.   This\n            object may not be changed when the value of the\n            RowStatus object is 'active'.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "rsvpSessionProtocol": {
                      "type": "string",
                      "description": "The\tIP Protocol used by  this  session.   This\n            object may not be changed when the value of the\n            RowStatus object is 'active'.",
                      "x-yang-type": "integrated-services:Protocol"
                    },
                    "rsvpSessionPort": {
                      "type": "string",
                      "description": "The\t UDP  or  TCP  port  number  used   as\t a\n            destination\t port  for  all\t senders  in  this\n            session.  If\tthe IP protocol\tin use,\t specified\n            by  rsvpSenderProtocol, is 50 (ESP) or 51 (AH),\n            this\t represents  a\tvirtual\t destination  port\n            number.   A value of\tzero indicates that the\tIP\n            protocol in use  does  not  have  ports.   This\n            object may not be changed when the value of the\n            RowStatus object is 'active'.",
                      "x-yang-type": "integrated-services:Port"
                    },
                    "rsvpSessionSenders": {
                      "type": "integer",
                      "description": "The\tnumber of distinct senders currently known\n            to be part of this session.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "rsvpSessionReceivers": {
                      "type": "integer",
                      "description": "The\tnumber of reservations being requested\tof\n            this\tsystem for this\tsession.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "rsvpSessionRequests": {
                      "type": "integer",
                      "description": "The\tnumber of reservation requests this system\n            is sending upstream for this\tsession.",
                      "minimum": 0,
                      "maximum": 4294967295
                    }
                  }
                },
                "example": {
                  "RSVP-MIB:rsvpSessionEntry": {
                    "rsvpSessionNumber": "example-string",
                    "rsvpSessionType": "ethernetCsmacd(6)",
                    "rsvpSessionDestAddr": "192.168.1.1",
                    "rsvpSessionDestAddrLength": -2147483648,
                    "rsvpSessionProtocol": "example-string",
                    "rsvpSessionPort": "example-string",
                    "rsvpSessionSenders": 0,
                    "rsvpSessionReceivers": 0,
                    "rsvpSessionRequests": 0
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-rsvpSessionEntry-2"
      },
      "x-yang-path": "/rsvpSessionTable/rsvpSessionEntry={rsvpSessionNumber}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "rsvpSessionNumber"
      ]
    },
    "/data/RSVP-MIB:rsvpSenderTable": {
      "get": {
        "summary": "Get rsvpSenderTable data",
        "description": "Retrieve rsvpSenderTable operational data from MIB",
        "tags": [
          "RSVP-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "description": "Information\tdescribing the\tstate  information\n        displayed by\tsenders\tin PATH\tmessages.",
                  "properties": {
                    "rsvpSenderEntry": {
                      "type": "array",
                      "description": "Information\tdescribing the\tstate  information\n          displayed by\ta single sender's PATH message.",
                      "items": {
                        "type": "object",
                        "properties": {
                          "rsvpSessionNumber": {
                            "type": "string",
                            "description": "rsvpSessionNumber",
                            "x-yang-type": "leafref"
                          },
                          "rsvpSenderNumber": {
                            "type": "string",
                            "description": "The\tnumber of this sender.\tThis is\t for  SNMP\n            Indexing  purposes  only and\thas no relation\tto\n            any protocol\tvalue.",
                            "x-yang-type": "integrated-services:SessionNumber"
                          },
                          "rsvpSenderType": {
                            "type": "string",
                            "description": "The\ttype of\tsession\t(IP4, IP6, IP6\twith  flow\n            information,\tetc).",
                            "x-yang-type": "integrated-services:SessionType"
                          },
                          "rsvpSenderDestAddr": {
                            "type": "string",
                            "description": "The\tdestination address used by all\tsenders\tin\n            this\t session.   This object\tmay not\tbe changed\n            when\tthe  value  of\tthe  RowStatus\tobject\tis\n            'active'.",
                            "format": "binary"
                          },
                          "rsvpSenderAddr": {
                            "type": "string",
                            "description": "The\tsource address used by this sender in this\n            session.   This  object may not be changed when\n            the value of\tthe RowStatus object is\t'active'.",
                            "format": "binary"
                          },
                          "rsvpSenderDestAddrLength": {
                            "type": "integer",
                            "description": "The\tlength of the destination address in bits.\n            This\t is  the CIDR Prefix Length, which for IP4\n            hosts and multicast addresses is 32 bits.  This\n            object may not be changed when the value of the\n            RowStatus object is 'active'.",
                            "minimum": -2147483648,
                            "maximum": 2147483647
                          },
                          "rsvpSenderAddrLength": {
                            "type": "integer",
                            "description": "The\tlength of the sender's\taddress\t in  bits.\n            This\t is  the CIDR Prefix Length, which for IP4\n            hosts and multicast addresses is 32 bits.  This\n            object may not be changed when the value of the\n            RowStatus object is 'active'.",
                            "minimum": -2147483648,
                            "maximum": 2147483647
                          },
                          "rsvpSenderProtocol": {
                            "type": "string",
                            "description": "The\tIP Protocol used by  this  session.   This\n            object may not be changed when the value of the\n            RowStatus object is 'active'.",
                            "x-yang-type": "integrated-services:Protocol"
                          },
                          "rsvpSenderDestPort": {
                            "type": "string",
                            "description": "The\t UDP  or  TCP  port  number  used   as\t a\n            destination\t port  for  all\t senders  in  this\n            session.  If\tthe IP protocol\tin use,\t specified\n            by  rsvpSenderProtocol, is 50 (ESP) or 51 (AH),\n            this\t represents  a\tvirtual\t destination  port\n            number.   A value of\tzero indicates that the\tIP\n            protocol in use  does  not  have  ports.   This\n            object may not be changed when the value of the\n            RowStatus object is 'active'.",
                            "x-yang-type": "integrated-services:Port"
                          },
                          "rsvpSenderPort": {
                            "type": "string",
                            "description": "The\tUDP or TCP port\tnumber used  as\t a  source\n            port\t for  this sender in this session.  If the\n            IP\t protocol    in\t   use,\t   specified\tby\n            rsvpSenderProtocol is 50 (ESP) or 51\t(AH), this\n            represents a\tgeneralized port identifier (GPI).\n            A  value of zero indicates that the IP protocol\n            in use does not have\tports.\t This  object  may\n            not\tbe changed when\tthe value of the RowStatus\n            object is 'active'.",
                            "x-yang-type": "integrated-services:Port"
                          },
                          "rsvpSenderFlowId": {
                            "type": "integer",
                            "description": "The\tflow ID\tthat  this  sender  is\tusing,\tif\n            this\t is  an\tIPv6 session.",
                            "minimum": -2147483648,
                            "maximum": 2147483647
                          },
                          "rsvpSenderHopAddr": {
                            "type": "string",
                            "description": "The\taddress\tused  by  the  previous\t RSVP  hop\n            (which may be the original sender).",
                            "format": "binary"
                          },
                          "rsvpSenderHopLih": {
                            "type": "integer",
                            "description": "The\t Logical  Interface  Handle  used  by  the\n            previous  RSVP  hop\t(which may be the original\n            sender).",
                            "minimum": -2147483648,
                            "maximum": 2147483647
                          },
                          "rsvpSenderInterface": {
                            "type": "string",
                            "description": "The\tifIndex\tvalue of the  interface\t on  which\n            this\tPATH message was most recently received.",
                            "x-yang-type": "if-mib:InterfaceIndex"
                          },
                          "rsvpSenderTSpecRate": {
                            "type": "string",
                            "description": "The\tAverage\tBit  Rate  of  the  sender's  data\n            stream.    Within  a\t transmission  burst,  the\n            arrival   rate    may    be\t  as\tfast\tas\n            rsvpSenderTSpecPeakRate  (if\t supported  by the\n            service model); however, averaged across two\tor\n            more\t burst\tintervals,  the\t rate  should  not\n            exceed rsvpSenderTSpecRate.\n            \n            Note\tthat this is a prediction, often based\ton\n            the\tgeneral\t capability  of\ta type of codec\tor\n            particular encoding;\tthe measured average  rate\n            may be significantly\tlower.",
                            "x-yang-type": "integrated-services:BitRate"
                          },
                          "rsvpSenderTSpecPeakRate": {
                            "type": "string",
                            "description": "The\tPeak Bit Rate of the sender's data stream.\n            Traffic  arrival is not expected to exceed this\n            rate\tat any time, apart  from  the  effects\tof\n            jitter in the network.  If not specified in the\n            TSpec, this returns zero or noSuchValue.",
                            "x-yang-type": "integrated-services:BitRate"
                          },
                          "rsvpSenderTSpecBurst": {
                            "type": "string",
                            "description": "The\tsize of\tthe largest  burst  expected  from\n            the sender at a time.",
                            "x-yang-type": "integrated-services:BurstSize"
                          },
                          "rsvpSenderTSpecMinTU": {
                            "type": "string",
                            "description": "The\tminimum\tmessage\tsize for  this\tflow.  The\n            policing  algorithm will treat smaller messages\n            as though they are this size.",
                            "x-yang-type": "integrated-services:MessageSize"
                          },
                          "rsvpSenderTSpecMaxTU": {
                            "type": "string",
                            "description": "The\tmaximum\tmessage\tsize for  this\tflow.  The\n            admission  algorithm\t will  reject TSpecs whose\n            Maximum Transmission\tUnit, plus  the\t interface\n            headers, exceed the interface MTU.",
                            "x-yang-type": "integrated-services:MessageSize"
                          },
                          "rsvpSenderInterval": {
                            "type": "string",
                            "description": "The\t interval  between  refresh  messages\tas\n            advertised by the Previous Hop.",
                            "x-yang-type": "RSVP-MIB:RefreshInterval"
                          },
                          "rsvpSenderRSVPHop": {
                            "type": "boolean",
                            "description": "If TRUE, the node believes that  the  previous\n            IP  hop  is\tan  RSVP  hop.\tIf FALSE, the node\n            believes that the previous IP hop may not be\tan\n            RSVP\thop."
                          },
                          "rsvpSenderLastChange": {
                            "type": "string",
                            "description": "The\ttime of\t the  last  change  in\tthis  PATH\n            message;  This  is either the first time it was\n            received or the time\tof the most recent  change\n            in parameters.",
                            "x-yang-type": "yang:timestamp"
                          },
                          "rsvpSenderPolicy": {
                            "type": "string",
                            "description": "The\tcontents of the\tpolicy\tobject,\t displayed\n            as an uninterpreted string of octets, including\n            the object header.  In the absence of  such\tan\n            object, this\tshould be of zero length.",
                            "format": "binary"
                          },
                          "rsvpSenderAdspecBreak": {
                            "type": "boolean",
                            "description": "The\tglobal break bit general  characterization\n            parameter  from  the\tADSPEC.\t If TRUE, at least\n            one non-IS hop was detected in  the\tpath.\tIf\n            FALSE, no non-IS hops were detected."
                          },
                          "rsvpSenderAdspecHopCount": {
                            "type": "integer",
                            "description": "The\t  hop\tcount\tgeneral\t  characterization\n            parameter from the ADSPEC.  A return\tof zero\tor\n            noSuchValue\tindicates  one\tof  the\t following\n            conditions:\n            \n               the invalid bit was set\n               the parameter was\tnot present",
                            "minimum": -2147483648,
                            "maximum": 2147483647
                          },
                          "rsvpSenderAdspecPathBw": {
                            "type": "string",
                            "description": "The\t  path\t  bandwidth    estimate\t   general\n            characterization  parameter from the\tADSPEC.\t A\n            return of zero or noSuchValue indicates one\tof\n            the following conditions:\n            \n               the invalid bit was set\n               the parameter was\tnot present",
                            "x-yang-type": "integrated-services:BitRate"
                          },
                          "rsvpSenderAdspecMinLatency": {
                            "type": "integer",
                            "description": "The\t   minimum    path     latency\t   general\n            characterization  parameter from the\tADSPEC.\t A\n            return of zero or noSuchValue indicates one\tof\n            the following conditions:\n            \n               the invalid bit was set\n               the parameter was\tnot present",
                            "minimum": -2147483648,
                            "maximum": 2147483647
                          },
                          "rsvpSenderAdspecMtu": {
                            "type": "integer",
                            "description": "The\tcomposed Maximum Transmission Unit general\n            characterization  parameter from the\tADSPEC.\t A\n            return of zero or noSuchValue indicates one\tof\n            the following conditions:\n            \n               the invalid bit was set\n               the parameter was\tnot present",
                            "minimum": -2147483648,
                            "maximum": 2147483647
                          },
                          "rsvpSenderAdspecGuaranteedSvc": {
                            "type": "boolean",
                            "description": "If TRUE,  the  ADSPEC  contains  a\tGuaranteed\n            Service  fragment.\tIf  FALSE, the ADSPEC does\n            not contain a Guaranteed Service fragment."
                          },
                          "rsvpSenderAdspecGuaranteedBreak": {
                            "type": "boolean",
                            "description": "If TRUE, the Guaranteed Service  fragment  has\n            its\t'break'\t bit  set,  indicating that one\tor\n            more\tnodes along the\tpath do\t not  support  the\n            guaranteed\t  service.     If    FALSE,    and\n            rsvpSenderAdspecGuaranteedSvc  is   TRUE,   the\n            'break' bit is not set.\n            \n            If rsvpSenderAdspecGuaranteedSvc is FALSE, this\n            returns FALSE or noSuchValue."
                          },
                          "rsvpSenderAdspecGuaranteedCtot": {
                            "type": "integer",
                            "description": "If rsvpSenderAdspecGuaranteedSvc is\tTRUE, this\n            is\tthe  end-to-end\t composed  value  for  the\n            guaranteed service 'C' parameter.  A\treturn\tof\n            zero\t  or  noSuchValue  indicates  one  of  the\n            following conditions:\n            \n               the invalid bit was set\n               the parameter was\tnot present\n            \n            If rsvpSenderAdspecGuaranteedSvc is FALSE, this\n            returns zero\tor noSuchValue.",
                            "minimum": -2147483648,
                            "maximum": 2147483647
                          },
                          "rsvpSenderAdspecGuaranteedDtot": {
                            "type": "integer",
                            "description": "If rsvpSenderAdspecGuaranteedSvc is\tTRUE, this\n            is\tthe  end-to-end\t composed  value  for  the\n            guaranteed service 'D' parameter.  A\treturn\tof\n            zero\t  or  noSuchValue  indicates  one  of  the\n            following conditions:\n            \n               the invalid bit was set\n               the parameter was\tnot present\n            \n            If rsvpSenderAdspecGuaranteedSvc is FALSE, this\n            returns zero\tor noSuchValue.",
                            "minimum": -2147483648,
                            "maximum": 2147483647
                          },
                          "rsvpSenderAdspecGuaranteedCsum": {
                            "type": "integer",
                            "description": "If rsvpSenderAdspecGuaranteedSvc is\tTRUE, this\n            is\tthe  composed  value  for  the\tguaranteed\n            service 'C' parameter since the last\t reshaping\n            point.    A\t return\t of  zero  or  noSuchValue\n            indicates one of the\tfollowing conditions:\n            \n               the invalid bit was set\n               the parameter was\tnot present\n            \n            If rsvpSenderAdspecGuaranteedSvc is FALSE, this\n            returns zero\tor noSuchValue.",
                            "minimum": -2147483648,
                            "maximum": 2147483647
                          },
                          "rsvpSenderAdspecGuaranteedDsum": {
                            "type": "integer",
                            "description": "If rsvpSenderAdspecGuaranteedSvc is\tTRUE, this\n            is\tthe  composed  value  for  the\tguaranteed\n            service 'D' parameter since the last\t reshaping\n            point.    A\t return\t of  zero  or  noSuchValue\n            indicates one of the\tfollowing conditions:\n            \n               the invalid bit was set\n               the parameter was\tnot present\n            \n            If rsvpSenderAdspecGuaranteedSvc is FALSE, this\n            returns zero\tor noSuchValue.",
                            "minimum": -2147483648,
                            "maximum": 2147483647
                          },
                          "rsvpSenderAdspecGuaranteedHopCount": {
                            "type": "integer",
                            "description": "If rsvpSenderAdspecGuaranteedSvc is\tTRUE, this\n            is  the  service-specific  override\tof the hop\n            count general characterization  parameter  from\n            the\tADSPEC.\t  A  return of zero or noSuchValue\n            indicates one of the\tfollowing conditions:\n            \n               the invalid bit was set\n               the parameter was\tnot present\n            \n            If rsvpSenderAdspecGuaranteedSvc is FALSE, this\n            returns zero\tor noSuchValue.",
                            "minimum": -2147483648,
                            "maximum": 2147483647
                          },
                          "rsvpSenderAdspecGuaranteedPathBw": {
                            "type": "string",
                            "description": "If rsvpSenderAdspecGuaranteedSvc is\tTRUE, this\n            is  the  service-specific  override of the path\n            bandwidth  estimate\tgeneral\t  characterization\n            parameter from the ADSPEC.  A return\tof zero\tor\n            noSuchValue\tindicates  one\tof  the\t following\n            conditions:\n            \n               the invalid bit was set\n               the parameter was\tnot present\n            \n            If rsvpSenderAdspecGuaranteedSvc is FALSE, this\n            returns zero\tor noSuchValue.",
                            "x-yang-type": "integrated-services:BitRate"
                          },
                          "rsvpSenderAdspecGuaranteedMinLatency": {
                            "type": "integer",
                            "description": "If rsvpSenderAdspecGuaranteedSvc is\tTRUE, this\n            is the service-specific override of the minimum\n            path\tlatency\tgeneral\tcharacterization parameter\n            from\t  the\tADSPEC.\t   A  return  of  zero\tor\n            noSuchValue\tindicates  one\tof  the\t following\n            conditions:\n            \n               the invalid bit was set\n               the parameter was\tnot present\n            \n            If rsvpSenderAdspecGuaranteedSvc is FALSE, this\n            returns zero\tor noSuchValue.",
                            "minimum": -2147483648,
                            "maximum": 2147483647
                          },
                          "rsvpSenderAdspecGuaranteedMtu": {
                            "type": "integer",
                            "description": "If rsvpSenderAdspecGuaranteedSvc is\tTRUE, this\n            is\tthe   service-specific\t override  of  the\n            composed  Maximum  Transmission  Unit   general\n            characterization  parameter from the\tADSPEC.\t A\n            return of zero or noSuchValue indicates one\tof\n            the following conditions:\n            \n               the invalid bit was set\n               the parameter was\tnot present\n            \n            If rsvpSenderAdspecGuaranteedSvc is FALSE, this\n            returns zero\tor noSuchValue.",
                            "minimum": -2147483648,
                            "maximum": 2147483647
                          },
                          "rsvpSenderAdspecCtrlLoadSvc": {
                            "type": "boolean",
                            "description": "If TRUE, the ADSPEC\tcontains a Controlled Load\n            Service  fragment.\tIf  FALSE, the ADSPEC does\n            not\t contain   a   Controlled   Load   Service\n            fragment."
                          },
                          "rsvpSenderAdspecCtrlLoadBreak": {
                            "type": "boolean",
                            "description": "If TRUE, the Controlled Load Service  fragment\n            has its 'break' bit set, indicating that one\tor\n            more\tnodes along the\tpath do\t not  support  the\n            controlled\tload   service.\t   If  FALSE,  and\n            rsvpSenderAdspecCtrlLoadSvc\t is   TRUE,    the\n            'break' bit is not set.\n            \n            If rsvpSenderAdspecCtrlLoadSvc is  FALSE,  this\n            returns FALSE or noSuchValue."
                          },
                          "rsvpSenderAdspecCtrlLoadHopCount": {
                            "type": "integer",
                            "description": "If rsvpSenderAdspecCtrlLoadSvc is  TRUE,  this\n            is  the  service-specific  override\tof the hop\n            count general characterization  parameter  from\n            the\tADSPEC.\t  A  return of zero or noSuchValue\n            indicates one of the\tfollowing conditions:\n            \n               the invalid bit was set\n               the parameter was\tnot present\n            \n            If rsvpSenderAdspecCtrlLoadSvc is  FALSE,  this\n            returns zero\tor noSuchValue.",
                            "minimum": -2147483648,
                            "maximum": 2147483647
                          },
                          "rsvpSenderAdspecCtrlLoadPathBw": {
                            "type": "string",
                            "description": "If rsvpSenderAdspecCtrlLoadSvc is  TRUE,  this\n            is  the  service-specific  override of the path\n            bandwidth  estimate\tgeneral\t  characterization\n            parameter from the ADSPEC.  A return\tof zero\tor\n            noSuchValue\tindicates  one\tof  the\t following\n            conditions:\n            \n               the invalid bit was set\n               the parameter was\tnot present\n            \n            If rsvpSenderAdspecCtrlLoadSvc is  FALSE,  this\n            returns zero\tor noSuchValue.",
                            "x-yang-type": "integrated-services:BitRate"
                          },
                          "rsvpSenderAdspecCtrlLoadMinLatency": {
                            "type": "integer",
                            "description": "If rsvpSenderAdspecCtrlLoadSvc is  TRUE,  this\n            is the service-specific override of the minimum\n            path\tlatency\tgeneral\tcharacterization parameter\n            from\t  the\tADSPEC.\t   A  return  of  zero\tor\n            noSuchValue\tindicates  one\tof  the\t following\n            conditions:\n            \n               the invalid bit was set\n               the parameter was\tnot present\n            \n            If rsvpSenderAdspecCtrlLoadSvc is  FALSE,  this\n            returns zero\tor noSuchValue.",
                            "minimum": -2147483648,
                            "maximum": 2147483647
                          },
                          "rsvpSenderAdspecCtrlLoadMtu": {
                            "type": "integer",
                            "description": "If rsvpSenderAdspecCtrlLoadSvc is  TRUE,  this\n            is\tthe   service-specific\t override  of  the\n            composed  Maximum  Transmission  Unit   general\n            characterization  parameter from the\tADSPEC.\t A\n            return of zero or noSuchValue indicates one\tof\n            the following conditions:\n            \n               the invalid bit was set\n               the parameter was\tnot present\n            \n            If rsvpSenderAdspecCtrlLoadSvc is  FALSE,  this\n            returns zero\tor noSuchValue.",
                            "minimum": -2147483648,
                            "maximum": 2147483647
                          },
                          "rsvpSenderStatus": {
                            "type": "string",
                            "description": "'active' for all active PATH  messages.   This\n            object  may\tbe  used  to  install  static PATH\n            information or delete PATH information.",
                            "x-yang-type": "snmpv2-tc:RowStatus"
                          },
                          "rsvpSenderTTL": {
                            "type": "integer",
                            "description": "The\tTTL value in the RSVP header that was last\n            received.",
                            "minimum": -2147483648,
                            "maximum": 2147483647
                          }
                        }
                      }
                    }
                  }
                },
                "example": {
                  "RSVP-MIB:rsvpSenderTable": {
                    "rsvpSenderEntry": [
                      {
                        "rsvpSessionNumber": "example-string",
                        "rsvpSenderNumber": "example-string",
                        "rsvpSenderType": "ethernetCsmacd(6)",
                        "rsvpSenderDestAddr": "192.168.1.1",
                        "rsvpSenderAddr": "192.168.1.1",
                        "rsvpSenderDestAddrLength": -2147483648,
                        "rsvpSenderAddrLength": -2147483648,
                        "rsvpSenderProtocol": "example-string",
                        "rsvpSenderDestPort": "example-string",
                        "rsvpSenderPort": "example-string",
                        "rsvpSenderFlowId": -2147483648,
                        "rsvpSenderHopAddr": "192.168.1.1",
                        "rsvpSenderHopLih": -2147483648,
                        "rsvpSenderInterface": "GigabitEthernet1/0/1",
                        "rsvpSenderTSpecRate": "example-string",
                        "rsvpSenderTSpecPeakRate": "example-string",
                        "rsvpSenderTSpecBurst": "example-string",
                        "rsvpSenderTSpecMinTU": "example-string",
                        "rsvpSenderTSpecMaxTU": "example-string",
                        "rsvpSenderInterval": "example-string",
                        "rsvpSenderRSVPHop": true,
                        "rsvpSenderLastChange": "example-string",
                        "rsvpSenderPolicy": "example-string",
                        "rsvpSenderAdspecBreak": true,
                        "rsvpSenderAdspecHopCount": -2147483648,
                        "rsvpSenderAdspecPathBw": "example-string",
                        "rsvpSenderAdspecMinLatency": -2147483648,
                        "rsvpSenderAdspecMtu": 1500,
                        "rsvpSenderAdspecGuaranteedSvc": true,
                        "rsvpSenderAdspecGuaranteedBreak": true,
                        "rsvpSenderAdspecGuaranteedCtot": -2147483648,
                        "rsvpSenderAdspecGuaranteedDtot": -2147483648,
                        "rsvpSenderAdspecGuaranteedCsum": -2147483648,
                        "rsvpSenderAdspecGuaranteedDsum": -2147483648,
                        "rsvpSenderAdspecGuaranteedHopCount": -2147483648,
                        "rsvpSenderAdspecGuaranteedPathBw": "example-string",
                        "rsvpSenderAdspecGuaranteedMinLatency": -2147483648,
                        "rsvpSenderAdspecGuaranteedMtu": 1500,
                        "rsvpSenderAdspecCtrlLoadSvc": true,
                        "rsvpSenderAdspecCtrlLoadBreak": true,
                        "rsvpSenderAdspecCtrlLoadHopCount": -2147483648,
                        "rsvpSenderAdspecCtrlLoadPathBw": "example-string",
                        "rsvpSenderAdspecCtrlLoadMinLatency": 1,
                        "rsvpSenderAdspecCtrlLoadMtu": 1500,
                        "rsvpSenderStatus": "up(1)",
                        "rsvpSenderTTL": -2147483648
                      },
                      {
                        "rsvpSessionNumber": "example-string",
                        "rsvpSenderNumber": "example-string",
                        "rsvpSenderType": "ethernetCsmacd(6)",
                        "rsvpSenderDestAddr": "192.168.1.1",
                        "rsvpSenderAddr": "192.168.1.1",
                        "rsvpSenderDestAddrLength": -2147483648,
                        "rsvpSenderAddrLength": -2147483648,
                        "rsvpSenderProtocol": "example-string",
                        "rsvpSenderDestPort": "example-string",
                        "rsvpSenderPort": "example-string",
                        "rsvpSenderFlowId": -2147483648,
                        "rsvpSenderHopAddr": "192.168.1.1",
                        "rsvpSenderHopLih": -2147483648,
                        "rsvpSenderInterface": "GigabitEthernet1/0/1",
                        "rsvpSenderTSpecRate": "example-string",
                        "rsvpSenderTSpecPeakRate": "example-string",
                        "rsvpSenderTSpecBurst": "example-string",
                        "rsvpSenderTSpecMinTU": "example-string",
                        "rsvpSenderTSpecMaxTU": "example-string",
                        "rsvpSenderInterval": "example-string",
                        "rsvpSenderRSVPHop": true,
                        "rsvpSenderLastChange": "example-string",
                        "rsvpSenderPolicy": "example-string",
                        "rsvpSenderAdspecBreak": true,
                        "rsvpSenderAdspecHopCount": -2147483648,
                        "rsvpSenderAdspecPathBw": "example-string",
                        "rsvpSenderAdspecMinLatency": -2147483648,
                        "rsvpSenderAdspecMtu": 1500,
                        "rsvpSenderAdspecGuaranteedSvc": true,
                        "rsvpSenderAdspecGuaranteedBreak": true,
                        "rsvpSenderAdspecGuaranteedCtot": -2147483648,
                        "rsvpSenderAdspecGuaranteedDtot": -2147483648,
                        "rsvpSenderAdspecGuaranteedCsum": -2147483648,
                        "rsvpSenderAdspecGuaranteedDsum": -2147483648,
                        "rsvpSenderAdspecGuaranteedHopCount": -2147483648,
                        "rsvpSenderAdspecGuaranteedPathBw": "example-string",
                        "rsvpSenderAdspecGuaranteedMinLatency": -2147483648,
                        "rsvpSenderAdspecGuaranteedMtu": 1500,
                        "rsvpSenderAdspecCtrlLoadSvc": true,
                        "rsvpSenderAdspecCtrlLoadBreak": true,
                        "rsvpSenderAdspecCtrlLoadHopCount": -2147483648,
                        "rsvpSenderAdspecCtrlLoadPathBw": "example-string",
                        "rsvpSenderAdspecCtrlLoadMinLatency": 1,
                        "rsvpSenderAdspecCtrlLoadMtu": 1500,
                        "rsvpSenderStatus": "up(1)",
                        "rsvpSenderTTL": -2147483648
                      },
                      {
                        "rsvpSessionNumber": "example-string",
                        "rsvpSenderNumber": "example-string",
                        "rsvpSenderType": "ethernetCsmacd(6)",
                        "rsvpSenderDestAddr": "192.168.1.1",
                        "rsvpSenderAddr": "192.168.1.1",
                        "rsvpSenderDestAddrLength": -2147483648,
                        "rsvpSenderAddrLength": -2147483648,
                        "rsvpSenderProtocol": "example-string",
                        "rsvpSenderDestPort": "example-string",
                        "rsvpSenderPort": "example-string",
                        "rsvpSenderFlowId": -2147483648,
                        "rsvpSenderHopAddr": "192.168.1.1",
                        "rsvpSenderHopLih": -2147483648,
                        "rsvpSenderInterface": "GigabitEthernet1/0/1",
                        "rsvpSenderTSpecRate": "example-string",
                        "rsvpSenderTSpecPeakRate": "example-string",
                        "rsvpSenderTSpecBurst": "example-string",
                        "rsvpSenderTSpecMinTU": "example-string",
                        "rsvpSenderTSpecMaxTU": "example-string",
                        "rsvpSenderInterval": "example-string",
                        "rsvpSenderRSVPHop": true,
                        "rsvpSenderLastChange": "example-string",
                        "rsvpSenderPolicy": "example-string",
                        "rsvpSenderAdspecBreak": true,
                        "rsvpSenderAdspecHopCount": -2147483648,
                        "rsvpSenderAdspecPathBw": "example-string",
                        "rsvpSenderAdspecMinLatency": -2147483648,
                        "rsvpSenderAdspecMtu": 1500,
                        "rsvpSenderAdspecGuaranteedSvc": true,
                        "rsvpSenderAdspecGuaranteedBreak": true,
                        "rsvpSenderAdspecGuaranteedCtot": -2147483648,
                        "rsvpSenderAdspecGuaranteedDtot": -2147483648,
                        "rsvpSenderAdspecGuaranteedCsum": -2147483648,
                        "rsvpSenderAdspecGuaranteedDsum": -2147483648,
                        "rsvpSenderAdspecGuaranteedHopCount": -2147483648,
                        "rsvpSenderAdspecGuaranteedPathBw": "example-string",
                        "rsvpSenderAdspecGuaranteedMinLatency": -2147483648,
                        "rsvpSenderAdspecGuaranteedMtu": 1500,
                        "rsvpSenderAdspecCtrlLoadSvc": true,
                        "rsvpSenderAdspecCtrlLoadBreak": true,
                        "rsvpSenderAdspecCtrlLoadHopCount": -2147483648,
                        "rsvpSenderAdspecCtrlLoadPathBw": "example-string",
                        "rsvpSenderAdspecCtrlLoadMinLatency": 1,
                        "rsvpSenderAdspecCtrlLoadMtu": 1500,
                        "rsvpSenderStatus": "up(1)",
                        "rsvpSenderTTL": -2147483648
                      }
                    ]
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-rsvpSenderTable",
        "parameters": [
          {
            "name": "Accept",
            "in": "header",
            "required": false,
            "description": "RESTCONF response media type (RFC 8040)",
            "schema": {
              "type": "string",
              "default": "application/yang-data+json",
              "enum": [
                "application/yang-data+json",
                "application/yang-data+xml"
              ]
            }
          },
          {
            "name": "depth",
            "in": "query",
            "required": false,
            "description": "Limit the depth of returned sub-tree data (RFC 8040 Section 4.8.2). Use 'unbounded' for full depth.",
            "schema": {
              "type": "string",
              "default": "unbounded"
            }
          },
          {
            "name": "fields",
            "in": "query",
            "required": false,
            "description": "Select specific fields to return (RFC 8040 Section 4.8.3). Example: fields=name;status",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "content",
            "in": "query",
            "required": false,
            "description": "Filter by config state: 'config' (config true only), 'nonconfig' (config false only), or 'all'.",
            "schema": {
              "type": "string",
              "enum": [
                "config",
                "nonconfig",
                "all"
              ],
              "default": "all"
            }
          }
        ]
      },
      "x-yang-path": "/rsvpSenderTable",
      "x-restconf-kind": "container"
    },
    "/data/RSVP-MIB:rsvpSenderTable/rsvpSenderEntry": {
      "get": {
        "summary": "Get rsvpSenderEntry list",
        "description": "Retrieve list of rsvpSenderEntry entries from MIB",
        "tags": [
          "RSVP-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "Information\tdescribing the\tstate  information\n          displayed by\ta single sender's PATH message.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "rsvpSessionNumber": {
                        "type": "string",
                        "description": "rsvpSessionNumber",
                        "x-yang-type": "leafref"
                      },
                      "rsvpSenderNumber": {
                        "type": "string",
                        "description": "The\tnumber of this sender.\tThis is\t for  SNMP\n            Indexing  purposes  only and\thas no relation\tto\n            any protocol\tvalue.",
                        "x-yang-type": "integrated-services:SessionNumber"
                      },
                      "rsvpSenderType": {
                        "type": "string",
                        "description": "The\ttype of\tsession\t(IP4, IP6, IP6\twith  flow\n            information,\tetc).",
                        "x-yang-type": "integrated-services:SessionType"
                      },
                      "rsvpSenderDestAddr": {
                        "type": "string",
                        "description": "The\tdestination address used by all\tsenders\tin\n            this\t session.   This object\tmay not\tbe changed\n            when\tthe  value  of\tthe  RowStatus\tobject\tis\n            'active'.",
                        "format": "binary"
                      },
                      "rsvpSenderAddr": {
                        "type": "string",
                        "description": "The\tsource address used by this sender in this\n            session.   This  object may not be changed when\n            the value of\tthe RowStatus object is\t'active'.",
                        "format": "binary"
                      },
                      "rsvpSenderDestAddrLength": {
                        "type": "integer",
                        "description": "The\tlength of the destination address in bits.\n            This\t is  the CIDR Prefix Length, which for IP4\n            hosts and multicast addresses is 32 bits.  This\n            object may not be changed when the value of the\n            RowStatus object is 'active'.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "rsvpSenderAddrLength": {
                        "type": "integer",
                        "description": "The\tlength of the sender's\taddress\t in  bits.\n            This\t is  the CIDR Prefix Length, which for IP4\n            hosts and multicast addresses is 32 bits.  This\n            object may not be changed when the value of the\n            RowStatus object is 'active'.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "rsvpSenderProtocol": {
                        "type": "string",
                        "description": "The\tIP Protocol used by  this  session.   This\n            object may not be changed when the value of the\n            RowStatus object is 'active'.",
                        "x-yang-type": "integrated-services:Protocol"
                      },
                      "rsvpSenderDestPort": {
                        "type": "string",
                        "description": "The\t UDP  or  TCP  port  number  used   as\t a\n            destination\t port  for  all\t senders  in  this\n            session.  If\tthe IP protocol\tin use,\t specified\n            by  rsvpSenderProtocol, is 50 (ESP) or 51 (AH),\n            this\t represents  a\tvirtual\t destination  port\n            number.   A value of\tzero indicates that the\tIP\n            protocol in use  does  not  have  ports.   This\n            object may not be changed when the value of the\n            RowStatus object is 'active'.",
                        "x-yang-type": "integrated-services:Port"
                      },
                      "rsvpSenderPort": {
                        "type": "string",
                        "description": "The\tUDP or TCP port\tnumber used  as\t a  source\n            port\t for  this sender in this session.  If the\n            IP\t protocol    in\t   use,\t   specified\tby\n            rsvpSenderProtocol is 50 (ESP) or 51\t(AH), this\n            represents a\tgeneralized port identifier (GPI).\n            A  value of zero indicates that the IP protocol\n            in use does not have\tports.\t This  object  may\n            not\tbe changed when\tthe value of the RowStatus\n            object is 'active'.",
                        "x-yang-type": "integrated-services:Port"
                      },
                      "rsvpSenderFlowId": {
                        "type": "integer",
                        "description": "The\tflow ID\tthat  this  sender  is\tusing,\tif\n            this\t is  an\tIPv6 session.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "rsvpSenderHopAddr": {
                        "type": "string",
                        "description": "The\taddress\tused  by  the  previous\t RSVP  hop\n            (which may be the original sender).",
                        "format": "binary"
                      },
                      "rsvpSenderHopLih": {
                        "type": "integer",
                        "description": "The\t Logical  Interface  Handle  used  by  the\n            previous  RSVP  hop\t(which may be the original\n            sender).",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "rsvpSenderInterface": {
                        "type": "string",
                        "description": "The\tifIndex\tvalue of the  interface\t on  which\n            this\tPATH message was most recently received.",
                        "x-yang-type": "if-mib:InterfaceIndex"
                      },
                      "rsvpSenderTSpecRate": {
                        "type": "string",
                        "description": "The\tAverage\tBit  Rate  of  the  sender's  data\n            stream.    Within  a\t transmission  burst,  the\n            arrival   rate    may    be\t  as\tfast\tas\n            rsvpSenderTSpecPeakRate  (if\t supported  by the\n            service model); however, averaged across two\tor\n            more\t burst\tintervals,  the\t rate  should  not\n            exceed rsvpSenderTSpecRate.\n            \n            Note\tthat this is a prediction, often based\ton\n            the\tgeneral\t capability  of\ta type of codec\tor\n            particular encoding;\tthe measured average  rate\n            may be significantly\tlower.",
                        "x-yang-type": "integrated-services:BitRate"
                      },
                      "rsvpSenderTSpecPeakRate": {
                        "type": "string",
                        "description": "The\tPeak Bit Rate of the sender's data stream.\n            Traffic  arrival is not expected to exceed this\n            rate\tat any time, apart  from  the  effects\tof\n            jitter in the network.  If not specified in the\n            TSpec, this returns zero or noSuchValue.",
                        "x-yang-type": "integrated-services:BitRate"
                      },
                      "rsvpSenderTSpecBurst": {
                        "type": "string",
                        "description": "The\tsize of\tthe largest  burst  expected  from\n            the sender at a time.",
                        "x-yang-type": "integrated-services:BurstSize"
                      },
                      "rsvpSenderTSpecMinTU": {
                        "type": "string",
                        "description": "The\tminimum\tmessage\tsize for  this\tflow.  The\n            policing  algorithm will treat smaller messages\n            as though they are this size.",
                        "x-yang-type": "integrated-services:MessageSize"
                      },
                      "rsvpSenderTSpecMaxTU": {
                        "type": "string",
                        "description": "The\tmaximum\tmessage\tsize for  this\tflow.  The\n            admission  algorithm\t will  reject TSpecs whose\n            Maximum Transmission\tUnit, plus  the\t interface\n            headers, exceed the interface MTU.",
                        "x-yang-type": "integrated-services:MessageSize"
                      },
                      "rsvpSenderInterval": {
                        "type": "string",
                        "description": "The\t interval  between  refresh  messages\tas\n            advertised by the Previous Hop.",
                        "x-yang-type": "RSVP-MIB:RefreshInterval"
                      },
                      "rsvpSenderRSVPHop": {
                        "type": "boolean",
                        "description": "If TRUE, the node believes that  the  previous\n            IP  hop  is\tan  RSVP  hop.\tIf FALSE, the node\n            believes that the previous IP hop may not be\tan\n            RSVP\thop."
                      },
                      "rsvpSenderLastChange": {
                        "type": "string",
                        "description": "The\ttime of\t the  last  change  in\tthis  PATH\n            message;  This  is either the first time it was\n            received or the time\tof the most recent  change\n            in parameters.",
                        "x-yang-type": "yang:timestamp"
                      },
                      "rsvpSenderPolicy": {
                        "type": "string",
                        "description": "The\tcontents of the\tpolicy\tobject,\t displayed\n            as an uninterpreted string of octets, including\n            the object header.  In the absence of  such\tan\n            object, this\tshould be of zero length.",
                        "format": "binary"
                      },
                      "rsvpSenderAdspecBreak": {
                        "type": "boolean",
                        "description": "The\tglobal break bit general  characterization\n            parameter  from  the\tADSPEC.\t If TRUE, at least\n            one non-IS hop was detected in  the\tpath.\tIf\n            FALSE, no non-IS hops were detected."
                      },
                      "rsvpSenderAdspecHopCount": {
                        "type": "integer",
                        "description": "The\t  hop\tcount\tgeneral\t  characterization\n            parameter from the ADSPEC.  A return\tof zero\tor\n            noSuchValue\tindicates  one\tof  the\t following\n            conditions:\n            \n               the invalid bit was set\n               the parameter was\tnot present",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "rsvpSenderAdspecPathBw": {
                        "type": "string",
                        "description": "The\t  path\t  bandwidth    estimate\t   general\n            characterization  parameter from the\tADSPEC.\t A\n            return of zero or noSuchValue indicates one\tof\n            the following conditions:\n            \n               the invalid bit was set\n               the parameter was\tnot present",
                        "x-yang-type": "integrated-services:BitRate"
                      },
                      "rsvpSenderAdspecMinLatency": {
                        "type": "integer",
                        "description": "The\t   minimum    path     latency\t   general\n            characterization  parameter from the\tADSPEC.\t A\n            return of zero or noSuchValue indicates one\tof\n            the following conditions:\n            \n               the invalid bit was set\n               the parameter was\tnot present",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "rsvpSenderAdspecMtu": {
                        "type": "integer",
                        "description": "The\tcomposed Maximum Transmission Unit general\n            characterization  parameter from the\tADSPEC.\t A\n            return of zero or noSuchValue indicates one\tof\n            the following conditions:\n            \n               the invalid bit was set\n               the parameter was\tnot present",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "rsvpSenderAdspecGuaranteedSvc": {
                        "type": "boolean",
                        "description": "If TRUE,  the  ADSPEC  contains  a\tGuaranteed\n            Service  fragment.\tIf  FALSE, the ADSPEC does\n            not contain a Guaranteed Service fragment."
                      },
                      "rsvpSenderAdspecGuaranteedBreak": {
                        "type": "boolean",
                        "description": "If TRUE, the Guaranteed Service  fragment  has\n            its\t'break'\t bit  set,  indicating that one\tor\n            more\tnodes along the\tpath do\t not  support  the\n            guaranteed\t  service.     If    FALSE,    and\n            rsvpSenderAdspecGuaranteedSvc  is   TRUE,   the\n            'break' bit is not set.\n            \n            If rsvpSenderAdspecGuaranteedSvc is FALSE, this\n            returns FALSE or noSuchValue."
                      },
                      "rsvpSenderAdspecGuaranteedCtot": {
                        "type": "integer",
                        "description": "If rsvpSenderAdspecGuaranteedSvc is\tTRUE, this\n            is\tthe  end-to-end\t composed  value  for  the\n            guaranteed service 'C' parameter.  A\treturn\tof\n            zero\t  or  noSuchValue  indicates  one  of  the\n            following conditions:\n            \n               the invalid bit was set\n               the parameter was\tnot present\n            \n            If rsvpSenderAdspecGuaranteedSvc is FALSE, this\n            returns zero\tor noSuchValue.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "rsvpSenderAdspecGuaranteedDtot": {
                        "type": "integer",
                        "description": "If rsvpSenderAdspecGuaranteedSvc is\tTRUE, this\n            is\tthe  end-to-end\t composed  value  for  the\n            guaranteed service 'D' parameter.  A\treturn\tof\n            zero\t  or  noSuchValue  indicates  one  of  the\n            following conditions:\n            \n               the invalid bit was set\n               the parameter was\tnot present\n            \n            If rsvpSenderAdspecGuaranteedSvc is FALSE, this\n            returns zero\tor noSuchValue.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "rsvpSenderAdspecGuaranteedCsum": {
                        "type": "integer",
                        "description": "If rsvpSenderAdspecGuaranteedSvc is\tTRUE, this\n            is\tthe  composed  value  for  the\tguaranteed\n            service 'C' parameter since the last\t reshaping\n            point.    A\t return\t of  zero  or  noSuchValue\n            indicates one of the\tfollowing conditions:\n            \n               the invalid bit was set\n               the parameter was\tnot present\n            \n            If rsvpSenderAdspecGuaranteedSvc is FALSE, this\n            returns zero\tor noSuchValue.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "rsvpSenderAdspecGuaranteedDsum": {
                        "type": "integer",
                        "description": "If rsvpSenderAdspecGuaranteedSvc is\tTRUE, this\n            is\tthe  composed  value  for  the\tguaranteed\n            service 'D' parameter since the last\t reshaping\n            point.    A\t return\t of  zero  or  noSuchValue\n            indicates one of the\tfollowing conditions:\n            \n               the invalid bit was set\n               the parameter was\tnot present\n            \n            If rsvpSenderAdspecGuaranteedSvc is FALSE, this\n            returns zero\tor noSuchValue.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "rsvpSenderAdspecGuaranteedHopCount": {
                        "type": "integer",
                        "description": "If rsvpSenderAdspecGuaranteedSvc is\tTRUE, this\n            is  the  service-specific  override\tof the hop\n            count general characterization  parameter  from\n            the\tADSPEC.\t  A  return of zero or noSuchValue\n            indicates one of the\tfollowing conditions:\n            \n               the invalid bit was set\n               the parameter was\tnot present\n            \n            If rsvpSenderAdspecGuaranteedSvc is FALSE, this\n            returns zero\tor noSuchValue.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "rsvpSenderAdspecGuaranteedPathBw": {
                        "type": "string",
                        "description": "If rsvpSenderAdspecGuaranteedSvc is\tTRUE, this\n            is  the  service-specific  override of the path\n            bandwidth  estimate\tgeneral\t  characterization\n            parameter from the ADSPEC.  A return\tof zero\tor\n            noSuchValue\tindicates  one\tof  the\t following\n            conditions:\n            \n               the invalid bit was set\n               the parameter was\tnot present\n            \n            If rsvpSenderAdspecGuaranteedSvc is FALSE, this\n            returns zero\tor noSuchValue.",
                        "x-yang-type": "integrated-services:BitRate"
                      },
                      "rsvpSenderAdspecGuaranteedMinLatency": {
                        "type": "integer",
                        "description": "If rsvpSenderAdspecGuaranteedSvc is\tTRUE, this\n            is the service-specific override of the minimum\n            path\tlatency\tgeneral\tcharacterization parameter\n            from\t  the\tADSPEC.\t   A  return  of  zero\tor\n            noSuchValue\tindicates  one\tof  the\t following\n            conditions:\n            \n               the invalid bit was set\n               the parameter was\tnot present\n            \n            If rsvpSenderAdspecGuaranteedSvc is FALSE, this\n            returns zero\tor noSuchValue.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "rsvpSenderAdspecGuaranteedMtu": {
                        "type": "integer",
                        "description": "If rsvpSenderAdspecGuaranteedSvc is\tTRUE, this\n            is\tthe   service-specific\t override  of  the\n            composed  Maximum  Transmission  Unit   general\n            characterization  parameter from the\tADSPEC.\t A\n            return of zero or noSuchValue indicates one\tof\n            the following conditions:\n            \n               the invalid bit was set\n               the parameter was\tnot present\n            \n            If rsvpSenderAdspecGuaranteedSvc is FALSE, this\n            returns zero\tor noSuchValue.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "rsvpSenderAdspecCtrlLoadSvc": {
                        "type": "boolean",
                        "description": "If TRUE, the ADSPEC\tcontains a Controlled Load\n            Service  fragment.\tIf  FALSE, the ADSPEC does\n            not\t contain   a   Controlled   Load   Service\n            fragment."
                      },
                      "rsvpSenderAdspecCtrlLoadBreak": {
                        "type": "boolean",
                        "description": "If TRUE, the Controlled Load Service  fragment\n            has its 'break' bit set, indicating that one\tor\n            more\tnodes along the\tpath do\t not  support  the\n            controlled\tload   service.\t   If  FALSE,  and\n            rsvpSenderAdspecCtrlLoadSvc\t is   TRUE,    the\n            'break' bit is not set.\n            \n            If rsvpSenderAdspecCtrlLoadSvc is  FALSE,  this\n            returns FALSE or noSuchValue."
                      },
                      "rsvpSenderAdspecCtrlLoadHopCount": {
                        "type": "integer",
                        "description": "If rsvpSenderAdspecCtrlLoadSvc is  TRUE,  this\n            is  the  service-specific  override\tof the hop\n            count general characterization  parameter  from\n            the\tADSPEC.\t  A  return of zero or noSuchValue\n            indicates one of the\tfollowing conditions:\n            \n               the invalid bit was set\n               the parameter was\tnot present\n            \n            If rsvpSenderAdspecCtrlLoadSvc is  FALSE,  this\n            returns zero\tor noSuchValue.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "rsvpSenderAdspecCtrlLoadPathBw": {
                        "type": "string",
                        "description": "If rsvpSenderAdspecCtrlLoadSvc is  TRUE,  this\n            is  the  service-specific  override of the path\n            bandwidth  estimate\tgeneral\t  characterization\n            parameter from the ADSPEC.  A return\tof zero\tor\n            noSuchValue\tindicates  one\tof  the\t following\n            conditions:\n            \n               the invalid bit was set\n               the parameter was\tnot present\n            \n            If rsvpSenderAdspecCtrlLoadSvc is  FALSE,  this\n            returns zero\tor noSuchValue.",
                        "x-yang-type": "integrated-services:BitRate"
                      },
                      "rsvpSenderAdspecCtrlLoadMinLatency": {
                        "type": "integer",
                        "description": "If rsvpSenderAdspecCtrlLoadSvc is  TRUE,  this\n            is the service-specific override of the minimum\n            path\tlatency\tgeneral\tcharacterization parameter\n            from\t  the\tADSPEC.\t   A  return  of  zero\tor\n            noSuchValue\tindicates  one\tof  the\t following\n            conditions:\n            \n               the invalid bit was set\n               the parameter was\tnot present\n            \n            If rsvpSenderAdspecCtrlLoadSvc is  FALSE,  this\n            returns zero\tor noSuchValue.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "rsvpSenderAdspecCtrlLoadMtu": {
                        "type": "integer",
                        "description": "If rsvpSenderAdspecCtrlLoadSvc is  TRUE,  this\n            is\tthe   service-specific\t override  of  the\n            composed  Maximum  Transmission  Unit   general\n            characterization  parameter from the\tADSPEC.\t A\n            return of zero or noSuchValue indicates one\tof\n            the following conditions:\n            \n               the invalid bit was set\n               the parameter was\tnot present\n            \n            If rsvpSenderAdspecCtrlLoadSvc is  FALSE,  this\n            returns zero\tor noSuchValue.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "rsvpSenderStatus": {
                        "type": "string",
                        "description": "'active' for all active PATH  messages.   This\n            object  may\tbe  used  to  install  static PATH\n            information or delete PATH information.",
                        "x-yang-type": "snmpv2-tc:RowStatus"
                      },
                      "rsvpSenderTTL": {
                        "type": "integer",
                        "description": "The\tTTL value in the RSVP header that was last\n            received.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      }
                    }
                  }
                },
                "example": {
                  "RSVP-MIB:rsvpSenderEntry": [
                    {
                      "rsvpSessionNumber": "example-string",
                      "rsvpSenderNumber": "example-string",
                      "rsvpSenderType": "ethernetCsmacd(6)",
                      "rsvpSenderDestAddr": "192.168.1.1",
                      "rsvpSenderAddr": "192.168.1.1",
                      "rsvpSenderDestAddrLength": -2147483648,
                      "rsvpSenderAddrLength": -2147483648,
                      "rsvpSenderProtocol": "example-string",
                      "rsvpSenderDestPort": "example-string",
                      "rsvpSenderPort": "example-string",
                      "rsvpSenderFlowId": -2147483648,
                      "rsvpSenderHopAddr": "192.168.1.1",
                      "rsvpSenderHopLih": -2147483648,
                      "rsvpSenderInterface": "GigabitEthernet1/0/1",
                      "rsvpSenderTSpecRate": "example-string",
                      "rsvpSenderTSpecPeakRate": "example-string",
                      "rsvpSenderTSpecBurst": "example-string",
                      "rsvpSenderTSpecMinTU": "example-string",
                      "rsvpSenderTSpecMaxTU": "example-string",
                      "rsvpSenderInterval": "example-string",
                      "rsvpSenderRSVPHop": true,
                      "rsvpSenderLastChange": "example-string",
                      "rsvpSenderPolicy": "example-string",
                      "rsvpSenderAdspecBreak": true,
                      "rsvpSenderAdspecHopCount": -2147483648,
                      "rsvpSenderAdspecPathBw": "example-string",
                      "rsvpSenderAdspecMinLatency": -2147483648,
                      "rsvpSenderAdspecMtu": 1500,
                      "rsvpSenderAdspecGuaranteedSvc": true,
                      "rsvpSenderAdspecGuaranteedBreak": true,
                      "rsvpSenderAdspecGuaranteedCtot": -2147483648,
                      "rsvpSenderAdspecGuaranteedDtot": -2147483648,
                      "rsvpSenderAdspecGuaranteedCsum": -2147483648,
                      "rsvpSenderAdspecGuaranteedDsum": -2147483648,
                      "rsvpSenderAdspecGuaranteedHopCount": -2147483648,
                      "rsvpSenderAdspecGuaranteedPathBw": "example-string",
                      "rsvpSenderAdspecGuaranteedMinLatency": -2147483648,
                      "rsvpSenderAdspecGuaranteedMtu": 1500,
                      "rsvpSenderAdspecCtrlLoadSvc": true,
                      "rsvpSenderAdspecCtrlLoadBreak": true,
                      "rsvpSenderAdspecCtrlLoadHopCount": -2147483648,
                      "rsvpSenderAdspecCtrlLoadPathBw": "example-string",
                      "rsvpSenderAdspecCtrlLoadMinLatency": 1,
                      "rsvpSenderAdspecCtrlLoadMtu": 1500,
                      "rsvpSenderStatus": "up(1)",
                      "rsvpSenderTTL": -2147483648
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-rsvpSenderEntry",
        "parameters": [
          {
            "name": "Accept",
            "in": "header",
            "required": false,
            "description": "RESTCONF response media type (RFC 8040)",
            "schema": {
              "type": "string",
              "default": "application/yang-data+json",
              "enum": [
                "application/yang-data+json",
                "application/yang-data+xml"
              ]
            }
          },
          {
            "name": "depth",
            "in": "query",
            "required": false,
            "description": "Limit the depth of returned sub-tree data (RFC 8040 Section 4.8.2). Use 'unbounded' for full depth.",
            "schema": {
              "type": "string",
              "default": "unbounded"
            }
          },
          {
            "name": "fields",
            "in": "query",
            "required": false,
            "description": "Select specific fields to return (RFC 8040 Section 4.8.3). Example: fields=name;status",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "content",
            "in": "query",
            "required": false,
            "description": "Filter by config state: 'config' (config true only), 'nonconfig' (config false only), or 'all'.",
            "schema": {
              "type": "string",
              "enum": [
                "config",
                "nonconfig",
                "all"
              ],
              "default": "all"
            }
          }
        ]
      },
      "x-yang-path": "/rsvpSenderTable/rsvpSenderEntry",
      "x-restconf-kind": "container"
    },
    "/data/RSVP-MIB:rsvpSenderOutInterfaceTable": {
      "get": {
        "summary": "Get rsvpSenderOutInterfaceTable data",
        "description": "Retrieve rsvpSenderOutInterfaceTable operational data from MIB",
        "tags": [
          "RSVP-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "description": "List of outgoing interfaces\tthat PATH messages\n        use.\t The  ifIndex  is the ifIndex value of the\n        egress interface.",
                  "properties": {
                    "rsvpSenderOutInterfaceEntry": {
                      "type": "array",
                      "description": "List of outgoing interfaces\tthat a\tparticular\n          PATH\tmessage\thas.",
                      "items": {
                        "type": "object",
                        "properties": {
                          "rsvpSessionNumber": {
                            "type": "string",
                            "description": "rsvpSessionNumber",
                            "x-yang-type": "leafref"
                          },
                          "rsvpSenderNumber": {
                            "type": "string",
                            "description": "rsvpSenderNumber",
                            "x-yang-type": "leafref"
                          },
                          "ifIndex": {
                            "type": "string",
                            "description": "ifIndex",
                            "x-yang-type": "leafref"
                          },
                          "rsvpSenderOutInterfaceStatus": {
                            "type": "string",
                            "description": "'active' for all active PATH messages.",
                            "x-yang-type": "snmpv2-tc:RowStatus"
                          }
                        }
                      }
                    }
                  }
                },
                "example": {
                  "RSVP-MIB:rsvpSenderOutInterfaceTable": {
                    "rsvpSenderOutInterfaceEntry": [
                      {
                        "rsvpSessionNumber": "example-string",
                        "rsvpSenderNumber": "example-string",
                        "ifIndex": "1",
                        "rsvpSenderOutInterfaceStatus": "GigabitEthernet1/0/1"
                      },
                      {
                        "rsvpSessionNumber": "example-string",
                        "rsvpSenderNumber": "example-string",
                        "ifIndex": "2",
                        "rsvpSenderOutInterfaceStatus": "GigabitEthernet1/0/1"
                      },
                      {
                        "rsvpSessionNumber": "example-string",
                        "rsvpSenderNumber": "example-string",
                        "ifIndex": "3",
                        "rsvpSenderOutInterfaceStatus": "GigabitEthernet1/0/1"
                      }
                    ]
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-rsvpSenderOutInterfaceTable",
        "parameters": [
          {
            "name": "Accept",
            "in": "header",
            "required": false,
            "description": "RESTCONF response media type (RFC 8040)",
            "schema": {
              "type": "string",
              "default": "application/yang-data+json",
              "enum": [
                "application/yang-data+json",
                "application/yang-data+xml"
              ]
            }
          },
          {
            "name": "depth",
            "in": "query",
            "required": false,
            "description": "Limit the depth of returned sub-tree data (RFC 8040 Section 4.8.2). Use 'unbounded' for full depth.",
            "schema": {
              "type": "string",
              "default": "unbounded"
            }
          },
          {
            "name": "fields",
            "in": "query",
            "required": false,
            "description": "Select specific fields to return (RFC 8040 Section 4.8.3). Example: fields=name;status",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "content",
            "in": "query",
            "required": false,
            "description": "Filter by config state: 'config' (config true only), 'nonconfig' (config false only), or 'all'.",
            "schema": {
              "type": "string",
              "enum": [
                "config",
                "nonconfig",
                "all"
              ],
              "default": "all"
            }
          }
        ]
      },
      "x-yang-path": "/rsvpSenderOutInterfaceTable",
      "x-restconf-kind": "container"
    },
    "/data/RSVP-MIB:rsvpSenderOutInterfaceTable/rsvpSenderOutInterfaceEntry": {
      "get": {
        "summary": "Get rsvpSenderOutInterfaceEntry list",
        "description": "Retrieve list of rsvpSenderOutInterfaceEntry entries from MIB",
        "tags": [
          "RSVP-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "List of outgoing interfaces\tthat a\tparticular\n          PATH\tmessage\thas.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "rsvpSessionNumber": {
                        "type": "string",
                        "description": "rsvpSessionNumber",
                        "x-yang-type": "leafref"
                      },
                      "rsvpSenderNumber": {
                        "type": "string",
                        "description": "rsvpSenderNumber",
                        "x-yang-type": "leafref"
                      },
                      "ifIndex": {
                        "type": "string",
                        "description": "ifIndex",
                        "x-yang-type": "leafref"
                      },
                      "rsvpSenderOutInterfaceStatus": {
                        "type": "string",
                        "description": "'active' for all active PATH messages.",
                        "x-yang-type": "snmpv2-tc:RowStatus"
                      }
                    }
                  }
                },
                "example": {
                  "RSVP-MIB:rsvpSenderOutInterfaceEntry": [
                    {
                      "rsvpSessionNumber": "example-string",
                      "rsvpSenderNumber": "example-string",
                      "ifIndex": "example-string",
                      "rsvpSenderOutInterfaceStatus": "GigabitEthernet1/0/1"
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-rsvpSenderOutInterfaceEntry",
        "parameters": [
          {
            "name": "Accept",
            "in": "header",
            "required": false,
            "description": "RESTCONF response media type (RFC 8040)",
            "schema": {
              "type": "string",
              "default": "application/yang-data+json",
              "enum": [
                "application/yang-data+json",
                "application/yang-data+xml"
              ]
            }
          },
          {
            "name": "depth",
            "in": "query",
            "required": false,
            "description": "Limit the depth of returned sub-tree data (RFC 8040 Section 4.8.2). Use 'unbounded' for full depth.",
            "schema": {
              "type": "string",
              "default": "unbounded"
            }
          },
          {
            "name": "fields",
            "in": "query",
            "required": false,
            "description": "Select specific fields to return (RFC 8040 Section 4.8.3). Example: fields=name;status",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "content",
            "in": "query",
            "required": false,
            "description": "Filter by config state: 'config' (config true only), 'nonconfig' (config false only), or 'all'.",
            "schema": {
              "type": "string",
              "enum": [
                "config",
                "nonconfig",
                "all"
              ],
              "default": "all"
            }
          }
        ]
      },
      "x-yang-path": "/rsvpSenderOutInterfaceTable/rsvpSenderOutInterfaceEntry",
      "x-restconf-kind": "container"
    },
    "/data/RSVP-MIB:rsvpResvTable": {
      "get": {
        "summary": "Get rsvpResvTable data",
        "description": "Retrieve rsvpResvTable operational data from MIB",
        "tags": [
          "RSVP-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "description": "Information\tdescribing the\tstate  information\n        displayed by\treceivers in RESV messages.",
                  "properties": {
                    "rsvpResvEntry": {
                      "type": "array",
                      "description": "Information\tdescribing the\tstate  information\n          displayed  by  a single receiver's RESV message\n          concerning a\tsingle sender.",
                      "items": {
                        "type": "object",
                        "properties": {
                          "rsvpSessionNumber": {
                            "type": "string",
                            "description": "rsvpSessionNumber",
                            "x-yang-type": "leafref"
                          },
                          "rsvpResvNumber": {
                            "type": "string",
                            "description": "The\tnumber of this reservation request.   This\n            is  for  SNMP Indexing purposes only\tand has\tno\n            relation to any protocol value.",
                            "x-yang-type": "integrated-services:SessionNumber"
                          },
                          "rsvpResvType": {
                            "type": "string",
                            "description": "The\ttype of\tsession\t(IP4, IP6, IP6\twith  flow\n            information,\tetc).",
                            "x-yang-type": "integrated-services:SessionType"
                          },
                          "rsvpResvDestAddr": {
                            "type": "string",
                            "description": "The\tdestination address used by all\tsenders\tin\n            this\t session.   This object\tmay not\tbe changed\n            when\tthe  value  of\tthe  RowStatus\tobject\tis\n            'active'.",
                            "format": "binary"
                          },
                          "rsvpResvSenderAddr": {
                            "type": "string",
                            "description": "The\tsource address of the sender  selected\tby\n            this\t reservation.\tThe  value  of\tall zeroes\n            indicates 'all senders'.  This object  may  not\n            be  changed\twhen  the  value  of the RowStatus\n            object is 'active'.",
                            "format": "binary"
                          },
                          "rsvpResvDestAddrLength": {
                            "type": "integer",
                            "description": "The\tlength of the destination address in bits.\n            This\t is  the CIDR Prefix Length, which for IP4\n            hosts and multicast addresses is 32 bits.  This\n            object may not be changed when the value of the\n            RowStatus object is 'active'.",
                            "minimum": -2147483648,
                            "maximum": 2147483647
                          },
                          "rsvpResvSenderAddrLength": {
                            "type": "integer",
                            "description": "The\tlength of the sender's\taddress\t in  bits.\n            This\t is  the CIDR Prefix Length, which for IP4\n            hosts and multicast addresses is 32 bits.  This\n            object may not be changed when the value of the\n            RowStatus object is 'active'.",
                            "minimum": -2147483648,
                            "maximum": 2147483647
                          },
                          "rsvpResvProtocol": {
                            "type": "string",
                            "description": "The\tIP Protocol used by  this  session.   This\n            object may not be changed when the value of the\n            RowStatus object is 'active'.",
                            "x-yang-type": "integrated-services:Protocol"
                          },
                          "rsvpResvDestPort": {
                            "type": "string",
                            "description": "The\t UDP  or  TCP  port  number  used   as\t a\n            destination\t port  for  all\t senders  in  this\n            session.  If\tthe IP protocol\tin use,\t specified\n            by  rsvpResvProtocol,  is  50 (ESP) or 51 (AH),\n            this\t represents  a\tvirtual\t destination  port\n            number.   A value of\tzero indicates that the\tIP\n            protocol in use  does  not  have  ports.   This\n            object may not be changed when the value of the\n            RowStatus object is 'active'.",
                            "x-yang-type": "integrated-services:Port"
                          },
                          "rsvpResvPort": {
                            "type": "string",
                            "description": "The\tUDP or TCP port\tnumber used  as\t a  source\n            port\t for  this sender in this session.  If the\n            IP\t protocol    in\t   use,\t   specified\tby\n            rsvpResvProtocol  is\t 50 (ESP) or 51\t(AH), this\n            represents a\tgeneralized port identifier (GPI).\n            A  value of zero indicates that the IP protocol\n            in use does not have\tports.\t This  object  may\n            not\tbe changed when\tthe value of the RowStatus\n            object is 'active'.",
                            "x-yang-type": "integrated-services:Port"
                          },
                          "rsvpResvHopAddr": {
                            "type": "string",
                            "description": "The\taddress\tused by\tthe next RSVP  hop  (which\n            may be the ultimate receiver).",
                            "format": "binary"
                          },
                          "rsvpResvHopLih": {
                            "type": "integer",
                            "description": "The\tLogical\tInterface Handle received from the\n            previous  RSVP  hop\t(which may be the ultimate\n            receiver).",
                            "minimum": -2147483648,
                            "maximum": 2147483647
                          },
                          "rsvpResvInterface": {
                            "type": "string",
                            "description": "The\tifIndex\tvalue of the  interface\t on  which\n            this\tRESV message was most recently received.",
                            "x-yang-type": "if-mib:InterfaceIndex"
                          },
                          "rsvpResvService": {
                            "type": "string",
                            "description": "The\tQoS Service  classification  requested\tby\n            the receiver.",
                            "x-yang-type": "integrated-services:QosService"
                          },
                          "rsvpResvTSpecRate": {
                            "type": "string",
                            "description": "The\tAverage\tBit  Rate  of  the  sender's  data\n            stream.    Within  a\t transmission  burst,  the\n            arrival   rate    may    be\t  as\tfast\tas\n            rsvpResvTSpecPeakRate   (if\tsupported  by  the\n            service model); however, averaged across two\tor\n            more\t burst\tintervals,  the\t rate  should  not\n            exceed rsvpResvTSpecRate.\n            \n            Note\tthat this is a prediction, often based\ton\n            the\tgeneral\t capability  of\ta type of codec\tor\n            particular encoding;\tthe measured average  rate\n            may be significantly\tlower.",
                            "x-yang-type": "integrated-services:BitRate"
                          },
                          "rsvpResvTSpecPeakRate": {
                            "type": "string",
                            "description": "The\tPeak Bit Rate of the sender's data stream.\n            Traffic  arrival is not expected to exceed this\n            rate\tat any time, apart  from  the  effects\tof\n            jitter in the network.  If not specified in the\n            TSpec, this returns zero or noSuchValue.",
                            "x-yang-type": "integrated-services:BitRate"
                          },
                          "rsvpResvTSpecBurst": {
                            "type": "string",
                            "description": "The\tsize of\tthe largest  burst  expected  from\n            the sender at a time.\n            \n            If this is less than\t the  sender's\tadvertised\n            burst  size,\tthe receiver is\tasking the network\n            to provide flow pacing  beyond  what\t would\tbe\n            provided   under   normal  circumstances.  Such\n            pacing is at\tthe network's option.",
                            "x-yang-type": "integrated-services:BurstSize"
                          },
                          "rsvpResvTSpecMinTU": {
                            "type": "string",
                            "description": "The\tminimum\tmessage\tsize for  this\tflow.  The\n            policing  algorithm will treat smaller messages\n            as though they are this size.",
                            "x-yang-type": "integrated-services:MessageSize"
                          },
                          "rsvpResvTSpecMaxTU": {
                            "type": "string",
                            "description": "The\tmaximum\tmessage\tsize for  this\tflow.  The\n            admission  algorithm\t will  reject TSpecs whose\n            Maximum Transmission\tUnit, plus  the\t interface\n            headers, exceed the interface MTU.",
                            "x-yang-type": "integrated-services:MessageSize"
                          },
                          "rsvpResvRSpecRate": {
                            "type": "string",
                            "description": "If the requested  service  is  Guaranteed,\tas\n            specified   by  rsvpResvService,  this  is  the\n            clearing  rate   that   is\tbeing\trequested.\n            Otherwise,  it is zero, or the agent\tmay return\n            noSuchValue.",
                            "x-yang-type": "integrated-services:BitRate"
                          },
                          "rsvpResvRSpecSlack": {
                            "type": "integer",
                            "description": "If the requested  service  is  Guaranteed,\tas\n            specified by\trsvpResvService, this is the delay\n            slack.  Otherwise, it is zero, or the agent may\n            return noSuchValue.",
                            "minimum": -2147483648,
                            "maximum": 2147483647
                          },
                          "rsvpResvInterval": {
                            "type": "string",
                            "description": "The\t interval  between  refresh  messages\tas\n            advertised by the Next Hop.",
                            "x-yang-type": "RSVP-MIB:RefreshInterval"
                          },
                          "rsvpResvScope": {
                            "type": "string",
                            "description": "The\tcontents of the\tscope object, displayed\tas\n            an  uninterpreted  string  of octets, including\n            the object header.  In the absence of  such\tan\n            object, this\tshould be of zero length.\n            \n            If the length  is  non-zero,\t this  contains\t a\n            series of IP4 or IP6\taddresses.",
                            "format": "binary"
                          },
                          "rsvpResvShared": {
                            "type": "boolean",
                            "description": "If TRUE, a reservation shared among\tsenders\tis\n            requested.  If FALSE, a reservation specific\tto\n            this\tsender is requested."
                          },
                          "rsvpResvExplicit": {
                            "type": "boolean",
                            "description": "If TRUE, individual\tsenders\tare  listed  using\n            Filter  Specifications.   If\tFALSE, all senders\n            are implicitly selected.  The Scope Object will\n            contain  a list of senders that need\tto receive\n            this\treservation request  for  the  purpose\tof\n            routing the RESV message."
                          },
                          "rsvpResvRSVPHop": {
                            "type": "boolean",
                            "description": "If TRUE, the node believes that  the  previous\n            IP  hop  is\tan  RSVP  hop.\tIf FALSE, the node\n            believes that the previous IP hop may not be\tan\n            RSVP\thop."
                          },
                          "rsvpResvLastChange": {
                            "type": "string",
                            "description": "The\t time  of  the\t last\tchange\t in   this\n            reservation\trequest;  This is either the first\n            time\tit was received\tor the time  of\t the  most\n            recent change in parameters.",
                            "x-yang-type": "yang:timestamp"
                          },
                          "rsvpResvPolicy": {
                            "type": "string",
                            "description": "The\tcontents of the\tpolicy\tobject,\t displayed\n            as an uninterpreted string of octets, including\n            the object header.  In the absence of  such\tan\n            object, this\tshould be of zero length.",
                            "format": "binary"
                          },
                          "rsvpResvStatus": {
                            "type": "string",
                            "description": "'active' for all active RESV  messages.   This\n            object  may\tbe  used  to  install  static RESV\n            information or delete RESV information.",
                            "x-yang-type": "snmpv2-tc:RowStatus"
                          },
                          "rsvpResvTTL": {
                            "type": "integer",
                            "description": "The\tTTL value in the RSVP header that was last\n            received.",
                            "minimum": -2147483648,
                            "maximum": 2147483647
                          },
                          "rsvpResvFlowId": {
                            "type": "integer",
                            "description": "The\tflow ID\tthat this receiver  is\tusing,\tif\n            this\t is  an\tIPv6 session.",
                            "minimum": -2147483648,
                            "maximum": 2147483647
                          }
                        }
                      }
                    }
                  }
                },
                "example": {
                  "RSVP-MIB:rsvpResvTable": {
                    "rsvpResvEntry": [
                      {
                        "rsvpSessionNumber": "example-string",
                        "rsvpResvNumber": "example-string",
                        "rsvpResvType": "ethernetCsmacd(6)",
                        "rsvpResvDestAddr": "192.168.1.1",
                        "rsvpResvSenderAddr": "192.168.1.1",
                        "rsvpResvDestAddrLength": -2147483648,
                        "rsvpResvSenderAddrLength": -2147483648,
                        "rsvpResvProtocol": "example-string",
                        "rsvpResvDestPort": "example-string",
                        "rsvpResvPort": "example-string",
                        "rsvpResvHopAddr": "192.168.1.1",
                        "rsvpResvHopLih": -2147483648,
                        "rsvpResvInterface": "GigabitEthernet1/0/1",
                        "rsvpResvService": "example-string",
                        "rsvpResvTSpecRate": "example-string",
                        "rsvpResvTSpecPeakRate": "example-string",
                        "rsvpResvTSpecBurst": "example-string",
                        "rsvpResvTSpecMinTU": "example-string",
                        "rsvpResvTSpecMaxTU": "example-string",
                        "rsvpResvRSpecRate": "example-string",
                        "rsvpResvRSpecSlack": -2147483648,
                        "rsvpResvInterval": "example-string",
                        "rsvpResvScope": "example-string",
                        "rsvpResvShared": true,
                        "rsvpResvExplicit": true,
                        "rsvpResvRSVPHop": true,
                        "rsvpResvLastChange": "example-string",
                        "rsvpResvPolicy": "example-string",
                        "rsvpResvStatus": "up(1)",
                        "rsvpResvTTL": -2147483648,
                        "rsvpResvFlowId": -2147483648
                      },
                      {
                        "rsvpSessionNumber": "example-string",
                        "rsvpResvNumber": "example-string",
                        "rsvpResvType": "ethernetCsmacd(6)",
                        "rsvpResvDestAddr": "192.168.1.1",
                        "rsvpResvSenderAddr": "192.168.1.1",
                        "rsvpResvDestAddrLength": -2147483648,
                        "rsvpResvSenderAddrLength": -2147483648,
                        "rsvpResvProtocol": "example-string",
                        "rsvpResvDestPort": "example-string",
                        "rsvpResvPort": "example-string",
                        "rsvpResvHopAddr": "192.168.1.1",
                        "rsvpResvHopLih": -2147483648,
                        "rsvpResvInterface": "GigabitEthernet1/0/1",
                        "rsvpResvService": "example-string",
                        "rsvpResvTSpecRate": "example-string",
                        "rsvpResvTSpecPeakRate": "example-string",
                        "rsvpResvTSpecBurst": "example-string",
                        "rsvpResvTSpecMinTU": "example-string",
                        "rsvpResvTSpecMaxTU": "example-string",
                        "rsvpResvRSpecRate": "example-string",
                        "rsvpResvRSpecSlack": -2147483648,
                        "rsvpResvInterval": "example-string",
                        "rsvpResvScope": "example-string",
                        "rsvpResvShared": true,
                        "rsvpResvExplicit": true,
                        "rsvpResvRSVPHop": true,
                        "rsvpResvLastChange": "example-string",
                        "rsvpResvPolicy": "example-string",
                        "rsvpResvStatus": "up(1)",
                        "rsvpResvTTL": -2147483648,
                        "rsvpResvFlowId": -2147483648
                      },
                      {
                        "rsvpSessionNumber": "example-string",
                        "rsvpResvNumber": "example-string",
                        "rsvpResvType": "ethernetCsmacd(6)",
                        "rsvpResvDestAddr": "192.168.1.1",
                        "rsvpResvSenderAddr": "192.168.1.1",
                        "rsvpResvDestAddrLength": -2147483648,
                        "rsvpResvSenderAddrLength": -2147483648,
                        "rsvpResvProtocol": "example-string",
                        "rsvpResvDestPort": "example-string",
                        "rsvpResvPort": "example-string",
                        "rsvpResvHopAddr": "192.168.1.1",
                        "rsvpResvHopLih": -2147483648,
                        "rsvpResvInterface": "GigabitEthernet1/0/1",
                        "rsvpResvService": "example-string",
                        "rsvpResvTSpecRate": "example-string",
                        "rsvpResvTSpecPeakRate": "example-string",
                        "rsvpResvTSpecBurst": "example-string",
                        "rsvpResvTSpecMinTU": "example-string",
                        "rsvpResvTSpecMaxTU": "example-string",
                        "rsvpResvRSpecRate": "example-string",
                        "rsvpResvRSpecSlack": -2147483648,
                        "rsvpResvInterval": "example-string",
                        "rsvpResvScope": "example-string",
                        "rsvpResvShared": true,
                        "rsvpResvExplicit": true,
                        "rsvpResvRSVPHop": true,
                        "rsvpResvLastChange": "example-string",
                        "rsvpResvPolicy": "example-string",
                        "rsvpResvStatus": "up(1)",
                        "rsvpResvTTL": -2147483648,
                        "rsvpResvFlowId": -2147483648
                      }
                    ]
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-rsvpResvTable",
        "parameters": [
          {
            "name": "Accept",
            "in": "header",
            "required": false,
            "description": "RESTCONF response media type (RFC 8040)",
            "schema": {
              "type": "string",
              "default": "application/yang-data+json",
              "enum": [
                "application/yang-data+json",
                "application/yang-data+xml"
              ]
            }
          },
          {
            "name": "depth",
            "in": "query",
            "required": false,
            "description": "Limit the depth of returned sub-tree data (RFC 8040 Section 4.8.2). Use 'unbounded' for full depth.",
            "schema": {
              "type": "string",
              "default": "unbounded"
            }
          },
          {
            "name": "fields",
            "in": "query",
            "required": false,
            "description": "Select specific fields to return (RFC 8040 Section 4.8.3). Example: fields=name;status",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "content",
            "in": "query",
            "required": false,
            "description": "Filter by config state: 'config' (config true only), 'nonconfig' (config false only), or 'all'.",
            "schema": {
              "type": "string",
              "enum": [
                "config",
                "nonconfig",
                "all"
              ],
              "default": "all"
            }
          }
        ]
      },
      "x-yang-path": "/rsvpResvTable",
      "x-restconf-kind": "container"
    },
    "/data/RSVP-MIB:rsvpResvTable/rsvpResvEntry": {
      "get": {
        "summary": "Get rsvpResvEntry list",
        "description": "Retrieve list of rsvpResvEntry entries from MIB",
        "tags": [
          "RSVP-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "Information\tdescribing the\tstate  information\n          displayed  by  a single receiver's RESV message\n          concerning a\tsingle sender.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "rsvpSessionNumber": {
                        "type": "string",
                        "description": "rsvpSessionNumber",
                        "x-yang-type": "leafref"
                      },
                      "rsvpResvNumber": {
                        "type": "string",
                        "description": "The\tnumber of this reservation request.   This\n            is  for  SNMP Indexing purposes only\tand has\tno\n            relation to any protocol value.",
                        "x-yang-type": "integrated-services:SessionNumber"
                      },
                      "rsvpResvType": {
                        "type": "string",
                        "description": "The\ttype of\tsession\t(IP4, IP6, IP6\twith  flow\n            information,\tetc).",
                        "x-yang-type": "integrated-services:SessionType"
                      },
                      "rsvpResvDestAddr": {
                        "type": "string",
                        "description": "The\tdestination address used by all\tsenders\tin\n            this\t session.   This object\tmay not\tbe changed\n            when\tthe  value  of\tthe  RowStatus\tobject\tis\n            'active'.",
                        "format": "binary"
                      },
                      "rsvpResvSenderAddr": {
                        "type": "string",
                        "description": "The\tsource address of the sender  selected\tby\n            this\t reservation.\tThe  value  of\tall zeroes\n            indicates 'all senders'.  This object  may  not\n            be  changed\twhen  the  value  of the RowStatus\n            object is 'active'.",
                        "format": "binary"
                      },
                      "rsvpResvDestAddrLength": {
                        "type": "integer",
                        "description": "The\tlength of the destination address in bits.\n            This\t is  the CIDR Prefix Length, which for IP4\n            hosts and multicast addresses is 32 bits.  This\n            object may not be changed when the value of the\n            RowStatus object is 'active'.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "rsvpResvSenderAddrLength": {
                        "type": "integer",
                        "description": "The\tlength of the sender's\taddress\t in  bits.\n            This\t is  the CIDR Prefix Length, which for IP4\n            hosts and multicast addresses is 32 bits.  This\n            object may not be changed when the value of the\n            RowStatus object is 'active'.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "rsvpResvProtocol": {
                        "type": "string",
                        "description": "The\tIP Protocol used by  this  session.   This\n            object may not be changed when the value of the\n            RowStatus object is 'active'.",
                        "x-yang-type": "integrated-services:Protocol"
                      },
                      "rsvpResvDestPort": {
                        "type": "string",
                        "description": "The\t UDP  or  TCP  port  number  used   as\t a\n            destination\t port  for  all\t senders  in  this\n            session.  If\tthe IP protocol\tin use,\t specified\n            by  rsvpResvProtocol,  is  50 (ESP) or 51 (AH),\n            this\t represents  a\tvirtual\t destination  port\n            number.   A value of\tzero indicates that the\tIP\n            protocol in use  does  not  have  ports.   This\n            object may not be changed when the value of the\n            RowStatus object is 'active'.",
                        "x-yang-type": "integrated-services:Port"
                      },
                      "rsvpResvPort": {
                        "type": "string",
                        "description": "The\tUDP or TCP port\tnumber used  as\t a  source\n            port\t for  this sender in this session.  If the\n            IP\t protocol    in\t   use,\t   specified\tby\n            rsvpResvProtocol  is\t 50 (ESP) or 51\t(AH), this\n            represents a\tgeneralized port identifier (GPI).\n            A  value of zero indicates that the IP protocol\n            in use does not have\tports.\t This  object  may\n            not\tbe changed when\tthe value of the RowStatus\n            object is 'active'.",
                        "x-yang-type": "integrated-services:Port"
                      },
                      "rsvpResvHopAddr": {
                        "type": "string",
                        "description": "The\taddress\tused by\tthe next RSVP  hop  (which\n            may be the ultimate receiver).",
                        "format": "binary"
                      },
                      "rsvpResvHopLih": {
                        "type": "integer",
                        "description": "The\tLogical\tInterface Handle received from the\n            previous  RSVP  hop\t(which may be the ultimate\n            receiver).",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "rsvpResvInterface": {
                        "type": "string",
                        "description": "The\tifIndex\tvalue of the  interface\t on  which\n            this\tRESV message was most recently received.",
                        "x-yang-type": "if-mib:InterfaceIndex"
                      },
                      "rsvpResvService": {
                        "type": "string",
                        "description": "The\tQoS Service  classification  requested\tby\n            the receiver.",
                        "x-yang-type": "integrated-services:QosService"
                      },
                      "rsvpResvTSpecRate": {
                        "type": "string",
                        "description": "The\tAverage\tBit  Rate  of  the  sender's  data\n            stream.    Within  a\t transmission  burst,  the\n            arrival   rate    may    be\t  as\tfast\tas\n            rsvpResvTSpecPeakRate   (if\tsupported  by  the\n            service model); however, averaged across two\tor\n            more\t burst\tintervals,  the\t rate  should  not\n            exceed rsvpResvTSpecRate.\n            \n            Note\tthat this is a prediction, often based\ton\n            the\tgeneral\t capability  of\ta type of codec\tor\n            particular encoding;\tthe measured average  rate\n            may be significantly\tlower.",
                        "x-yang-type": "integrated-services:BitRate"
                      },
                      "rsvpResvTSpecPeakRate": {
                        "type": "string",
                        "description": "The\tPeak Bit Rate of the sender's data stream.\n            Traffic  arrival is not expected to exceed this\n            rate\tat any time, apart  from  the  effects\tof\n            jitter in the network.  If not specified in the\n            TSpec, this returns zero or noSuchValue.",
                        "x-yang-type": "integrated-services:BitRate"
                      },
                      "rsvpResvTSpecBurst": {
                        "type": "string",
                        "description": "The\tsize of\tthe largest  burst  expected  from\n            the sender at a time.\n            \n            If this is less than\t the  sender's\tadvertised\n            burst  size,\tthe receiver is\tasking the network\n            to provide flow pacing  beyond  what\t would\tbe\n            provided   under   normal  circumstances.  Such\n            pacing is at\tthe network's option.",
                        "x-yang-type": "integrated-services:BurstSize"
                      },
                      "rsvpResvTSpecMinTU": {
                        "type": "string",
                        "description": "The\tminimum\tmessage\tsize for  this\tflow.  The\n            policing  algorithm will treat smaller messages\n            as though they are this size.",
                        "x-yang-type": "integrated-services:MessageSize"
                      },
                      "rsvpResvTSpecMaxTU": {
                        "type": "string",
                        "description": "The\tmaximum\tmessage\tsize for  this\tflow.  The\n            admission  algorithm\t will  reject TSpecs whose\n            Maximum Transmission\tUnit, plus  the\t interface\n            headers, exceed the interface MTU.",
                        "x-yang-type": "integrated-services:MessageSize"
                      },
                      "rsvpResvRSpecRate": {
                        "type": "string",
                        "description": "If the requested  service  is  Guaranteed,\tas\n            specified   by  rsvpResvService,  this  is  the\n            clearing  rate   that   is\tbeing\trequested.\n            Otherwise,  it is zero, or the agent\tmay return\n            noSuchValue.",
                        "x-yang-type": "integrated-services:BitRate"
                      },
                      "rsvpResvRSpecSlack": {
                        "type": "integer",
                        "description": "If the requested  service  is  Guaranteed,\tas\n            specified by\trsvpResvService, this is the delay\n            slack.  Otherwise, it is zero, or the agent may\n            return noSuchValue.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "rsvpResvInterval": {
                        "type": "string",
                        "description": "The\t interval  between  refresh  messages\tas\n            advertised by the Next Hop.",
                        "x-yang-type": "RSVP-MIB:RefreshInterval"
                      },
                      "rsvpResvScope": {
                        "type": "string",
                        "description": "The\tcontents of the\tscope object, displayed\tas\n            an  uninterpreted  string  of octets, including\n            the object header.  In the absence of  such\tan\n            object, this\tshould be of zero length.\n            \n            If the length  is  non-zero,\t this  contains\t a\n            series of IP4 or IP6\taddresses.",
                        "format": "binary"
                      },
                      "rsvpResvShared": {
                        "type": "boolean",
                        "description": "If TRUE, a reservation shared among\tsenders\tis\n            requested.  If FALSE, a reservation specific\tto\n            this\tsender is requested."
                      },
                      "rsvpResvExplicit": {
                        "type": "boolean",
                        "description": "If TRUE, individual\tsenders\tare  listed  using\n            Filter  Specifications.   If\tFALSE, all senders\n            are implicitly selected.  The Scope Object will\n            contain  a list of senders that need\tto receive\n            this\treservation request  for  the  purpose\tof\n            routing the RESV message."
                      },
                      "rsvpResvRSVPHop": {
                        "type": "boolean",
                        "description": "If TRUE, the node believes that  the  previous\n            IP  hop  is\tan  RSVP  hop.\tIf FALSE, the node\n            believes that the previous IP hop may not be\tan\n            RSVP\thop."
                      },
                      "rsvpResvLastChange": {
                        "type": "string",
                        "description": "The\t time  of  the\t last\tchange\t in   this\n            reservation\trequest;  This is either the first\n            time\tit was received\tor the time  of\t the  most\n            recent change in parameters.",
                        "x-yang-type": "yang:timestamp"
                      },
                      "rsvpResvPolicy": {
                        "type": "string",
                        "description": "The\tcontents of the\tpolicy\tobject,\t displayed\n            as an uninterpreted string of octets, including\n            the object header.  In the absence of  such\tan\n            object, this\tshould be of zero length.",
                        "format": "binary"
                      },
                      "rsvpResvStatus": {
                        "type": "string",
                        "description": "'active' for all active RESV  messages.   This\n            object  may\tbe  used  to  install  static RESV\n            information or delete RESV information.",
                        "x-yang-type": "snmpv2-tc:RowStatus"
                      },
                      "rsvpResvTTL": {
                        "type": "integer",
                        "description": "The\tTTL value in the RSVP header that was last\n            received.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "rsvpResvFlowId": {
                        "type": "integer",
                        "description": "The\tflow ID\tthat this receiver  is\tusing,\tif\n            this\t is  an\tIPv6 session.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      }
                    }
                  }
                },
                "example": {
                  "RSVP-MIB:rsvpResvEntry": [
                    {
                      "rsvpSessionNumber": "example-string",
                      "rsvpResvNumber": "example-string",
                      "rsvpResvType": "ethernetCsmacd(6)",
                      "rsvpResvDestAddr": "192.168.1.1",
                      "rsvpResvSenderAddr": "192.168.1.1",
                      "rsvpResvDestAddrLength": -2147483648,
                      "rsvpResvSenderAddrLength": -2147483648,
                      "rsvpResvProtocol": "example-string",
                      "rsvpResvDestPort": "example-string",
                      "rsvpResvPort": "example-string",
                      "rsvpResvHopAddr": "192.168.1.1",
                      "rsvpResvHopLih": -2147483648,
                      "rsvpResvInterface": "GigabitEthernet1/0/1",
                      "rsvpResvService": "example-string",
                      "rsvpResvTSpecRate": "example-string",
                      "rsvpResvTSpecPeakRate": "example-string",
                      "rsvpResvTSpecBurst": "example-string",
                      "rsvpResvTSpecMinTU": "example-string",
                      "rsvpResvTSpecMaxTU": "example-string",
                      "rsvpResvRSpecRate": "example-string",
                      "rsvpResvRSpecSlack": -2147483648,
                      "rsvpResvInterval": "example-string",
                      "rsvpResvScope": "example-string",
                      "rsvpResvShared": true,
                      "rsvpResvExplicit": true,
                      "rsvpResvRSVPHop": true,
                      "rsvpResvLastChange": "example-string",
                      "rsvpResvPolicy": "example-string",
                      "rsvpResvStatus": "up(1)",
                      "rsvpResvTTL": -2147483648,
                      "rsvpResvFlowId": -2147483648
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-rsvpResvEntry",
        "parameters": [
          {
            "name": "Accept",
            "in": "header",
            "required": false,
            "description": "RESTCONF response media type (RFC 8040)",
            "schema": {
              "type": "string",
              "default": "application/yang-data+json",
              "enum": [
                "application/yang-data+json",
                "application/yang-data+xml"
              ]
            }
          },
          {
            "name": "depth",
            "in": "query",
            "required": false,
            "description": "Limit the depth of returned sub-tree data (RFC 8040 Section 4.8.2). Use 'unbounded' for full depth.",
            "schema": {
              "type": "string",
              "default": "unbounded"
            }
          },
          {
            "name": "fields",
            "in": "query",
            "required": false,
            "description": "Select specific fields to return (RFC 8040 Section 4.8.3). Example: fields=name;status",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "content",
            "in": "query",
            "required": false,
            "description": "Filter by config state: 'config' (config true only), 'nonconfig' (config false only), or 'all'.",
            "schema": {
              "type": "string",
              "enum": [
                "config",
                "nonconfig",
                "all"
              ],
              "default": "all"
            }
          }
        ]
      },
      "x-yang-path": "/rsvpResvTable/rsvpResvEntry",
      "x-restconf-kind": "container"
    },
    "/data/RSVP-MIB:rsvpResvFwdTable": {
      "get": {
        "summary": "Get rsvpResvFwdTable data",
        "description": "Retrieve rsvpResvFwdTable operational data from MIB",
        "tags": [
          "RSVP-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "description": "Information\tdescribing the\tstate  information\n        displayed upstream in RESV messages.",
                  "properties": {
                    "rsvpResvFwdEntry": {
                      "type": "array",
                      "description": "Information\tdescribing the\tstate  information\n          displayed   upstream\t  in   an   RESV   message\n          concerning a\tsingle sender.",
                      "items": {
                        "type": "object",
                        "properties": {
                          "rsvpSessionNumber": {
                            "type": "string",
                            "description": "rsvpSessionNumber",
                            "x-yang-type": "leafref"
                          },
                          "rsvpResvFwdNumber": {
                            "type": "string",
                            "description": "The\tnumber of this reservation request.   This\n            is  for  SNMP Indexing purposes only\tand has\tno\n            relation to any protocol value.",
                            "x-yang-type": "integrated-services:SessionNumber"
                          },
                          "rsvpResvFwdType": {
                            "type": "string",
                            "description": "The\ttype of\tsession\t(IP4, IP6, IP6\twith  flow\n            information,\tetc).",
                            "x-yang-type": "integrated-services:SessionType"
                          },
                          "rsvpResvFwdDestAddr": {
                            "type": "string",
                            "description": "The\tdestination address used by all\tsenders\tin\n            this\t session.   This object\tmay not\tbe changed\n            when\tthe  value  of\tthe  RowStatus\tobject\tis\n            'active'.",
                            "format": "binary"
                          },
                          "rsvpResvFwdSenderAddr": {
                            "type": "string",
                            "description": "The\tsource address of the sender  selected\tby\n            this\t reservation.\tThe  value  of\tall zeroes\n            indicates 'all senders'.  This object  may  not\n            be  changed\twhen  the  value  of the RowStatus\n            object is 'active'.",
                            "format": "binary"
                          },
                          "rsvpResvFwdDestAddrLength": {
                            "type": "integer",
                            "description": "The\tlength of the destination address in bits.\n            This\t is  the CIDR Prefix Length, which for IP4\n            hosts and multicast addresses is 32 bits.  This\n            object may not be changed when the value of the\n            RowStatus object is 'active'.",
                            "minimum": -2147483648,
                            "maximum": 2147483647
                          },
                          "rsvpResvFwdSenderAddrLength": {
                            "type": "integer",
                            "description": "The\tlength of the sender's\taddress\t in  bits.\n            This\t is  the CIDR Prefix Length, which for IP4\n            hosts and multicast addresses is 32 bits.  This\n            object may not be changed when the value of the\n            RowStatus object is 'active'.",
                            "minimum": -2147483648,
                            "maximum": 2147483647
                          },
                          "rsvpResvFwdProtocol": {
                            "type": "string",
                            "description": "The\tIP Protocol used by a session. for  secure\n            sessions,  this  indicates  IP  Security.  This\n            object may not be changed when the value of the\n            RowStatus object is 'active'.",
                            "x-yang-type": "integrated-services:Protocol"
                          },
                          "rsvpResvFwdDestPort": {
                            "type": "string",
                            "description": "The\t UDP  or  TCP  port  number  used   as\t a\n            destination\t port  for  all\t senders  in  this\n            session.  If\tthe IP protocol\tin use,\t specified\n            by rsvpResvFwdProtocol, is 50 (ESP) or 51 (AH),\n            this\t represents  a\tvirtual\t destination  port\n            number.   A value of\tzero indicates that the\tIP\n            protocol in use  does  not  have  ports.   This\n            object may not be changed when the value of the\n            RowStatus object is 'active'.",
                            "x-yang-type": "integrated-services:Port"
                          },
                          "rsvpResvFwdPort": {
                            "type": "string",
                            "description": "The\tUDP or TCP port\tnumber used  as\t a  source\n            port\t for  this sender in this session.  If the\n            IP\t protocol    in\t   use,\t   specified\tby\n            rsvpResvFwdProtocol\tis  50\t(ESP)  or 51 (AH),\n            this\trepresents a generalized  port\tidentifier\n            (GPI).   A  value of\tzero indicates that the\tIP\n            protocol in use  does  not  have  ports.   This\n            object may not be changed when the value of the\n            RowStatus object is 'active'.",
                            "x-yang-type": "integrated-services:Port"
                          },
                          "rsvpResvFwdHopAddr": {
                            "type": "string",
                            "description": "The\taddress\tof the (previous) RSVP\tthat  will\n            receive this\tmessage.",
                            "format": "binary"
                          },
                          "rsvpResvFwdHopLih": {
                            "type": "integer",
                            "description": "The\t Logical  Interface  Handle  sent  to  the\n            (previous)\tRSVP   that   will   receive  this\n            message.",
                            "minimum": -2147483648,
                            "maximum": 2147483647
                          },
                          "rsvpResvFwdInterface": {
                            "type": "string",
                            "description": "The\tifIndex\tvalue of the  interface\t on  which\n            this\tRESV message was most recently sent.",
                            "x-yang-type": "if-mib:InterfaceIndex"
                          },
                          "rsvpResvFwdService": {
                            "type": "string",
                            "description": "The\tQoS Service classification requested.",
                            "x-yang-type": "integrated-services:QosService"
                          },
                          "rsvpResvFwdTSpecRate": {
                            "type": "string",
                            "description": "The\tAverage\tBit  Rate  of  the  sender's  data\n            stream.    Within  a\t transmission  burst,  the\n            arrival   rate    may    be\t  as\tfast\tas\n            rsvpResvFwdTSpecPeakRate  (if  supported by the\n            service model); however, averaged across two\tor\n            more\t burst\tintervals,  the\t rate  should  not\n            exceed rsvpResvFwdTSpecRate.\n            \n            Note\tthat this is a prediction, often based\ton\n            the\tgeneral\t capability  of\ta type of codec\tor\n            particular encoding;\tthe measured average  rate\n            may be significantly\tlower.",
                            "x-yang-type": "integrated-services:BitRate"
                          },
                          "rsvpResvFwdTSpecPeakRate": {
                            "type": "string",
                            "description": "The\tPeak Bit Rate of the sender's data  stream\n            Traffic  arrival is not expected to exceed this\n            rate\tat any time, apart  from  the  effects\tof\n            jitter in the network.  If not specified in the\n            TSpec, this returns zero or noSuchValue.",
                            "x-yang-type": "integrated-services:BitRate"
                          },
                          "rsvpResvFwdTSpecBurst": {
                            "type": "string",
                            "description": "The\tsize of\tthe largest  burst  expected  from\n            the sender at a time.\n            \n            If this is less than\t the  sender's\tadvertised\n            burst  size,\tthe receiver is\tasking the network\n            to provide flow pacing  beyond  what\t would\tbe\n            provided   under   normal  circumstances.  Such\n            pacing is at\tthe network's option.",
                            "x-yang-type": "integrated-services:BurstSize"
                          },
                          "rsvpResvFwdTSpecMinTU": {
                            "type": "string",
                            "description": "The\tminimum\tmessage\tsize for  this\tflow.  The\n            policing  algorithm will treat smaller messages\n            as though they are this size.",
                            "x-yang-type": "integrated-services:MessageSize"
                          },
                          "rsvpResvFwdTSpecMaxTU": {
                            "type": "string",
                            "description": "The\tmaximum\tmessage\tsize for  this\tflow.  The\n            admission  algorithm\t will  reject TSpecs whose\n            Maximum Transmission\tUnit, plus  the\t interface\n            headers, exceed the interface MTU.",
                            "x-yang-type": "integrated-services:MessageSize"
                          },
                          "rsvpResvFwdRSpecRate": {
                            "type": "string",
                            "description": "If the requested  service  is  Guaranteed,\tas\n            specified   by  rsvpResvService,  this  is  the\n            clearing  rate   that   is\tbeing\trequested.\n            Otherwise,  it is zero, or the agent\tmay return\n            noSuchValue.",
                            "x-yang-type": "integrated-services:BitRate"
                          },
                          "rsvpResvFwdRSpecSlack": {
                            "type": "integer",
                            "description": "If the requested  service  is  Guaranteed,\tas\n            specified by\trsvpResvService, this is the delay\n            slack.  Otherwise, it is zero, or the agent may\n            return noSuchValue.",
                            "minimum": -2147483648,
                            "maximum": 2147483647
                          },
                          "rsvpResvFwdInterval": {
                            "type": "string",
                            "description": "The\t  interval   between   refresh\t  messages\n            advertised to the Previous Hop.",
                            "x-yang-type": "RSVP-MIB:RefreshInterval"
                          },
                          "rsvpResvFwdScope": {
                            "type": "string",
                            "description": "The\tcontents of the\tscope object, displayed\tas\n            an  uninterpreted  string  of octets, including\n            the object header.  In the absence of  such\tan\n            object, this\tshould be of zero length.",
                            "format": "binary"
                          },
                          "rsvpResvFwdShared": {
                            "type": "boolean",
                            "description": "If TRUE, a reservation shared among\tsenders\tis\n            requested.  If FALSE, a reservation specific\tto\n            this\tsender is requested."
                          },
                          "rsvpResvFwdExplicit": {
                            "type": "boolean",
                            "description": "If TRUE, individual\tsenders\tare  listed  using\n            Filter  Specifications.   If\tFALSE, all senders\n            are implicitly selected.  The Scope Object will\n            contain  a list of senders that need\tto receive\n            this\treservation request  for  the  purpose\tof\n            routing the RESV message."
                          },
                          "rsvpResvFwdRSVPHop": {
                            "type": "boolean",
                            "description": "If TRUE, the node believes that  the  next\tIP\n            hop\tis  an\tRSVP  hop.   If\t FALSE,\t the  node\n            believes that the next IP hop  may  not  be\tan\n            RSVP\thop."
                          },
                          "rsvpResvFwdLastChange": {
                            "type": "string",
                            "description": "The\ttime of\tthe last change\tin  this  request;\n            This\t is  either  the first time it was sent\tor\n            the\ttime  of  the  most   recent   change\tin\n            parameters.",
                            "x-yang-type": "yang:timestamp"
                          },
                          "rsvpResvFwdPolicy": {
                            "type": "string",
                            "description": "The\tcontents of the\tpolicy\tobject,\t displayed\n            as an uninterpreted string of octets, including\n            the object header.  In the absence of  such\tan\n            object, this\tshould be of zero length.",
                            "format": "binary"
                          },
                          "rsvpResvFwdStatus": {
                            "type": "string",
                            "description": "'active' for all active RESV  messages.   This\n            object may be used to delete\tRESV information.",
                            "x-yang-type": "snmpv2-tc:RowStatus"
                          },
                          "rsvpResvFwdTTL": {
                            "type": "integer",
                            "description": "The\tTTL value in the RSVP header that was last\n            received.",
                            "minimum": -2147483648,
                            "maximum": 2147483647
                          },
                          "rsvpResvFwdFlowId": {
                            "type": "integer",
                            "description": "The\tflow ID\tthat this receiver  is\tusing,\tif\n            this\t is  an\tIPv6 session.",
                            "minimum": -2147483648,
                            "maximum": 2147483647
                          }
                        }
                      }
                    }
                  }
                },
                "example": {
                  "RSVP-MIB:rsvpResvFwdTable": {
                    "rsvpResvFwdEntry": [
                      {
                        "rsvpSessionNumber": "example-string",
                        "rsvpResvFwdNumber": "example-string",
                        "rsvpResvFwdType": "ethernetCsmacd(6)",
                        "rsvpResvFwdDestAddr": "192.168.1.1",
                        "rsvpResvFwdSenderAddr": "192.168.1.1",
                        "rsvpResvFwdDestAddrLength": -2147483648,
                        "rsvpResvFwdSenderAddrLength": -2147483648,
                        "rsvpResvFwdProtocol": "example-string",
                        "rsvpResvFwdDestPort": "example-string",
                        "rsvpResvFwdPort": "example-string",
                        "rsvpResvFwdHopAddr": "192.168.1.1",
                        "rsvpResvFwdHopLih": -2147483648,
                        "rsvpResvFwdInterface": "GigabitEthernet1/0/1",
                        "rsvpResvFwdService": "example-string",
                        "rsvpResvFwdTSpecRate": "example-string",
                        "rsvpResvFwdTSpecPeakRate": "example-string",
                        "rsvpResvFwdTSpecBurst": "example-string",
                        "rsvpResvFwdTSpecMinTU": "example-string",
                        "rsvpResvFwdTSpecMaxTU": "example-string",
                        "rsvpResvFwdRSpecRate": "example-string",
                        "rsvpResvFwdRSpecSlack": -2147483648,
                        "rsvpResvFwdInterval": "example-string",
                        "rsvpResvFwdScope": "example-string",
                        "rsvpResvFwdShared": true,
                        "rsvpResvFwdExplicit": true,
                        "rsvpResvFwdRSVPHop": true,
                        "rsvpResvFwdLastChange": "example-string",
                        "rsvpResvFwdPolicy": "example-string",
                        "rsvpResvFwdStatus": "up(1)",
                        "rsvpResvFwdTTL": -2147483648,
                        "rsvpResvFwdFlowId": -2147483648
                      },
                      {
                        "rsvpSessionNumber": "example-string",
                        "rsvpResvFwdNumber": "example-string",
                        "rsvpResvFwdType": "ethernetCsmacd(6)",
                        "rsvpResvFwdDestAddr": "192.168.1.1",
                        "rsvpResvFwdSenderAddr": "192.168.1.1",
                        "rsvpResvFwdDestAddrLength": -2147483648,
                        "rsvpResvFwdSenderAddrLength": -2147483648,
                        "rsvpResvFwdProtocol": "example-string",
                        "rsvpResvFwdDestPort": "example-string",
                        "rsvpResvFwdPort": "example-string",
                        "rsvpResvFwdHopAddr": "192.168.1.1",
                        "rsvpResvFwdHopLih": -2147483648,
                        "rsvpResvFwdInterface": "GigabitEthernet1/0/1",
                        "rsvpResvFwdService": "example-string",
                        "rsvpResvFwdTSpecRate": "example-string",
                        "rsvpResvFwdTSpecPeakRate": "example-string",
                        "rsvpResvFwdTSpecBurst": "example-string",
                        "rsvpResvFwdTSpecMinTU": "example-string",
                        "rsvpResvFwdTSpecMaxTU": "example-string",
                        "rsvpResvFwdRSpecRate": "example-string",
                        "rsvpResvFwdRSpecSlack": -2147483648,
                        "rsvpResvFwdInterval": "example-string",
                        "rsvpResvFwdScope": "example-string",
                        "rsvpResvFwdShared": true,
                        "rsvpResvFwdExplicit": true,
                        "rsvpResvFwdRSVPHop": true,
                        "rsvpResvFwdLastChange": "example-string",
                        "rsvpResvFwdPolicy": "example-string",
                        "rsvpResvFwdStatus": "up(1)",
                        "rsvpResvFwdTTL": -2147483648,
                        "rsvpResvFwdFlowId": -2147483648
                      },
                      {
                        "rsvpSessionNumber": "example-string",
                        "rsvpResvFwdNumber": "example-string",
                        "rsvpResvFwdType": "ethernetCsmacd(6)",
                        "rsvpResvFwdDestAddr": "192.168.1.1",
                        "rsvpResvFwdSenderAddr": "192.168.1.1",
                        "rsvpResvFwdDestAddrLength": -2147483648,
                        "rsvpResvFwdSenderAddrLength": -2147483648,
                        "rsvpResvFwdProtocol": "example-string",
                        "rsvpResvFwdDestPort": "example-string",
                        "rsvpResvFwdPort": "example-string",
                        "rsvpResvFwdHopAddr": "192.168.1.1",
                        "rsvpResvFwdHopLih": -2147483648,
                        "rsvpResvFwdInterface": "GigabitEthernet1/0/1",
                        "rsvpResvFwdService": "example-string",
                        "rsvpResvFwdTSpecRate": "example-string",
                        "rsvpResvFwdTSpecPeakRate": "example-string",
                        "rsvpResvFwdTSpecBurst": "example-string",
                        "rsvpResvFwdTSpecMinTU": "example-string",
                        "rsvpResvFwdTSpecMaxTU": "example-string",
                        "rsvpResvFwdRSpecRate": "example-string",
                        "rsvpResvFwdRSpecSlack": -2147483648,
                        "rsvpResvFwdInterval": "example-string",
                        "rsvpResvFwdScope": "example-string",
                        "rsvpResvFwdShared": true,
                        "rsvpResvFwdExplicit": true,
                        "rsvpResvFwdRSVPHop": true,
                        "rsvpResvFwdLastChange": "example-string",
                        "rsvpResvFwdPolicy": "example-string",
                        "rsvpResvFwdStatus": "up(1)",
                        "rsvpResvFwdTTL": -2147483648,
                        "rsvpResvFwdFlowId": -2147483648
                      }
                    ]
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-rsvpResvFwdTable",
        "parameters": [
          {
            "name": "Accept",
            "in": "header",
            "required": false,
            "description": "RESTCONF response media type (RFC 8040)",
            "schema": {
              "type": "string",
              "default": "application/yang-data+json",
              "enum": [
                "application/yang-data+json",
                "application/yang-data+xml"
              ]
            }
          },
          {
            "name": "depth",
            "in": "query",
            "required": false,
            "description": "Limit the depth of returned sub-tree data (RFC 8040 Section 4.8.2). Use 'unbounded' for full depth.",
            "schema": {
              "type": "string",
              "default": "unbounded"
            }
          },
          {
            "name": "fields",
            "in": "query",
            "required": false,
            "description": "Select specific fields to return (RFC 8040 Section 4.8.3). Example: fields=name;status",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "content",
            "in": "query",
            "required": false,
            "description": "Filter by config state: 'config' (config true only), 'nonconfig' (config false only), or 'all'.",
            "schema": {
              "type": "string",
              "enum": [
                "config",
                "nonconfig",
                "all"
              ],
              "default": "all"
            }
          }
        ]
      },
      "x-yang-path": "/rsvpResvFwdTable",
      "x-restconf-kind": "container"
    },
    "/data/RSVP-MIB:rsvpResvFwdTable/rsvpResvFwdEntry": {
      "get": {
        "summary": "Get rsvpResvFwdEntry list",
        "description": "Retrieve list of rsvpResvFwdEntry entries from MIB",
        "tags": [
          "RSVP-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "Information\tdescribing the\tstate  information\n          displayed   upstream\t  in   an   RESV   message\n          concerning a\tsingle sender.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "rsvpSessionNumber": {
                        "type": "string",
                        "description": "rsvpSessionNumber",
                        "x-yang-type": "leafref"
                      },
                      "rsvpResvFwdNumber": {
                        "type": "string",
                        "description": "The\tnumber of this reservation request.   This\n            is  for  SNMP Indexing purposes only\tand has\tno\n            relation to any protocol value.",
                        "x-yang-type": "integrated-services:SessionNumber"
                      },
                      "rsvpResvFwdType": {
                        "type": "string",
                        "description": "The\ttype of\tsession\t(IP4, IP6, IP6\twith  flow\n            information,\tetc).",
                        "x-yang-type": "integrated-services:SessionType"
                      },
                      "rsvpResvFwdDestAddr": {
                        "type": "string",
                        "description": "The\tdestination address used by all\tsenders\tin\n            this\t session.   This object\tmay not\tbe changed\n            when\tthe  value  of\tthe  RowStatus\tobject\tis\n            'active'.",
                        "format": "binary"
                      },
                      "rsvpResvFwdSenderAddr": {
                        "type": "string",
                        "description": "The\tsource address of the sender  selected\tby\n            this\t reservation.\tThe  value  of\tall zeroes\n            indicates 'all senders'.  This object  may  not\n            be  changed\twhen  the  value  of the RowStatus\n            object is 'active'.",
                        "format": "binary"
                      },
                      "rsvpResvFwdDestAddrLength": {
                        "type": "integer",
                        "description": "The\tlength of the destination address in bits.\n            This\t is  the CIDR Prefix Length, which for IP4\n            hosts and multicast addresses is 32 bits.  This\n            object may not be changed when the value of the\n            RowStatus object is 'active'.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "rsvpResvFwdSenderAddrLength": {
                        "type": "integer",
                        "description": "The\tlength of the sender's\taddress\t in  bits.\n            This\t is  the CIDR Prefix Length, which for IP4\n            hosts and multicast addresses is 32 bits.  This\n            object may not be changed when the value of the\n            RowStatus object is 'active'.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "rsvpResvFwdProtocol": {
                        "type": "string",
                        "description": "The\tIP Protocol used by a session. for  secure\n            sessions,  this  indicates  IP  Security.  This\n            object may not be changed when the value of the\n            RowStatus object is 'active'.",
                        "x-yang-type": "integrated-services:Protocol"
                      },
                      "rsvpResvFwdDestPort": {
                        "type": "string",
                        "description": "The\t UDP  or  TCP  port  number  used   as\t a\n            destination\t port  for  all\t senders  in  this\n            session.  If\tthe IP protocol\tin use,\t specified\n            by rsvpResvFwdProtocol, is 50 (ESP) or 51 (AH),\n            this\t represents  a\tvirtual\t destination  port\n            number.   A value of\tzero indicates that the\tIP\n            protocol in use  does  not  have  ports.   This\n            object may not be changed when the value of the\n            RowStatus object is 'active'.",
                        "x-yang-type": "integrated-services:Port"
                      },
                      "rsvpResvFwdPort": {
                        "type": "string",
                        "description": "The\tUDP or TCP port\tnumber used  as\t a  source\n            port\t for  this sender in this session.  If the\n            IP\t protocol    in\t   use,\t   specified\tby\n            rsvpResvFwdProtocol\tis  50\t(ESP)  or 51 (AH),\n            this\trepresents a generalized  port\tidentifier\n            (GPI).   A  value of\tzero indicates that the\tIP\n            protocol in use  does  not  have  ports.   This\n            object may not be changed when the value of the\n            RowStatus object is 'active'.",
                        "x-yang-type": "integrated-services:Port"
                      },
                      "rsvpResvFwdHopAddr": {
                        "type": "string",
                        "description": "The\taddress\tof the (previous) RSVP\tthat  will\n            receive this\tmessage.",
                        "format": "binary"
                      },
                      "rsvpResvFwdHopLih": {
                        "type": "integer",
                        "description": "The\t Logical  Interface  Handle  sent  to  the\n            (previous)\tRSVP   that   will   receive  this\n            message.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "rsvpResvFwdInterface": {
                        "type": "string",
                        "description": "The\tifIndex\tvalue of the  interface\t on  which\n            this\tRESV message was most recently sent.",
                        "x-yang-type": "if-mib:InterfaceIndex"
                      },
                      "rsvpResvFwdService": {
                        "type": "string",
                        "description": "The\tQoS Service classification requested.",
                        "x-yang-type": "integrated-services:QosService"
                      },
                      "rsvpResvFwdTSpecRate": {
                        "type": "string",
                        "description": "The\tAverage\tBit  Rate  of  the  sender's  data\n            stream.    Within  a\t transmission  burst,  the\n            arrival   rate    may    be\t  as\tfast\tas\n            rsvpResvFwdTSpecPeakRate  (if  supported by the\n            service model); however, averaged across two\tor\n            more\t burst\tintervals,  the\t rate  should  not\n            exceed rsvpResvFwdTSpecRate.\n            \n            Note\tthat this is a prediction, often based\ton\n            the\tgeneral\t capability  of\ta type of codec\tor\n            particular encoding;\tthe measured average  rate\n            may be significantly\tlower.",
                        "x-yang-type": "integrated-services:BitRate"
                      },
                      "rsvpResvFwdTSpecPeakRate": {
                        "type": "string",
                        "description": "The\tPeak Bit Rate of the sender's data  stream\n            Traffic  arrival is not expected to exceed this\n            rate\tat any time, apart  from  the  effects\tof\n            jitter in the network.  If not specified in the\n            TSpec, this returns zero or noSuchValue.",
                        "x-yang-type": "integrated-services:BitRate"
                      },
                      "rsvpResvFwdTSpecBurst": {
                        "type": "string",
                        "description": "The\tsize of\tthe largest  burst  expected  from\n            the sender at a time.\n            \n            If this is less than\t the  sender's\tadvertised\n            burst  size,\tthe receiver is\tasking the network\n            to provide flow pacing  beyond  what\t would\tbe\n            provided   under   normal  circumstances.  Such\n            pacing is at\tthe network's option.",
                        "x-yang-type": "integrated-services:BurstSize"
                      },
                      "rsvpResvFwdTSpecMinTU": {
                        "type": "string",
                        "description": "The\tminimum\tmessage\tsize for  this\tflow.  The\n            policing  algorithm will treat smaller messages\n            as though they are this size.",
                        "x-yang-type": "integrated-services:MessageSize"
                      },
                      "rsvpResvFwdTSpecMaxTU": {
                        "type": "string",
                        "description": "The\tmaximum\tmessage\tsize for  this\tflow.  The\n            admission  algorithm\t will  reject TSpecs whose\n            Maximum Transmission\tUnit, plus  the\t interface\n            headers, exceed the interface MTU.",
                        "x-yang-type": "integrated-services:MessageSize"
                      },
                      "rsvpResvFwdRSpecRate": {
                        "type": "string",
                        "description": "If the requested  service  is  Guaranteed,\tas\n            specified   by  rsvpResvService,  this  is  the\n            clearing  rate   that   is\tbeing\trequested.\n            Otherwise,  it is zero, or the agent\tmay return\n            noSuchValue.",
                        "x-yang-type": "integrated-services:BitRate"
                      },
                      "rsvpResvFwdRSpecSlack": {
                        "type": "integer",
                        "description": "If the requested  service  is  Guaranteed,\tas\n            specified by\trsvpResvService, this is the delay\n            slack.  Otherwise, it is zero, or the agent may\n            return noSuchValue.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "rsvpResvFwdInterval": {
                        "type": "string",
                        "description": "The\t  interval   between   refresh\t  messages\n            advertised to the Previous Hop.",
                        "x-yang-type": "RSVP-MIB:RefreshInterval"
                      },
                      "rsvpResvFwdScope": {
                        "type": "string",
                        "description": "The\tcontents of the\tscope object, displayed\tas\n            an  uninterpreted  string  of octets, including\n            the object header.  In the absence of  such\tan\n            object, this\tshould be of zero length.",
                        "format": "binary"
                      },
                      "rsvpResvFwdShared": {
                        "type": "boolean",
                        "description": "If TRUE, a reservation shared among\tsenders\tis\n            requested.  If FALSE, a reservation specific\tto\n            this\tsender is requested."
                      },
                      "rsvpResvFwdExplicit": {
                        "type": "boolean",
                        "description": "If TRUE, individual\tsenders\tare  listed  using\n            Filter  Specifications.   If\tFALSE, all senders\n            are implicitly selected.  The Scope Object will\n            contain  a list of senders that need\tto receive\n            this\treservation request  for  the  purpose\tof\n            routing the RESV message."
                      },
                      "rsvpResvFwdRSVPHop": {
                        "type": "boolean",
                        "description": "If TRUE, the node believes that  the  next\tIP\n            hop\tis  an\tRSVP  hop.   If\t FALSE,\t the  node\n            believes that the next IP hop  may  not  be\tan\n            RSVP\thop."
                      },
                      "rsvpResvFwdLastChange": {
                        "type": "string",
                        "description": "The\ttime of\tthe last change\tin  this  request;\n            This\t is  either  the first time it was sent\tor\n            the\ttime  of  the  most   recent   change\tin\n            parameters.",
                        "x-yang-type": "yang:timestamp"
                      },
                      "rsvpResvFwdPolicy": {
                        "type": "string",
                        "description": "The\tcontents of the\tpolicy\tobject,\t displayed\n            as an uninterpreted string of octets, including\n            the object header.  In the absence of  such\tan\n            object, this\tshould be of zero length.",
                        "format": "binary"
                      },
                      "rsvpResvFwdStatus": {
                        "type": "string",
                        "description": "'active' for all active RESV  messages.   This\n            object may be used to delete\tRESV information.",
                        "x-yang-type": "snmpv2-tc:RowStatus"
                      },
                      "rsvpResvFwdTTL": {
                        "type": "integer",
                        "description": "The\tTTL value in the RSVP header that was last\n            received.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "rsvpResvFwdFlowId": {
                        "type": "integer",
                        "description": "The\tflow ID\tthat this receiver  is\tusing,\tif\n            this\t is  an\tIPv6 session.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      }
                    }
                  }
                },
                "example": {
                  "RSVP-MIB:rsvpResvFwdEntry": [
                    {
                      "rsvpSessionNumber": "example-string",
                      "rsvpResvFwdNumber": "example-string",
                      "rsvpResvFwdType": "ethernetCsmacd(6)",
                      "rsvpResvFwdDestAddr": "192.168.1.1",
                      "rsvpResvFwdSenderAddr": "192.168.1.1",
                      "rsvpResvFwdDestAddrLength": -2147483648,
                      "rsvpResvFwdSenderAddrLength": -2147483648,
                      "rsvpResvFwdProtocol": "example-string",
                      "rsvpResvFwdDestPort": "example-string",
                      "rsvpResvFwdPort": "example-string",
                      "rsvpResvFwdHopAddr": "192.168.1.1",
                      "rsvpResvFwdHopLih": -2147483648,
                      "rsvpResvFwdInterface": "GigabitEthernet1/0/1",
                      "rsvpResvFwdService": "example-string",
                      "rsvpResvFwdTSpecRate": "example-string",
                      "rsvpResvFwdTSpecPeakRate": "example-string",
                      "rsvpResvFwdTSpecBurst": "example-string",
                      "rsvpResvFwdTSpecMinTU": "example-string",
                      "rsvpResvFwdTSpecMaxTU": "example-string",
                      "rsvpResvFwdRSpecRate": "example-string",
                      "rsvpResvFwdRSpecSlack": -2147483648,
                      "rsvpResvFwdInterval": "example-string",
                      "rsvpResvFwdScope": "example-string",
                      "rsvpResvFwdShared": true,
                      "rsvpResvFwdExplicit": true,
                      "rsvpResvFwdRSVPHop": true,
                      "rsvpResvFwdLastChange": "example-string",
                      "rsvpResvFwdPolicy": "example-string",
                      "rsvpResvFwdStatus": "up(1)",
                      "rsvpResvFwdTTL": -2147483648,
                      "rsvpResvFwdFlowId": -2147483648
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-rsvpResvFwdEntry",
        "parameters": [
          {
            "name": "Accept",
            "in": "header",
            "required": false,
            "description": "RESTCONF response media type (RFC 8040)",
            "schema": {
              "type": "string",
              "default": "application/yang-data+json",
              "enum": [
                "application/yang-data+json",
                "application/yang-data+xml"
              ]
            }
          },
          {
            "name": "depth",
            "in": "query",
            "required": false,
            "description": "Limit the depth of returned sub-tree data (RFC 8040 Section 4.8.2). Use 'unbounded' for full depth.",
            "schema": {
              "type": "string",
              "default": "unbounded"
            }
          },
          {
            "name": "fields",
            "in": "query",
            "required": false,
            "description": "Select specific fields to return (RFC 8040 Section 4.8.3). Example: fields=name;status",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "content",
            "in": "query",
            "required": false,
            "description": "Filter by config state: 'config' (config true only), 'nonconfig' (config false only), or 'all'.",
            "schema": {
              "type": "string",
              "enum": [
                "config",
                "nonconfig",
                "all"
              ],
              "default": "all"
            }
          }
        ]
      },
      "x-yang-path": "/rsvpResvFwdTable/rsvpResvFwdEntry",
      "x-restconf-kind": "container"
    },
    "/data/RSVP-MIB:rsvpIfTable": {
      "get": {
        "summary": "Get rsvpIfTable data",
        "description": "Retrieve rsvpIfTable operational data from MIB",
        "tags": [
          "RSVP-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "description": "The\tRSVP-specific attributes of  the  system's\n        interfaces.",
                  "properties": {
                    "rsvpIfEntry": {
                      "type": "array",
                      "description": "The\tRSVP-specific attributes of  the  a  given\n          interface.",
                      "items": {
                        "type": "object",
                        "properties": {
                          "ifIndex": {
                            "type": "string",
                            "description": "ifIndex",
                            "x-yang-type": "leafref"
                          },
                          "rsvpIfUdpNbrs": {
                            "type": "integer",
                            "description": "The\tnumber of neighbors perceived to be  using\n            only\tthe RSVP UDP Encapsulation.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "rsvpIfIpNbrs": {
                            "type": "integer",
                            "description": "The\tnumber of neighbors perceived to be  using\n            only\tthe RSVP IP Encapsulation.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "rsvpIfNbrs": {
                            "type": "integer",
                            "description": "The\tnumber of neighbors  currently\tperceived;\n            this\t will  exceed rsvpIfIpNbrs + rsvpIfUdpNbrs\n            by  the  number   of\t  neighbors   using   both\n            encapsulations.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "rsvpIfRefreshBlockadeMultiple": {
                            "type": "integer",
                            "description": "The\tvalue of the RSVP value\t'Kb', Which is the\n            minimum   number   of  refresh  intervals  that\n            blockade state will last once entered.",
                            "minimum": -2147483648,
                            "maximum": 2147483647
                          },
                          "rsvpIfRefreshMultiple": {
                            "type": "integer",
                            "description": "The\tvalue of the RSVP value\t'K', which is  the\n            number  of  refresh intervals which must elapse\n            (minimum) before a PATH or RESV  message  which\n            is not being\trefreshed will be aged out.",
                            "minimum": -2147483648,
                            "maximum": 2147483647
                          },
                          "rsvpIfTTL": {
                            "type": "integer",
                            "description": "The\tvalue of SEND_TTL used on  this\t interface\n            for\tmessages  this node originates.\t If set\tto\n            zero, the node determines  the  TTL\tvia  other\n            means.",
                            "minimum": -2147483648,
                            "maximum": 2147483647
                          },
                          "rsvpIfRefreshInterval": {
                            "type": "string",
                            "description": "The\tvalue of the RSVP value\t'R', which is  the\n            minimum period between refresh transmissions\tof\n            a given PATH\tor RESV\tmessage\ton an interface.",
                            "x-yang-type": "snmpv2-tc:TimeInterval"
                          },
                          "rsvpIfRouteDelay": {
                            "type": "string",
                            "description": "The\tapproximate period from\tthe time  a  route\n            is  changed\tto  the\t time  a resulting message\n            appears on the interface.",
                            "x-yang-type": "snmpv2-tc:TimeInterval"
                          },
                          "rsvpIfEnabled": {
                            "type": "boolean",
                            "description": "If TRUE, RSVP is enabled  on  this\tInterface.\n            If\tFALSE,\t RSVP\tis  not\t enabled  on  this\n            interface."
                          },
                          "rsvpIfUdpRequired": {
                            "type": "boolean",
                            "description": "If TRUE, manual configuration forces  the  use\n            of  UDP  encapsulation  on  the  interface.\tIf\n            FALSE,  UDP\tencapsulation  is  only\t used\tif\n            rsvpIfUdpNbrs is not\tzero."
                          },
                          "rsvpIfStatus": {
                            "type": "string",
                            "description": "'active' on\tinterfaces that\tare configured for\n            RSVP.",
                            "x-yang-type": "snmpv2-tc:RowStatus"
                          }
                        }
                      }
                    }
                  }
                },
                "example": {
                  "RSVP-MIB:rsvpIfTable": {
                    "rsvpIfEntry": [
                      {
                        "ifIndex": "1",
                        "rsvpIfUdpNbrs": 0,
                        "rsvpIfIpNbrs": 0,
                        "rsvpIfNbrs": 0,
                        "rsvpIfRefreshBlockadeMultiple": -2147483648,
                        "rsvpIfRefreshMultiple": -2147483648,
                        "rsvpIfTTL": -2147483648,
                        "rsvpIfRefreshInterval": "example-string",
                        "rsvpIfRouteDelay": "example-string",
                        "rsvpIfEnabled": true,
                        "rsvpIfUdpRequired": true,
                        "rsvpIfStatus": "up(1)"
                      },
                      {
                        "ifIndex": "2",
                        "rsvpIfUdpNbrs": 0,
                        "rsvpIfIpNbrs": 0,
                        "rsvpIfNbrs": 0,
                        "rsvpIfRefreshBlockadeMultiple": -2147483648,
                        "rsvpIfRefreshMultiple": -2147483648,
                        "rsvpIfTTL": -2147483648,
                        "rsvpIfRefreshInterval": "example-string",
                        "rsvpIfRouteDelay": "example-string",
                        "rsvpIfEnabled": true,
                        "rsvpIfUdpRequired": true,
                        "rsvpIfStatus": "up(1)"
                      },
                      {
                        "ifIndex": "3",
                        "rsvpIfUdpNbrs": 0,
                        "rsvpIfIpNbrs": 0,
                        "rsvpIfNbrs": 0,
                        "rsvpIfRefreshBlockadeMultiple": -2147483648,
                        "rsvpIfRefreshMultiple": -2147483648,
                        "rsvpIfTTL": -2147483648,
                        "rsvpIfRefreshInterval": "example-string",
                        "rsvpIfRouteDelay": "example-string",
                        "rsvpIfEnabled": true,
                        "rsvpIfUdpRequired": true,
                        "rsvpIfStatus": "up(1)"
                      }
                    ]
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-rsvpIfTable",
        "parameters": [
          {
            "name": "Accept",
            "in": "header",
            "required": false,
            "description": "RESTCONF response media type (RFC 8040)",
            "schema": {
              "type": "string",
              "default": "application/yang-data+json",
              "enum": [
                "application/yang-data+json",
                "application/yang-data+xml"
              ]
            }
          },
          {
            "name": "depth",
            "in": "query",
            "required": false,
            "description": "Limit the depth of returned sub-tree data (RFC 8040 Section 4.8.2). Use 'unbounded' for full depth.",
            "schema": {
              "type": "string",
              "default": "unbounded"
            }
          },
          {
            "name": "fields",
            "in": "query",
            "required": false,
            "description": "Select specific fields to return (RFC 8040 Section 4.8.3). Example: fields=name;status",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "content",
            "in": "query",
            "required": false,
            "description": "Filter by config state: 'config' (config true only), 'nonconfig' (config false only), or 'all'.",
            "schema": {
              "type": "string",
              "enum": [
                "config",
                "nonconfig",
                "all"
              ],
              "default": "all"
            }
          }
        ]
      },
      "x-yang-path": "/rsvpIfTable",
      "x-restconf-kind": "container"
    },
    "/data/RSVP-MIB:rsvpIfTable/rsvpIfEntry": {
      "get": {
        "summary": "Get rsvpIfEntry list",
        "description": "Retrieve list of rsvpIfEntry entries from MIB",
        "tags": [
          "RSVP-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "The\tRSVP-specific attributes of  the  a  given\n          interface.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "ifIndex": {
                        "type": "string",
                        "description": "ifIndex",
                        "x-yang-type": "leafref"
                      },
                      "rsvpIfUdpNbrs": {
                        "type": "integer",
                        "description": "The\tnumber of neighbors perceived to be  using\n            only\tthe RSVP UDP Encapsulation.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "rsvpIfIpNbrs": {
                        "type": "integer",
                        "description": "The\tnumber of neighbors perceived to be  using\n            only\tthe RSVP IP Encapsulation.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "rsvpIfNbrs": {
                        "type": "integer",
                        "description": "The\tnumber of neighbors  currently\tperceived;\n            this\t will  exceed rsvpIfIpNbrs + rsvpIfUdpNbrs\n            by  the  number   of\t  neighbors   using   both\n            encapsulations.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "rsvpIfRefreshBlockadeMultiple": {
                        "type": "integer",
                        "description": "The\tvalue of the RSVP value\t'Kb', Which is the\n            minimum   number   of  refresh  intervals  that\n            blockade state will last once entered.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "rsvpIfRefreshMultiple": {
                        "type": "integer",
                        "description": "The\tvalue of the RSVP value\t'K', which is  the\n            number  of  refresh intervals which must elapse\n            (minimum) before a PATH or RESV  message  which\n            is not being\trefreshed will be aged out.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "rsvpIfTTL": {
                        "type": "integer",
                        "description": "The\tvalue of SEND_TTL used on  this\t interface\n            for\tmessages  this node originates.\t If set\tto\n            zero, the node determines  the  TTL\tvia  other\n            means.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "rsvpIfRefreshInterval": {
                        "type": "string",
                        "description": "The\tvalue of the RSVP value\t'R', which is  the\n            minimum period between refresh transmissions\tof\n            a given PATH\tor RESV\tmessage\ton an interface.",
                        "x-yang-type": "snmpv2-tc:TimeInterval"
                      },
                      "rsvpIfRouteDelay": {
                        "type": "string",
                        "description": "The\tapproximate period from\tthe time  a  route\n            is  changed\tto  the\t time  a resulting message\n            appears on the interface.",
                        "x-yang-type": "snmpv2-tc:TimeInterval"
                      },
                      "rsvpIfEnabled": {
                        "type": "boolean",
                        "description": "If TRUE, RSVP is enabled  on  this\tInterface.\n            If\tFALSE,\t RSVP\tis  not\t enabled  on  this\n            interface."
                      },
                      "rsvpIfUdpRequired": {
                        "type": "boolean",
                        "description": "If TRUE, manual configuration forces  the  use\n            of  UDP  encapsulation  on  the  interface.\tIf\n            FALSE,  UDP\tencapsulation  is  only\t used\tif\n            rsvpIfUdpNbrs is not\tzero."
                      },
                      "rsvpIfStatus": {
                        "type": "string",
                        "description": "'active' on\tinterfaces that\tare configured for\n            RSVP.",
                        "x-yang-type": "snmpv2-tc:RowStatus"
                      }
                    }
                  }
                },
                "example": {
                  "RSVP-MIB:rsvpIfEntry": [
                    {
                      "ifIndex": "example-string",
                      "rsvpIfUdpNbrs": 0,
                      "rsvpIfIpNbrs": 0,
                      "rsvpIfNbrs": 0,
                      "rsvpIfRefreshBlockadeMultiple": -2147483648,
                      "rsvpIfRefreshMultiple": -2147483648,
                      "rsvpIfTTL": -2147483648,
                      "rsvpIfRefreshInterval": "example-string",
                      "rsvpIfRouteDelay": "example-string",
                      "rsvpIfEnabled": true,
                      "rsvpIfUdpRequired": true,
                      "rsvpIfStatus": "up(1)"
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-rsvpIfEntry",
        "parameters": [
          {
            "name": "Accept",
            "in": "header",
            "required": false,
            "description": "RESTCONF response media type (RFC 8040)",
            "schema": {
              "type": "string",
              "default": "application/yang-data+json",
              "enum": [
                "application/yang-data+json",
                "application/yang-data+xml"
              ]
            }
          },
          {
            "name": "depth",
            "in": "query",
            "required": false,
            "description": "Limit the depth of returned sub-tree data (RFC 8040 Section 4.8.2). Use 'unbounded' for full depth.",
            "schema": {
              "type": "string",
              "default": "unbounded"
            }
          },
          {
            "name": "fields",
            "in": "query",
            "required": false,
            "description": "Select specific fields to return (RFC 8040 Section 4.8.3). Example: fields=name;status",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "content",
            "in": "query",
            "required": false,
            "description": "Filter by config state: 'config' (config true only), 'nonconfig' (config false only), or 'all'.",
            "schema": {
              "type": "string",
              "enum": [
                "config",
                "nonconfig",
                "all"
              ],
              "default": "all"
            }
          }
        ]
      },
      "x-yang-path": "/rsvpIfTable/rsvpIfEntry",
      "x-restconf-kind": "container"
    },
    "/data/RSVP-MIB:rsvpIfTable/rsvpIfEntry={ifIndex}": {
      "get": {
        "summary": "Get rsvpIfEntry entry",
        "description": "Retrieve specific rsvpIfEntry entry by key from MIB",
        "tags": [
          "RSVP-MIB"
        ],
        "parameters": [
          {
            "name": "ifIndex",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            },
            "example": "1"
          },
          {
            "name": "Accept",
            "in": "header",
            "required": false,
            "description": "RESTCONF response media type (RFC 8040)",
            "schema": {
              "type": "string",
              "default": "application/yang-data+json",
              "enum": [
                "application/yang-data+json",
                "application/yang-data+xml"
              ]
            }
          },
          {
            "name": "depth",
            "in": "query",
            "required": false,
            "description": "Limit the depth of returned sub-tree data (RFC 8040 Section 4.8.2). Use 'unbounded' for full depth.",
            "schema": {
              "type": "string",
              "default": "unbounded"
            }
          },
          {
            "name": "fields",
            "in": "query",
            "required": false,
            "description": "Select specific fields to return (RFC 8040 Section 4.8.3). Example: fields=name;status",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "content",
            "in": "query",
            "required": false,
            "description": "Filter by config state: 'config' (config true only), 'nonconfig' (config false only), or 'all'.",
            "schema": {
              "type": "string",
              "enum": [
                "config",
                "nonconfig",
                "all"
              ],
              "default": "all"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "ifIndex": {
                      "type": "string",
                      "description": "ifIndex",
                      "x-yang-type": "leafref"
                    },
                    "rsvpIfUdpNbrs": {
                      "type": "integer",
                      "description": "The\tnumber of neighbors perceived to be  using\n            only\tthe RSVP UDP Encapsulation.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "rsvpIfIpNbrs": {
                      "type": "integer",
                      "description": "The\tnumber of neighbors perceived to be  using\n            only\tthe RSVP IP Encapsulation.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "rsvpIfNbrs": {
                      "type": "integer",
                      "description": "The\tnumber of neighbors  currently\tperceived;\n            this\t will  exceed rsvpIfIpNbrs + rsvpIfUdpNbrs\n            by  the  number   of\t  neighbors   using   both\n            encapsulations.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "rsvpIfRefreshBlockadeMultiple": {
                      "type": "integer",
                      "description": "The\tvalue of the RSVP value\t'Kb', Which is the\n            minimum   number   of  refresh  intervals  that\n            blockade state will last once entered.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "rsvpIfRefreshMultiple": {
                      "type": "integer",
                      "description": "The\tvalue of the RSVP value\t'K', which is  the\n            number  of  refresh intervals which must elapse\n            (minimum) before a PATH or RESV  message  which\n            is not being\trefreshed will be aged out.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "rsvpIfTTL": {
                      "type": "integer",
                      "description": "The\tvalue of SEND_TTL used on  this\t interface\n            for\tmessages  this node originates.\t If set\tto\n            zero, the node determines  the  TTL\tvia  other\n            means.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "rsvpIfRefreshInterval": {
                      "type": "string",
                      "description": "The\tvalue of the RSVP value\t'R', which is  the\n            minimum period between refresh transmissions\tof\n            a given PATH\tor RESV\tmessage\ton an interface.",
                      "x-yang-type": "snmpv2-tc:TimeInterval"
                    },
                    "rsvpIfRouteDelay": {
                      "type": "string",
                      "description": "The\tapproximate period from\tthe time  a  route\n            is  changed\tto  the\t time  a resulting message\n            appears on the interface.",
                      "x-yang-type": "snmpv2-tc:TimeInterval"
                    },
                    "rsvpIfEnabled": {
                      "type": "boolean",
                      "description": "If TRUE, RSVP is enabled  on  this\tInterface.\n            If\tFALSE,\t RSVP\tis  not\t enabled  on  this\n            interface."
                    },
                    "rsvpIfUdpRequired": {
                      "type": "boolean",
                      "description": "If TRUE, manual configuration forces  the  use\n            of  UDP  encapsulation  on  the  interface.\tIf\n            FALSE,  UDP\tencapsulation  is  only\t used\tif\n            rsvpIfUdpNbrs is not\tzero."
                    },
                    "rsvpIfStatus": {
                      "type": "string",
                      "description": "'active' on\tinterfaces that\tare configured for\n            RSVP.",
                      "x-yang-type": "snmpv2-tc:RowStatus"
                    }
                  }
                },
                "example": {
                  "RSVP-MIB:rsvpIfEntry": {
                    "ifIndex": "example-string",
                    "rsvpIfUdpNbrs": 0,
                    "rsvpIfIpNbrs": 0,
                    "rsvpIfNbrs": 0,
                    "rsvpIfRefreshBlockadeMultiple": -2147483648,
                    "rsvpIfRefreshMultiple": -2147483648,
                    "rsvpIfTTL": -2147483648,
                    "rsvpIfRefreshInterval": "example-string",
                    "rsvpIfRouteDelay": "example-string",
                    "rsvpIfEnabled": true,
                    "rsvpIfUdpRequired": true,
                    "rsvpIfStatus": "up(1)"
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-rsvpIfEntry-2"
      },
      "x-yang-path": "/rsvpIfTable/rsvpIfEntry={ifIndex}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "ifIndex"
      ]
    },
    "/data/RSVP-MIB:rsvpNbrTable": {
      "get": {
        "summary": "Get rsvpNbrTable data",
        "description": "Retrieve rsvpNbrTable operational data from MIB",
        "tags": [
          "RSVP-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "description": "Information\tdescribing  the\t Neighbors  of\tan\n        RSVP\tsystem.",
                  "properties": {
                    "rsvpNbrEntry": {
                      "type": "array",
                      "description": "Information\t  describing   a    single    RSVP\n          Neighbor.",
                      "items": {
                        "type": "object",
                        "properties": {
                          "ifIndex": {
                            "type": "string",
                            "description": "ifIndex",
                            "x-yang-type": "leafref"
                          },
                          "rsvpNbrAddress": {
                            "type": "string",
                            "description": "The\tIP4 or IP6 Address used\tby this\t neighbor.\n            This\t object\t may not be changed when the value\n            of the RowStatus object is 'active'.",
                            "format": "binary"
                          },
                          "rsvpNbrProtocol": {
                            "type": "string",
                            "description": "The\t  encapsulation\t  being\t  used\t by   this\n            neighbor.",
                            "x-yang-type": "RSVP-MIB:RsvpEncapsulation"
                          },
                          "rsvpNbrStatus": {
                            "type": "string",
                            "description": "'active' for all neighbors.\t This  object  may\n            be\tused   to  configure  neighbors.   In  the\n            presence   of   configured\t neighbors,    the\n            implementation  may\t(but  is  not required to)\n            limit the  set  of  valid  neighbors\t to  those\n            configured.",
                            "x-yang-type": "snmpv2-tc:RowStatus"
                          }
                        }
                      }
                    }
                  }
                },
                "example": {
                  "RSVP-MIB:rsvpNbrTable": {
                    "rsvpNbrEntry": [
                      {
                        "ifIndex": "1",
                        "rsvpNbrAddress": "192.168.1.1",
                        "rsvpNbrProtocol": "example-string",
                        "rsvpNbrStatus": "up(1)"
                      },
                      {
                        "ifIndex": "2",
                        "rsvpNbrAddress": "192.168.1.1",
                        "rsvpNbrProtocol": "example-string",
                        "rsvpNbrStatus": "up(1)"
                      },
                      {
                        "ifIndex": "3",
                        "rsvpNbrAddress": "192.168.1.1",
                        "rsvpNbrProtocol": "example-string",
                        "rsvpNbrStatus": "up(1)"
                      }
                    ]
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-rsvpNbrTable",
        "parameters": [
          {
            "name": "Accept",
            "in": "header",
            "required": false,
            "description": "RESTCONF response media type (RFC 8040)",
            "schema": {
              "type": "string",
              "default": "application/yang-data+json",
              "enum": [
                "application/yang-data+json",
                "application/yang-data+xml"
              ]
            }
          },
          {
            "name": "depth",
            "in": "query",
            "required": false,
            "description": "Limit the depth of returned sub-tree data (RFC 8040 Section 4.8.2). Use 'unbounded' for full depth.",
            "schema": {
              "type": "string",
              "default": "unbounded"
            }
          },
          {
            "name": "fields",
            "in": "query",
            "required": false,
            "description": "Select specific fields to return (RFC 8040 Section 4.8.3). Example: fields=name;status",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "content",
            "in": "query",
            "required": false,
            "description": "Filter by config state: 'config' (config true only), 'nonconfig' (config false only), or 'all'.",
            "schema": {
              "type": "string",
              "enum": [
                "config",
                "nonconfig",
                "all"
              ],
              "default": "all"
            }
          }
        ]
      },
      "x-yang-path": "/rsvpNbrTable",
      "x-restconf-kind": "container"
    },
    "/data/RSVP-MIB:rsvpNbrTable/rsvpNbrEntry": {
      "get": {
        "summary": "Get rsvpNbrEntry list",
        "description": "Retrieve list of rsvpNbrEntry entries from MIB",
        "tags": [
          "RSVP-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "Information\t  describing   a    single    RSVP\n          Neighbor.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "ifIndex": {
                        "type": "string",
                        "description": "ifIndex",
                        "x-yang-type": "leafref"
                      },
                      "rsvpNbrAddress": {
                        "type": "string",
                        "description": "The\tIP4 or IP6 Address used\tby this\t neighbor.\n            This\t object\t may not be changed when the value\n            of the RowStatus object is 'active'.",
                        "format": "binary"
                      },
                      "rsvpNbrProtocol": {
                        "type": "string",
                        "description": "The\t  encapsulation\t  being\t  used\t by   this\n            neighbor.",
                        "x-yang-type": "RSVP-MIB:RsvpEncapsulation"
                      },
                      "rsvpNbrStatus": {
                        "type": "string",
                        "description": "'active' for all neighbors.\t This  object  may\n            be\tused   to  configure  neighbors.   In  the\n            presence   of   configured\t neighbors,    the\n            implementation  may\t(but  is  not required to)\n            limit the  set  of  valid  neighbors\t to  those\n            configured.",
                        "x-yang-type": "snmpv2-tc:RowStatus"
                      }
                    }
                  }
                },
                "example": {
                  "RSVP-MIB:rsvpNbrEntry": [
                    {
                      "ifIndex": "example-string",
                      "rsvpNbrAddress": "192.168.1.1",
                      "rsvpNbrProtocol": "example-string",
                      "rsvpNbrStatus": "up(1)"
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-rsvpNbrEntry",
        "parameters": [
          {
            "name": "Accept",
            "in": "header",
            "required": false,
            "description": "RESTCONF response media type (RFC 8040)",
            "schema": {
              "type": "string",
              "default": "application/yang-data+json",
              "enum": [
                "application/yang-data+json",
                "application/yang-data+xml"
              ]
            }
          },
          {
            "name": "depth",
            "in": "query",
            "required": false,
            "description": "Limit the depth of returned sub-tree data (RFC 8040 Section 4.8.2). Use 'unbounded' for full depth.",
            "schema": {
              "type": "string",
              "default": "unbounded"
            }
          },
          {
            "name": "fields",
            "in": "query",
            "required": false,
            "description": "Select specific fields to return (RFC 8040 Section 4.8.3). Example: fields=name;status",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "content",
            "in": "query",
            "required": false,
            "description": "Filter by config state: 'config' (config true only), 'nonconfig' (config false only), or 'all'.",
            "schema": {
              "type": "string",
              "enum": [
                "config",
                "nonconfig",
                "all"
              ],
              "default": "all"
            }
          }
        ]
      },
      "x-yang-path": "/rsvpNbrTable/rsvpNbrEntry",
      "x-restconf-kind": "container"
    },
    "/data/RSVP-MIB:rsvpSessionEntry": {
      "get": {
        "summary": "Get rsvpSessionEntry list",
        "description": "Retrieve list of rsvpSessionEntry entries from MIB",
        "tags": [
          "RSVP-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "A single session seen by a given system.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "rsvpSessionNumber": {
                        "type": "string",
                        "description": "The\tnumber of this session.\t This is for  SNMP\n            Indexing  purposes  only and\thas no relation\tto\n            any protocol\tvalue.",
                        "x-yang-type": "integrated-services:SessionNumber"
                      },
                      "rsvpSessionType": {
                        "type": "string",
                        "description": "The\ttype of\tsession\t(IP4, IP6, IP6\twith  flow\n            information,\tetc).",
                        "x-yang-type": "integrated-services:SessionType"
                      },
                      "rsvpSessionDestAddr": {
                        "type": "string",
                        "description": "The\tdestination address used by all\tsenders\tin\n            this\t session.   This object\tmay not\tbe changed\n            when\tthe  value  of\tthe  RowStatus\tobject\tis\n            'active'.",
                        "format": "binary"
                      },
                      "rsvpSessionDestAddrLength": {
                        "type": "integer",
                        "description": "The\tCIDR prefix length of the session address,\n            which   is\t32  for\t IP4  host  and\t multicast\n            addresses, and 128  for  IP6\t addresses.   This\n            object may not be changed when the value of the\n            RowStatus object is 'active'.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "rsvpSessionProtocol": {
                        "type": "string",
                        "description": "The\tIP Protocol used by  this  session.   This\n            object may not be changed when the value of the\n            RowStatus object is 'active'.",
                        "x-yang-type": "integrated-services:Protocol"
                      },
                      "rsvpSessionPort": {
                        "type": "string",
                        "description": "The\t UDP  or  TCP  port  number  used   as\t a\n            destination\t port  for  all\t senders  in  this\n            session.  If\tthe IP protocol\tin use,\t specified\n            by  rsvpSenderProtocol, is 50 (ESP) or 51 (AH),\n            this\t represents  a\tvirtual\t destination  port\n            number.   A value of\tzero indicates that the\tIP\n            protocol in use  does  not  have  ports.   This\n            object may not be changed when the value of the\n            RowStatus object is 'active'.",
                        "x-yang-type": "integrated-services:Port"
                      },
                      "rsvpSessionSenders": {
                        "type": "integer",
                        "description": "The\tnumber of distinct senders currently known\n            to be part of this session.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "rsvpSessionReceivers": {
                        "type": "integer",
                        "description": "The\tnumber of reservations being requested\tof\n            this\tsystem for this\tsession.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "rsvpSessionRequests": {
                        "type": "integer",
                        "description": "The\tnumber of reservation requests this system\n            is sending upstream for this\tsession.",
                        "minimum": 0,
                        "maximum": 4294967295
                      }
                    }
                  }
                },
                "example": {
                  "RSVP-MIB:rsvpSessionEntry": [
                    {
                      "rsvpSessionNumber": "example-string",
                      "rsvpSessionType": "ethernetCsmacd(6)",
                      "rsvpSessionDestAddr": "192.168.1.1",
                      "rsvpSessionDestAddrLength": -2147483648,
                      "rsvpSessionProtocol": "example-string",
                      "rsvpSessionPort": "example-string",
                      "rsvpSessionSenders": 0,
                      "rsvpSessionReceivers": 0,
                      "rsvpSessionRequests": 0
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-rsvpSessionEntry-3",
        "parameters": [
          {
            "name": "Accept",
            "in": "header",
            "required": false,
            "description": "RESTCONF response media type (RFC 8040)",
            "schema": {
              "type": "string",
              "default": "application/yang-data+json",
              "enum": [
                "application/yang-data+json",
                "application/yang-data+xml"
              ]
            }
          },
          {
            "name": "depth",
            "in": "query",
            "required": false,
            "description": "Limit the depth of returned sub-tree data (RFC 8040 Section 4.8.2). Use 'unbounded' for full depth.",
            "schema": {
              "type": "string",
              "default": "unbounded"
            }
          },
          {
            "name": "fields",
            "in": "query",
            "required": false,
            "description": "Select specific fields to return (RFC 8040 Section 4.8.3). Example: fields=name;status",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "content",
            "in": "query",
            "required": false,
            "description": "Filter by config state: 'config' (config true only), 'nonconfig' (config false only), or 'all'.",
            "schema": {
              "type": "string",
              "enum": [
                "config",
                "nonconfig",
                "all"
              ],
              "default": "all"
            }
          }
        ]
      },
      "x-yang-path": "/rsvpSessionEntry",
      "x-restconf-kind": "container"
    },
    "/data/RSVP-MIB:rsvpSessionEntry={rsvpSessionNumber}": {
      "get": {
        "summary": "Get rsvpSessionEntry entry",
        "description": "Retrieve specific rsvpSessionEntry entry by key from MIB",
        "tags": [
          "RSVP-MIB"
        ],
        "parameters": [
          {
            "name": "rsvpSessionNumber",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            },
            "example": "1"
          },
          {
            "name": "Accept",
            "in": "header",
            "required": false,
            "description": "RESTCONF response media type (RFC 8040)",
            "schema": {
              "type": "string",
              "default": "application/yang-data+json",
              "enum": [
                "application/yang-data+json",
                "application/yang-data+xml"
              ]
            }
          },
          {
            "name": "depth",
            "in": "query",
            "required": false,
            "description": "Limit the depth of returned sub-tree data (RFC 8040 Section 4.8.2). Use 'unbounded' for full depth.",
            "schema": {
              "type": "string",
              "default": "unbounded"
            }
          },
          {
            "name": "fields",
            "in": "query",
            "required": false,
            "description": "Select specific fields to return (RFC 8040 Section 4.8.3). Example: fields=name;status",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "content",
            "in": "query",
            "required": false,
            "description": "Filter by config state: 'config' (config true only), 'nonconfig' (config false only), or 'all'.",
            "schema": {
              "type": "string",
              "enum": [
                "config",
                "nonconfig",
                "all"
              ],
              "default": "all"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "rsvpSessionNumber": {
                      "type": "string",
                      "description": "The\tnumber of this session.\t This is for  SNMP\n            Indexing  purposes  only and\thas no relation\tto\n            any protocol\tvalue.",
                      "x-yang-type": "integrated-services:SessionNumber"
                    },
                    "rsvpSessionType": {
                      "type": "string",
                      "description": "The\ttype of\tsession\t(IP4, IP6, IP6\twith  flow\n            information,\tetc).",
                      "x-yang-type": "integrated-services:SessionType"
                    },
                    "rsvpSessionDestAddr": {
                      "type": "string",
                      "description": "The\tdestination address used by all\tsenders\tin\n            this\t session.   This object\tmay not\tbe changed\n            when\tthe  value  of\tthe  RowStatus\tobject\tis\n            'active'.",
                      "format": "binary"
                    },
                    "rsvpSessionDestAddrLength": {
                      "type": "integer",
                      "description": "The\tCIDR prefix length of the session address,\n            which   is\t32  for\t IP4  host  and\t multicast\n            addresses, and 128  for  IP6\t addresses.   This\n            object may not be changed when the value of the\n            RowStatus object is 'active'.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "rsvpSessionProtocol": {
                      "type": "string",
                      "description": "The\tIP Protocol used by  this  session.   This\n            object may not be changed when the value of the\n            RowStatus object is 'active'.",
                      "x-yang-type": "integrated-services:Protocol"
                    },
                    "rsvpSessionPort": {
                      "type": "string",
                      "description": "The\t UDP  or  TCP  port  number  used   as\t a\n            destination\t port  for  all\t senders  in  this\n            session.  If\tthe IP protocol\tin use,\t specified\n            by  rsvpSenderProtocol, is 50 (ESP) or 51 (AH),\n            this\t represents  a\tvirtual\t destination  port\n            number.   A value of\tzero indicates that the\tIP\n            protocol in use  does  not  have  ports.   This\n            object may not be changed when the value of the\n            RowStatus object is 'active'.",
                      "x-yang-type": "integrated-services:Port"
                    },
                    "rsvpSessionSenders": {
                      "type": "integer",
                      "description": "The\tnumber of distinct senders currently known\n            to be part of this session.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "rsvpSessionReceivers": {
                      "type": "integer",
                      "description": "The\tnumber of reservations being requested\tof\n            this\tsystem for this\tsession.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "rsvpSessionRequests": {
                      "type": "integer",
                      "description": "The\tnumber of reservation requests this system\n            is sending upstream for this\tsession.",
                      "minimum": 0,
                      "maximum": 4294967295
                    }
                  }
                },
                "example": {
                  "RSVP-MIB:rsvpSessionEntry": {
                    "rsvpSessionNumber": "example-string",
                    "rsvpSessionType": "ethernetCsmacd(6)",
                    "rsvpSessionDestAddr": "192.168.1.1",
                    "rsvpSessionDestAddrLength": -2147483648,
                    "rsvpSessionProtocol": "example-string",
                    "rsvpSessionPort": "example-string",
                    "rsvpSessionSenders": 0,
                    "rsvpSessionReceivers": 0,
                    "rsvpSessionRequests": 0
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-rsvpSessionEntry-4"
      },
      "x-yang-path": "/rsvpSessionEntry={rsvpSessionNumber}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "rsvpSessionNumber"
      ]
    },
    "/data/RSVP-MIB:rsvpSenderEntry": {
      "get": {
        "summary": "Get rsvpSenderEntry list",
        "description": "Retrieve list of rsvpSenderEntry entries from MIB",
        "tags": [
          "RSVP-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "Information\tdescribing the\tstate  information\n          displayed by\ta single sender's PATH message.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "rsvpSessionNumber": {
                        "type": "string",
                        "description": "rsvpSessionNumber",
                        "x-yang-type": "leafref"
                      },
                      "rsvpSenderNumber": {
                        "type": "string",
                        "description": "The\tnumber of this sender.\tThis is\t for  SNMP\n            Indexing  purposes  only and\thas no relation\tto\n            any protocol\tvalue.",
                        "x-yang-type": "integrated-services:SessionNumber"
                      },
                      "rsvpSenderType": {
                        "type": "string",
                        "description": "The\ttype of\tsession\t(IP4, IP6, IP6\twith  flow\n            information,\tetc).",
                        "x-yang-type": "integrated-services:SessionType"
                      },
                      "rsvpSenderDestAddr": {
                        "type": "string",
                        "description": "The\tdestination address used by all\tsenders\tin\n            this\t session.   This object\tmay not\tbe changed\n            when\tthe  value  of\tthe  RowStatus\tobject\tis\n            'active'.",
                        "format": "binary"
                      },
                      "rsvpSenderAddr": {
                        "type": "string",
                        "description": "The\tsource address used by this sender in this\n            session.   This  object may not be changed when\n            the value of\tthe RowStatus object is\t'active'.",
                        "format": "binary"
                      },
                      "rsvpSenderDestAddrLength": {
                        "type": "integer",
                        "description": "The\tlength of the destination address in bits.\n            This\t is  the CIDR Prefix Length, which for IP4\n            hosts and multicast addresses is 32 bits.  This\n            object may not be changed when the value of the\n            RowStatus object is 'active'.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "rsvpSenderAddrLength": {
                        "type": "integer",
                        "description": "The\tlength of the sender's\taddress\t in  bits.\n            This\t is  the CIDR Prefix Length, which for IP4\n            hosts and multicast addresses is 32 bits.  This\n            object may not be changed when the value of the\n            RowStatus object is 'active'.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "rsvpSenderProtocol": {
                        "type": "string",
                        "description": "The\tIP Protocol used by  this  session.   This\n            object may not be changed when the value of the\n            RowStatus object is 'active'.",
                        "x-yang-type": "integrated-services:Protocol"
                      },
                      "rsvpSenderDestPort": {
                        "type": "string",
                        "description": "The\t UDP  or  TCP  port  number  used   as\t a\n            destination\t port  for  all\t senders  in  this\n            session.  If\tthe IP protocol\tin use,\t specified\n            by  rsvpSenderProtocol, is 50 (ESP) or 51 (AH),\n            this\t represents  a\tvirtual\t destination  port\n            number.   A value of\tzero indicates that the\tIP\n            protocol in use  does  not  have  ports.   This\n            object may not be changed when the value of the\n            RowStatus object is 'active'.",
                        "x-yang-type": "integrated-services:Port"
                      },
                      "rsvpSenderPort": {
                        "type": "string",
                        "description": "The\tUDP or TCP port\tnumber used  as\t a  source\n            port\t for  this sender in this session.  If the\n            IP\t protocol    in\t   use,\t   specified\tby\n            rsvpSenderProtocol is 50 (ESP) or 51\t(AH), this\n            represents a\tgeneralized port identifier (GPI).\n            A  value of zero indicates that the IP protocol\n            in use does not have\tports.\t This  object  may\n            not\tbe changed when\tthe value of the RowStatus\n            object is 'active'.",
                        "x-yang-type": "integrated-services:Port"
                      },
                      "rsvpSenderFlowId": {
                        "type": "integer",
                        "description": "The\tflow ID\tthat  this  sender  is\tusing,\tif\n            this\t is  an\tIPv6 session.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "rsvpSenderHopAddr": {
                        "type": "string",
                        "description": "The\taddress\tused  by  the  previous\t RSVP  hop\n            (which may be the original sender).",
                        "format": "binary"
                      },
                      "rsvpSenderHopLih": {
                        "type": "integer",
                        "description": "The\t Logical  Interface  Handle  used  by  the\n            previous  RSVP  hop\t(which may be the original\n            sender).",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "rsvpSenderInterface": {
                        "type": "string",
                        "description": "The\tifIndex\tvalue of the  interface\t on  which\n            this\tPATH message was most recently received.",
                        "x-yang-type": "if-mib:InterfaceIndex"
                      },
                      "rsvpSenderTSpecRate": {
                        "type": "string",
                        "description": "The\tAverage\tBit  Rate  of  the  sender's  data\n            stream.    Within  a\t transmission  burst,  the\n            arrival   rate    may    be\t  as\tfast\tas\n            rsvpSenderTSpecPeakRate  (if\t supported  by the\n            service model); however, averaged across two\tor\n            more\t burst\tintervals,  the\t rate  should  not\n            exceed rsvpSenderTSpecRate.\n            \n            Note\tthat this is a prediction, often based\ton\n            the\tgeneral\t capability  of\ta type of codec\tor\n            particular encoding;\tthe measured average  rate\n            may be significantly\tlower.",
                        "x-yang-type": "integrated-services:BitRate"
                      },
                      "rsvpSenderTSpecPeakRate": {
                        "type": "string",
                        "description": "The\tPeak Bit Rate of the sender's data stream.\n            Traffic  arrival is not expected to exceed this\n            rate\tat any time, apart  from  the  effects\tof\n            jitter in the network.  If not specified in the\n            TSpec, this returns zero or noSuchValue.",
                        "x-yang-type": "integrated-services:BitRate"
                      },
                      "rsvpSenderTSpecBurst": {
                        "type": "string",
                        "description": "The\tsize of\tthe largest  burst  expected  from\n            the sender at a time.",
                        "x-yang-type": "integrated-services:BurstSize"
                      },
                      "rsvpSenderTSpecMinTU": {
                        "type": "string",
                        "description": "The\tminimum\tmessage\tsize for  this\tflow.  The\n            policing  algorithm will treat smaller messages\n            as though they are this size.",
                        "x-yang-type": "integrated-services:MessageSize"
                      },
                      "rsvpSenderTSpecMaxTU": {
                        "type": "string",
                        "description": "The\tmaximum\tmessage\tsize for  this\tflow.  The\n            admission  algorithm\t will  reject TSpecs whose\n            Maximum Transmission\tUnit, plus  the\t interface\n            headers, exceed the interface MTU.",
                        "x-yang-type": "integrated-services:MessageSize"
                      },
                      "rsvpSenderInterval": {
                        "type": "string",
                        "description": "The\t interval  between  refresh  messages\tas\n            advertised by the Previous Hop.",
                        "x-yang-type": "RSVP-MIB:RefreshInterval"
                      },
                      "rsvpSenderRSVPHop": {
                        "type": "boolean",
                        "description": "If TRUE, the node believes that  the  previous\n            IP  hop  is\tan  RSVP  hop.\tIf FALSE, the node\n            believes that the previous IP hop may not be\tan\n            RSVP\thop."
                      },
                      "rsvpSenderLastChange": {
                        "type": "string",
                        "description": "The\ttime of\t the  last  change  in\tthis  PATH\n            message;  This  is either the first time it was\n            received or the time\tof the most recent  change\n            in parameters.",
                        "x-yang-type": "yang:timestamp"
                      },
                      "rsvpSenderPolicy": {
                        "type": "string",
                        "description": "The\tcontents of the\tpolicy\tobject,\t displayed\n            as an uninterpreted string of octets, including\n            the object header.  In the absence of  such\tan\n            object, this\tshould be of zero length.",
                        "format": "binary"
                      },
                      "rsvpSenderAdspecBreak": {
                        "type": "boolean",
                        "description": "The\tglobal break bit general  characterization\n            parameter  from  the\tADSPEC.\t If TRUE, at least\n            one non-IS hop was detected in  the\tpath.\tIf\n            FALSE, no non-IS hops were detected."
                      },
                      "rsvpSenderAdspecHopCount": {
                        "type": "integer",
                        "description": "The\t  hop\tcount\tgeneral\t  characterization\n            parameter from the ADSPEC.  A return\tof zero\tor\n            noSuchValue\tindicates  one\tof  the\t following\n            conditions:\n            \n               the invalid bit was set\n               the parameter was\tnot present",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "rsvpSenderAdspecPathBw": {
                        "type": "string",
                        "description": "The\t  path\t  bandwidth    estimate\t   general\n            characterization  parameter from the\tADSPEC.\t A\n            return of zero or noSuchValue indicates one\tof\n            the following conditions:\n            \n               the invalid bit was set\n               the parameter was\tnot present",
                        "x-yang-type": "integrated-services:BitRate"
                      },
                      "rsvpSenderAdspecMinLatency": {
                        "type": "integer",
                        "description": "The\t   minimum    path     latency\t   general\n            characterization  parameter from the\tADSPEC.\t A\n            return of zero or noSuchValue indicates one\tof\n            the following conditions:\n            \n               the invalid bit was set\n               the parameter was\tnot present",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "rsvpSenderAdspecMtu": {
                        "type": "integer",
                        "description": "The\tcomposed Maximum Transmission Unit general\n            characterization  parameter from the\tADSPEC.\t A\n            return of zero or noSuchValue indicates one\tof\n            the following conditions:\n            \n               the invalid bit was set\n               the parameter was\tnot present",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "rsvpSenderAdspecGuaranteedSvc": {
                        "type": "boolean",
                        "description": "If TRUE,  the  ADSPEC  contains  a\tGuaranteed\n            Service  fragment.\tIf  FALSE, the ADSPEC does\n            not contain a Guaranteed Service fragment."
                      },
                      "rsvpSenderAdspecGuaranteedBreak": {
                        "type": "boolean",
                        "description": "If TRUE, the Guaranteed Service  fragment  has\n            its\t'break'\t bit  set,  indicating that one\tor\n            more\tnodes along the\tpath do\t not  support  the\n            guaranteed\t  service.     If    FALSE,    and\n            rsvpSenderAdspecGuaranteedSvc  is   TRUE,   the\n            'break' bit is not set.\n            \n            If rsvpSenderAdspecGuaranteedSvc is FALSE, this\n            returns FALSE or noSuchValue."
                      },
                      "rsvpSenderAdspecGuaranteedCtot": {
                        "type": "integer",
                        "description": "If rsvpSenderAdspecGuaranteedSvc is\tTRUE, this\n            is\tthe  end-to-end\t composed  value  for  the\n            guaranteed service 'C' parameter.  A\treturn\tof\n            zero\t  or  noSuchValue  indicates  one  of  the\n            following conditions:\n            \n               the invalid bit was set\n               the parameter was\tnot present\n            \n            If rsvpSenderAdspecGuaranteedSvc is FALSE, this\n            returns zero\tor noSuchValue.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "rsvpSenderAdspecGuaranteedDtot": {
                        "type": "integer",
                        "description": "If rsvpSenderAdspecGuaranteedSvc is\tTRUE, this\n            is\tthe  end-to-end\t composed  value  for  the\n            guaranteed service 'D' parameter.  A\treturn\tof\n            zero\t  or  noSuchValue  indicates  one  of  the\n            following conditions:\n            \n               the invalid bit was set\n               the parameter was\tnot present\n            \n            If rsvpSenderAdspecGuaranteedSvc is FALSE, this\n            returns zero\tor noSuchValue.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "rsvpSenderAdspecGuaranteedCsum": {
                        "type": "integer",
                        "description": "If rsvpSenderAdspecGuaranteedSvc is\tTRUE, this\n            is\tthe  composed  value  for  the\tguaranteed\n            service 'C' parameter since the last\t reshaping\n            point.    A\t return\t of  zero  or  noSuchValue\n            indicates one of the\tfollowing conditions:\n            \n               the invalid bit was set\n               the parameter was\tnot present\n            \n            If rsvpSenderAdspecGuaranteedSvc is FALSE, this\n            returns zero\tor noSuchValue.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "rsvpSenderAdspecGuaranteedDsum": {
                        "type": "integer",
                        "description": "If rsvpSenderAdspecGuaranteedSvc is\tTRUE, this\n            is\tthe  composed  value  for  the\tguaranteed\n            service 'D' parameter since the last\t reshaping\n            point.    A\t return\t of  zero  or  noSuchValue\n            indicates one of the\tfollowing conditions:\n            \n               the invalid bit was set\n               the parameter was\tnot present\n            \n            If rsvpSenderAdspecGuaranteedSvc is FALSE, this\n            returns zero\tor noSuchValue.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "rsvpSenderAdspecGuaranteedHopCount": {
                        "type": "integer",
                        "description": "If rsvpSenderAdspecGuaranteedSvc is\tTRUE, this\n            is  the  service-specific  override\tof the hop\n            count general characterization  parameter  from\n            the\tADSPEC.\t  A  return of zero or noSuchValue\n            indicates one of the\tfollowing conditions:\n            \n               the invalid bit was set\n               the parameter was\tnot present\n            \n            If rsvpSenderAdspecGuaranteedSvc is FALSE, this\n            returns zero\tor noSuchValue.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "rsvpSenderAdspecGuaranteedPathBw": {
                        "type": "string",
                        "description": "If rsvpSenderAdspecGuaranteedSvc is\tTRUE, this\n            is  the  service-specific  override of the path\n            bandwidth  estimate\tgeneral\t  characterization\n            parameter from the ADSPEC.  A return\tof zero\tor\n            noSuchValue\tindicates  one\tof  the\t following\n            conditions:\n            \n               the invalid bit was set\n               the parameter was\tnot present\n            \n            If rsvpSenderAdspecGuaranteedSvc is FALSE, this\n            returns zero\tor noSuchValue.",
                        "x-yang-type": "integrated-services:BitRate"
                      },
                      "rsvpSenderAdspecGuaranteedMinLatency": {
                        "type": "integer",
                        "description": "If rsvpSenderAdspecGuaranteedSvc is\tTRUE, this\n            is the service-specific override of the minimum\n            path\tlatency\tgeneral\tcharacterization parameter\n            from\t  the\tADSPEC.\t   A  return  of  zero\tor\n            noSuchValue\tindicates  one\tof  the\t following\n            conditions:\n            \n               the invalid bit was set\n               the parameter was\tnot present\n            \n            If rsvpSenderAdspecGuaranteedSvc is FALSE, this\n            returns zero\tor noSuchValue.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "rsvpSenderAdspecGuaranteedMtu": {
                        "type": "integer",
                        "description": "If rsvpSenderAdspecGuaranteedSvc is\tTRUE, this\n            is\tthe   service-specific\t override  of  the\n            composed  Maximum  Transmission  Unit   general\n            characterization  parameter from the\tADSPEC.\t A\n            return of zero or noSuchValue indicates one\tof\n            the following conditions:\n            \n               the invalid bit was set\n               the parameter was\tnot present\n            \n            If rsvpSenderAdspecGuaranteedSvc is FALSE, this\n            returns zero\tor noSuchValue.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "rsvpSenderAdspecCtrlLoadSvc": {
                        "type": "boolean",
                        "description": "If TRUE, the ADSPEC\tcontains a Controlled Load\n            Service  fragment.\tIf  FALSE, the ADSPEC does\n            not\t contain   a   Controlled   Load   Service\n            fragment."
                      },
                      "rsvpSenderAdspecCtrlLoadBreak": {
                        "type": "boolean",
                        "description": "If TRUE, the Controlled Load Service  fragment\n            has its 'break' bit set, indicating that one\tor\n            more\tnodes along the\tpath do\t not  support  the\n            controlled\tload   service.\t   If  FALSE,  and\n            rsvpSenderAdspecCtrlLoadSvc\t is   TRUE,    the\n            'break' bit is not set.\n            \n            If rsvpSenderAdspecCtrlLoadSvc is  FALSE,  this\n            returns FALSE or noSuchValue."
                      },
                      "rsvpSenderAdspecCtrlLoadHopCount": {
                        "type": "integer",
                        "description": "If rsvpSenderAdspecCtrlLoadSvc is  TRUE,  this\n            is  the  service-specific  override\tof the hop\n            count general characterization  parameter  from\n            the\tADSPEC.\t  A  return of zero or noSuchValue\n            indicates one of the\tfollowing conditions:\n            \n               the invalid bit was set\n               the parameter was\tnot present\n            \n            If rsvpSenderAdspecCtrlLoadSvc is  FALSE,  this\n            returns zero\tor noSuchValue.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "rsvpSenderAdspecCtrlLoadPathBw": {
                        "type": "string",
                        "description": "If rsvpSenderAdspecCtrlLoadSvc is  TRUE,  this\n            is  the  service-specific  override of the path\n            bandwidth  estimate\tgeneral\t  characterization\n            parameter from the ADSPEC.  A return\tof zero\tor\n            noSuchValue\tindicates  one\tof  the\t following\n            conditions:\n            \n               the invalid bit was set\n               the parameter was\tnot present\n            \n            If rsvpSenderAdspecCtrlLoadSvc is  FALSE,  this\n            returns zero\tor noSuchValue.",
                        "x-yang-type": "integrated-services:BitRate"
                      },
                      "rsvpSenderAdspecCtrlLoadMinLatency": {
                        "type": "integer",
                        "description": "If rsvpSenderAdspecCtrlLoadSvc is  TRUE,  this\n            is the service-specific override of the minimum\n            path\tlatency\tgeneral\tcharacterization parameter\n            from\t  the\tADSPEC.\t   A  return  of  zero\tor\n            noSuchValue\tindicates  one\tof  the\t following\n            conditions:\n            \n               the invalid bit was set\n               the parameter was\tnot present\n            \n            If rsvpSenderAdspecCtrlLoadSvc is  FALSE,  this\n            returns zero\tor noSuchValue.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "rsvpSenderAdspecCtrlLoadMtu": {
                        "type": "integer",
                        "description": "If rsvpSenderAdspecCtrlLoadSvc is  TRUE,  this\n            is\tthe   service-specific\t override  of  the\n            composed  Maximum  Transmission  Unit   general\n            characterization  parameter from the\tADSPEC.\t A\n            return of zero or noSuchValue indicates one\tof\n            the following conditions:\n            \n               the invalid bit was set\n               the parameter was\tnot present\n            \n            If rsvpSenderAdspecCtrlLoadSvc is  FALSE,  this\n            returns zero\tor noSuchValue.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "rsvpSenderStatus": {
                        "type": "string",
                        "description": "'active' for all active PATH  messages.   This\n            object  may\tbe  used  to  install  static PATH\n            information or delete PATH information.",
                        "x-yang-type": "snmpv2-tc:RowStatus"
                      },
                      "rsvpSenderTTL": {
                        "type": "integer",
                        "description": "The\tTTL value in the RSVP header that was last\n            received.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      }
                    }
                  }
                },
                "example": {
                  "RSVP-MIB:rsvpSenderEntry": [
                    {
                      "rsvpSessionNumber": "example-string",
                      "rsvpSenderNumber": "example-string",
                      "rsvpSenderType": "ethernetCsmacd(6)",
                      "rsvpSenderDestAddr": "192.168.1.1",
                      "rsvpSenderAddr": "192.168.1.1",
                      "rsvpSenderDestAddrLength": -2147483648,
                      "rsvpSenderAddrLength": -2147483648,
                      "rsvpSenderProtocol": "example-string",
                      "rsvpSenderDestPort": "example-string",
                      "rsvpSenderPort": "example-string",
                      "rsvpSenderFlowId": -2147483648,
                      "rsvpSenderHopAddr": "192.168.1.1",
                      "rsvpSenderHopLih": -2147483648,
                      "rsvpSenderInterface": "GigabitEthernet1/0/1",
                      "rsvpSenderTSpecRate": "example-string",
                      "rsvpSenderTSpecPeakRate": "example-string",
                      "rsvpSenderTSpecBurst": "example-string",
                      "rsvpSenderTSpecMinTU": "example-string",
                      "rsvpSenderTSpecMaxTU": "example-string",
                      "rsvpSenderInterval": "example-string",
                      "rsvpSenderRSVPHop": true,
                      "rsvpSenderLastChange": "example-string",
                      "rsvpSenderPolicy": "example-string",
                      "rsvpSenderAdspecBreak": true,
                      "rsvpSenderAdspecHopCount": -2147483648,
                      "rsvpSenderAdspecPathBw": "example-string",
                      "rsvpSenderAdspecMinLatency": -2147483648,
                      "rsvpSenderAdspecMtu": 1500,
                      "rsvpSenderAdspecGuaranteedSvc": true,
                      "rsvpSenderAdspecGuaranteedBreak": true,
                      "rsvpSenderAdspecGuaranteedCtot": -2147483648,
                      "rsvpSenderAdspecGuaranteedDtot": -2147483648,
                      "rsvpSenderAdspecGuaranteedCsum": -2147483648,
                      "rsvpSenderAdspecGuaranteedDsum": -2147483648,
                      "rsvpSenderAdspecGuaranteedHopCount": -2147483648,
                      "rsvpSenderAdspecGuaranteedPathBw": "example-string",
                      "rsvpSenderAdspecGuaranteedMinLatency": -2147483648,
                      "rsvpSenderAdspecGuaranteedMtu": 1500,
                      "rsvpSenderAdspecCtrlLoadSvc": true,
                      "rsvpSenderAdspecCtrlLoadBreak": true,
                      "rsvpSenderAdspecCtrlLoadHopCount": -2147483648,
                      "rsvpSenderAdspecCtrlLoadPathBw": "example-string",
                      "rsvpSenderAdspecCtrlLoadMinLatency": 1,
                      "rsvpSenderAdspecCtrlLoadMtu": 1500,
                      "rsvpSenderStatus": "up(1)",
                      "rsvpSenderTTL": -2147483648
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-rsvpSenderEntry-3",
        "parameters": [
          {
            "name": "Accept",
            "in": "header",
            "required": false,
            "description": "RESTCONF response media type (RFC 8040)",
            "schema": {
              "type": "string",
              "default": "application/yang-data+json",
              "enum": [
                "application/yang-data+json",
                "application/yang-data+xml"
              ]
            }
          },
          {
            "name": "depth",
            "in": "query",
            "required": false,
            "description": "Limit the depth of returned sub-tree data (RFC 8040 Section 4.8.2). Use 'unbounded' for full depth.",
            "schema": {
              "type": "string",
              "default": "unbounded"
            }
          },
          {
            "name": "fields",
            "in": "query",
            "required": false,
            "description": "Select specific fields to return (RFC 8040 Section 4.8.3). Example: fields=name;status",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "content",
            "in": "query",
            "required": false,
            "description": "Filter by config state: 'config' (config true only), 'nonconfig' (config false only), or 'all'.",
            "schema": {
              "type": "string",
              "enum": [
                "config",
                "nonconfig",
                "all"
              ],
              "default": "all"
            }
          }
        ]
      },
      "x-yang-path": "/rsvpSenderEntry",
      "x-restconf-kind": "container"
    },
    "/data/RSVP-MIB:rsvpSenderOutInterfaceEntry": {
      "get": {
        "summary": "Get rsvpSenderOutInterfaceEntry list",
        "description": "Retrieve list of rsvpSenderOutInterfaceEntry entries from MIB",
        "tags": [
          "RSVP-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "List of outgoing interfaces\tthat a\tparticular\n          PATH\tmessage\thas.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "rsvpSessionNumber": {
                        "type": "string",
                        "description": "rsvpSessionNumber",
                        "x-yang-type": "leafref"
                      },
                      "rsvpSenderNumber": {
                        "type": "string",
                        "description": "rsvpSenderNumber",
                        "x-yang-type": "leafref"
                      },
                      "ifIndex": {
                        "type": "string",
                        "description": "ifIndex",
                        "x-yang-type": "leafref"
                      },
                      "rsvpSenderOutInterfaceStatus": {
                        "type": "string",
                        "description": "'active' for all active PATH messages.",
                        "x-yang-type": "snmpv2-tc:RowStatus"
                      }
                    }
                  }
                },
                "example": {
                  "RSVP-MIB:rsvpSenderOutInterfaceEntry": [
                    {
                      "rsvpSessionNumber": "example-string",
                      "rsvpSenderNumber": "example-string",
                      "ifIndex": "example-string",
                      "rsvpSenderOutInterfaceStatus": "GigabitEthernet1/0/1"
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-rsvpSenderOutInterfaceEntry-3",
        "parameters": [
          {
            "name": "Accept",
            "in": "header",
            "required": false,
            "description": "RESTCONF response media type (RFC 8040)",
            "schema": {
              "type": "string",
              "default": "application/yang-data+json",
              "enum": [
                "application/yang-data+json",
                "application/yang-data+xml"
              ]
            }
          },
          {
            "name": "depth",
            "in": "query",
            "required": false,
            "description": "Limit the depth of returned sub-tree data (RFC 8040 Section 4.8.2). Use 'unbounded' for full depth.",
            "schema": {
              "type": "string",
              "default": "unbounded"
            }
          },
          {
            "name": "fields",
            "in": "query",
            "required": false,
            "description": "Select specific fields to return (RFC 8040 Section 4.8.3). Example: fields=name;status",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "content",
            "in": "query",
            "required": false,
            "description": "Filter by config state: 'config' (config true only), 'nonconfig' (config false only), or 'all'.",
            "schema": {
              "type": "string",
              "enum": [
                "config",
                "nonconfig",
                "all"
              ],
              "default": "all"
            }
          }
        ]
      },
      "x-yang-path": "/rsvpSenderOutInterfaceEntry",
      "x-restconf-kind": "container"
    },
    "/data/RSVP-MIB:rsvpResvEntry": {
      "get": {
        "summary": "Get rsvpResvEntry list",
        "description": "Retrieve list of rsvpResvEntry entries from MIB",
        "tags": [
          "RSVP-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "Information\tdescribing the\tstate  information\n          displayed  by  a single receiver's RESV message\n          concerning a\tsingle sender.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "rsvpSessionNumber": {
                        "type": "string",
                        "description": "rsvpSessionNumber",
                        "x-yang-type": "leafref"
                      },
                      "rsvpResvNumber": {
                        "type": "string",
                        "description": "The\tnumber of this reservation request.   This\n            is  for  SNMP Indexing purposes only\tand has\tno\n            relation to any protocol value.",
                        "x-yang-type": "integrated-services:SessionNumber"
                      },
                      "rsvpResvType": {
                        "type": "string",
                        "description": "The\ttype of\tsession\t(IP4, IP6, IP6\twith  flow\n            information,\tetc).",
                        "x-yang-type": "integrated-services:SessionType"
                      },
                      "rsvpResvDestAddr": {
                        "type": "string",
                        "description": "The\tdestination address used by all\tsenders\tin\n            this\t session.   This object\tmay not\tbe changed\n            when\tthe  value  of\tthe  RowStatus\tobject\tis\n            'active'.",
                        "format": "binary"
                      },
                      "rsvpResvSenderAddr": {
                        "type": "string",
                        "description": "The\tsource address of the sender  selected\tby\n            this\t reservation.\tThe  value  of\tall zeroes\n            indicates 'all senders'.  This object  may  not\n            be  changed\twhen  the  value  of the RowStatus\n            object is 'active'.",
                        "format": "binary"
                      },
                      "rsvpResvDestAddrLength": {
                        "type": "integer",
                        "description": "The\tlength of the destination address in bits.\n            This\t is  the CIDR Prefix Length, which for IP4\n            hosts and multicast addresses is 32 bits.  This\n            object may not be changed when the value of the\n            RowStatus object is 'active'.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "rsvpResvSenderAddrLength": {
                        "type": "integer",
                        "description": "The\tlength of the sender's\taddress\t in  bits.\n            This\t is  the CIDR Prefix Length, which for IP4\n            hosts and multicast addresses is 32 bits.  This\n            object may not be changed when the value of the\n            RowStatus object is 'active'.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "rsvpResvProtocol": {
                        "type": "string",
                        "description": "The\tIP Protocol used by  this  session.   This\n            object may not be changed when the value of the\n            RowStatus object is 'active'.",
                        "x-yang-type": "integrated-services:Protocol"
                      },
                      "rsvpResvDestPort": {
                        "type": "string",
                        "description": "The\t UDP  or  TCP  port  number  used   as\t a\n            destination\t port  for  all\t senders  in  this\n            session.  If\tthe IP protocol\tin use,\t specified\n            by  rsvpResvProtocol,  is  50 (ESP) or 51 (AH),\n            this\t represents  a\tvirtual\t destination  port\n            number.   A value of\tzero indicates that the\tIP\n            protocol in use  does  not  have  ports.   This\n            object may not be changed when the value of the\n            RowStatus object is 'active'.",
                        "x-yang-type": "integrated-services:Port"
                      },
                      "rsvpResvPort": {
                        "type": "string",
                        "description": "The\tUDP or TCP port\tnumber used  as\t a  source\n            port\t for  this sender in this session.  If the\n            IP\t protocol    in\t   use,\t   specified\tby\n            rsvpResvProtocol  is\t 50 (ESP) or 51\t(AH), this\n            represents a\tgeneralized port identifier (GPI).\n            A  value of zero indicates that the IP protocol\n            in use does not have\tports.\t This  object  may\n            not\tbe changed when\tthe value of the RowStatus\n            object is 'active'.",
                        "x-yang-type": "integrated-services:Port"
                      },
                      "rsvpResvHopAddr": {
                        "type": "string",
                        "description": "The\taddress\tused by\tthe next RSVP  hop  (which\n            may be the ultimate receiver).",
                        "format": "binary"
                      },
                      "rsvpResvHopLih": {
                        "type": "integer",
                        "description": "The\tLogical\tInterface Handle received from the\n            previous  RSVP  hop\t(which may be the ultimate\n            receiver).",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "rsvpResvInterface": {
                        "type": "string",
                        "description": "The\tifIndex\tvalue of the  interface\t on  which\n            this\tRESV message was most recently received.",
                        "x-yang-type": "if-mib:InterfaceIndex"
                      },
                      "rsvpResvService": {
                        "type": "string",
                        "description": "The\tQoS Service  classification  requested\tby\n            the receiver.",
                        "x-yang-type": "integrated-services:QosService"
                      },
                      "rsvpResvTSpecRate": {
                        "type": "string",
                        "description": "The\tAverage\tBit  Rate  of  the  sender's  data\n            stream.    Within  a\t transmission  burst,  the\n            arrival   rate    may    be\t  as\tfast\tas\n            rsvpResvTSpecPeakRate   (if\tsupported  by  the\n            service model); however, averaged across two\tor\n            more\t burst\tintervals,  the\t rate  should  not\n            exceed rsvpResvTSpecRate.\n            \n            Note\tthat this is a prediction, often based\ton\n            the\tgeneral\t capability  of\ta type of codec\tor\n            particular encoding;\tthe measured average  rate\n            may be significantly\tlower.",
                        "x-yang-type": "integrated-services:BitRate"
                      },
                      "rsvpResvTSpecPeakRate": {
                        "type": "string",
                        "description": "The\tPeak Bit Rate of the sender's data stream.\n            Traffic  arrival is not expected to exceed this\n            rate\tat any time, apart  from  the  effects\tof\n            jitter in the network.  If not specified in the\n            TSpec, this returns zero or noSuchValue.",
                        "x-yang-type": "integrated-services:BitRate"
                      },
                      "rsvpResvTSpecBurst": {
                        "type": "string",
                        "description": "The\tsize of\tthe largest  burst  expected  from\n            the sender at a time.\n            \n            If this is less than\t the  sender's\tadvertised\n            burst  size,\tthe receiver is\tasking the network\n            to provide flow pacing  beyond  what\t would\tbe\n            provided   under   normal  circumstances.  Such\n            pacing is at\tthe network's option.",
                        "x-yang-type": "integrated-services:BurstSize"
                      },
                      "rsvpResvTSpecMinTU": {
                        "type": "string",
                        "description": "The\tminimum\tmessage\tsize for  this\tflow.  The\n            policing  algorithm will treat smaller messages\n            as though they are this size.",
                        "x-yang-type": "integrated-services:MessageSize"
                      },
                      "rsvpResvTSpecMaxTU": {
                        "type": "string",
                        "description": "The\tmaximum\tmessage\tsize for  this\tflow.  The\n            admission  algorithm\t will  reject TSpecs whose\n            Maximum Transmission\tUnit, plus  the\t interface\n            headers, exceed the interface MTU.",
                        "x-yang-type": "integrated-services:MessageSize"
                      },
                      "rsvpResvRSpecRate": {
                        "type": "string",
                        "description": "If the requested  service  is  Guaranteed,\tas\n            specified   by  rsvpResvService,  this  is  the\n            clearing  rate   that   is\tbeing\trequested.\n            Otherwise,  it is zero, or the agent\tmay return\n            noSuchValue.",
                        "x-yang-type": "integrated-services:BitRate"
                      },
                      "rsvpResvRSpecSlack": {
                        "type": "integer",
                        "description": "If the requested  service  is  Guaranteed,\tas\n            specified by\trsvpResvService, this is the delay\n            slack.  Otherwise, it is zero, or the agent may\n            return noSuchValue.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "rsvpResvInterval": {
                        "type": "string",
                        "description": "The\t interval  between  refresh  messages\tas\n            advertised by the Next Hop.",
                        "x-yang-type": "RSVP-MIB:RefreshInterval"
                      },
                      "rsvpResvScope": {
                        "type": "string",
                        "description": "The\tcontents of the\tscope object, displayed\tas\n            an  uninterpreted  string  of octets, including\n            the object header.  In the absence of  such\tan\n            object, this\tshould be of zero length.\n            \n            If the length  is  non-zero,\t this  contains\t a\n            series of IP4 or IP6\taddresses.",
                        "format": "binary"
                      },
                      "rsvpResvShared": {
                        "type": "boolean",
                        "description": "If TRUE, a reservation shared among\tsenders\tis\n            requested.  If FALSE, a reservation specific\tto\n            this\tsender is requested."
                      },
                      "rsvpResvExplicit": {
                        "type": "boolean",
                        "description": "If TRUE, individual\tsenders\tare  listed  using\n            Filter  Specifications.   If\tFALSE, all senders\n            are implicitly selected.  The Scope Object will\n            contain  a list of senders that need\tto receive\n            this\treservation request  for  the  purpose\tof\n            routing the RESV message."
                      },
                      "rsvpResvRSVPHop": {
                        "type": "boolean",
                        "description": "If TRUE, the node believes that  the  previous\n            IP  hop  is\tan  RSVP  hop.\tIf FALSE, the node\n            believes that the previous IP hop may not be\tan\n            RSVP\thop."
                      },
                      "rsvpResvLastChange": {
                        "type": "string",
                        "description": "The\t time  of  the\t last\tchange\t in   this\n            reservation\trequest;  This is either the first\n            time\tit was received\tor the time  of\t the  most\n            recent change in parameters.",
                        "x-yang-type": "yang:timestamp"
                      },
                      "rsvpResvPolicy": {
                        "type": "string",
                        "description": "The\tcontents of the\tpolicy\tobject,\t displayed\n            as an uninterpreted string of octets, including\n            the object header.  In the absence of  such\tan\n            object, this\tshould be of zero length.",
                        "format": "binary"
                      },
                      "rsvpResvStatus": {
                        "type": "string",
                        "description": "'active' for all active RESV  messages.   This\n            object  may\tbe  used  to  install  static RESV\n            information or delete RESV information.",
                        "x-yang-type": "snmpv2-tc:RowStatus"
                      },
                      "rsvpResvTTL": {
                        "type": "integer",
                        "description": "The\tTTL value in the RSVP header that was last\n            received.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "rsvpResvFlowId": {
                        "type": "integer",
                        "description": "The\tflow ID\tthat this receiver  is\tusing,\tif\n            this\t is  an\tIPv6 session.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      }
                    }
                  }
                },
                "example": {
                  "RSVP-MIB:rsvpResvEntry": [
                    {
                      "rsvpSessionNumber": "example-string",
                      "rsvpResvNumber": "example-string",
                      "rsvpResvType": "ethernetCsmacd(6)",
                      "rsvpResvDestAddr": "192.168.1.1",
                      "rsvpResvSenderAddr": "192.168.1.1",
                      "rsvpResvDestAddrLength": -2147483648,
                      "rsvpResvSenderAddrLength": -2147483648,
                      "rsvpResvProtocol": "example-string",
                      "rsvpResvDestPort": "example-string",
                      "rsvpResvPort": "example-string",
                      "rsvpResvHopAddr": "192.168.1.1",
                      "rsvpResvHopLih": -2147483648,
                      "rsvpResvInterface": "GigabitEthernet1/0/1",
                      "rsvpResvService": "example-string",
                      "rsvpResvTSpecRate": "example-string",
                      "rsvpResvTSpecPeakRate": "example-string",
                      "rsvpResvTSpecBurst": "example-string",
                      "rsvpResvTSpecMinTU": "example-string",
                      "rsvpResvTSpecMaxTU": "example-string",
                      "rsvpResvRSpecRate": "example-string",
                      "rsvpResvRSpecSlack": -2147483648,
                      "rsvpResvInterval": "example-string",
                      "rsvpResvScope": "example-string",
                      "rsvpResvShared": true,
                      "rsvpResvExplicit": true,
                      "rsvpResvRSVPHop": true,
                      "rsvpResvLastChange": "example-string",
                      "rsvpResvPolicy": "example-string",
                      "rsvpResvStatus": "up(1)",
                      "rsvpResvTTL": -2147483648,
                      "rsvpResvFlowId": -2147483648
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-rsvpResvEntry-3",
        "parameters": [
          {
            "name": "Accept",
            "in": "header",
            "required": false,
            "description": "RESTCONF response media type (RFC 8040)",
            "schema": {
              "type": "string",
              "default": "application/yang-data+json",
              "enum": [
                "application/yang-data+json",
                "application/yang-data+xml"
              ]
            }
          },
          {
            "name": "depth",
            "in": "query",
            "required": false,
            "description": "Limit the depth of returned sub-tree data (RFC 8040 Section 4.8.2). Use 'unbounded' for full depth.",
            "schema": {
              "type": "string",
              "default": "unbounded"
            }
          },
          {
            "name": "fields",
            "in": "query",
            "required": false,
            "description": "Select specific fields to return (RFC 8040 Section 4.8.3). Example: fields=name;status",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "content",
            "in": "query",
            "required": false,
            "description": "Filter by config state: 'config' (config true only), 'nonconfig' (config false only), or 'all'.",
            "schema": {
              "type": "string",
              "enum": [
                "config",
                "nonconfig",
                "all"
              ],
              "default": "all"
            }
          }
        ]
      },
      "x-yang-path": "/rsvpResvEntry",
      "x-restconf-kind": "container"
    },
    "/data/RSVP-MIB:rsvpResvFwdEntry": {
      "get": {
        "summary": "Get rsvpResvFwdEntry list",
        "description": "Retrieve list of rsvpResvFwdEntry entries from MIB",
        "tags": [
          "RSVP-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "Information\tdescribing the\tstate  information\n          displayed   upstream\t  in   an   RESV   message\n          concerning a\tsingle sender.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "rsvpSessionNumber": {
                        "type": "string",
                        "description": "rsvpSessionNumber",
                        "x-yang-type": "leafref"
                      },
                      "rsvpResvFwdNumber": {
                        "type": "string",
                        "description": "The\tnumber of this reservation request.   This\n            is  for  SNMP Indexing purposes only\tand has\tno\n            relation to any protocol value.",
                        "x-yang-type": "integrated-services:SessionNumber"
                      },
                      "rsvpResvFwdType": {
                        "type": "string",
                        "description": "The\ttype of\tsession\t(IP4, IP6, IP6\twith  flow\n            information,\tetc).",
                        "x-yang-type": "integrated-services:SessionType"
                      },
                      "rsvpResvFwdDestAddr": {
                        "type": "string",
                        "description": "The\tdestination address used by all\tsenders\tin\n            this\t session.   This object\tmay not\tbe changed\n            when\tthe  value  of\tthe  RowStatus\tobject\tis\n            'active'.",
                        "format": "binary"
                      },
                      "rsvpResvFwdSenderAddr": {
                        "type": "string",
                        "description": "The\tsource address of the sender  selected\tby\n            this\t reservation.\tThe  value  of\tall zeroes\n            indicates 'all senders'.  This object  may  not\n            be  changed\twhen  the  value  of the RowStatus\n            object is 'active'.",
                        "format": "binary"
                      },
                      "rsvpResvFwdDestAddrLength": {
                        "type": "integer",
                        "description": "The\tlength of the destination address in bits.\n            This\t is  the CIDR Prefix Length, which for IP4\n            hosts and multicast addresses is 32 bits.  This\n            object may not be changed when the value of the\n            RowStatus object is 'active'.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "rsvpResvFwdSenderAddrLength": {
                        "type": "integer",
                        "description": "The\tlength of the sender's\taddress\t in  bits.\n            This\t is  the CIDR Prefix Length, which for IP4\n            hosts and multicast addresses is 32 bits.  This\n            object may not be changed when the value of the\n            RowStatus object is 'active'.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "rsvpResvFwdProtocol": {
                        "type": "string",
                        "description": "The\tIP Protocol used by a session. for  secure\n            sessions,  this  indicates  IP  Security.  This\n            object may not be changed when the value of the\n            RowStatus object is 'active'.",
                        "x-yang-type": "integrated-services:Protocol"
                      },
                      "rsvpResvFwdDestPort": {
                        "type": "string",
                        "description": "The\t UDP  or  TCP  port  number  used   as\t a\n            destination\t port  for  all\t senders  in  this\n            session.  If\tthe IP protocol\tin use,\t specified\n            by rsvpResvFwdProtocol, is 50 (ESP) or 51 (AH),\n            this\t represents  a\tvirtual\t destination  port\n            number.   A value of\tzero indicates that the\tIP\n            protocol in use  does  not  have  ports.   This\n            object may not be changed when the value of the\n            RowStatus object is 'active'.",
                        "x-yang-type": "integrated-services:Port"
                      },
                      "rsvpResvFwdPort": {
                        "type": "string",
                        "description": "The\tUDP or TCP port\tnumber used  as\t a  source\n            port\t for  this sender in this session.  If the\n            IP\t protocol    in\t   use,\t   specified\tby\n            rsvpResvFwdProtocol\tis  50\t(ESP)  or 51 (AH),\n            this\trepresents a generalized  port\tidentifier\n            (GPI).   A  value of\tzero indicates that the\tIP\n            protocol in use  does  not  have  ports.   This\n            object may not be changed when the value of the\n            RowStatus object is 'active'.",
                        "x-yang-type": "integrated-services:Port"
                      },
                      "rsvpResvFwdHopAddr": {
                        "type": "string",
                        "description": "The\taddress\tof the (previous) RSVP\tthat  will\n            receive this\tmessage.",
                        "format": "binary"
                      },
                      "rsvpResvFwdHopLih": {
                        "type": "integer",
                        "description": "The\t Logical  Interface  Handle  sent  to  the\n            (previous)\tRSVP   that   will   receive  this\n            message.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "rsvpResvFwdInterface": {
                        "type": "string",
                        "description": "The\tifIndex\tvalue of the  interface\t on  which\n            this\tRESV message was most recently sent.",
                        "x-yang-type": "if-mib:InterfaceIndex"
                      },
                      "rsvpResvFwdService": {
                        "type": "string",
                        "description": "The\tQoS Service classification requested.",
                        "x-yang-type": "integrated-services:QosService"
                      },
                      "rsvpResvFwdTSpecRate": {
                        "type": "string",
                        "description": "The\tAverage\tBit  Rate  of  the  sender's  data\n            stream.    Within  a\t transmission  burst,  the\n            arrival   rate    may    be\t  as\tfast\tas\n            rsvpResvFwdTSpecPeakRate  (if  supported by the\n            service model); however, averaged across two\tor\n            more\t burst\tintervals,  the\t rate  should  not\n            exceed rsvpResvFwdTSpecRate.\n            \n            Note\tthat this is a prediction, often based\ton\n            the\tgeneral\t capability  of\ta type of codec\tor\n            particular encoding;\tthe measured average  rate\n            may be significantly\tlower.",
                        "x-yang-type": "integrated-services:BitRate"
                      },
                      "rsvpResvFwdTSpecPeakRate": {
                        "type": "string",
                        "description": "The\tPeak Bit Rate of the sender's data  stream\n            Traffic  arrival is not expected to exceed this\n            rate\tat any time, apart  from  the  effects\tof\n            jitter in the network.  If not specified in the\n            TSpec, this returns zero or noSuchValue.",
                        "x-yang-type": "integrated-services:BitRate"
                      },
                      "rsvpResvFwdTSpecBurst": {
                        "type": "string",
                        "description": "The\tsize of\tthe largest  burst  expected  from\n            the sender at a time.\n            \n            If this is less than\t the  sender's\tadvertised\n            burst  size,\tthe receiver is\tasking the network\n            to provide flow pacing  beyond  what\t would\tbe\n            provided   under   normal  circumstances.  Such\n            pacing is at\tthe network's option.",
                        "x-yang-type": "integrated-services:BurstSize"
                      },
                      "rsvpResvFwdTSpecMinTU": {
                        "type": "string",
                        "description": "The\tminimum\tmessage\tsize for  this\tflow.  The\n            policing  algorithm will treat smaller messages\n            as though they are this size.",
                        "x-yang-type": "integrated-services:MessageSize"
                      },
                      "rsvpResvFwdTSpecMaxTU": {
                        "type": "string",
                        "description": "The\tmaximum\tmessage\tsize for  this\tflow.  The\n            admission  algorithm\t will  reject TSpecs whose\n            Maximum Transmission\tUnit, plus  the\t interface\n            headers, exceed the interface MTU.",
                        "x-yang-type": "integrated-services:MessageSize"
                      },
                      "rsvpResvFwdRSpecRate": {
                        "type": "string",
                        "description": "If the requested  service  is  Guaranteed,\tas\n            specified   by  rsvpResvService,  this  is  the\n            clearing  rate   that   is\tbeing\trequested.\n            Otherwise,  it is zero, or the agent\tmay return\n            noSuchValue.",
                        "x-yang-type": "integrated-services:BitRate"
                      },
                      "rsvpResvFwdRSpecSlack": {
                        "type": "integer",
                        "description": "If the requested  service  is  Guaranteed,\tas\n            specified by\trsvpResvService, this is the delay\n            slack.  Otherwise, it is zero, or the agent may\n            return noSuchValue.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "rsvpResvFwdInterval": {
                        "type": "string",
                        "description": "The\t  interval   between   refresh\t  messages\n            advertised to the Previous Hop.",
                        "x-yang-type": "RSVP-MIB:RefreshInterval"
                      },
                      "rsvpResvFwdScope": {
                        "type": "string",
                        "description": "The\tcontents of the\tscope object, displayed\tas\n            an  uninterpreted  string  of octets, including\n            the object header.  In the absence of  such\tan\n            object, this\tshould be of zero length.",
                        "format": "binary"
                      },
                      "rsvpResvFwdShared": {
                        "type": "boolean",
                        "description": "If TRUE, a reservation shared among\tsenders\tis\n            requested.  If FALSE, a reservation specific\tto\n            this\tsender is requested."
                      },
                      "rsvpResvFwdExplicit": {
                        "type": "boolean",
                        "description": "If TRUE, individual\tsenders\tare  listed  using\n            Filter  Specifications.   If\tFALSE, all senders\n            are implicitly selected.  The Scope Object will\n            contain  a list of senders that need\tto receive\n            this\treservation request  for  the  purpose\tof\n            routing the RESV message."
                      },
                      "rsvpResvFwdRSVPHop": {
                        "type": "boolean",
                        "description": "If TRUE, the node believes that  the  next\tIP\n            hop\tis  an\tRSVP  hop.   If\t FALSE,\t the  node\n            believes that the next IP hop  may  not  be\tan\n            RSVP\thop."
                      },
                      "rsvpResvFwdLastChange": {
                        "type": "string",
                        "description": "The\ttime of\tthe last change\tin  this  request;\n            This\t is  either  the first time it was sent\tor\n            the\ttime  of  the  most   recent   change\tin\n            parameters.",
                        "x-yang-type": "yang:timestamp"
                      },
                      "rsvpResvFwdPolicy": {
                        "type": "string",
                        "description": "The\tcontents of the\tpolicy\tobject,\t displayed\n            as an uninterpreted string of octets, including\n            the object header.  In the absence of  such\tan\n            object, this\tshould be of zero length.",
                        "format": "binary"
                      },
                      "rsvpResvFwdStatus": {
                        "type": "string",
                        "description": "'active' for all active RESV  messages.   This\n            object may be used to delete\tRESV information.",
                        "x-yang-type": "snmpv2-tc:RowStatus"
                      },
                      "rsvpResvFwdTTL": {
                        "type": "integer",
                        "description": "The\tTTL value in the RSVP header that was last\n            received.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "rsvpResvFwdFlowId": {
                        "type": "integer",
                        "description": "The\tflow ID\tthat this receiver  is\tusing,\tif\n            this\t is  an\tIPv6 session.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      }
                    }
                  }
                },
                "example": {
                  "RSVP-MIB:rsvpResvFwdEntry": [
                    {
                      "rsvpSessionNumber": "example-string",
                      "rsvpResvFwdNumber": "example-string",
                      "rsvpResvFwdType": "ethernetCsmacd(6)",
                      "rsvpResvFwdDestAddr": "192.168.1.1",
                      "rsvpResvFwdSenderAddr": "192.168.1.1",
                      "rsvpResvFwdDestAddrLength": -2147483648,
                      "rsvpResvFwdSenderAddrLength": -2147483648,
                      "rsvpResvFwdProtocol": "example-string",
                      "rsvpResvFwdDestPort": "example-string",
                      "rsvpResvFwdPort": "example-string",
                      "rsvpResvFwdHopAddr": "192.168.1.1",
                      "rsvpResvFwdHopLih": -2147483648,
                      "rsvpResvFwdInterface": "GigabitEthernet1/0/1",
                      "rsvpResvFwdService": "example-string",
                      "rsvpResvFwdTSpecRate": "example-string",
                      "rsvpResvFwdTSpecPeakRate": "example-string",
                      "rsvpResvFwdTSpecBurst": "example-string",
                      "rsvpResvFwdTSpecMinTU": "example-string",
                      "rsvpResvFwdTSpecMaxTU": "example-string",
                      "rsvpResvFwdRSpecRate": "example-string",
                      "rsvpResvFwdRSpecSlack": -2147483648,
                      "rsvpResvFwdInterval": "example-string",
                      "rsvpResvFwdScope": "example-string",
                      "rsvpResvFwdShared": true,
                      "rsvpResvFwdExplicit": true,
                      "rsvpResvFwdRSVPHop": true,
                      "rsvpResvFwdLastChange": "example-string",
                      "rsvpResvFwdPolicy": "example-string",
                      "rsvpResvFwdStatus": "up(1)",
                      "rsvpResvFwdTTL": -2147483648,
                      "rsvpResvFwdFlowId": -2147483648
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-rsvpResvFwdEntry-3",
        "parameters": [
          {
            "name": "Accept",
            "in": "header",
            "required": false,
            "description": "RESTCONF response media type (RFC 8040)",
            "schema": {
              "type": "string",
              "default": "application/yang-data+json",
              "enum": [
                "application/yang-data+json",
                "application/yang-data+xml"
              ]
            }
          },
          {
            "name": "depth",
            "in": "query",
            "required": false,
            "description": "Limit the depth of returned sub-tree data (RFC 8040 Section 4.8.2). Use 'unbounded' for full depth.",
            "schema": {
              "type": "string",
              "default": "unbounded"
            }
          },
          {
            "name": "fields",
            "in": "query",
            "required": false,
            "description": "Select specific fields to return (RFC 8040 Section 4.8.3). Example: fields=name;status",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "content",
            "in": "query",
            "required": false,
            "description": "Filter by config state: 'config' (config true only), 'nonconfig' (config false only), or 'all'.",
            "schema": {
              "type": "string",
              "enum": [
                "config",
                "nonconfig",
                "all"
              ],
              "default": "all"
            }
          }
        ]
      },
      "x-yang-path": "/rsvpResvFwdEntry",
      "x-restconf-kind": "container"
    },
    "/data/RSVP-MIB:rsvpIfEntry": {
      "get": {
        "summary": "Get rsvpIfEntry list",
        "description": "Retrieve list of rsvpIfEntry entries from MIB",
        "tags": [
          "RSVP-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "The\tRSVP-specific attributes of  the  a  given\n          interface.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "ifIndex": {
                        "type": "string",
                        "description": "ifIndex",
                        "x-yang-type": "leafref"
                      },
                      "rsvpIfUdpNbrs": {
                        "type": "integer",
                        "description": "The\tnumber of neighbors perceived to be  using\n            only\tthe RSVP UDP Encapsulation.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "rsvpIfIpNbrs": {
                        "type": "integer",
                        "description": "The\tnumber of neighbors perceived to be  using\n            only\tthe RSVP IP Encapsulation.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "rsvpIfNbrs": {
                        "type": "integer",
                        "description": "The\tnumber of neighbors  currently\tperceived;\n            this\t will  exceed rsvpIfIpNbrs + rsvpIfUdpNbrs\n            by  the  number   of\t  neighbors   using   both\n            encapsulations.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "rsvpIfRefreshBlockadeMultiple": {
                        "type": "integer",
                        "description": "The\tvalue of the RSVP value\t'Kb', Which is the\n            minimum   number   of  refresh  intervals  that\n            blockade state will last once entered.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "rsvpIfRefreshMultiple": {
                        "type": "integer",
                        "description": "The\tvalue of the RSVP value\t'K', which is  the\n            number  of  refresh intervals which must elapse\n            (minimum) before a PATH or RESV  message  which\n            is not being\trefreshed will be aged out.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "rsvpIfTTL": {
                        "type": "integer",
                        "description": "The\tvalue of SEND_TTL used on  this\t interface\n            for\tmessages  this node originates.\t If set\tto\n            zero, the node determines  the  TTL\tvia  other\n            means.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "rsvpIfRefreshInterval": {
                        "type": "string",
                        "description": "The\tvalue of the RSVP value\t'R', which is  the\n            minimum period between refresh transmissions\tof\n            a given PATH\tor RESV\tmessage\ton an interface.",
                        "x-yang-type": "snmpv2-tc:TimeInterval"
                      },
                      "rsvpIfRouteDelay": {
                        "type": "string",
                        "description": "The\tapproximate period from\tthe time  a  route\n            is  changed\tto  the\t time  a resulting message\n            appears on the interface.",
                        "x-yang-type": "snmpv2-tc:TimeInterval"
                      },
                      "rsvpIfEnabled": {
                        "type": "boolean",
                        "description": "If TRUE, RSVP is enabled  on  this\tInterface.\n            If\tFALSE,\t RSVP\tis  not\t enabled  on  this\n            interface."
                      },
                      "rsvpIfUdpRequired": {
                        "type": "boolean",
                        "description": "If TRUE, manual configuration forces  the  use\n            of  UDP  encapsulation  on  the  interface.\tIf\n            FALSE,  UDP\tencapsulation  is  only\t used\tif\n            rsvpIfUdpNbrs is not\tzero."
                      },
                      "rsvpIfStatus": {
                        "type": "string",
                        "description": "'active' on\tinterfaces that\tare configured for\n            RSVP.",
                        "x-yang-type": "snmpv2-tc:RowStatus"
                      }
                    }
                  }
                },
                "example": {
                  "RSVP-MIB:rsvpIfEntry": [
                    {
                      "ifIndex": "example-string",
                      "rsvpIfUdpNbrs": 0,
                      "rsvpIfIpNbrs": 0,
                      "rsvpIfNbrs": 0,
                      "rsvpIfRefreshBlockadeMultiple": -2147483648,
                      "rsvpIfRefreshMultiple": -2147483648,
                      "rsvpIfTTL": -2147483648,
                      "rsvpIfRefreshInterval": "example-string",
                      "rsvpIfRouteDelay": "example-string",
                      "rsvpIfEnabled": true,
                      "rsvpIfUdpRequired": true,
                      "rsvpIfStatus": "up(1)"
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-rsvpIfEntry-3",
        "parameters": [
          {
            "name": "Accept",
            "in": "header",
            "required": false,
            "description": "RESTCONF response media type (RFC 8040)",
            "schema": {
              "type": "string",
              "default": "application/yang-data+json",
              "enum": [
                "application/yang-data+json",
                "application/yang-data+xml"
              ]
            }
          },
          {
            "name": "depth",
            "in": "query",
            "required": false,
            "description": "Limit the depth of returned sub-tree data (RFC 8040 Section 4.8.2). Use 'unbounded' for full depth.",
            "schema": {
              "type": "string",
              "default": "unbounded"
            }
          },
          {
            "name": "fields",
            "in": "query",
            "required": false,
            "description": "Select specific fields to return (RFC 8040 Section 4.8.3). Example: fields=name;status",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "content",
            "in": "query",
            "required": false,
            "description": "Filter by config state: 'config' (config true only), 'nonconfig' (config false only), or 'all'.",
            "schema": {
              "type": "string",
              "enum": [
                "config",
                "nonconfig",
                "all"
              ],
              "default": "all"
            }
          }
        ]
      },
      "x-yang-path": "/rsvpIfEntry",
      "x-restconf-kind": "container"
    },
    "/data/RSVP-MIB:rsvpIfEntry={ifIndex}": {
      "get": {
        "summary": "Get rsvpIfEntry entry",
        "description": "Retrieve specific rsvpIfEntry entry by key from MIB",
        "tags": [
          "RSVP-MIB"
        ],
        "parameters": [
          {
            "name": "ifIndex",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            },
            "example": "1"
          },
          {
            "name": "Accept",
            "in": "header",
            "required": false,
            "description": "RESTCONF response media type (RFC 8040)",
            "schema": {
              "type": "string",
              "default": "application/yang-data+json",
              "enum": [
                "application/yang-data+json",
                "application/yang-data+xml"
              ]
            }
          },
          {
            "name": "depth",
            "in": "query",
            "required": false,
            "description": "Limit the depth of returned sub-tree data (RFC 8040 Section 4.8.2). Use 'unbounded' for full depth.",
            "schema": {
              "type": "string",
              "default": "unbounded"
            }
          },
          {
            "name": "fields",
            "in": "query",
            "required": false,
            "description": "Select specific fields to return (RFC 8040 Section 4.8.3). Example: fields=name;status",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "content",
            "in": "query",
            "required": false,
            "description": "Filter by config state: 'config' (config true only), 'nonconfig' (config false only), or 'all'.",
            "schema": {
              "type": "string",
              "enum": [
                "config",
                "nonconfig",
                "all"
              ],
              "default": "all"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "ifIndex": {
                      "type": "string",
                      "description": "ifIndex",
                      "x-yang-type": "leafref"
                    },
                    "rsvpIfUdpNbrs": {
                      "type": "integer",
                      "description": "The\tnumber of neighbors perceived to be  using\n            only\tthe RSVP UDP Encapsulation.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "rsvpIfIpNbrs": {
                      "type": "integer",
                      "description": "The\tnumber of neighbors perceived to be  using\n            only\tthe RSVP IP Encapsulation.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "rsvpIfNbrs": {
                      "type": "integer",
                      "description": "The\tnumber of neighbors  currently\tperceived;\n            this\t will  exceed rsvpIfIpNbrs + rsvpIfUdpNbrs\n            by  the  number   of\t  neighbors   using   both\n            encapsulations.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "rsvpIfRefreshBlockadeMultiple": {
                      "type": "integer",
                      "description": "The\tvalue of the RSVP value\t'Kb', Which is the\n            minimum   number   of  refresh  intervals  that\n            blockade state will last once entered.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "rsvpIfRefreshMultiple": {
                      "type": "integer",
                      "description": "The\tvalue of the RSVP value\t'K', which is  the\n            number  of  refresh intervals which must elapse\n            (minimum) before a PATH or RESV  message  which\n            is not being\trefreshed will be aged out.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "rsvpIfTTL": {
                      "type": "integer",
                      "description": "The\tvalue of SEND_TTL used on  this\t interface\n            for\tmessages  this node originates.\t If set\tto\n            zero, the node determines  the  TTL\tvia  other\n            means.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "rsvpIfRefreshInterval": {
                      "type": "string",
                      "description": "The\tvalue of the RSVP value\t'R', which is  the\n            minimum period between refresh transmissions\tof\n            a given PATH\tor RESV\tmessage\ton an interface.",
                      "x-yang-type": "snmpv2-tc:TimeInterval"
                    },
                    "rsvpIfRouteDelay": {
                      "type": "string",
                      "description": "The\tapproximate period from\tthe time  a  route\n            is  changed\tto  the\t time  a resulting message\n            appears on the interface.",
                      "x-yang-type": "snmpv2-tc:TimeInterval"
                    },
                    "rsvpIfEnabled": {
                      "type": "boolean",
                      "description": "If TRUE, RSVP is enabled  on  this\tInterface.\n            If\tFALSE,\t RSVP\tis  not\t enabled  on  this\n            interface."
                    },
                    "rsvpIfUdpRequired": {
                      "type": "boolean",
                      "description": "If TRUE, manual configuration forces  the  use\n            of  UDP  encapsulation  on  the  interface.\tIf\n            FALSE,  UDP\tencapsulation  is  only\t used\tif\n            rsvpIfUdpNbrs is not\tzero."
                    },
                    "rsvpIfStatus": {
                      "type": "string",
                      "description": "'active' on\tinterfaces that\tare configured for\n            RSVP.",
                      "x-yang-type": "snmpv2-tc:RowStatus"
                    }
                  }
                },
                "example": {
                  "RSVP-MIB:rsvpIfEntry": {
                    "ifIndex": "example-string",
                    "rsvpIfUdpNbrs": 0,
                    "rsvpIfIpNbrs": 0,
                    "rsvpIfNbrs": 0,
                    "rsvpIfRefreshBlockadeMultiple": -2147483648,
                    "rsvpIfRefreshMultiple": -2147483648,
                    "rsvpIfTTL": -2147483648,
                    "rsvpIfRefreshInterval": "example-string",
                    "rsvpIfRouteDelay": "example-string",
                    "rsvpIfEnabled": true,
                    "rsvpIfUdpRequired": true,
                    "rsvpIfStatus": "up(1)"
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-rsvpIfEntry-4"
      },
      "x-yang-path": "/rsvpIfEntry={ifIndex}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "ifIndex"
      ]
    },
    "/data/RSVP-MIB:rsvpNbrEntry": {
      "get": {
        "summary": "Get rsvpNbrEntry list",
        "description": "Retrieve list of rsvpNbrEntry entries from MIB",
        "tags": [
          "RSVP-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "Information\t  describing   a    single    RSVP\n          Neighbor.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "ifIndex": {
                        "type": "string",
                        "description": "ifIndex",
                        "x-yang-type": "leafref"
                      },
                      "rsvpNbrAddress": {
                        "type": "string",
                        "description": "The\tIP4 or IP6 Address used\tby this\t neighbor.\n            This\t object\t may not be changed when the value\n            of the RowStatus object is 'active'.",
                        "format": "binary"
                      },
                      "rsvpNbrProtocol": {
                        "type": "string",
                        "description": "The\t  encapsulation\t  being\t  used\t by   this\n            neighbor.",
                        "x-yang-type": "RSVP-MIB:RsvpEncapsulation"
                      },
                      "rsvpNbrStatus": {
                        "type": "string",
                        "description": "'active' for all neighbors.\t This  object  may\n            be\tused   to  configure  neighbors.   In  the\n            presence   of   configured\t neighbors,    the\n            implementation  may\t(but  is  not required to)\n            limit the  set  of  valid  neighbors\t to  those\n            configured.",
                        "x-yang-type": "snmpv2-tc:RowStatus"
                      }
                    }
                  }
                },
                "example": {
                  "RSVP-MIB:rsvpNbrEntry": [
                    {
                      "ifIndex": "example-string",
                      "rsvpNbrAddress": "192.168.1.1",
                      "rsvpNbrProtocol": "example-string",
                      "rsvpNbrStatus": "up(1)"
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-rsvpNbrEntry-3",
        "parameters": [
          {
            "name": "Accept",
            "in": "header",
            "required": false,
            "description": "RESTCONF response media type (RFC 8040)",
            "schema": {
              "type": "string",
              "default": "application/yang-data+json",
              "enum": [
                "application/yang-data+json",
                "application/yang-data+xml"
              ]
            }
          },
          {
            "name": "depth",
            "in": "query",
            "required": false,
            "description": "Limit the depth of returned sub-tree data (RFC 8040 Section 4.8.2). Use 'unbounded' for full depth.",
            "schema": {
              "type": "string",
              "default": "unbounded"
            }
          },
          {
            "name": "fields",
            "in": "query",
            "required": false,
            "description": "Select specific fields to return (RFC 8040 Section 4.8.3). Example: fields=name;status",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "content",
            "in": "query",
            "required": false,
            "description": "Filter by config state: 'config' (config true only), 'nonconfig' (config false only), or 'all'.",
            "schema": {
              "type": "string",
              "enum": [
                "config",
                "nonconfig",
                "all"
              ],
              "default": "all"
            }
          }
        ]
      },
      "x-yang-path": "/rsvpNbrEntry",
      "x-restconf-kind": "container"
    },
    "/data/RSVP-MIB:rsvpSenderTable/rsvpSenderEntry={rsvpSessionNumber},{rsvpSenderNumber}": {
      "get": {
        "summary": "Get rsvpSenderEntry entry",
        "description": "Retrieve specific rsvpSenderEntry entry by key from MIB",
        "tags": [
          "RSVP-MIB"
        ],
        "parameters": [
          {
            "name": "rsvpSessionNumber",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "rsvpSenderNumber",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "Accept",
            "in": "header",
            "required": false,
            "description": "RESTCONF response media type (RFC 8040)",
            "schema": {
              "type": "string",
              "default": "application/yang-data+json",
              "enum": [
                "application/yang-data+json",
                "application/yang-data+xml"
              ]
            }
          },
          {
            "name": "depth",
            "in": "query",
            "required": false,
            "description": "Limit the depth of returned sub-tree data (RFC 8040 Section 4.8.2). Use 'unbounded' for full depth.",
            "schema": {
              "type": "string",
              "default": "unbounded"
            }
          },
          {
            "name": "fields",
            "in": "query",
            "required": false,
            "description": "Select specific fields to return (RFC 8040 Section 4.8.3). Example: fields=name;status",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "content",
            "in": "query",
            "required": false,
            "description": "Filter by config state: 'config' (config true only), 'nonconfig' (config false only), or 'all'.",
            "schema": {
              "type": "string",
              "enum": [
                "config",
                "nonconfig",
                "all"
              ],
              "default": "all"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "rsvpSessionNumber": {
                      "type": "string",
                      "description": "rsvpSessionNumber",
                      "x-yang-type": "leafref"
                    },
                    "rsvpSenderNumber": {
                      "type": "string",
                      "description": "The\tnumber of this sender.\tThis is\t for  SNMP\n            Indexing  purposes  only and\thas no relation\tto\n            any protocol\tvalue.",
                      "x-yang-type": "integrated-services:SessionNumber"
                    },
                    "rsvpSenderType": {
                      "type": "string",
                      "description": "The\ttype of\tsession\t(IP4, IP6, IP6\twith  flow\n            information,\tetc).",
                      "x-yang-type": "integrated-services:SessionType"
                    },
                    "rsvpSenderDestAddr": {
                      "type": "string",
                      "description": "The\tdestination address used by all\tsenders\tin\n            this\t session.   This object\tmay not\tbe changed\n            when\tthe  value  of\tthe  RowStatus\tobject\tis\n            'active'.",
                      "format": "binary"
                    },
                    "rsvpSenderAddr": {
                      "type": "string",
                      "description": "The\tsource address used by this sender in this\n            session.   This  object may not be changed when\n            the value of\tthe RowStatus object is\t'active'.",
                      "format": "binary"
                    },
                    "rsvpSenderDestAddrLength": {
                      "type": "integer",
                      "description": "The\tlength of the destination address in bits.\n            This\t is  the CIDR Prefix Length, which for IP4\n            hosts and multicast addresses is 32 bits.  This\n            object may not be changed when the value of the\n            RowStatus object is 'active'.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "rsvpSenderAddrLength": {
                      "type": "integer",
                      "description": "The\tlength of the sender's\taddress\t in  bits.\n            This\t is  the CIDR Prefix Length, which for IP4\n            hosts and multicast addresses is 32 bits.  This\n            object may not be changed when the value of the\n            RowStatus object is 'active'.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "rsvpSenderProtocol": {
                      "type": "string",
                      "description": "The\tIP Protocol used by  this  session.   This\n            object may not be changed when the value of the\n            RowStatus object is 'active'.",
                      "x-yang-type": "integrated-services:Protocol"
                    },
                    "rsvpSenderDestPort": {
                      "type": "string",
                      "description": "The\t UDP  or  TCP  port  number  used   as\t a\n            destination\t port  for  all\t senders  in  this\n            session.  If\tthe IP protocol\tin use,\t specified\n            by  rsvpSenderProtocol, is 50 (ESP) or 51 (AH),\n            this\t represents  a\tvirtual\t destination  port\n            number.   A value of\tzero indicates that the\tIP\n            protocol in use  does  not  have  ports.   This\n            object may not be changed when the value of the\n            RowStatus object is 'active'.",
                      "x-yang-type": "integrated-services:Port"
                    },
                    "rsvpSenderPort": {
                      "type": "string",
                      "description": "The\tUDP or TCP port\tnumber used  as\t a  source\n            port\t for  this sender in this session.  If the\n            IP\t protocol    in\t   use,\t   specified\tby\n            rsvpSenderProtocol is 50 (ESP) or 51\t(AH), this\n            represents a\tgeneralized port identifier (GPI).\n            A  value of zero indicates that the IP protocol\n            in use does not have\tports.\t This  object  may\n            not\tbe changed when\tthe value of the RowStatus\n            object is 'active'.",
                      "x-yang-type": "integrated-services:Port"
                    },
                    "rsvpSenderFlowId": {
                      "type": "integer",
                      "description": "The\tflow ID\tthat  this  sender  is\tusing,\tif\n            this\t is  an\tIPv6 session.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "rsvpSenderHopAddr": {
                      "type": "string",
                      "description": "The\taddress\tused  by  the  previous\t RSVP  hop\n            (which may be the original sender).",
                      "format": "binary"
                    },
                    "rsvpSenderHopLih": {
                      "type": "integer",
                      "description": "The\t Logical  Interface  Handle  used  by  the\n            previous  RSVP  hop\t(which may be the original\n            sender).",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "rsvpSenderInterface": {
                      "type": "string",
                      "description": "The\tifIndex\tvalue of the  interface\t on  which\n            this\tPATH message was most recently received.",
                      "x-yang-type": "if-mib:InterfaceIndex"
                    },
                    "rsvpSenderTSpecRate": {
                      "type": "string",
                      "description": "The\tAverage\tBit  Rate  of  the  sender's  data\n            stream.    Within  a\t transmission  burst,  the\n            arrival   rate    may    be\t  as\tfast\tas\n            rsvpSenderTSpecPeakRate  (if\t supported  by the\n            service model); however, averaged across two\tor\n            more\t burst\tintervals,  the\t rate  should  not\n            exceed rsvpSenderTSpecRate.\n            \n            Note\tthat this is a prediction, often based\ton\n            the\tgeneral\t capability  of\ta type of codec\tor\n            particular encoding;\tthe measured average  rate\n            may be significantly\tlower.",
                      "x-yang-type": "integrated-services:BitRate"
                    },
                    "rsvpSenderTSpecPeakRate": {
                      "type": "string",
                      "description": "The\tPeak Bit Rate of the sender's data stream.\n            Traffic  arrival is not expected to exceed this\n            rate\tat any time, apart  from  the  effects\tof\n            jitter in the network.  If not specified in the\n            TSpec, this returns zero or noSuchValue.",
                      "x-yang-type": "integrated-services:BitRate"
                    },
                    "rsvpSenderTSpecBurst": {
                      "type": "string",
                      "description": "The\tsize of\tthe largest  burst  expected  from\n            the sender at a time.",
                      "x-yang-type": "integrated-services:BurstSize"
                    },
                    "rsvpSenderTSpecMinTU": {
                      "type": "string",
                      "description": "The\tminimum\tmessage\tsize for  this\tflow.  The\n            policing  algorithm will treat smaller messages\n            as though they are this size.",
                      "x-yang-type": "integrated-services:MessageSize"
                    },
                    "rsvpSenderTSpecMaxTU": {
                      "type": "string",
                      "description": "The\tmaximum\tmessage\tsize for  this\tflow.  The\n            admission  algorithm\t will  reject TSpecs whose\n            Maximum Transmission\tUnit, plus  the\t interface\n            headers, exceed the interface MTU.",
                      "x-yang-type": "integrated-services:MessageSize"
                    },
                    "rsvpSenderInterval": {
                      "type": "string",
                      "description": "The\t interval  between  refresh  messages\tas\n            advertised by the Previous Hop.",
                      "x-yang-type": "RSVP-MIB:RefreshInterval"
                    },
                    "rsvpSenderRSVPHop": {
                      "type": "boolean",
                      "description": "If TRUE, the node believes that  the  previous\n            IP  hop  is\tan  RSVP  hop.\tIf FALSE, the node\n            believes that the previous IP hop may not be\tan\n            RSVP\thop."
                    },
                    "rsvpSenderLastChange": {
                      "type": "string",
                      "description": "The\ttime of\t the  last  change  in\tthis  PATH\n            message;  This  is either the first time it was\n            received or the time\tof the most recent  change\n            in parameters.",
                      "x-yang-type": "yang:timestamp"
                    },
                    "rsvpSenderPolicy": {
                      "type": "string",
                      "description": "The\tcontents of the\tpolicy\tobject,\t displayed\n            as an uninterpreted string of octets, including\n            the object header.  In the absence of  such\tan\n            object, this\tshould be of zero length.",
                      "format": "binary"
                    },
                    "rsvpSenderAdspecBreak": {
                      "type": "boolean",
                      "description": "The\tglobal break bit general  characterization\n            parameter  from  the\tADSPEC.\t If TRUE, at least\n            one non-IS hop was detected in  the\tpath.\tIf\n            FALSE, no non-IS hops were detected."
                    },
                    "rsvpSenderAdspecHopCount": {
                      "type": "integer",
                      "description": "The\t  hop\tcount\tgeneral\t  characterization\n            parameter from the ADSPEC.  A return\tof zero\tor\n            noSuchValue\tindicates  one\tof  the\t following\n            conditions:\n            \n               the invalid bit was set\n               the parameter was\tnot present",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "rsvpSenderAdspecPathBw": {
                      "type": "string",
                      "description": "The\t  path\t  bandwidth    estimate\t   general\n            characterization  parameter from the\tADSPEC.\t A\n            return of zero or noSuchValue indicates one\tof\n            the following conditions:\n            \n               the invalid bit was set\n               the parameter was\tnot present",
                      "x-yang-type": "integrated-services:BitRate"
                    },
                    "rsvpSenderAdspecMinLatency": {
                      "type": "integer",
                      "description": "The\t   minimum    path     latency\t   general\n            characterization  parameter from the\tADSPEC.\t A\n            return of zero or noSuchValue indicates one\tof\n            the following conditions:\n            \n               the invalid bit was set\n               the parameter was\tnot present",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "rsvpSenderAdspecMtu": {
                      "type": "integer",
                      "description": "The\tcomposed Maximum Transmission Unit general\n            characterization  parameter from the\tADSPEC.\t A\n            return of zero or noSuchValue indicates one\tof\n            the following conditions:\n            \n               the invalid bit was set\n               the parameter was\tnot present",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "rsvpSenderAdspecGuaranteedSvc": {
                      "type": "boolean",
                      "description": "If TRUE,  the  ADSPEC  contains  a\tGuaranteed\n            Service  fragment.\tIf  FALSE, the ADSPEC does\n            not contain a Guaranteed Service fragment."
                    },
                    "rsvpSenderAdspecGuaranteedBreak": {
                      "type": "boolean",
                      "description": "If TRUE, the Guaranteed Service  fragment  has\n            its\t'break'\t bit  set,  indicating that one\tor\n            more\tnodes along the\tpath do\t not  support  the\n            guaranteed\t  service.     If    FALSE,    and\n            rsvpSenderAdspecGuaranteedSvc  is   TRUE,   the\n            'break' bit is not set.\n            \n            If rsvpSenderAdspecGuaranteedSvc is FALSE, this\n            returns FALSE or noSuchValue."
                    },
                    "rsvpSenderAdspecGuaranteedCtot": {
                      "type": "integer",
                      "description": "If rsvpSenderAdspecGuaranteedSvc is\tTRUE, this\n            is\tthe  end-to-end\t composed  value  for  the\n            guaranteed service 'C' parameter.  A\treturn\tof\n            zero\t  or  noSuchValue  indicates  one  of  the\n            following conditions:\n            \n               the invalid bit was set\n               the parameter was\tnot present\n            \n            If rsvpSenderAdspecGuaranteedSvc is FALSE, this\n            returns zero\tor noSuchValue.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "rsvpSenderAdspecGuaranteedDtot": {
                      "type": "integer",
                      "description": "If rsvpSenderAdspecGuaranteedSvc is\tTRUE, this\n            is\tthe  end-to-end\t composed  value  for  the\n            guaranteed service 'D' parameter.  A\treturn\tof\n            zero\t  or  noSuchValue  indicates  one  of  the\n            following conditions:\n            \n               the invalid bit was set\n               the parameter was\tnot present\n            \n            If rsvpSenderAdspecGuaranteedSvc is FALSE, this\n            returns zero\tor noSuchValue.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "rsvpSenderAdspecGuaranteedCsum": {
                      "type": "integer",
                      "description": "If rsvpSenderAdspecGuaranteedSvc is\tTRUE, this\n            is\tthe  composed  value  for  the\tguaranteed\n            service 'C' parameter since the last\t reshaping\n            point.    A\t return\t of  zero  or  noSuchValue\n            indicates one of the\tfollowing conditions:\n            \n               the invalid bit was set\n               the parameter was\tnot present\n            \n            If rsvpSenderAdspecGuaranteedSvc is FALSE, this\n            returns zero\tor noSuchValue.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "rsvpSenderAdspecGuaranteedDsum": {
                      "type": "integer",
                      "description": "If rsvpSenderAdspecGuaranteedSvc is\tTRUE, this\n            is\tthe  composed  value  for  the\tguaranteed\n            service 'D' parameter since the last\t reshaping\n            point.    A\t return\t of  zero  or  noSuchValue\n            indicates one of the\tfollowing conditions:\n            \n               the invalid bit was set\n               the parameter was\tnot present\n            \n            If rsvpSenderAdspecGuaranteedSvc is FALSE, this\n            returns zero\tor noSuchValue.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "rsvpSenderAdspecGuaranteedHopCount": {
                      "type": "integer",
                      "description": "If rsvpSenderAdspecGuaranteedSvc is\tTRUE, this\n            is  the  service-specific  override\tof the hop\n            count general characterization  parameter  from\n            the\tADSPEC.\t  A  return of zero or noSuchValue\n            indicates one of the\tfollowing conditions:\n            \n               the invalid bit was set\n               the parameter was\tnot present\n            \n            If rsvpSenderAdspecGuaranteedSvc is FALSE, this\n            returns zero\tor noSuchValue.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "rsvpSenderAdspecGuaranteedPathBw": {
                      "type": "string",
                      "description": "If rsvpSenderAdspecGuaranteedSvc is\tTRUE, this\n            is  the  service-specific  override of the path\n            bandwidth  estimate\tgeneral\t  characterization\n            parameter from the ADSPEC.  A return\tof zero\tor\n            noSuchValue\tindicates  one\tof  the\t following\n            conditions:\n            \n               the invalid bit was set\n               the parameter was\tnot present\n            \n            If rsvpSenderAdspecGuaranteedSvc is FALSE, this\n            returns zero\tor noSuchValue.",
                      "x-yang-type": "integrated-services:BitRate"
                    },
                    "rsvpSenderAdspecGuaranteedMinLatency": {
                      "type": "integer",
                      "description": "If rsvpSenderAdspecGuaranteedSvc is\tTRUE, this\n            is the service-specific override of the minimum\n            path\tlatency\tgeneral\tcharacterization parameter\n            from\t  the\tADSPEC.\t   A  return  of  zero\tor\n            noSuchValue\tindicates  one\tof  the\t following\n            conditions:\n            \n               the invalid bit was set\n               the parameter was\tnot present\n            \n            If rsvpSenderAdspecGuaranteedSvc is FALSE, this\n            returns zero\tor noSuchValue.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "rsvpSenderAdspecGuaranteedMtu": {
                      "type": "integer",
                      "description": "If rsvpSenderAdspecGuaranteedSvc is\tTRUE, this\n            is\tthe   service-specific\t override  of  the\n            composed  Maximum  Transmission  Unit   general\n            characterization  parameter from the\tADSPEC.\t A\n            return of zero or noSuchValue indicates one\tof\n            the following conditions:\n            \n               the invalid bit was set\n               the parameter was\tnot present\n            \n            If rsvpSenderAdspecGuaranteedSvc is FALSE, this\n            returns zero\tor noSuchValue.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "rsvpSenderAdspecCtrlLoadSvc": {
                      "type": "boolean",
                      "description": "If TRUE, the ADSPEC\tcontains a Controlled Load\n            Service  fragment.\tIf  FALSE, the ADSPEC does\n            not\t contain   a   Controlled   Load   Service\n            fragment."
                    },
                    "rsvpSenderAdspecCtrlLoadBreak": {
                      "type": "boolean",
                      "description": "If TRUE, the Controlled Load Service  fragment\n            has its 'break' bit set, indicating that one\tor\n            more\tnodes along the\tpath do\t not  support  the\n            controlled\tload   service.\t   If  FALSE,  and\n            rsvpSenderAdspecCtrlLoadSvc\t is   TRUE,    the\n            'break' bit is not set.\n            \n            If rsvpSenderAdspecCtrlLoadSvc is  FALSE,  this\n            returns FALSE or noSuchValue."
                    },
                    "rsvpSenderAdspecCtrlLoadHopCount": {
                      "type": "integer",
                      "description": "If rsvpSenderAdspecCtrlLoadSvc is  TRUE,  this\n            is  the  service-specific  override\tof the hop\n            count general characterization  parameter  from\n            the\tADSPEC.\t  A  return of zero or noSuchValue\n            indicates one of the\tfollowing conditions:\n            \n               the invalid bit was set\n               the parameter was\tnot present\n            \n            If rsvpSenderAdspecCtrlLoadSvc is  FALSE,  this\n            returns zero\tor noSuchValue.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "rsvpSenderAdspecCtrlLoadPathBw": {
                      "type": "string",
                      "description": "If rsvpSenderAdspecCtrlLoadSvc is  TRUE,  this\n            is  the  service-specific  override of the path\n            bandwidth  estimate\tgeneral\t  characterization\n            parameter from the ADSPEC.  A return\tof zero\tor\n            noSuchValue\tindicates  one\tof  the\t following\n            conditions:\n            \n               the invalid bit was set\n               the parameter was\tnot present\n            \n            If rsvpSenderAdspecCtrlLoadSvc is  FALSE,  this\n            returns zero\tor noSuchValue.",
                      "x-yang-type": "integrated-services:BitRate"
                    },
                    "rsvpSenderAdspecCtrlLoadMinLatency": {
                      "type": "integer",
                      "description": "If rsvpSenderAdspecCtrlLoadSvc is  TRUE,  this\n            is the service-specific override of the minimum\n            path\tlatency\tgeneral\tcharacterization parameter\n            from\t  the\tADSPEC.\t   A  return  of  zero\tor\n            noSuchValue\tindicates  one\tof  the\t following\n            conditions:\n            \n               the invalid bit was set\n               the parameter was\tnot present\n            \n            If rsvpSenderAdspecCtrlLoadSvc is  FALSE,  this\n            returns zero\tor noSuchValue.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "rsvpSenderAdspecCtrlLoadMtu": {
                      "type": "integer",
                      "description": "If rsvpSenderAdspecCtrlLoadSvc is  TRUE,  this\n            is\tthe   service-specific\t override  of  the\n            composed  Maximum  Transmission  Unit   general\n            characterization  parameter from the\tADSPEC.\t A\n            return of zero or noSuchValue indicates one\tof\n            the following conditions:\n            \n               the invalid bit was set\n               the parameter was\tnot present\n            \n            If rsvpSenderAdspecCtrlLoadSvc is  FALSE,  this\n            returns zero\tor noSuchValue.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "rsvpSenderStatus": {
                      "type": "string",
                      "description": "'active' for all active PATH  messages.   This\n            object  may\tbe  used  to  install  static PATH\n            information or delete PATH information.",
                      "x-yang-type": "snmpv2-tc:RowStatus"
                    },
                    "rsvpSenderTTL": {
                      "type": "integer",
                      "description": "The\tTTL value in the RSVP header that was last\n            received.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    }
                  }
                },
                "example": {
                  "RSVP-MIB:rsvpSenderEntry": {
                    "rsvpSessionNumber": "example-string",
                    "rsvpSenderNumber": "example-string",
                    "rsvpSenderType": "ethernetCsmacd(6)",
                    "rsvpSenderDestAddr": "192.168.1.1",
                    "rsvpSenderAddr": "192.168.1.1",
                    "rsvpSenderDestAddrLength": -2147483648,
                    "rsvpSenderAddrLength": -2147483648,
                    "rsvpSenderProtocol": "example-string",
                    "rsvpSenderDestPort": "example-string",
                    "rsvpSenderPort": "example-string",
                    "rsvpSenderFlowId": -2147483648,
                    "rsvpSenderHopAddr": "192.168.1.1",
                    "rsvpSenderHopLih": -2147483648,
                    "rsvpSenderInterface": "GigabitEthernet1/0/1",
                    "rsvpSenderTSpecRate": "example-string",
                    "rsvpSenderTSpecPeakRate": "example-string",
                    "rsvpSenderTSpecBurst": "example-string",
                    "rsvpSenderTSpecMinTU": "example-string",
                    "rsvpSenderTSpecMaxTU": "example-string",
                    "rsvpSenderInterval": "example-string",
                    "rsvpSenderRSVPHop": true,
                    "rsvpSenderLastChange": "example-string",
                    "rsvpSenderPolicy": "example-string",
                    "rsvpSenderAdspecBreak": true,
                    "rsvpSenderAdspecHopCount": -2147483648,
                    "rsvpSenderAdspecPathBw": "example-string",
                    "rsvpSenderAdspecMinLatency": -2147483648,
                    "rsvpSenderAdspecMtu": 1500,
                    "rsvpSenderAdspecGuaranteedSvc": true,
                    "rsvpSenderAdspecGuaranteedBreak": true,
                    "rsvpSenderAdspecGuaranteedCtot": -2147483648,
                    "rsvpSenderAdspecGuaranteedDtot": -2147483648,
                    "rsvpSenderAdspecGuaranteedCsum": -2147483648,
                    "rsvpSenderAdspecGuaranteedDsum": -2147483648,
                    "rsvpSenderAdspecGuaranteedHopCount": -2147483648,
                    "rsvpSenderAdspecGuaranteedPathBw": "example-string",
                    "rsvpSenderAdspecGuaranteedMinLatency": -2147483648,
                    "rsvpSenderAdspecGuaranteedMtu": 1500,
                    "rsvpSenderAdspecCtrlLoadSvc": true,
                    "rsvpSenderAdspecCtrlLoadBreak": true,
                    "rsvpSenderAdspecCtrlLoadHopCount": -2147483648,
                    "rsvpSenderAdspecCtrlLoadPathBw": "example-string",
                    "rsvpSenderAdspecCtrlLoadMinLatency": 1,
                    "rsvpSenderAdspecCtrlLoadMtu": 1500,
                    "rsvpSenderStatus": "up(1)",
                    "rsvpSenderTTL": -2147483648
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-rsvpSenderEntry-2"
      },
      "x-yang-path": "/rsvpSenderTable/rsvpSenderEntry={rsvpSessionNumber rsvpSenderNumber}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "rsvpSessionNumber rsvpSenderNumber"
      ]
    },
    "/data/RSVP-MIB:rsvpSenderOutInterfaceTable/rsvpSenderOutInterfaceEntry={rsvpSessionNumber},{rsvpSenderNumber},{ifIndex}": {
      "get": {
        "summary": "Get rsvpSenderOutInterfaceEntry entry",
        "description": "Retrieve specific rsvpSenderOutInterfaceEntry entry by key from MIB",
        "tags": [
          "RSVP-MIB"
        ],
        "parameters": [
          {
            "name": "rsvpSessionNumber",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "rsvpSenderNumber",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "ifIndex",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "Accept",
            "in": "header",
            "required": false,
            "description": "RESTCONF response media type (RFC 8040)",
            "schema": {
              "type": "string",
              "default": "application/yang-data+json",
              "enum": [
                "application/yang-data+json",
                "application/yang-data+xml"
              ]
            }
          },
          {
            "name": "depth",
            "in": "query",
            "required": false,
            "description": "Limit the depth of returned sub-tree data (RFC 8040 Section 4.8.2). Use 'unbounded' for full depth.",
            "schema": {
              "type": "string",
              "default": "unbounded"
            }
          },
          {
            "name": "fields",
            "in": "query",
            "required": false,
            "description": "Select specific fields to return (RFC 8040 Section 4.8.3). Example: fields=name;status",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "content",
            "in": "query",
            "required": false,
            "description": "Filter by config state: 'config' (config true only), 'nonconfig' (config false only), or 'all'.",
            "schema": {
              "type": "string",
              "enum": [
                "config",
                "nonconfig",
                "all"
              ],
              "default": "all"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "rsvpSessionNumber": {
                      "type": "string",
                      "description": "rsvpSessionNumber",
                      "x-yang-type": "leafref"
                    },
                    "rsvpSenderNumber": {
                      "type": "string",
                      "description": "rsvpSenderNumber",
                      "x-yang-type": "leafref"
                    },
                    "ifIndex": {
                      "type": "string",
                      "description": "ifIndex",
                      "x-yang-type": "leafref"
                    },
                    "rsvpSenderOutInterfaceStatus": {
                      "type": "string",
                      "description": "'active' for all active PATH messages.",
                      "x-yang-type": "snmpv2-tc:RowStatus"
                    }
                  }
                },
                "example": {
                  "RSVP-MIB:rsvpSenderOutInterfaceEntry": {
                    "rsvpSessionNumber": "example-string",
                    "rsvpSenderNumber": "example-string",
                    "ifIndex": "example-string",
                    "rsvpSenderOutInterfaceStatus": "GigabitEthernet1/0/1"
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-rsvpSenderOutInterfaceEntry-2"
      },
      "x-yang-path": "/rsvpSenderOutInterfaceTable/rsvpSenderOutInterfaceEntry={rsvpSessionNumber rsvpSenderNumber ifIndex}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "rsvpSessionNumber rsvpSenderNumber ifIndex"
      ]
    },
    "/data/RSVP-MIB:rsvpResvTable/rsvpResvEntry={rsvpSessionNumber},{rsvpResvNumber}": {
      "get": {
        "summary": "Get rsvpResvEntry entry",
        "description": "Retrieve specific rsvpResvEntry entry by key from MIB",
        "tags": [
          "RSVP-MIB"
        ],
        "parameters": [
          {
            "name": "rsvpSessionNumber",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "rsvpResvNumber",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "Accept",
            "in": "header",
            "required": false,
            "description": "RESTCONF response media type (RFC 8040)",
            "schema": {
              "type": "string",
              "default": "application/yang-data+json",
              "enum": [
                "application/yang-data+json",
                "application/yang-data+xml"
              ]
            }
          },
          {
            "name": "depth",
            "in": "query",
            "required": false,
            "description": "Limit the depth of returned sub-tree data (RFC 8040 Section 4.8.2). Use 'unbounded' for full depth.",
            "schema": {
              "type": "string",
              "default": "unbounded"
            }
          },
          {
            "name": "fields",
            "in": "query",
            "required": false,
            "description": "Select specific fields to return (RFC 8040 Section 4.8.3). Example: fields=name;status",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "content",
            "in": "query",
            "required": false,
            "description": "Filter by config state: 'config' (config true only), 'nonconfig' (config false only), or 'all'.",
            "schema": {
              "type": "string",
              "enum": [
                "config",
                "nonconfig",
                "all"
              ],
              "default": "all"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "rsvpSessionNumber": {
                      "type": "string",
                      "description": "rsvpSessionNumber",
                      "x-yang-type": "leafref"
                    },
                    "rsvpResvNumber": {
                      "type": "string",
                      "description": "The\tnumber of this reservation request.   This\n            is  for  SNMP Indexing purposes only\tand has\tno\n            relation to any protocol value.",
                      "x-yang-type": "integrated-services:SessionNumber"
                    },
                    "rsvpResvType": {
                      "type": "string",
                      "description": "The\ttype of\tsession\t(IP4, IP6, IP6\twith  flow\n            information,\tetc).",
                      "x-yang-type": "integrated-services:SessionType"
                    },
                    "rsvpResvDestAddr": {
                      "type": "string",
                      "description": "The\tdestination address used by all\tsenders\tin\n            this\t session.   This object\tmay not\tbe changed\n            when\tthe  value  of\tthe  RowStatus\tobject\tis\n            'active'.",
                      "format": "binary"
                    },
                    "rsvpResvSenderAddr": {
                      "type": "string",
                      "description": "The\tsource address of the sender  selected\tby\n            this\t reservation.\tThe  value  of\tall zeroes\n            indicates 'all senders'.  This object  may  not\n            be  changed\twhen  the  value  of the RowStatus\n            object is 'active'.",
                      "format": "binary"
                    },
                    "rsvpResvDestAddrLength": {
                      "type": "integer",
                      "description": "The\tlength of the destination address in bits.\n            This\t is  the CIDR Prefix Length, which for IP4\n            hosts and multicast addresses is 32 bits.  This\n            object may not be changed when the value of the\n            RowStatus object is 'active'.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "rsvpResvSenderAddrLength": {
                      "type": "integer",
                      "description": "The\tlength of the sender's\taddress\t in  bits.\n            This\t is  the CIDR Prefix Length, which for IP4\n            hosts and multicast addresses is 32 bits.  This\n            object may not be changed when the value of the\n            RowStatus object is 'active'.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "rsvpResvProtocol": {
                      "type": "string",
                      "description": "The\tIP Protocol used by  this  session.   This\n            object may not be changed when the value of the\n            RowStatus object is 'active'.",
                      "x-yang-type": "integrated-services:Protocol"
                    },
                    "rsvpResvDestPort": {
                      "type": "string",
                      "description": "The\t UDP  or  TCP  port  number  used   as\t a\n            destination\t port  for  all\t senders  in  this\n            session.  If\tthe IP protocol\tin use,\t specified\n            by  rsvpResvProtocol,  is  50 (ESP) or 51 (AH),\n            this\t represents  a\tvirtual\t destination  port\n            number.   A value of\tzero indicates that the\tIP\n            protocol in use  does  not  have  ports.   This\n            object may not be changed when the value of the\n            RowStatus object is 'active'.",
                      "x-yang-type": "integrated-services:Port"
                    },
                    "rsvpResvPort": {
                      "type": "string",
                      "description": "The\tUDP or TCP port\tnumber used  as\t a  source\n            port\t for  this sender in this session.  If the\n            IP\t protocol    in\t   use,\t   specified\tby\n            rsvpResvProtocol  is\t 50 (ESP) or 51\t(AH), this\n            represents a\tgeneralized port identifier (GPI).\n            A  value of zero indicates that the IP protocol\n            in use does not have\tports.\t This  object  may\n            not\tbe changed when\tthe value of the RowStatus\n            object is 'active'.",
                      "x-yang-type": "integrated-services:Port"
                    },
                    "rsvpResvHopAddr": {
                      "type": "string",
                      "description": "The\taddress\tused by\tthe next RSVP  hop  (which\n            may be the ultimate receiver).",
                      "format": "binary"
                    },
                    "rsvpResvHopLih": {
                      "type": "integer",
                      "description": "The\tLogical\tInterface Handle received from the\n            previous  RSVP  hop\t(which may be the ultimate\n            receiver).",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "rsvpResvInterface": {
                      "type": "string",
                      "description": "The\tifIndex\tvalue of the  interface\t on  which\n            this\tRESV message was most recently received.",
                      "x-yang-type": "if-mib:InterfaceIndex"
                    },
                    "rsvpResvService": {
                      "type": "string",
                      "description": "The\tQoS Service  classification  requested\tby\n            the receiver.",
                      "x-yang-type": "integrated-services:QosService"
                    },
                    "rsvpResvTSpecRate": {
                      "type": "string",
                      "description": "The\tAverage\tBit  Rate  of  the  sender's  data\n            stream.    Within  a\t transmission  burst,  the\n            arrival   rate    may    be\t  as\tfast\tas\n            rsvpResvTSpecPeakRate   (if\tsupported  by  the\n            service model); however, averaged across two\tor\n            more\t burst\tintervals,  the\t rate  should  not\n            exceed rsvpResvTSpecRate.\n            \n            Note\tthat this is a prediction, often based\ton\n            the\tgeneral\t capability  of\ta type of codec\tor\n            particular encoding;\tthe measured average  rate\n            may be significantly\tlower.",
                      "x-yang-type": "integrated-services:BitRate"
                    },
                    "rsvpResvTSpecPeakRate": {
                      "type": "string",
                      "description": "The\tPeak Bit Rate of the sender's data stream.\n            Traffic  arrival is not expected to exceed this\n            rate\tat any time, apart  from  the  effects\tof\n            jitter in the network.  If not specified in the\n            TSpec, this returns zero or noSuchValue.",
                      "x-yang-type": "integrated-services:BitRate"
                    },
                    "rsvpResvTSpecBurst": {
                      "type": "string",
                      "description": "The\tsize of\tthe largest  burst  expected  from\n            the sender at a time.\n            \n            If this is less than\t the  sender's\tadvertised\n            burst  size,\tthe receiver is\tasking the network\n            to provide flow pacing  beyond  what\t would\tbe\n            provided   under   normal  circumstances.  Such\n            pacing is at\tthe network's option.",
                      "x-yang-type": "integrated-services:BurstSize"
                    },
                    "rsvpResvTSpecMinTU": {
                      "type": "string",
                      "description": "The\tminimum\tmessage\tsize for  this\tflow.  The\n            policing  algorithm will treat smaller messages\n            as though they are this size.",
                      "x-yang-type": "integrated-services:MessageSize"
                    },
                    "rsvpResvTSpecMaxTU": {
                      "type": "string",
                      "description": "The\tmaximum\tmessage\tsize for  this\tflow.  The\n            admission  algorithm\t will  reject TSpecs whose\n            Maximum Transmission\tUnit, plus  the\t interface\n            headers, exceed the interface MTU.",
                      "x-yang-type": "integrated-services:MessageSize"
                    },
                    "rsvpResvRSpecRate": {
                      "type": "string",
                      "description": "If the requested  service  is  Guaranteed,\tas\n            specified   by  rsvpResvService,  this  is  the\n            clearing  rate   that   is\tbeing\trequested.\n            Otherwise,  it is zero, or the agent\tmay return\n            noSuchValue.",
                      "x-yang-type": "integrated-services:BitRate"
                    },
                    "rsvpResvRSpecSlack": {
                      "type": "integer",
                      "description": "If the requested  service  is  Guaranteed,\tas\n            specified by\trsvpResvService, this is the delay\n            slack.  Otherwise, it is zero, or the agent may\n            return noSuchValue.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "rsvpResvInterval": {
                      "type": "string",
                      "description": "The\t interval  between  refresh  messages\tas\n            advertised by the Next Hop.",
                      "x-yang-type": "RSVP-MIB:RefreshInterval"
                    },
                    "rsvpResvScope": {
                      "type": "string",
                      "description": "The\tcontents of the\tscope object, displayed\tas\n            an  uninterpreted  string  of octets, including\n            the object header.  In the absence of  such\tan\n            object, this\tshould be of zero length.\n            \n            If the length  is  non-zero,\t this  contains\t a\n            series of IP4 or IP6\taddresses.",
                      "format": "binary"
                    },
                    "rsvpResvShared": {
                      "type": "boolean",
                      "description": "If TRUE, a reservation shared among\tsenders\tis\n            requested.  If FALSE, a reservation specific\tto\n            this\tsender is requested."
                    },
                    "rsvpResvExplicit": {
                      "type": "boolean",
                      "description": "If TRUE, individual\tsenders\tare  listed  using\n            Filter  Specifications.   If\tFALSE, all senders\n            are implicitly selected.  The Scope Object will\n            contain  a list of senders that need\tto receive\n            this\treservation request  for  the  purpose\tof\n            routing the RESV message."
                    },
                    "rsvpResvRSVPHop": {
                      "type": "boolean",
                      "description": "If TRUE, the node believes that  the  previous\n            IP  hop  is\tan  RSVP  hop.\tIf FALSE, the node\n            believes that the previous IP hop may not be\tan\n            RSVP\thop."
                    },
                    "rsvpResvLastChange": {
                      "type": "string",
                      "description": "The\t time  of  the\t last\tchange\t in   this\n            reservation\trequest;  This is either the first\n            time\tit was received\tor the time  of\t the  most\n            recent change in parameters.",
                      "x-yang-type": "yang:timestamp"
                    },
                    "rsvpResvPolicy": {
                      "type": "string",
                      "description": "The\tcontents of the\tpolicy\tobject,\t displayed\n            as an uninterpreted string of octets, including\n            the object header.  In the absence of  such\tan\n            object, this\tshould be of zero length.",
                      "format": "binary"
                    },
                    "rsvpResvStatus": {
                      "type": "string",
                      "description": "'active' for all active RESV  messages.   This\n            object  may\tbe  used  to  install  static RESV\n            information or delete RESV information.",
                      "x-yang-type": "snmpv2-tc:RowStatus"
                    },
                    "rsvpResvTTL": {
                      "type": "integer",
                      "description": "The\tTTL value in the RSVP header that was last\n            received.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "rsvpResvFlowId": {
                      "type": "integer",
                      "description": "The\tflow ID\tthat this receiver  is\tusing,\tif\n            this\t is  an\tIPv6 session.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    }
                  }
                },
                "example": {
                  "RSVP-MIB:rsvpResvEntry": {
                    "rsvpSessionNumber": "example-string",
                    "rsvpResvNumber": "example-string",
                    "rsvpResvType": "ethernetCsmacd(6)",
                    "rsvpResvDestAddr": "192.168.1.1",
                    "rsvpResvSenderAddr": "192.168.1.1",
                    "rsvpResvDestAddrLength": -2147483648,
                    "rsvpResvSenderAddrLength": -2147483648,
                    "rsvpResvProtocol": "example-string",
                    "rsvpResvDestPort": "example-string",
                    "rsvpResvPort": "example-string",
                    "rsvpResvHopAddr": "192.168.1.1",
                    "rsvpResvHopLih": -2147483648,
                    "rsvpResvInterface": "GigabitEthernet1/0/1",
                    "rsvpResvService": "example-string",
                    "rsvpResvTSpecRate": "example-string",
                    "rsvpResvTSpecPeakRate": "example-string",
                    "rsvpResvTSpecBurst": "example-string",
                    "rsvpResvTSpecMinTU": "example-string",
                    "rsvpResvTSpecMaxTU": "example-string",
                    "rsvpResvRSpecRate": "example-string",
                    "rsvpResvRSpecSlack": -2147483648,
                    "rsvpResvInterval": "example-string",
                    "rsvpResvScope": "example-string",
                    "rsvpResvShared": true,
                    "rsvpResvExplicit": true,
                    "rsvpResvRSVPHop": true,
                    "rsvpResvLastChange": "example-string",
                    "rsvpResvPolicy": "example-string",
                    "rsvpResvStatus": "up(1)",
                    "rsvpResvTTL": -2147483648,
                    "rsvpResvFlowId": -2147483648
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-rsvpResvEntry-2"
      },
      "x-yang-path": "/rsvpResvTable/rsvpResvEntry={rsvpSessionNumber rsvpResvNumber}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "rsvpSessionNumber rsvpResvNumber"
      ]
    },
    "/data/RSVP-MIB:rsvpResvFwdTable/rsvpResvFwdEntry={rsvpSessionNumber},{rsvpResvFwdNumber}": {
      "get": {
        "summary": "Get rsvpResvFwdEntry entry",
        "description": "Retrieve specific rsvpResvFwdEntry entry by key from MIB",
        "tags": [
          "RSVP-MIB"
        ],
        "parameters": [
          {
            "name": "rsvpSessionNumber",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "rsvpResvFwdNumber",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "Accept",
            "in": "header",
            "required": false,
            "description": "RESTCONF response media type (RFC 8040)",
            "schema": {
              "type": "string",
              "default": "application/yang-data+json",
              "enum": [
                "application/yang-data+json",
                "application/yang-data+xml"
              ]
            }
          },
          {
            "name": "depth",
            "in": "query",
            "required": false,
            "description": "Limit the depth of returned sub-tree data (RFC 8040 Section 4.8.2). Use 'unbounded' for full depth.",
            "schema": {
              "type": "string",
              "default": "unbounded"
            }
          },
          {
            "name": "fields",
            "in": "query",
            "required": false,
            "description": "Select specific fields to return (RFC 8040 Section 4.8.3). Example: fields=name;status",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "content",
            "in": "query",
            "required": false,
            "description": "Filter by config state: 'config' (config true only), 'nonconfig' (config false only), or 'all'.",
            "schema": {
              "type": "string",
              "enum": [
                "config",
                "nonconfig",
                "all"
              ],
              "default": "all"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "rsvpSessionNumber": {
                      "type": "string",
                      "description": "rsvpSessionNumber",
                      "x-yang-type": "leafref"
                    },
                    "rsvpResvFwdNumber": {
                      "type": "string",
                      "description": "The\tnumber of this reservation request.   This\n            is  for  SNMP Indexing purposes only\tand has\tno\n            relation to any protocol value.",
                      "x-yang-type": "integrated-services:SessionNumber"
                    },
                    "rsvpResvFwdType": {
                      "type": "string",
                      "description": "The\ttype of\tsession\t(IP4, IP6, IP6\twith  flow\n            information,\tetc).",
                      "x-yang-type": "integrated-services:SessionType"
                    },
                    "rsvpResvFwdDestAddr": {
                      "type": "string",
                      "description": "The\tdestination address used by all\tsenders\tin\n            this\t session.   This object\tmay not\tbe changed\n            when\tthe  value  of\tthe  RowStatus\tobject\tis\n            'active'.",
                      "format": "binary"
                    },
                    "rsvpResvFwdSenderAddr": {
                      "type": "string",
                      "description": "The\tsource address of the sender  selected\tby\n            this\t reservation.\tThe  value  of\tall zeroes\n            indicates 'all senders'.  This object  may  not\n            be  changed\twhen  the  value  of the RowStatus\n            object is 'active'.",
                      "format": "binary"
                    },
                    "rsvpResvFwdDestAddrLength": {
                      "type": "integer",
                      "description": "The\tlength of the destination address in bits.\n            This\t is  the CIDR Prefix Length, which for IP4\n            hosts and multicast addresses is 32 bits.  This\n            object may not be changed when the value of the\n            RowStatus object is 'active'.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "rsvpResvFwdSenderAddrLength": {
                      "type": "integer",
                      "description": "The\tlength of the sender's\taddress\t in  bits.\n            This\t is  the CIDR Prefix Length, which for IP4\n            hosts and multicast addresses is 32 bits.  This\n            object may not be changed when the value of the\n            RowStatus object is 'active'.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "rsvpResvFwdProtocol": {
                      "type": "string",
                      "description": "The\tIP Protocol used by a session. for  secure\n            sessions,  this  indicates  IP  Security.  This\n            object may not be changed when the value of the\n            RowStatus object is 'active'.",
                      "x-yang-type": "integrated-services:Protocol"
                    },
                    "rsvpResvFwdDestPort": {
                      "type": "string",
                      "description": "The\t UDP  or  TCP  port  number  used   as\t a\n            destination\t port  for  all\t senders  in  this\n            session.  If\tthe IP protocol\tin use,\t specified\n            by rsvpResvFwdProtocol, is 50 (ESP) or 51 (AH),\n            this\t represents  a\tvirtual\t destination  port\n            number.   A value of\tzero indicates that the\tIP\n            protocol in use  does  not  have  ports.   This\n            object may not be changed when the value of the\n            RowStatus object is 'active'.",
                      "x-yang-type": "integrated-services:Port"
                    },
                    "rsvpResvFwdPort": {
                      "type": "string",
                      "description": "The\tUDP or TCP port\tnumber used  as\t a  source\n            port\t for  this sender in this session.  If the\n            IP\t protocol    in\t   use,\t   specified\tby\n            rsvpResvFwdProtocol\tis  50\t(ESP)  or 51 (AH),\n            this\trepresents a generalized  port\tidentifier\n            (GPI).   A  value of\tzero indicates that the\tIP\n            protocol in use  does  not  have  ports.   This\n            object may not be changed when the value of the\n            RowStatus object is 'active'.",
                      "x-yang-type": "integrated-services:Port"
                    },
                    "rsvpResvFwdHopAddr": {
                      "type": "string",
                      "description": "The\taddress\tof the (previous) RSVP\tthat  will\n            receive this\tmessage.",
                      "format": "binary"
                    },
                    "rsvpResvFwdHopLih": {
                      "type": "integer",
                      "description": "The\t Logical  Interface  Handle  sent  to  the\n            (previous)\tRSVP   that   will   receive  this\n            message.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "rsvpResvFwdInterface": {
                      "type": "string",
                      "description": "The\tifIndex\tvalue of the  interface\t on  which\n            this\tRESV message was most recently sent.",
                      "x-yang-type": "if-mib:InterfaceIndex"
                    },
                    "rsvpResvFwdService": {
                      "type": "string",
                      "description": "The\tQoS Service classification requested.",
                      "x-yang-type": "integrated-services:QosService"
                    },
                    "rsvpResvFwdTSpecRate": {
                      "type": "string",
                      "description": "The\tAverage\tBit  Rate  of  the  sender's  data\n            stream.    Within  a\t transmission  burst,  the\n            arrival   rate    may    be\t  as\tfast\tas\n            rsvpResvFwdTSpecPeakRate  (if  supported by the\n            service model); however, averaged across two\tor\n            more\t burst\tintervals,  the\t rate  should  not\n            exceed rsvpResvFwdTSpecRate.\n            \n            Note\tthat this is a prediction, often based\ton\n            the\tgeneral\t capability  of\ta type of codec\tor\n            particular encoding;\tthe measured average  rate\n            may be significantly\tlower.",
                      "x-yang-type": "integrated-services:BitRate"
                    },
                    "rsvpResvFwdTSpecPeakRate": {
                      "type": "string",
                      "description": "The\tPeak Bit Rate of the sender's data  stream\n            Traffic  arrival is not expected to exceed this\n            rate\tat any time, apart  from  the  effects\tof\n            jitter in the network.  If not specified in the\n            TSpec, this returns zero or noSuchValue.",
                      "x-yang-type": "integrated-services:BitRate"
                    },
                    "rsvpResvFwdTSpecBurst": {
                      "type": "string",
                      "description": "The\tsize of\tthe largest  burst  expected  from\n            the sender at a time.\n            \n            If this is less than\t the  sender's\tadvertised\n            burst  size,\tthe receiver is\tasking the network\n            to provide flow pacing  beyond  what\t would\tbe\n            provided   under   normal  circumstances.  Such\n            pacing is at\tthe network's option.",
                      "x-yang-type": "integrated-services:BurstSize"
                    },
                    "rsvpResvFwdTSpecMinTU": {
                      "type": "string",
                      "description": "The\tminimum\tmessage\tsize for  this\tflow.  The\n            policing  algorithm will treat smaller messages\n            as though they are this size.",
                      "x-yang-type": "integrated-services:MessageSize"
                    },
                    "rsvpResvFwdTSpecMaxTU": {
                      "type": "string",
                      "description": "The\tmaximum\tmessage\tsize for  this\tflow.  The\n            admission  algorithm\t will  reject TSpecs whose\n            Maximum Transmission\tUnit, plus  the\t interface\n            headers, exceed the interface MTU.",
                      "x-yang-type": "integrated-services:MessageSize"
                    },
                    "rsvpResvFwdRSpecRate": {
                      "type": "string",
                      "description": "If the requested  service  is  Guaranteed,\tas\n            specified   by  rsvpResvService,  this  is  the\n            clearing  rate   that   is\tbeing\trequested.\n            Otherwise,  it is zero, or the agent\tmay return\n            noSuchValue.",
                      "x-yang-type": "integrated-services:BitRate"
                    },
                    "rsvpResvFwdRSpecSlack": {
                      "type": "integer",
                      "description": "If the requested  service  is  Guaranteed,\tas\n            specified by\trsvpResvService, this is the delay\n            slack.  Otherwise, it is zero, or the agent may\n            return noSuchValue.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "rsvpResvFwdInterval": {
                      "type": "string",
                      "description": "The\t  interval   between   refresh\t  messages\n            advertised to the Previous Hop.",
                      "x-yang-type": "RSVP-MIB:RefreshInterval"
                    },
                    "rsvpResvFwdScope": {
                      "type": "string",
                      "description": "The\tcontents of the\tscope object, displayed\tas\n            an  uninterpreted  string  of octets, including\n            the object header.  In the absence of  such\tan\n            object, this\tshould be of zero length.",
                      "format": "binary"
                    },
                    "rsvpResvFwdShared": {
                      "type": "boolean",
                      "description": "If TRUE, a reservation shared among\tsenders\tis\n            requested.  If FALSE, a reservation specific\tto\n            this\tsender is requested."
                    },
                    "rsvpResvFwdExplicit": {
                      "type": "boolean",
                      "description": "If TRUE, individual\tsenders\tare  listed  using\n            Filter  Specifications.   If\tFALSE, all senders\n            are implicitly selected.  The Scope Object will\n            contain  a list of senders that need\tto receive\n            this\treservation request  for  the  purpose\tof\n            routing the RESV message."
                    },
                    "rsvpResvFwdRSVPHop": {
                      "type": "boolean",
                      "description": "If TRUE, the node believes that  the  next\tIP\n            hop\tis  an\tRSVP  hop.   If\t FALSE,\t the  node\n            believes that the next IP hop  may  not  be\tan\n            RSVP\thop."
                    },
                    "rsvpResvFwdLastChange": {
                      "type": "string",
                      "description": "The\ttime of\tthe last change\tin  this  request;\n            This\t is  either  the first time it was sent\tor\n            the\ttime  of  the  most   recent   change\tin\n            parameters.",
                      "x-yang-type": "yang:timestamp"
                    },
                    "rsvpResvFwdPolicy": {
                      "type": "string",
                      "description": "The\tcontents of the\tpolicy\tobject,\t displayed\n            as an uninterpreted string of octets, including\n            the object header.  In the absence of  such\tan\n            object, this\tshould be of zero length.",
                      "format": "binary"
                    },
                    "rsvpResvFwdStatus": {
                      "type": "string",
                      "description": "'active' for all active RESV  messages.   This\n            object may be used to delete\tRESV information.",
                      "x-yang-type": "snmpv2-tc:RowStatus"
                    },
                    "rsvpResvFwdTTL": {
                      "type": "integer",
                      "description": "The\tTTL value in the RSVP header that was last\n            received.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "rsvpResvFwdFlowId": {
                      "type": "integer",
                      "description": "The\tflow ID\tthat this receiver  is\tusing,\tif\n            this\t is  an\tIPv6 session.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    }
                  }
                },
                "example": {
                  "RSVP-MIB:rsvpResvFwdEntry": {
                    "rsvpSessionNumber": "example-string",
                    "rsvpResvFwdNumber": "example-string",
                    "rsvpResvFwdType": "ethernetCsmacd(6)",
                    "rsvpResvFwdDestAddr": "192.168.1.1",
                    "rsvpResvFwdSenderAddr": "192.168.1.1",
                    "rsvpResvFwdDestAddrLength": -2147483648,
                    "rsvpResvFwdSenderAddrLength": -2147483648,
                    "rsvpResvFwdProtocol": "example-string",
                    "rsvpResvFwdDestPort": "example-string",
                    "rsvpResvFwdPort": "example-string",
                    "rsvpResvFwdHopAddr": "192.168.1.1",
                    "rsvpResvFwdHopLih": -2147483648,
                    "rsvpResvFwdInterface": "GigabitEthernet1/0/1",
                    "rsvpResvFwdService": "example-string",
                    "rsvpResvFwdTSpecRate": "example-string",
                    "rsvpResvFwdTSpecPeakRate": "example-string",
                    "rsvpResvFwdTSpecBurst": "example-string",
                    "rsvpResvFwdTSpecMinTU": "example-string",
                    "rsvpResvFwdTSpecMaxTU": "example-string",
                    "rsvpResvFwdRSpecRate": "example-string",
                    "rsvpResvFwdRSpecSlack": -2147483648,
                    "rsvpResvFwdInterval": "example-string",
                    "rsvpResvFwdScope": "example-string",
                    "rsvpResvFwdShared": true,
                    "rsvpResvFwdExplicit": true,
                    "rsvpResvFwdRSVPHop": true,
                    "rsvpResvFwdLastChange": "example-string",
                    "rsvpResvFwdPolicy": "example-string",
                    "rsvpResvFwdStatus": "up(1)",
                    "rsvpResvFwdTTL": -2147483648,
                    "rsvpResvFwdFlowId": -2147483648
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-rsvpResvFwdEntry-2"
      },
      "x-yang-path": "/rsvpResvFwdTable/rsvpResvFwdEntry={rsvpSessionNumber rsvpResvFwdNumber}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "rsvpSessionNumber rsvpResvFwdNumber"
      ]
    },
    "/data/RSVP-MIB:rsvpNbrTable/rsvpNbrEntry={ifIndex},{rsvpNbrAddress}": {
      "get": {
        "summary": "Get rsvpNbrEntry entry",
        "description": "Retrieve specific rsvpNbrEntry entry by key from MIB",
        "tags": [
          "RSVP-MIB"
        ],
        "parameters": [
          {
            "name": "ifIndex",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "rsvpNbrAddress",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "Accept",
            "in": "header",
            "required": false,
            "description": "RESTCONF response media type (RFC 8040)",
            "schema": {
              "type": "string",
              "default": "application/yang-data+json",
              "enum": [
                "application/yang-data+json",
                "application/yang-data+xml"
              ]
            }
          },
          {
            "name": "depth",
            "in": "query",
            "required": false,
            "description": "Limit the depth of returned sub-tree data (RFC 8040 Section 4.8.2). Use 'unbounded' for full depth.",
            "schema": {
              "type": "string",
              "default": "unbounded"
            }
          },
          {
            "name": "fields",
            "in": "query",
            "required": false,
            "description": "Select specific fields to return (RFC 8040 Section 4.8.3). Example: fields=name;status",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "content",
            "in": "query",
            "required": false,
            "description": "Filter by config state: 'config' (config true only), 'nonconfig' (config false only), or 'all'.",
            "schema": {
              "type": "string",
              "enum": [
                "config",
                "nonconfig",
                "all"
              ],
              "default": "all"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "ifIndex": {
                      "type": "string",
                      "description": "ifIndex",
                      "x-yang-type": "leafref"
                    },
                    "rsvpNbrAddress": {
                      "type": "string",
                      "description": "The\tIP4 or IP6 Address used\tby this\t neighbor.\n            This\t object\t may not be changed when the value\n            of the RowStatus object is 'active'.",
                      "format": "binary"
                    },
                    "rsvpNbrProtocol": {
                      "type": "string",
                      "description": "The\t  encapsulation\t  being\t  used\t by   this\n            neighbor.",
                      "x-yang-type": "RSVP-MIB:RsvpEncapsulation"
                    },
                    "rsvpNbrStatus": {
                      "type": "string",
                      "description": "'active' for all neighbors.\t This  object  may\n            be\tused   to  configure  neighbors.   In  the\n            presence   of   configured\t neighbors,    the\n            implementation  may\t(but  is  not required to)\n            limit the  set  of  valid  neighbors\t to  those\n            configured.",
                      "x-yang-type": "snmpv2-tc:RowStatus"
                    }
                  }
                },
                "example": {
                  "RSVP-MIB:rsvpNbrEntry": {
                    "ifIndex": "example-string",
                    "rsvpNbrAddress": "192.168.1.1",
                    "rsvpNbrProtocol": "example-string",
                    "rsvpNbrStatus": "up(1)"
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-rsvpNbrEntry-2"
      },
      "x-yang-path": "/rsvpNbrTable/rsvpNbrEntry={ifIndex rsvpNbrAddress}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "ifIndex rsvpNbrAddress"
      ]
    },
    "/data/RSVP-MIB:rsvpSenderEntry={rsvpSessionNumber},{rsvpSenderNumber}": {
      "get": {
        "summary": "Get rsvpSenderEntry entry",
        "description": "Retrieve specific rsvpSenderEntry entry by key from MIB",
        "tags": [
          "RSVP-MIB"
        ],
        "parameters": [
          {
            "name": "rsvpSessionNumber",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "rsvpSenderNumber",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "Accept",
            "in": "header",
            "required": false,
            "description": "RESTCONF response media type (RFC 8040)",
            "schema": {
              "type": "string",
              "default": "application/yang-data+json",
              "enum": [
                "application/yang-data+json",
                "application/yang-data+xml"
              ]
            }
          },
          {
            "name": "depth",
            "in": "query",
            "required": false,
            "description": "Limit the depth of returned sub-tree data (RFC 8040 Section 4.8.2). Use 'unbounded' for full depth.",
            "schema": {
              "type": "string",
              "default": "unbounded"
            }
          },
          {
            "name": "fields",
            "in": "query",
            "required": false,
            "description": "Select specific fields to return (RFC 8040 Section 4.8.3). Example: fields=name;status",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "content",
            "in": "query",
            "required": false,
            "description": "Filter by config state: 'config' (config true only), 'nonconfig' (config false only), or 'all'.",
            "schema": {
              "type": "string",
              "enum": [
                "config",
                "nonconfig",
                "all"
              ],
              "default": "all"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "rsvpSessionNumber": {
                      "type": "string",
                      "description": "rsvpSessionNumber",
                      "x-yang-type": "leafref"
                    },
                    "rsvpSenderNumber": {
                      "type": "string",
                      "description": "The\tnumber of this sender.\tThis is\t for  SNMP\n            Indexing  purposes  only and\thas no relation\tto\n            any protocol\tvalue.",
                      "x-yang-type": "integrated-services:SessionNumber"
                    },
                    "rsvpSenderType": {
                      "type": "string",
                      "description": "The\ttype of\tsession\t(IP4, IP6, IP6\twith  flow\n            information,\tetc).",
                      "x-yang-type": "integrated-services:SessionType"
                    },
                    "rsvpSenderDestAddr": {
                      "type": "string",
                      "description": "The\tdestination address used by all\tsenders\tin\n            this\t session.   This object\tmay not\tbe changed\n            when\tthe  value  of\tthe  RowStatus\tobject\tis\n            'active'.",
                      "format": "binary"
                    },
                    "rsvpSenderAddr": {
                      "type": "string",
                      "description": "The\tsource address used by this sender in this\n            session.   This  object may not be changed when\n            the value of\tthe RowStatus object is\t'active'.",
                      "format": "binary"
                    },
                    "rsvpSenderDestAddrLength": {
                      "type": "integer",
                      "description": "The\tlength of the destination address in bits.\n            This\t is  the CIDR Prefix Length, which for IP4\n            hosts and multicast addresses is 32 bits.  This\n            object may not be changed when the value of the\n            RowStatus object is 'active'.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "rsvpSenderAddrLength": {
                      "type": "integer",
                      "description": "The\tlength of the sender's\taddress\t in  bits.\n            This\t is  the CIDR Prefix Length, which for IP4\n            hosts and multicast addresses is 32 bits.  This\n            object may not be changed when the value of the\n            RowStatus object is 'active'.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "rsvpSenderProtocol": {
                      "type": "string",
                      "description": "The\tIP Protocol used by  this  session.   This\n            object may not be changed when the value of the\n            RowStatus object is 'active'.",
                      "x-yang-type": "integrated-services:Protocol"
                    },
                    "rsvpSenderDestPort": {
                      "type": "string",
                      "description": "The\t UDP  or  TCP  port  number  used   as\t a\n            destination\t port  for  all\t senders  in  this\n            session.  If\tthe IP protocol\tin use,\t specified\n            by  rsvpSenderProtocol, is 50 (ESP) or 51 (AH),\n            this\t represents  a\tvirtual\t destination  port\n            number.   A value of\tzero indicates that the\tIP\n            protocol in use  does  not  have  ports.   This\n            object may not be changed when the value of the\n            RowStatus object is 'active'.",
                      "x-yang-type": "integrated-services:Port"
                    },
                    "rsvpSenderPort": {
                      "type": "string",
                      "description": "The\tUDP or TCP port\tnumber used  as\t a  source\n            port\t for  this sender in this session.  If the\n            IP\t protocol    in\t   use,\t   specified\tby\n            rsvpSenderProtocol is 50 (ESP) or 51\t(AH), this\n            represents a\tgeneralized port identifier (GPI).\n            A  value of zero indicates that the IP protocol\n            in use does not have\tports.\t This  object  may\n            not\tbe changed when\tthe value of the RowStatus\n            object is 'active'.",
                      "x-yang-type": "integrated-services:Port"
                    },
                    "rsvpSenderFlowId": {
                      "type": "integer",
                      "description": "The\tflow ID\tthat  this  sender  is\tusing,\tif\n            this\t is  an\tIPv6 session.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "rsvpSenderHopAddr": {
                      "type": "string",
                      "description": "The\taddress\tused  by  the  previous\t RSVP  hop\n            (which may be the original sender).",
                      "format": "binary"
                    },
                    "rsvpSenderHopLih": {
                      "type": "integer",
                      "description": "The\t Logical  Interface  Handle  used  by  the\n            previous  RSVP  hop\t(which may be the original\n            sender).",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "rsvpSenderInterface": {
                      "type": "string",
                      "description": "The\tifIndex\tvalue of the  interface\t on  which\n            this\tPATH message was most recently received.",
                      "x-yang-type": "if-mib:InterfaceIndex"
                    },
                    "rsvpSenderTSpecRate": {
                      "type": "string",
                      "description": "The\tAverage\tBit  Rate  of  the  sender's  data\n            stream.    Within  a\t transmission  burst,  the\n            arrival   rate    may    be\t  as\tfast\tas\n            rsvpSenderTSpecPeakRate  (if\t supported  by the\n            service model); however, averaged across two\tor\n            more\t burst\tintervals,  the\t rate  should  not\n            exceed rsvpSenderTSpecRate.\n            \n            Note\tthat this is a prediction, often based\ton\n            the\tgeneral\t capability  of\ta type of codec\tor\n            particular encoding;\tthe measured average  rate\n            may be significantly\tlower.",
                      "x-yang-type": "integrated-services:BitRate"
                    },
                    "rsvpSenderTSpecPeakRate": {
                      "type": "string",
                      "description": "The\tPeak Bit Rate of the sender's data stream.\n            Traffic  arrival is not expected to exceed this\n            rate\tat any time, apart  from  the  effects\tof\n            jitter in the network.  If not specified in the\n            TSpec, this returns zero or noSuchValue.",
                      "x-yang-type": "integrated-services:BitRate"
                    },
                    "rsvpSenderTSpecBurst": {
                      "type": "string",
                      "description": "The\tsize of\tthe largest  burst  expected  from\n            the sender at a time.",
                      "x-yang-type": "integrated-services:BurstSize"
                    },
                    "rsvpSenderTSpecMinTU": {
                      "type": "string",
                      "description": "The\tminimum\tmessage\tsize for  this\tflow.  The\n            policing  algorithm will treat smaller messages\n            as though they are this size.",
                      "x-yang-type": "integrated-services:MessageSize"
                    },
                    "rsvpSenderTSpecMaxTU": {
                      "type": "string",
                      "description": "The\tmaximum\tmessage\tsize for  this\tflow.  The\n            admission  algorithm\t will  reject TSpecs whose\n            Maximum Transmission\tUnit, plus  the\t interface\n            headers, exceed the interface MTU.",
                      "x-yang-type": "integrated-services:MessageSize"
                    },
                    "rsvpSenderInterval": {
                      "type": "string",
                      "description": "The\t interval  between  refresh  messages\tas\n            advertised by the Previous Hop.",
                      "x-yang-type": "RSVP-MIB:RefreshInterval"
                    },
                    "rsvpSenderRSVPHop": {
                      "type": "boolean",
                      "description": "If TRUE, the node believes that  the  previous\n            IP  hop  is\tan  RSVP  hop.\tIf FALSE, the node\n            believes that the previous IP hop may not be\tan\n            RSVP\thop."
                    },
                    "rsvpSenderLastChange": {
                      "type": "string",
                      "description": "The\ttime of\t the  last  change  in\tthis  PATH\n            message;  This  is either the first time it was\n            received or the time\tof the most recent  change\n            in parameters.",
                      "x-yang-type": "yang:timestamp"
                    },
                    "rsvpSenderPolicy": {
                      "type": "string",
                      "description": "The\tcontents of the\tpolicy\tobject,\t displayed\n            as an uninterpreted string of octets, including\n            the object header.  In the absence of  such\tan\n            object, this\tshould be of zero length.",
                      "format": "binary"
                    },
                    "rsvpSenderAdspecBreak": {
                      "type": "boolean",
                      "description": "The\tglobal break bit general  characterization\n            parameter  from  the\tADSPEC.\t If TRUE, at least\n            one non-IS hop was detected in  the\tpath.\tIf\n            FALSE, no non-IS hops were detected."
                    },
                    "rsvpSenderAdspecHopCount": {
                      "type": "integer",
                      "description": "The\t  hop\tcount\tgeneral\t  characterization\n            parameter from the ADSPEC.  A return\tof zero\tor\n            noSuchValue\tindicates  one\tof  the\t following\n            conditions:\n            \n               the invalid bit was set\n               the parameter was\tnot present",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "rsvpSenderAdspecPathBw": {
                      "type": "string",
                      "description": "The\t  path\t  bandwidth    estimate\t   general\n            characterization  parameter from the\tADSPEC.\t A\n            return of zero or noSuchValue indicates one\tof\n            the following conditions:\n            \n               the invalid bit was set\n               the parameter was\tnot present",
                      "x-yang-type": "integrated-services:BitRate"
                    },
                    "rsvpSenderAdspecMinLatency": {
                      "type": "integer",
                      "description": "The\t   minimum    path     latency\t   general\n            characterization  parameter from the\tADSPEC.\t A\n            return of zero or noSuchValue indicates one\tof\n            the following conditions:\n            \n               the invalid bit was set\n               the parameter was\tnot present",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "rsvpSenderAdspecMtu": {
                      "type": "integer",
                      "description": "The\tcomposed Maximum Transmission Unit general\n            characterization  parameter from the\tADSPEC.\t A\n            return of zero or noSuchValue indicates one\tof\n            the following conditions:\n            \n               the invalid bit was set\n               the parameter was\tnot present",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "rsvpSenderAdspecGuaranteedSvc": {
                      "type": "boolean",
                      "description": "If TRUE,  the  ADSPEC  contains  a\tGuaranteed\n            Service  fragment.\tIf  FALSE, the ADSPEC does\n            not contain a Guaranteed Service fragment."
                    },
                    "rsvpSenderAdspecGuaranteedBreak": {
                      "type": "boolean",
                      "description": "If TRUE, the Guaranteed Service  fragment  has\n            its\t'break'\t bit  set,  indicating that one\tor\n            more\tnodes along the\tpath do\t not  support  the\n            guaranteed\t  service.     If    FALSE,    and\n            rsvpSenderAdspecGuaranteedSvc  is   TRUE,   the\n            'break' bit is not set.\n            \n            If rsvpSenderAdspecGuaranteedSvc is FALSE, this\n            returns FALSE or noSuchValue."
                    },
                    "rsvpSenderAdspecGuaranteedCtot": {
                      "type": "integer",
                      "description": "If rsvpSenderAdspecGuaranteedSvc is\tTRUE, this\n            is\tthe  end-to-end\t composed  value  for  the\n            guaranteed service 'C' parameter.  A\treturn\tof\n            zero\t  or  noSuchValue  indicates  one  of  the\n            following conditions:\n            \n               the invalid bit was set\n               the parameter was\tnot present\n            \n            If rsvpSenderAdspecGuaranteedSvc is FALSE, this\n            returns zero\tor noSuchValue.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "rsvpSenderAdspecGuaranteedDtot": {
                      "type": "integer",
                      "description": "If rsvpSenderAdspecGuaranteedSvc is\tTRUE, this\n            is\tthe  end-to-end\t composed  value  for  the\n            guaranteed service 'D' parameter.  A\treturn\tof\n            zero\t  or  noSuchValue  indicates  one  of  the\n            following conditions:\n            \n               the invalid bit was set\n               the parameter was\tnot present\n            \n            If rsvpSenderAdspecGuaranteedSvc is FALSE, this\n            returns zero\tor noSuchValue.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "rsvpSenderAdspecGuaranteedCsum": {
                      "type": "integer",
                      "description": "If rsvpSenderAdspecGuaranteedSvc is\tTRUE, this\n            is\tthe  composed  value  for  the\tguaranteed\n            service 'C' parameter since the last\t reshaping\n            point.    A\t return\t of  zero  or  noSuchValue\n            indicates one of the\tfollowing conditions:\n            \n               the invalid bit was set\n               the parameter was\tnot present\n            \n            If rsvpSenderAdspecGuaranteedSvc is FALSE, this\n            returns zero\tor noSuchValue.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "rsvpSenderAdspecGuaranteedDsum": {
                      "type": "integer",
                      "description": "If rsvpSenderAdspecGuaranteedSvc is\tTRUE, this\n            is\tthe  composed  value  for  the\tguaranteed\n            service 'D' parameter since the last\t reshaping\n            point.    A\t return\t of  zero  or  noSuchValue\n            indicates one of the\tfollowing conditions:\n            \n               the invalid bit was set\n               the parameter was\tnot present\n            \n            If rsvpSenderAdspecGuaranteedSvc is FALSE, this\n            returns zero\tor noSuchValue.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "rsvpSenderAdspecGuaranteedHopCount": {
                      "type": "integer",
                      "description": "If rsvpSenderAdspecGuaranteedSvc is\tTRUE, this\n            is  the  service-specific  override\tof the hop\n            count general characterization  parameter  from\n            the\tADSPEC.\t  A  return of zero or noSuchValue\n            indicates one of the\tfollowing conditions:\n            \n               the invalid bit was set\n               the parameter was\tnot present\n            \n            If rsvpSenderAdspecGuaranteedSvc is FALSE, this\n            returns zero\tor noSuchValue.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "rsvpSenderAdspecGuaranteedPathBw": {
                      "type": "string",
                      "description": "If rsvpSenderAdspecGuaranteedSvc is\tTRUE, this\n            is  the  service-specific  override of the path\n            bandwidth  estimate\tgeneral\t  characterization\n            parameter from the ADSPEC.  A return\tof zero\tor\n            noSuchValue\tindicates  one\tof  the\t following\n            conditions:\n            \n               the invalid bit was set\n               the parameter was\tnot present\n            \n            If rsvpSenderAdspecGuaranteedSvc is FALSE, this\n            returns zero\tor noSuchValue.",
                      "x-yang-type": "integrated-services:BitRate"
                    },
                    "rsvpSenderAdspecGuaranteedMinLatency": {
                      "type": "integer",
                      "description": "If rsvpSenderAdspecGuaranteedSvc is\tTRUE, this\n            is the service-specific override of the minimum\n            path\tlatency\tgeneral\tcharacterization parameter\n            from\t  the\tADSPEC.\t   A  return  of  zero\tor\n            noSuchValue\tindicates  one\tof  the\t following\n            conditions:\n            \n               the invalid bit was set\n               the parameter was\tnot present\n            \n            If rsvpSenderAdspecGuaranteedSvc is FALSE, this\n            returns zero\tor noSuchValue.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "rsvpSenderAdspecGuaranteedMtu": {
                      "type": "integer",
                      "description": "If rsvpSenderAdspecGuaranteedSvc is\tTRUE, this\n            is\tthe   service-specific\t override  of  the\n            composed  Maximum  Transmission  Unit   general\n            characterization  parameter from the\tADSPEC.\t A\n            return of zero or noSuchValue indicates one\tof\n            the following conditions:\n            \n               the invalid bit was set\n               the parameter was\tnot present\n            \n            If rsvpSenderAdspecGuaranteedSvc is FALSE, this\n            returns zero\tor noSuchValue.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "rsvpSenderAdspecCtrlLoadSvc": {
                      "type": "boolean",
                      "description": "If TRUE, the ADSPEC\tcontains a Controlled Load\n            Service  fragment.\tIf  FALSE, the ADSPEC does\n            not\t contain   a   Controlled   Load   Service\n            fragment."
                    },
                    "rsvpSenderAdspecCtrlLoadBreak": {
                      "type": "boolean",
                      "description": "If TRUE, the Controlled Load Service  fragment\n            has its 'break' bit set, indicating that one\tor\n            more\tnodes along the\tpath do\t not  support  the\n            controlled\tload   service.\t   If  FALSE,  and\n            rsvpSenderAdspecCtrlLoadSvc\t is   TRUE,    the\n            'break' bit is not set.\n            \n            If rsvpSenderAdspecCtrlLoadSvc is  FALSE,  this\n            returns FALSE or noSuchValue."
                    },
                    "rsvpSenderAdspecCtrlLoadHopCount": {
                      "type": "integer",
                      "description": "If rsvpSenderAdspecCtrlLoadSvc is  TRUE,  this\n            is  the  service-specific  override\tof the hop\n            count general characterization  parameter  from\n            the\tADSPEC.\t  A  return of zero or noSuchValue\n            indicates one of the\tfollowing conditions:\n            \n               the invalid bit was set\n               the parameter was\tnot present\n            \n            If rsvpSenderAdspecCtrlLoadSvc is  FALSE,  this\n            returns zero\tor noSuchValue.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "rsvpSenderAdspecCtrlLoadPathBw": {
                      "type": "string",
                      "description": "If rsvpSenderAdspecCtrlLoadSvc is  TRUE,  this\n            is  the  service-specific  override of the path\n            bandwidth  estimate\tgeneral\t  characterization\n            parameter from the ADSPEC.  A return\tof zero\tor\n            noSuchValue\tindicates  one\tof  the\t following\n            conditions:\n            \n               the invalid bit was set\n               the parameter was\tnot present\n            \n            If rsvpSenderAdspecCtrlLoadSvc is  FALSE,  this\n            returns zero\tor noSuchValue.",
                      "x-yang-type": "integrated-services:BitRate"
                    },
                    "rsvpSenderAdspecCtrlLoadMinLatency": {
                      "type": "integer",
                      "description": "If rsvpSenderAdspecCtrlLoadSvc is  TRUE,  this\n            is the service-specific override of the minimum\n            path\tlatency\tgeneral\tcharacterization parameter\n            from\t  the\tADSPEC.\t   A  return  of  zero\tor\n            noSuchValue\tindicates  one\tof  the\t following\n            conditions:\n            \n               the invalid bit was set\n               the parameter was\tnot present\n            \n            If rsvpSenderAdspecCtrlLoadSvc is  FALSE,  this\n            returns zero\tor noSuchValue.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "rsvpSenderAdspecCtrlLoadMtu": {
                      "type": "integer",
                      "description": "If rsvpSenderAdspecCtrlLoadSvc is  TRUE,  this\n            is\tthe   service-specific\t override  of  the\n            composed  Maximum  Transmission  Unit   general\n            characterization  parameter from the\tADSPEC.\t A\n            return of zero or noSuchValue indicates one\tof\n            the following conditions:\n            \n               the invalid bit was set\n               the parameter was\tnot present\n            \n            If rsvpSenderAdspecCtrlLoadSvc is  FALSE,  this\n            returns zero\tor noSuchValue.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "rsvpSenderStatus": {
                      "type": "string",
                      "description": "'active' for all active PATH  messages.   This\n            object  may\tbe  used  to  install  static PATH\n            information or delete PATH information.",
                      "x-yang-type": "snmpv2-tc:RowStatus"
                    },
                    "rsvpSenderTTL": {
                      "type": "integer",
                      "description": "The\tTTL value in the RSVP header that was last\n            received.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    }
                  }
                },
                "example": {
                  "RSVP-MIB:rsvpSenderEntry": {
                    "rsvpSessionNumber": "example-string",
                    "rsvpSenderNumber": "example-string",
                    "rsvpSenderType": "ethernetCsmacd(6)",
                    "rsvpSenderDestAddr": "192.168.1.1",
                    "rsvpSenderAddr": "192.168.1.1",
                    "rsvpSenderDestAddrLength": -2147483648,
                    "rsvpSenderAddrLength": -2147483648,
                    "rsvpSenderProtocol": "example-string",
                    "rsvpSenderDestPort": "example-string",
                    "rsvpSenderPort": "example-string",
                    "rsvpSenderFlowId": -2147483648,
                    "rsvpSenderHopAddr": "192.168.1.1",
                    "rsvpSenderHopLih": -2147483648,
                    "rsvpSenderInterface": "GigabitEthernet1/0/1",
                    "rsvpSenderTSpecRate": "example-string",
                    "rsvpSenderTSpecPeakRate": "example-string",
                    "rsvpSenderTSpecBurst": "example-string",
                    "rsvpSenderTSpecMinTU": "example-string",
                    "rsvpSenderTSpecMaxTU": "example-string",
                    "rsvpSenderInterval": "example-string",
                    "rsvpSenderRSVPHop": true,
                    "rsvpSenderLastChange": "example-string",
                    "rsvpSenderPolicy": "example-string",
                    "rsvpSenderAdspecBreak": true,
                    "rsvpSenderAdspecHopCount": -2147483648,
                    "rsvpSenderAdspecPathBw": "example-string",
                    "rsvpSenderAdspecMinLatency": -2147483648,
                    "rsvpSenderAdspecMtu": 1500,
                    "rsvpSenderAdspecGuaranteedSvc": true,
                    "rsvpSenderAdspecGuaranteedBreak": true,
                    "rsvpSenderAdspecGuaranteedCtot": -2147483648,
                    "rsvpSenderAdspecGuaranteedDtot": -2147483648,
                    "rsvpSenderAdspecGuaranteedCsum": -2147483648,
                    "rsvpSenderAdspecGuaranteedDsum": -2147483648,
                    "rsvpSenderAdspecGuaranteedHopCount": -2147483648,
                    "rsvpSenderAdspecGuaranteedPathBw": "example-string",
                    "rsvpSenderAdspecGuaranteedMinLatency": -2147483648,
                    "rsvpSenderAdspecGuaranteedMtu": 1500,
                    "rsvpSenderAdspecCtrlLoadSvc": true,
                    "rsvpSenderAdspecCtrlLoadBreak": true,
                    "rsvpSenderAdspecCtrlLoadHopCount": -2147483648,
                    "rsvpSenderAdspecCtrlLoadPathBw": "example-string",
                    "rsvpSenderAdspecCtrlLoadMinLatency": 1,
                    "rsvpSenderAdspecCtrlLoadMtu": 1500,
                    "rsvpSenderStatus": "up(1)",
                    "rsvpSenderTTL": -2147483648
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-rsvpSenderEntry-4"
      },
      "x-yang-path": "/rsvpSenderEntry={rsvpSessionNumber rsvpSenderNumber}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "rsvpSessionNumber rsvpSenderNumber"
      ]
    },
    "/data/RSVP-MIB:rsvpSenderOutInterfaceEntry={rsvpSessionNumber},{rsvpSenderNumber},{ifIndex}": {
      "get": {
        "summary": "Get rsvpSenderOutInterfaceEntry entry",
        "description": "Retrieve specific rsvpSenderOutInterfaceEntry entry by key from MIB",
        "tags": [
          "RSVP-MIB"
        ],
        "parameters": [
          {
            "name": "rsvpSessionNumber",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "rsvpSenderNumber",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "ifIndex",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "Accept",
            "in": "header",
            "required": false,
            "description": "RESTCONF response media type (RFC 8040)",
            "schema": {
              "type": "string",
              "default": "application/yang-data+json",
              "enum": [
                "application/yang-data+json",
                "application/yang-data+xml"
              ]
            }
          },
          {
            "name": "depth",
            "in": "query",
            "required": false,
            "description": "Limit the depth of returned sub-tree data (RFC 8040 Section 4.8.2). Use 'unbounded' for full depth.",
            "schema": {
              "type": "string",
              "default": "unbounded"
            }
          },
          {
            "name": "fields",
            "in": "query",
            "required": false,
            "description": "Select specific fields to return (RFC 8040 Section 4.8.3). Example: fields=name;status",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "content",
            "in": "query",
            "required": false,
            "description": "Filter by config state: 'config' (config true only), 'nonconfig' (config false only), or 'all'.",
            "schema": {
              "type": "string",
              "enum": [
                "config",
                "nonconfig",
                "all"
              ],
              "default": "all"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "rsvpSessionNumber": {
                      "type": "string",
                      "description": "rsvpSessionNumber",
                      "x-yang-type": "leafref"
                    },
                    "rsvpSenderNumber": {
                      "type": "string",
                      "description": "rsvpSenderNumber",
                      "x-yang-type": "leafref"
                    },
                    "ifIndex": {
                      "type": "string",
                      "description": "ifIndex",
                      "x-yang-type": "leafref"
                    },
                    "rsvpSenderOutInterfaceStatus": {
                      "type": "string",
                      "description": "'active' for all active PATH messages.",
                      "x-yang-type": "snmpv2-tc:RowStatus"
                    }
                  }
                },
                "example": {
                  "RSVP-MIB:rsvpSenderOutInterfaceEntry": {
                    "rsvpSessionNumber": "example-string",
                    "rsvpSenderNumber": "example-string",
                    "ifIndex": "example-string",
                    "rsvpSenderOutInterfaceStatus": "GigabitEthernet1/0/1"
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-rsvpSenderOutInterfaceEntry-4"
      },
      "x-yang-path": "/rsvpSenderOutInterfaceEntry={rsvpSessionNumber rsvpSenderNumber ifIndex}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "rsvpSessionNumber rsvpSenderNumber ifIndex"
      ]
    },
    "/data/RSVP-MIB:rsvpResvEntry={rsvpSessionNumber},{rsvpResvNumber}": {
      "get": {
        "summary": "Get rsvpResvEntry entry",
        "description": "Retrieve specific rsvpResvEntry entry by key from MIB",
        "tags": [
          "RSVP-MIB"
        ],
        "parameters": [
          {
            "name": "rsvpSessionNumber",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "rsvpResvNumber",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "Accept",
            "in": "header",
            "required": false,
            "description": "RESTCONF response media type (RFC 8040)",
            "schema": {
              "type": "string",
              "default": "application/yang-data+json",
              "enum": [
                "application/yang-data+json",
                "application/yang-data+xml"
              ]
            }
          },
          {
            "name": "depth",
            "in": "query",
            "required": false,
            "description": "Limit the depth of returned sub-tree data (RFC 8040 Section 4.8.2). Use 'unbounded' for full depth.",
            "schema": {
              "type": "string",
              "default": "unbounded"
            }
          },
          {
            "name": "fields",
            "in": "query",
            "required": false,
            "description": "Select specific fields to return (RFC 8040 Section 4.8.3). Example: fields=name;status",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "content",
            "in": "query",
            "required": false,
            "description": "Filter by config state: 'config' (config true only), 'nonconfig' (config false only), or 'all'.",
            "schema": {
              "type": "string",
              "enum": [
                "config",
                "nonconfig",
                "all"
              ],
              "default": "all"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "rsvpSessionNumber": {
                      "type": "string",
                      "description": "rsvpSessionNumber",
                      "x-yang-type": "leafref"
                    },
                    "rsvpResvNumber": {
                      "type": "string",
                      "description": "The\tnumber of this reservation request.   This\n            is  for  SNMP Indexing purposes only\tand has\tno\n            relation to any protocol value.",
                      "x-yang-type": "integrated-services:SessionNumber"
                    },
                    "rsvpResvType": {
                      "type": "string",
                      "description": "The\ttype of\tsession\t(IP4, IP6, IP6\twith  flow\n            information,\tetc).",
                      "x-yang-type": "integrated-services:SessionType"
                    },
                    "rsvpResvDestAddr": {
                      "type": "string",
                      "description": "The\tdestination address used by all\tsenders\tin\n            this\t session.   This object\tmay not\tbe changed\n            when\tthe  value  of\tthe  RowStatus\tobject\tis\n            'active'.",
                      "format": "binary"
                    },
                    "rsvpResvSenderAddr": {
                      "type": "string",
                      "description": "The\tsource address of the sender  selected\tby\n            this\t reservation.\tThe  value  of\tall zeroes\n            indicates 'all senders'.  This object  may  not\n            be  changed\twhen  the  value  of the RowStatus\n            object is 'active'.",
                      "format": "binary"
                    },
                    "rsvpResvDestAddrLength": {
                      "type": "integer",
                      "description": "The\tlength of the destination address in bits.\n            This\t is  the CIDR Prefix Length, which for IP4\n            hosts and multicast addresses is 32 bits.  This\n            object may not be changed when the value of the\n            RowStatus object is 'active'.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "rsvpResvSenderAddrLength": {
                      "type": "integer",
                      "description": "The\tlength of the sender's\taddress\t in  bits.\n            This\t is  the CIDR Prefix Length, which for IP4\n            hosts and multicast addresses is 32 bits.  This\n            object may not be changed when the value of the\n            RowStatus object is 'active'.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "rsvpResvProtocol": {
                      "type": "string",
                      "description": "The\tIP Protocol used by  this  session.   This\n            object may not be changed when the value of the\n            RowStatus object is 'active'.",
                      "x-yang-type": "integrated-services:Protocol"
                    },
                    "rsvpResvDestPort": {
                      "type": "string",
                      "description": "The\t UDP  or  TCP  port  number  used   as\t a\n            destination\t port  for  all\t senders  in  this\n            session.  If\tthe IP protocol\tin use,\t specified\n            by  rsvpResvProtocol,  is  50 (ESP) or 51 (AH),\n            this\t represents  a\tvirtual\t destination  port\n            number.   A value of\tzero indicates that the\tIP\n            protocol in use  does  not  have  ports.   This\n            object may not be changed when the value of the\n            RowStatus object is 'active'.",
                      "x-yang-type": "integrated-services:Port"
                    },
                    "rsvpResvPort": {
                      "type": "string",
                      "description": "The\tUDP or TCP port\tnumber used  as\t a  source\n            port\t for  this sender in this session.  If the\n            IP\t protocol    in\t   use,\t   specified\tby\n            rsvpResvProtocol  is\t 50 (ESP) or 51\t(AH), this\n            represents a\tgeneralized port identifier (GPI).\n            A  value of zero indicates that the IP protocol\n            in use does not have\tports.\t This  object  may\n            not\tbe changed when\tthe value of the RowStatus\n            object is 'active'.",
                      "x-yang-type": "integrated-services:Port"
                    },
                    "rsvpResvHopAddr": {
                      "type": "string",
                      "description": "The\taddress\tused by\tthe next RSVP  hop  (which\n            may be the ultimate receiver).",
                      "format": "binary"
                    },
                    "rsvpResvHopLih": {
                      "type": "integer",
                      "description": "The\tLogical\tInterface Handle received from the\n            previous  RSVP  hop\t(which may be the ultimate\n            receiver).",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "rsvpResvInterface": {
                      "type": "string",
                      "description": "The\tifIndex\tvalue of the  interface\t on  which\n            this\tRESV message was most recently received.",
                      "x-yang-type": "if-mib:InterfaceIndex"
                    },
                    "rsvpResvService": {
                      "type": "string",
                      "description": "The\tQoS Service  classification  requested\tby\n            the receiver.",
                      "x-yang-type": "integrated-services:QosService"
                    },
                    "rsvpResvTSpecRate": {
                      "type": "string",
                      "description": "The\tAverage\tBit  Rate  of  the  sender's  data\n            stream.    Within  a\t transmission  burst,  the\n            arrival   rate    may    be\t  as\tfast\tas\n            rsvpResvTSpecPeakRate   (if\tsupported  by  the\n            service model); however, averaged across two\tor\n            more\t burst\tintervals,  the\t rate  should  not\n            exceed rsvpResvTSpecRate.\n            \n            Note\tthat this is a prediction, often based\ton\n            the\tgeneral\t capability  of\ta type of codec\tor\n            particular encoding;\tthe measured average  rate\n            may be significantly\tlower.",
                      "x-yang-type": "integrated-services:BitRate"
                    },
                    "rsvpResvTSpecPeakRate": {
                      "type": "string",
                      "description": "The\tPeak Bit Rate of the sender's data stream.\n            Traffic  arrival is not expected to exceed this\n            rate\tat any time, apart  from  the  effects\tof\n            jitter in the network.  If not specified in the\n            TSpec, this returns zero or noSuchValue.",
                      "x-yang-type": "integrated-services:BitRate"
                    },
                    "rsvpResvTSpecBurst": {
                      "type": "string",
                      "description": "The\tsize of\tthe largest  burst  expected  from\n            the sender at a time.\n            \n            If this is less than\t the  sender's\tadvertised\n            burst  size,\tthe receiver is\tasking the network\n            to provide flow pacing  beyond  what\t would\tbe\n            provided   under   normal  circumstances.  Such\n            pacing is at\tthe network's option.",
                      "x-yang-type": "integrated-services:BurstSize"
                    },
                    "rsvpResvTSpecMinTU": {
                      "type": "string",
                      "description": "The\tminimum\tmessage\tsize for  this\tflow.  The\n            policing  algorithm will treat smaller messages\n            as though they are this size.",
                      "x-yang-type": "integrated-services:MessageSize"
                    },
                    "rsvpResvTSpecMaxTU": {
                      "type": "string",
                      "description": "The\tmaximum\tmessage\tsize for  this\tflow.  The\n            admission  algorithm\t will  reject TSpecs whose\n            Maximum Transmission\tUnit, plus  the\t interface\n            headers, exceed the interface MTU.",
                      "x-yang-type": "integrated-services:MessageSize"
                    },
                    "rsvpResvRSpecRate": {
                      "type": "string",
                      "description": "If the requested  service  is  Guaranteed,\tas\n            specified   by  rsvpResvService,  this  is  the\n            clearing  rate   that   is\tbeing\trequested.\n            Otherwise,  it is zero, or the agent\tmay return\n            noSuchValue.",
                      "x-yang-type": "integrated-services:BitRate"
                    },
                    "rsvpResvRSpecSlack": {
                      "type": "integer",
                      "description": "If the requested  service  is  Guaranteed,\tas\n            specified by\trsvpResvService, this is the delay\n            slack.  Otherwise, it is zero, or the agent may\n            return noSuchValue.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "rsvpResvInterval": {
                      "type": "string",
                      "description": "The\t interval  between  refresh  messages\tas\n            advertised by the Next Hop.",
                      "x-yang-type": "RSVP-MIB:RefreshInterval"
                    },
                    "rsvpResvScope": {
                      "type": "string",
                      "description": "The\tcontents of the\tscope object, displayed\tas\n            an  uninterpreted  string  of octets, including\n            the object header.  In the absence of  such\tan\n            object, this\tshould be of zero length.\n            \n            If the length  is  non-zero,\t this  contains\t a\n            series of IP4 or IP6\taddresses.",
                      "format": "binary"
                    },
                    "rsvpResvShared": {
                      "type": "boolean",
                      "description": "If TRUE, a reservation shared among\tsenders\tis\n            requested.  If FALSE, a reservation specific\tto\n            this\tsender is requested."
                    },
                    "rsvpResvExplicit": {
                      "type": "boolean",
                      "description": "If TRUE, individual\tsenders\tare  listed  using\n            Filter  Specifications.   If\tFALSE, all senders\n            are implicitly selected.  The Scope Object will\n            contain  a list of senders that need\tto receive\n            this\treservation request  for  the  purpose\tof\n            routing the RESV message."
                    },
                    "rsvpResvRSVPHop": {
                      "type": "boolean",
                      "description": "If TRUE, the node believes that  the  previous\n            IP  hop  is\tan  RSVP  hop.\tIf FALSE, the node\n            believes that the previous IP hop may not be\tan\n            RSVP\thop."
                    },
                    "rsvpResvLastChange": {
                      "type": "string",
                      "description": "The\t time  of  the\t last\tchange\t in   this\n            reservation\trequest;  This is either the first\n            time\tit was received\tor the time  of\t the  most\n            recent change in parameters.",
                      "x-yang-type": "yang:timestamp"
                    },
                    "rsvpResvPolicy": {
                      "type": "string",
                      "description": "The\tcontents of the\tpolicy\tobject,\t displayed\n            as an uninterpreted string of octets, including\n            the object header.  In the absence of  such\tan\n            object, this\tshould be of zero length.",
                      "format": "binary"
                    },
                    "rsvpResvStatus": {
                      "type": "string",
                      "description": "'active' for all active RESV  messages.   This\n            object  may\tbe  used  to  install  static RESV\n            information or delete RESV information.",
                      "x-yang-type": "snmpv2-tc:RowStatus"
                    },
                    "rsvpResvTTL": {
                      "type": "integer",
                      "description": "The\tTTL value in the RSVP header that was last\n            received.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "rsvpResvFlowId": {
                      "type": "integer",
                      "description": "The\tflow ID\tthat this receiver  is\tusing,\tif\n            this\t is  an\tIPv6 session.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    }
                  }
                },
                "example": {
                  "RSVP-MIB:rsvpResvEntry": {
                    "rsvpSessionNumber": "example-string",
                    "rsvpResvNumber": "example-string",
                    "rsvpResvType": "ethernetCsmacd(6)",
                    "rsvpResvDestAddr": "192.168.1.1",
                    "rsvpResvSenderAddr": "192.168.1.1",
                    "rsvpResvDestAddrLength": -2147483648,
                    "rsvpResvSenderAddrLength": -2147483648,
                    "rsvpResvProtocol": "example-string",
                    "rsvpResvDestPort": "example-string",
                    "rsvpResvPort": "example-string",
                    "rsvpResvHopAddr": "192.168.1.1",
                    "rsvpResvHopLih": -2147483648,
                    "rsvpResvInterface": "GigabitEthernet1/0/1",
                    "rsvpResvService": "example-string",
                    "rsvpResvTSpecRate": "example-string",
                    "rsvpResvTSpecPeakRate": "example-string",
                    "rsvpResvTSpecBurst": "example-string",
                    "rsvpResvTSpecMinTU": "example-string",
                    "rsvpResvTSpecMaxTU": "example-string",
                    "rsvpResvRSpecRate": "example-string",
                    "rsvpResvRSpecSlack": -2147483648,
                    "rsvpResvInterval": "example-string",
                    "rsvpResvScope": "example-string",
                    "rsvpResvShared": true,
                    "rsvpResvExplicit": true,
                    "rsvpResvRSVPHop": true,
                    "rsvpResvLastChange": "example-string",
                    "rsvpResvPolicy": "example-string",
                    "rsvpResvStatus": "up(1)",
                    "rsvpResvTTL": -2147483648,
                    "rsvpResvFlowId": -2147483648
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-rsvpResvEntry-4"
      },
      "x-yang-path": "/rsvpResvEntry={rsvpSessionNumber rsvpResvNumber}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "rsvpSessionNumber rsvpResvNumber"
      ]
    },
    "/data/RSVP-MIB:rsvpResvFwdEntry={rsvpSessionNumber},{rsvpResvFwdNumber}": {
      "get": {
        "summary": "Get rsvpResvFwdEntry entry",
        "description": "Retrieve specific rsvpResvFwdEntry entry by key from MIB",
        "tags": [
          "RSVP-MIB"
        ],
        "parameters": [
          {
            "name": "rsvpSessionNumber",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "rsvpResvFwdNumber",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "Accept",
            "in": "header",
            "required": false,
            "description": "RESTCONF response media type (RFC 8040)",
            "schema": {
              "type": "string",
              "default": "application/yang-data+json",
              "enum": [
                "application/yang-data+json",
                "application/yang-data+xml"
              ]
            }
          },
          {
            "name": "depth",
            "in": "query",
            "required": false,
            "description": "Limit the depth of returned sub-tree data (RFC 8040 Section 4.8.2). Use 'unbounded' for full depth.",
            "schema": {
              "type": "string",
              "default": "unbounded"
            }
          },
          {
            "name": "fields",
            "in": "query",
            "required": false,
            "description": "Select specific fields to return (RFC 8040 Section 4.8.3). Example: fields=name;status",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "content",
            "in": "query",
            "required": false,
            "description": "Filter by config state: 'config' (config true only), 'nonconfig' (config false only), or 'all'.",
            "schema": {
              "type": "string",
              "enum": [
                "config",
                "nonconfig",
                "all"
              ],
              "default": "all"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "rsvpSessionNumber": {
                      "type": "string",
                      "description": "rsvpSessionNumber",
                      "x-yang-type": "leafref"
                    },
                    "rsvpResvFwdNumber": {
                      "type": "string",
                      "description": "The\tnumber of this reservation request.   This\n            is  for  SNMP Indexing purposes only\tand has\tno\n            relation to any protocol value.",
                      "x-yang-type": "integrated-services:SessionNumber"
                    },
                    "rsvpResvFwdType": {
                      "type": "string",
                      "description": "The\ttype of\tsession\t(IP4, IP6, IP6\twith  flow\n            information,\tetc).",
                      "x-yang-type": "integrated-services:SessionType"
                    },
                    "rsvpResvFwdDestAddr": {
                      "type": "string",
                      "description": "The\tdestination address used by all\tsenders\tin\n            this\t session.   This object\tmay not\tbe changed\n            when\tthe  value  of\tthe  RowStatus\tobject\tis\n            'active'.",
                      "format": "binary"
                    },
                    "rsvpResvFwdSenderAddr": {
                      "type": "string",
                      "description": "The\tsource address of the sender  selected\tby\n            this\t reservation.\tThe  value  of\tall zeroes\n            indicates 'all senders'.  This object  may  not\n            be  changed\twhen  the  value  of the RowStatus\n            object is 'active'.",
                      "format": "binary"
                    },
                    "rsvpResvFwdDestAddrLength": {
                      "type": "integer",
                      "description": "The\tlength of the destination address in bits.\n            This\t is  the CIDR Prefix Length, which for IP4\n            hosts and multicast addresses is 32 bits.  This\n            object may not be changed when the value of the\n            RowStatus object is 'active'.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "rsvpResvFwdSenderAddrLength": {
                      "type": "integer",
                      "description": "The\tlength of the sender's\taddress\t in  bits.\n            This\t is  the CIDR Prefix Length, which for IP4\n            hosts and multicast addresses is 32 bits.  This\n            object may not be changed when the value of the\n            RowStatus object is 'active'.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "rsvpResvFwdProtocol": {
                      "type": "string",
                      "description": "The\tIP Protocol used by a session. for  secure\n            sessions,  this  indicates  IP  Security.  This\n            object may not be changed when the value of the\n            RowStatus object is 'active'.",
                      "x-yang-type": "integrated-services:Protocol"
                    },
                    "rsvpResvFwdDestPort": {
                      "type": "string",
                      "description": "The\t UDP  or  TCP  port  number  used   as\t a\n            destination\t port  for  all\t senders  in  this\n            session.  If\tthe IP protocol\tin use,\t specified\n            by rsvpResvFwdProtocol, is 50 (ESP) or 51 (AH),\n            this\t represents  a\tvirtual\t destination  port\n            number.   A value of\tzero indicates that the\tIP\n            protocol in use  does  not  have  ports.   This\n            object may not be changed when the value of the\n            RowStatus object is 'active'.",
                      "x-yang-type": "integrated-services:Port"
                    },
                    "rsvpResvFwdPort": {
                      "type": "string",
                      "description": "The\tUDP or TCP port\tnumber used  as\t a  source\n            port\t for  this sender in this session.  If the\n            IP\t protocol    in\t   use,\t   specified\tby\n            rsvpResvFwdProtocol\tis  50\t(ESP)  or 51 (AH),\n            this\trepresents a generalized  port\tidentifier\n            (GPI).   A  value of\tzero indicates that the\tIP\n            protocol in use  does  not  have  ports.   This\n            object may not be changed when the value of the\n            RowStatus object is 'active'.",
                      "x-yang-type": "integrated-services:Port"
                    },
                    "rsvpResvFwdHopAddr": {
                      "type": "string",
                      "description": "The\taddress\tof the (previous) RSVP\tthat  will\n            receive this\tmessage.",
                      "format": "binary"
                    },
                    "rsvpResvFwdHopLih": {
                      "type": "integer",
                      "description": "The\t Logical  Interface  Handle  sent  to  the\n            (previous)\tRSVP   that   will   receive  this\n            message.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "rsvpResvFwdInterface": {
                      "type": "string",
                      "description": "The\tifIndex\tvalue of the  interface\t on  which\n            this\tRESV message was most recently sent.",
                      "x-yang-type": "if-mib:InterfaceIndex"
                    },
                    "rsvpResvFwdService": {
                      "type": "string",
                      "description": "The\tQoS Service classification requested.",
                      "x-yang-type": "integrated-services:QosService"
                    },
                    "rsvpResvFwdTSpecRate": {
                      "type": "string",
                      "description": "The\tAverage\tBit  Rate  of  the  sender's  data\n            stream.    Within  a\t transmission  burst,  the\n            arrival   rate    may    be\t  as\tfast\tas\n            rsvpResvFwdTSpecPeakRate  (if  supported by the\n            service model); however, averaged across two\tor\n            more\t burst\tintervals,  the\t rate  should  not\n            exceed rsvpResvFwdTSpecRate.\n            \n            Note\tthat this is a prediction, often based\ton\n            the\tgeneral\t capability  of\ta type of codec\tor\n            particular encoding;\tthe measured average  rate\n            may be significantly\tlower.",
                      "x-yang-type": "integrated-services:BitRate"
                    },
                    "rsvpResvFwdTSpecPeakRate": {
                      "type": "string",
                      "description": "The\tPeak Bit Rate of the sender's data  stream\n            Traffic  arrival is not expected to exceed this\n            rate\tat any time, apart  from  the  effects\tof\n            jitter in the network.  If not specified in the\n            TSpec, this returns zero or noSuchValue.",
                      "x-yang-type": "integrated-services:BitRate"
                    },
                    "rsvpResvFwdTSpecBurst": {
                      "type": "string",
                      "description": "The\tsize of\tthe largest  burst  expected  from\n            the sender at a time.\n            \n            If this is less than\t the  sender's\tadvertised\n            burst  size,\tthe receiver is\tasking the network\n            to provide flow pacing  beyond  what\t would\tbe\n            provided   under   normal  circumstances.  Such\n            pacing is at\tthe network's option.",
                      "x-yang-type": "integrated-services:BurstSize"
                    },
                    "rsvpResvFwdTSpecMinTU": {
                      "type": "string",
                      "description": "The\tminimum\tmessage\tsize for  this\tflow.  The\n            policing  algorithm will treat smaller messages\n            as though they are this size.",
                      "x-yang-type": "integrated-services:MessageSize"
                    },
                    "rsvpResvFwdTSpecMaxTU": {
                      "type": "string",
                      "description": "The\tmaximum\tmessage\tsize for  this\tflow.  The\n            admission  algorithm\t will  reject TSpecs whose\n            Maximum Transmission\tUnit, plus  the\t interface\n            headers, exceed the interface MTU.",
                      "x-yang-type": "integrated-services:MessageSize"
                    },
                    "rsvpResvFwdRSpecRate": {
                      "type": "string",
                      "description": "If the requested  service  is  Guaranteed,\tas\n            specified   by  rsvpResvService,  this  is  the\n            clearing  rate   that   is\tbeing\trequested.\n            Otherwise,  it is zero, or the agent\tmay return\n            noSuchValue.",
                      "x-yang-type": "integrated-services:BitRate"
                    },
                    "rsvpResvFwdRSpecSlack": {
                      "type": "integer",
                      "description": "If the requested  service  is  Guaranteed,\tas\n            specified by\trsvpResvService, this is the delay\n            slack.  Otherwise, it is zero, or the agent may\n            return noSuchValue.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "rsvpResvFwdInterval": {
                      "type": "string",
                      "description": "The\t  interval   between   refresh\t  messages\n            advertised to the Previous Hop.",
                      "x-yang-type": "RSVP-MIB:RefreshInterval"
                    },
                    "rsvpResvFwdScope": {
                      "type": "string",
                      "description": "The\tcontents of the\tscope object, displayed\tas\n            an  uninterpreted  string  of octets, including\n            the object header.  In the absence of  such\tan\n            object, this\tshould be of zero length.",
                      "format": "binary"
                    },
                    "rsvpResvFwdShared": {
                      "type": "boolean",
                      "description": "If TRUE, a reservation shared among\tsenders\tis\n            requested.  If FALSE, a reservation specific\tto\n            this\tsender is requested."
                    },
                    "rsvpResvFwdExplicit": {
                      "type": "boolean",
                      "description": "If TRUE, individual\tsenders\tare  listed  using\n            Filter  Specifications.   If\tFALSE, all senders\n            are implicitly selected.  The Scope Object will\n            contain  a list of senders that need\tto receive\n            this\treservation request  for  the  purpose\tof\n            routing the RESV message."
                    },
                    "rsvpResvFwdRSVPHop": {
                      "type": "boolean",
                      "description": "If TRUE, the node believes that  the  next\tIP\n            hop\tis  an\tRSVP  hop.   If\t FALSE,\t the  node\n            believes that the next IP hop  may  not  be\tan\n            RSVP\thop."
                    },
                    "rsvpResvFwdLastChange": {
                      "type": "string",
                      "description": "The\ttime of\tthe last change\tin  this  request;\n            This\t is  either  the first time it was sent\tor\n            the\ttime  of  the  most   recent   change\tin\n            parameters.",
                      "x-yang-type": "yang:timestamp"
                    },
                    "rsvpResvFwdPolicy": {
                      "type": "string",
                      "description": "The\tcontents of the\tpolicy\tobject,\t displayed\n            as an uninterpreted string of octets, including\n            the object header.  In the absence of  such\tan\n            object, this\tshould be of zero length.",
                      "format": "binary"
                    },
                    "rsvpResvFwdStatus": {
                      "type": "string",
                      "description": "'active' for all active RESV  messages.   This\n            object may be used to delete\tRESV information.",
                      "x-yang-type": "snmpv2-tc:RowStatus"
                    },
                    "rsvpResvFwdTTL": {
                      "type": "integer",
                      "description": "The\tTTL value in the RSVP header that was last\n            received.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "rsvpResvFwdFlowId": {
                      "type": "integer",
                      "description": "The\tflow ID\tthat this receiver  is\tusing,\tif\n            this\t is  an\tIPv6 session.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    }
                  }
                },
                "example": {
                  "RSVP-MIB:rsvpResvFwdEntry": {
                    "rsvpSessionNumber": "example-string",
                    "rsvpResvFwdNumber": "example-string",
                    "rsvpResvFwdType": "ethernetCsmacd(6)",
                    "rsvpResvFwdDestAddr": "192.168.1.1",
                    "rsvpResvFwdSenderAddr": "192.168.1.1",
                    "rsvpResvFwdDestAddrLength": -2147483648,
                    "rsvpResvFwdSenderAddrLength": -2147483648,
                    "rsvpResvFwdProtocol": "example-string",
                    "rsvpResvFwdDestPort": "example-string",
                    "rsvpResvFwdPort": "example-string",
                    "rsvpResvFwdHopAddr": "192.168.1.1",
                    "rsvpResvFwdHopLih": -2147483648,
                    "rsvpResvFwdInterface": "GigabitEthernet1/0/1",
                    "rsvpResvFwdService": "example-string",
                    "rsvpResvFwdTSpecRate": "example-string",
                    "rsvpResvFwdTSpecPeakRate": "example-string",
                    "rsvpResvFwdTSpecBurst": "example-string",
                    "rsvpResvFwdTSpecMinTU": "example-string",
                    "rsvpResvFwdTSpecMaxTU": "example-string",
                    "rsvpResvFwdRSpecRate": "example-string",
                    "rsvpResvFwdRSpecSlack": -2147483648,
                    "rsvpResvFwdInterval": "example-string",
                    "rsvpResvFwdScope": "example-string",
                    "rsvpResvFwdShared": true,
                    "rsvpResvFwdExplicit": true,
                    "rsvpResvFwdRSVPHop": true,
                    "rsvpResvFwdLastChange": "example-string",
                    "rsvpResvFwdPolicy": "example-string",
                    "rsvpResvFwdStatus": "up(1)",
                    "rsvpResvFwdTTL": -2147483648,
                    "rsvpResvFwdFlowId": -2147483648
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-rsvpResvFwdEntry-4"
      },
      "x-yang-path": "/rsvpResvFwdEntry={rsvpSessionNumber rsvpResvFwdNumber}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "rsvpSessionNumber rsvpResvFwdNumber"
      ]
    },
    "/data/RSVP-MIB:rsvpNbrEntry={ifIndex},{rsvpNbrAddress}": {
      "get": {
        "summary": "Get rsvpNbrEntry entry",
        "description": "Retrieve specific rsvpNbrEntry entry by key from MIB",
        "tags": [
          "RSVP-MIB"
        ],
        "parameters": [
          {
            "name": "ifIndex",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "rsvpNbrAddress",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "Accept",
            "in": "header",
            "required": false,
            "description": "RESTCONF response media type (RFC 8040)",
            "schema": {
              "type": "string",
              "default": "application/yang-data+json",
              "enum": [
                "application/yang-data+json",
                "application/yang-data+xml"
              ]
            }
          },
          {
            "name": "depth",
            "in": "query",
            "required": false,
            "description": "Limit the depth of returned sub-tree data (RFC 8040 Section 4.8.2). Use 'unbounded' for full depth.",
            "schema": {
              "type": "string",
              "default": "unbounded"
            }
          },
          {
            "name": "fields",
            "in": "query",
            "required": false,
            "description": "Select specific fields to return (RFC 8040 Section 4.8.3). Example: fields=name;status",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "content",
            "in": "query",
            "required": false,
            "description": "Filter by config state: 'config' (config true only), 'nonconfig' (config false only), or 'all'.",
            "schema": {
              "type": "string",
              "enum": [
                "config",
                "nonconfig",
                "all"
              ],
              "default": "all"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "ifIndex": {
                      "type": "string",
                      "description": "ifIndex",
                      "x-yang-type": "leafref"
                    },
                    "rsvpNbrAddress": {
                      "type": "string",
                      "description": "The\tIP4 or IP6 Address used\tby this\t neighbor.\n            This\t object\t may not be changed when the value\n            of the RowStatus object is 'active'.",
                      "format": "binary"
                    },
                    "rsvpNbrProtocol": {
                      "type": "string",
                      "description": "The\t  encapsulation\t  being\t  used\t by   this\n            neighbor.",
                      "x-yang-type": "RSVP-MIB:RsvpEncapsulation"
                    },
                    "rsvpNbrStatus": {
                      "type": "string",
                      "description": "'active' for all neighbors.\t This  object  may\n            be\tused   to  configure  neighbors.   In  the\n            presence   of   configured\t neighbors,    the\n            implementation  may\t(but  is  not required to)\n            limit the  set  of  valid  neighbors\t to  those\n            configured.",
                      "x-yang-type": "snmpv2-tc:RowStatus"
                    }
                  }
                },
                "example": {
                  "RSVP-MIB:rsvpNbrEntry": {
                    "ifIndex": "example-string",
                    "rsvpNbrAddress": "192.168.1.1",
                    "rsvpNbrProtocol": "example-string",
                    "rsvpNbrStatus": "up(1)"
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-rsvpNbrEntry-4"
      },
      "x-yang-path": "/rsvpNbrEntry={ifIndex rsvpNbrAddress}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "ifIndex rsvpNbrAddress"
      ]
    }
  },
  "components": {
    "schemas": {
      "RSVP-MIB_RSVP-MIB": {
        "type": "object",
        "description": "This object\tkeeps a\tcount of the number of bad\n          RSVP\tpackets\treceived.",
        "properties": {
          "rsvpSessionEntry": {
            "type": "array",
            "description": "A single session seen by a given system.",
            "items": {
              "type": "object",
              "properties": {
                "rsvpSessionNumber": {
                  "type": "string",
                  "description": "The\tnumber of this session.\t This is for  SNMP\n            Indexing  purposes  only and\thas no relation\tto\n            any protocol\tvalue.",
                  "x-yang-type": "integrated-services:SessionNumber",
                  "readOnly": true
                },
                "rsvpSessionType": {
                  "type": "string",
                  "description": "The\ttype of\tsession\t(IP4, IP6, IP6\twith  flow\n            information,\tetc).",
                  "x-yang-type": "integrated-services:SessionType",
                  "readOnly": true
                },
                "rsvpSessionDestAddr": {
                  "type": "string",
                  "description": "The\tdestination address used by all\tsenders\tin\n            this\t session.   This object\tmay not\tbe changed\n            when\tthe  value  of\tthe  RowStatus\tobject\tis\n            'active'.",
                  "format": "binary",
                  "readOnly": true
                },
                "rsvpSessionDestAddrLength": {
                  "type": "integer",
                  "description": "The\tCIDR prefix length of the session address,\n            which   is\t32  for\t IP4  host  and\t multicast\n            addresses, and 128  for  IP6\t addresses.   This\n            object may not be changed when the value of the\n            RowStatus object is 'active'.",
                  "minimum": -2147483648,
                  "maximum": 2147483647,
                  "readOnly": true
                },
                "rsvpSessionProtocol": {
                  "type": "string",
                  "description": "The\tIP Protocol used by  this  session.   This\n            object may not be changed when the value of the\n            RowStatus object is 'active'.",
                  "x-yang-type": "integrated-services:Protocol",
                  "readOnly": true
                },
                "rsvpSessionPort": {
                  "type": "string",
                  "description": "The\t UDP  or  TCP  port  number  used   as\t a\n            destination\t port  for  all\t senders  in  this\n            session.  If\tthe IP protocol\tin use,\t specified\n            by  rsvpSenderProtocol, is 50 (ESP) or 51 (AH),\n            this\t represents  a\tvirtual\t destination  port\n            number.   A value of\tzero indicates that the\tIP\n            protocol in use  does  not  have  ports.   This\n            object may not be changed when the value of the\n            RowStatus object is 'active'.",
                  "x-yang-type": "integrated-services:Port",
                  "readOnly": true
                },
                "rsvpSessionSenders": {
                  "type": "integer",
                  "description": "The\tnumber of distinct senders currently known\n            to be part of this session.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "rsvpSessionReceivers": {
                  "type": "integer",
                  "description": "The\tnumber of reservations being requested\tof\n            this\tsystem for this\tsession.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "rsvpSessionRequests": {
                  "type": "integer",
                  "description": "The\tnumber of reservation requests this system\n            is sending upstream for this\tsession.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                }
              }
            },
            "readOnly": true
          },
          "rsvpSenderEntry": {
            "type": "array",
            "description": "Information\tdescribing the\tstate  information\n          displayed by\ta single sender's PATH message.",
            "items": {
              "type": "object",
              "properties": {
                "rsvpSessionNumber": {
                  "type": "string",
                  "description": "rsvpSessionNumber",
                  "x-yang-type": "leafref",
                  "readOnly": true
                },
                "rsvpSenderNumber": {
                  "type": "string",
                  "description": "The\tnumber of this sender.\tThis is\t for  SNMP\n            Indexing  purposes  only and\thas no relation\tto\n            any protocol\tvalue.",
                  "x-yang-type": "integrated-services:SessionNumber",
                  "readOnly": true
                },
                "rsvpSenderType": {
                  "type": "string",
                  "description": "The\ttype of\tsession\t(IP4, IP6, IP6\twith  flow\n            information,\tetc).",
                  "x-yang-type": "integrated-services:SessionType",
                  "readOnly": true
                },
                "rsvpSenderDestAddr": {
                  "type": "string",
                  "description": "The\tdestination address used by all\tsenders\tin\n            this\t session.   This object\tmay not\tbe changed\n            when\tthe  value  of\tthe  RowStatus\tobject\tis\n            'active'.",
                  "format": "binary",
                  "readOnly": true
                },
                "rsvpSenderAddr": {
                  "type": "string",
                  "description": "The\tsource address used by this sender in this\n            session.   This  object may not be changed when\n            the value of\tthe RowStatus object is\t'active'.",
                  "format": "binary",
                  "readOnly": true
                },
                "rsvpSenderDestAddrLength": {
                  "type": "integer",
                  "description": "The\tlength of the destination address in bits.\n            This\t is  the CIDR Prefix Length, which for IP4\n            hosts and multicast addresses is 32 bits.  This\n            object may not be changed when the value of the\n            RowStatus object is 'active'.",
                  "minimum": -2147483648,
                  "maximum": 2147483647,
                  "readOnly": true
                },
                "rsvpSenderAddrLength": {
                  "type": "integer",
                  "description": "The\tlength of the sender's\taddress\t in  bits.\n            This\t is  the CIDR Prefix Length, which for IP4\n            hosts and multicast addresses is 32 bits.  This\n            object may not be changed when the value of the\n            RowStatus object is 'active'.",
                  "minimum": -2147483648,
                  "maximum": 2147483647,
                  "readOnly": true
                },
                "rsvpSenderProtocol": {
                  "type": "string",
                  "description": "The\tIP Protocol used by  this  session.   This\n            object may not be changed when the value of the\n            RowStatus object is 'active'.",
                  "x-yang-type": "integrated-services:Protocol",
                  "readOnly": true
                },
                "rsvpSenderDestPort": {
                  "type": "string",
                  "description": "The\t UDP  or  TCP  port  number  used   as\t a\n            destination\t port  for  all\t senders  in  this\n            session.  If\tthe IP protocol\tin use,\t specified\n            by  rsvpSenderProtocol, is 50 (ESP) or 51 (AH),\n            this\t represents  a\tvirtual\t destination  port\n            number.   A value of\tzero indicates that the\tIP\n            protocol in use  does  not  have  ports.   This\n            object may not be changed when the value of the\n            RowStatus object is 'active'.",
                  "x-yang-type": "integrated-services:Port",
                  "readOnly": true
                },
                "rsvpSenderPort": {
                  "type": "string",
                  "description": "The\tUDP or TCP port\tnumber used  as\t a  source\n            port\t for  this sender in this session.  If the\n            IP\t protocol    in\t   use,\t   specified\tby\n            rsvpSenderProtocol is 50 (ESP) or 51\t(AH), this\n            represents a\tgeneralized port identifier (GPI).\n            A  value of zero indicates that the IP protocol\n            in use does not have\tports.\t This  object  may\n            not\tbe changed when\tthe value of the RowStatus\n            object is 'active'.",
                  "x-yang-type": "integrated-services:Port",
                  "readOnly": true
                },
                "rsvpSenderFlowId": {
                  "type": "integer",
                  "description": "The\tflow ID\tthat  this  sender  is\tusing,\tif\n            this\t is  an\tIPv6 session.",
                  "minimum": -2147483648,
                  "maximum": 2147483647,
                  "readOnly": true
                },
                "rsvpSenderHopAddr": {
                  "type": "string",
                  "description": "The\taddress\tused  by  the  previous\t RSVP  hop\n            (which may be the original sender).",
                  "format": "binary",
                  "readOnly": true
                },
                "rsvpSenderHopLih": {
                  "type": "integer",
                  "description": "The\t Logical  Interface  Handle  used  by  the\n            previous  RSVP  hop\t(which may be the original\n            sender).",
                  "minimum": -2147483648,
                  "maximum": 2147483647,
                  "readOnly": true
                },
                "rsvpSenderInterface": {
                  "type": "string",
                  "description": "The\tifIndex\tvalue of the  interface\t on  which\n            this\tPATH message was most recently received.",
                  "x-yang-type": "if-mib:InterfaceIndex",
                  "readOnly": true
                },
                "rsvpSenderTSpecRate": {
                  "type": "string",
                  "description": "The\tAverage\tBit  Rate  of  the  sender's  data\n            stream.    Within  a\t transmission  burst,  the\n            arrival   rate    may    be\t  as\tfast\tas\n            rsvpSenderTSpecPeakRate  (if\t supported  by the\n            service model); however, averaged across two\tor\n            more\t burst\tintervals,  the\t rate  should  not\n            exceed rsvpSenderTSpecRate.\n            \n            Note\tthat this is a prediction, often based\ton\n            the\tgeneral\t capability  of\ta type of codec\tor\n            particular encoding;\tthe measured average  rate\n            may be significantly\tlower.",
                  "x-yang-type": "integrated-services:BitRate",
                  "readOnly": true
                },
                "rsvpSenderTSpecPeakRate": {
                  "type": "string",
                  "description": "The\tPeak Bit Rate of the sender's data stream.\n            Traffic  arrival is not expected to exceed this\n            rate\tat any time, apart  from  the  effects\tof\n            jitter in the network.  If not specified in the\n            TSpec, this returns zero or noSuchValue.",
                  "x-yang-type": "integrated-services:BitRate",
                  "readOnly": true
                },
                "rsvpSenderTSpecBurst": {
                  "type": "string",
                  "description": "The\tsize of\tthe largest  burst  expected  from\n            the sender at a time.",
                  "x-yang-type": "integrated-services:BurstSize",
                  "readOnly": true
                },
                "rsvpSenderTSpecMinTU": {
                  "type": "string",
                  "description": "The\tminimum\tmessage\tsize for  this\tflow.  The\n            policing  algorithm will treat smaller messages\n            as though they are this size.",
                  "x-yang-type": "integrated-services:MessageSize",
                  "readOnly": true
                },
                "rsvpSenderTSpecMaxTU": {
                  "type": "string",
                  "description": "The\tmaximum\tmessage\tsize for  this\tflow.  The\n            admission  algorithm\t will  reject TSpecs whose\n            Maximum Transmission\tUnit, plus  the\t interface\n            headers, exceed the interface MTU.",
                  "x-yang-type": "integrated-services:MessageSize",
                  "readOnly": true
                },
                "rsvpSenderInterval": {
                  "type": "string",
                  "description": "The\t interval  between  refresh  messages\tas\n            advertised by the Previous Hop.",
                  "x-yang-type": "RSVP-MIB:RefreshInterval",
                  "readOnly": true
                },
                "rsvpSenderRSVPHop": {
                  "type": "boolean",
                  "description": "If TRUE, the node believes that  the  previous\n            IP  hop  is\tan  RSVP  hop.\tIf FALSE, the node\n            believes that the previous IP hop may not be\tan\n            RSVP\thop.",
                  "readOnly": true
                },
                "rsvpSenderLastChange": {
                  "type": "string",
                  "description": "The\ttime of\t the  last  change  in\tthis  PATH\n            message;  This  is either the first time it was\n            received or the time\tof the most recent  change\n            in parameters.",
                  "x-yang-type": "yang:timestamp",
                  "readOnly": true
                },
                "rsvpSenderPolicy": {
                  "type": "string",
                  "description": "The\tcontents of the\tpolicy\tobject,\t displayed\n            as an uninterpreted string of octets, including\n            the object header.  In the absence of  such\tan\n            object, this\tshould be of zero length.",
                  "format": "binary",
                  "readOnly": true
                },
                "rsvpSenderAdspecBreak": {
                  "type": "boolean",
                  "description": "The\tglobal break bit general  characterization\n            parameter  from  the\tADSPEC.\t If TRUE, at least\n            one non-IS hop was detected in  the\tpath.\tIf\n            FALSE, no non-IS hops were detected.",
                  "readOnly": true
                },
                "rsvpSenderAdspecHopCount": {
                  "type": "integer",
                  "description": "The\t  hop\tcount\tgeneral\t  characterization\n            parameter from the ADSPEC.  A return\tof zero\tor\n            noSuchValue\tindicates  one\tof  the\t following\n            conditions:\n            \n               the invalid bit was set\n               the parameter was\tnot present",
                  "minimum": -2147483648,
                  "maximum": 2147483647,
                  "readOnly": true
                },
                "rsvpSenderAdspecPathBw": {
                  "type": "string",
                  "description": "The\t  path\t  bandwidth    estimate\t   general\n            characterization  parameter from the\tADSPEC.\t A\n            return of zero or noSuchValue indicates one\tof\n            the following conditions:\n            \n               the invalid bit was set\n               the parameter was\tnot present",
                  "x-yang-type": "integrated-services:BitRate",
                  "readOnly": true
                },
                "rsvpSenderAdspecMinLatency": {
                  "type": "integer",
                  "description": "The\t   minimum    path     latency\t   general\n            characterization  parameter from the\tADSPEC.\t A\n            return of zero or noSuchValue indicates one\tof\n            the following conditions:\n            \n               the invalid bit was set\n               the parameter was\tnot present",
                  "minimum": -2147483648,
                  "maximum": 2147483647,
                  "readOnly": true
                },
                "rsvpSenderAdspecMtu": {
                  "type": "integer",
                  "description": "The\tcomposed Maximum Transmission Unit general\n            characterization  parameter from the\tADSPEC.\t A\n            return of zero or noSuchValue indicates one\tof\n            the following conditions:\n            \n               the invalid bit was set\n               the parameter was\tnot present",
                  "minimum": -2147483648,
                  "maximum": 2147483647,
                  "readOnly": true
                },
                "rsvpSenderAdspecGuaranteedSvc": {
                  "type": "boolean",
                  "description": "If TRUE,  the  ADSPEC  contains  a\tGuaranteed\n            Service  fragment.\tIf  FALSE, the ADSPEC does\n            not contain a Guaranteed Service fragment.",
                  "readOnly": true
                },
                "rsvpSenderAdspecGuaranteedBreak": {
                  "type": "boolean",
                  "description": "If TRUE, the Guaranteed Service  fragment  has\n            its\t'break'\t bit  set,  indicating that one\tor\n            more\tnodes along the\tpath do\t not  support  the\n            guaranteed\t  service.     If    FALSE,    and\n            rsvpSenderAdspecGuaranteedSvc  is   TRUE,   the\n            'break' bit is not set.\n            \n            If rsvpSenderAdspecGuaranteedSvc is FALSE, this\n            returns FALSE or noSuchValue.",
                  "readOnly": true
                },
                "rsvpSenderAdspecGuaranteedCtot": {
                  "type": "integer",
                  "description": "If rsvpSenderAdspecGuaranteedSvc is\tTRUE, this\n            is\tthe  end-to-end\t composed  value  for  the\n            guaranteed service 'C' parameter.  A\treturn\tof\n            zero\t  or  noSuchValue  indicates  one  of  the\n            following conditions:\n            \n               the invalid bit was set\n               the parameter was\tnot present\n            \n            If rsvpSenderAdspecGuaranteedSvc is FALSE, this\n            returns zero\tor noSuchValue.",
                  "minimum": -2147483648,
                  "maximum": 2147483647,
                  "readOnly": true
                },
                "rsvpSenderAdspecGuaranteedDtot": {
                  "type": "integer",
                  "description": "If rsvpSenderAdspecGuaranteedSvc is\tTRUE, this\n            is\tthe  end-to-end\t composed  value  for  the\n            guaranteed service 'D' parameter.  A\treturn\tof\n            zero\t  or  noSuchValue  indicates  one  of  the\n            following conditions:\n            \n               the invalid bit was set\n               the parameter was\tnot present\n            \n            If rsvpSenderAdspecGuaranteedSvc is FALSE, this\n            returns zero\tor noSuchValue.",
                  "minimum": -2147483648,
                  "maximum": 2147483647,
                  "readOnly": true
                },
                "rsvpSenderAdspecGuaranteedCsum": {
                  "type": "integer",
                  "description": "If rsvpSenderAdspecGuaranteedSvc is\tTRUE, this\n            is\tthe  composed  value  for  the\tguaranteed\n            service 'C' parameter since the last\t reshaping\n            point.    A\t return\t of  zero  or  noSuchValue\n            indicates one of the\tfollowing conditions:\n            \n               the invalid bit was set\n               the parameter was\tnot present\n            \n            If rsvpSenderAdspecGuaranteedSvc is FALSE, this\n            returns zero\tor noSuchValue.",
                  "minimum": -2147483648,
                  "maximum": 2147483647,
                  "readOnly": true
                },
                "rsvpSenderAdspecGuaranteedDsum": {
                  "type": "integer",
                  "description": "If rsvpSenderAdspecGuaranteedSvc is\tTRUE, this\n            is\tthe  composed  value  for  the\tguaranteed\n            service 'D' parameter since the last\t reshaping\n            point.    A\t return\t of  zero  or  noSuchValue\n            indicates one of the\tfollowing conditions:\n            \n               the invalid bit was set\n               the parameter was\tnot present\n            \n            If rsvpSenderAdspecGuaranteedSvc is FALSE, this\n            returns zero\tor noSuchValue.",
                  "minimum": -2147483648,
                  "maximum": 2147483647,
                  "readOnly": true
                },
                "rsvpSenderAdspecGuaranteedHopCount": {
                  "type": "integer",
                  "description": "If rsvpSenderAdspecGuaranteedSvc is\tTRUE, this\n            is  the  service-specific  override\tof the hop\n            count general characterization  parameter  from\n            the\tADSPEC.\t  A  return of zero or noSuchValue\n            indicates one of the\tfollowing conditions:\n            \n               the invalid bit was set\n               the parameter was\tnot present\n            \n            If rsvpSenderAdspecGuaranteedSvc is FALSE, this\n            returns zero\tor noSuchValue.",
                  "minimum": -2147483648,
                  "maximum": 2147483647,
                  "readOnly": true
                },
                "rsvpSenderAdspecGuaranteedPathBw": {
                  "type": "string",
                  "description": "If rsvpSenderAdspecGuaranteedSvc is\tTRUE, this\n            is  the  service-specific  override of the path\n            bandwidth  estimate\tgeneral\t  characterization\n            parameter from the ADSPEC.  A return\tof zero\tor\n            noSuchValue\tindicates  one\tof  the\t following\n            conditions:\n            \n               the invalid bit was set\n               the parameter was\tnot present\n            \n            If rsvpSenderAdspecGuaranteedSvc is FALSE, this\n            returns zero\tor noSuchValue.",
                  "x-yang-type": "integrated-services:BitRate",
                  "readOnly": true
                },
                "rsvpSenderAdspecGuaranteedMinLatency": {
                  "type": "integer",
                  "description": "If rsvpSenderAdspecGuaranteedSvc is\tTRUE, this\n            is the service-specific override of the minimum\n            path\tlatency\tgeneral\tcharacterization parameter\n            from\t  the\tADSPEC.\t   A  return  of  zero\tor\n            noSuchValue\tindicates  one\tof  the\t following\n            conditions:\n            \n               the invalid bit was set\n               the parameter was\tnot present\n            \n            If rsvpSenderAdspecGuaranteedSvc is FALSE, this\n            returns zero\tor noSuchValue.",
                  "minimum": -2147483648,
                  "maximum": 2147483647,
                  "readOnly": true
                },
                "rsvpSenderAdspecGuaranteedMtu": {
                  "type": "integer",
                  "description": "If rsvpSenderAdspecGuaranteedSvc is\tTRUE, this\n            is\tthe   service-specific\t override  of  the\n            composed  Maximum  Transmission  Unit   general\n            characterization  parameter from the\tADSPEC.\t A\n            return of zero or noSuchValue indicates one\tof\n            the following conditions:\n            \n               the invalid bit was set\n               the parameter was\tnot present\n            \n            If rsvpSenderAdspecGuaranteedSvc is FALSE, this\n            returns zero\tor noSuchValue.",
                  "minimum": -2147483648,
                  "maximum": 2147483647,
                  "readOnly": true
                },
                "rsvpSenderAdspecCtrlLoadSvc": {
                  "type": "boolean",
                  "description": "If TRUE, the ADSPEC\tcontains a Controlled Load\n            Service  fragment.\tIf  FALSE, the ADSPEC does\n            not\t contain   a   Controlled   Load   Service\n            fragment.",
                  "readOnly": true
                },
                "rsvpSenderAdspecCtrlLoadBreak": {
                  "type": "boolean",
                  "description": "If TRUE, the Controlled Load Service  fragment\n            has its 'break' bit set, indicating that one\tor\n            more\tnodes along the\tpath do\t not  support  the\n            controlled\tload   service.\t   If  FALSE,  and\n            rsvpSenderAdspecCtrlLoadSvc\t is   TRUE,    the\n            'break' bit is not set.\n            \n            If rsvpSenderAdspecCtrlLoadSvc is  FALSE,  this\n            returns FALSE or noSuchValue.",
                  "readOnly": true
                },
                "rsvpSenderAdspecCtrlLoadHopCount": {
                  "type": "integer",
                  "description": "If rsvpSenderAdspecCtrlLoadSvc is  TRUE,  this\n            is  the  service-specific  override\tof the hop\n            count general characterization  parameter  from\n            the\tADSPEC.\t  A  return of zero or noSuchValue\n            indicates one of the\tfollowing conditions:\n            \n               the invalid bit was set\n               the parameter was\tnot present\n            \n            If rsvpSenderAdspecCtrlLoadSvc is  FALSE,  this\n            returns zero\tor noSuchValue.",
                  "minimum": -2147483648,
                  "maximum": 2147483647,
                  "readOnly": true
                },
                "rsvpSenderAdspecCtrlLoadPathBw": {
                  "type": "string",
                  "description": "If rsvpSenderAdspecCtrlLoadSvc is  TRUE,  this\n            is  the  service-specific  override of the path\n            bandwidth  estimate\tgeneral\t  characterization\n            parameter from the ADSPEC.  A return\tof zero\tor\n            noSuchValue\tindicates  one\tof  the\t following\n            conditions:\n            \n               the invalid bit was set\n               the parameter was\tnot present\n            \n            If rsvpSenderAdspecCtrlLoadSvc is  FALSE,  this\n            returns zero\tor noSuchValue.",
                  "x-yang-type": "integrated-services:BitRate",
                  "readOnly": true
                },
                "rsvpSenderAdspecCtrlLoadMinLatency": {
                  "type": "integer",
                  "description": "If rsvpSenderAdspecCtrlLoadSvc is  TRUE,  this\n            is the service-specific override of the minimum\n            path\tlatency\tgeneral\tcharacterization parameter\n            from\t  the\tADSPEC.\t   A  return  of  zero\tor\n            noSuchValue\tindicates  one\tof  the\t following\n            conditions:\n            \n               the invalid bit was set\n               the parameter was\tnot present\n            \n            If rsvpSenderAdspecCtrlLoadSvc is  FALSE,  this\n            returns zero\tor noSuchValue.",
                  "minimum": -2147483648,
                  "maximum": 2147483647,
                  "readOnly": true
                },
                "rsvpSenderAdspecCtrlLoadMtu": {
                  "type": "integer",
                  "description": "If rsvpSenderAdspecCtrlLoadSvc is  TRUE,  this\n            is\tthe   service-specific\t override  of  the\n            composed  Maximum  Transmission  Unit   general\n            characterization  parameter from the\tADSPEC.\t A\n            return of zero or noSuchValue indicates one\tof\n            the following conditions:\n            \n               the invalid bit was set\n               the parameter was\tnot present\n            \n            If rsvpSenderAdspecCtrlLoadSvc is  FALSE,  this\n            returns zero\tor noSuchValue.",
                  "minimum": -2147483648,
                  "maximum": 2147483647,
                  "readOnly": true
                },
                "rsvpSenderStatus": {
                  "type": "string",
                  "description": "'active' for all active PATH  messages.   This\n            object  may\tbe  used  to  install  static PATH\n            information or delete PATH information.",
                  "x-yang-type": "snmpv2-tc:RowStatus",
                  "readOnly": true
                },
                "rsvpSenderTTL": {
                  "type": "integer",
                  "description": "The\tTTL value in the RSVP header that was last\n            received.",
                  "minimum": -2147483648,
                  "maximum": 2147483647,
                  "readOnly": true
                }
              }
            },
            "readOnly": true
          },
          "rsvpSenderOutInterfaceEntry": {
            "type": "array",
            "description": "List of outgoing interfaces\tthat a\tparticular\n          PATH\tmessage\thas.",
            "items": {
              "type": "object",
              "properties": {
                "rsvpSessionNumber": {
                  "type": "string",
                  "description": "rsvpSessionNumber",
                  "x-yang-type": "leafref",
                  "readOnly": true
                },
                "rsvpSenderNumber": {
                  "type": "string",
                  "description": "rsvpSenderNumber",
                  "x-yang-type": "leafref",
                  "readOnly": true
                },
                "ifIndex": {
                  "type": "string",
                  "description": "ifIndex",
                  "x-yang-type": "leafref",
                  "readOnly": true
                },
                "rsvpSenderOutInterfaceStatus": {
                  "type": "string",
                  "description": "'active' for all active PATH messages.",
                  "x-yang-type": "snmpv2-tc:RowStatus",
                  "readOnly": true
                }
              }
            },
            "readOnly": true
          },
          "rsvpResvEntry": {
            "type": "array",
            "description": "Information\tdescribing the\tstate  information\n          displayed  by  a single receiver's RESV message\n          concerning a\tsingle sender.",
            "items": {
              "type": "object",
              "properties": {
                "rsvpSessionNumber": {
                  "type": "string",
                  "description": "rsvpSessionNumber",
                  "x-yang-type": "leafref",
                  "readOnly": true
                },
                "rsvpResvNumber": {
                  "type": "string",
                  "description": "The\tnumber of this reservation request.   This\n            is  for  SNMP Indexing purposes only\tand has\tno\n            relation to any protocol value.",
                  "x-yang-type": "integrated-services:SessionNumber",
                  "readOnly": true
                },
                "rsvpResvType": {
                  "type": "string",
                  "description": "The\ttype of\tsession\t(IP4, IP6, IP6\twith  flow\n            information,\tetc).",
                  "x-yang-type": "integrated-services:SessionType",
                  "readOnly": true
                },
                "rsvpResvDestAddr": {
                  "type": "string",
                  "description": "The\tdestination address used by all\tsenders\tin\n            this\t session.   This object\tmay not\tbe changed\n            when\tthe  value  of\tthe  RowStatus\tobject\tis\n            'active'.",
                  "format": "binary",
                  "readOnly": true
                },
                "rsvpResvSenderAddr": {
                  "type": "string",
                  "description": "The\tsource address of the sender  selected\tby\n            this\t reservation.\tThe  value  of\tall zeroes\n            indicates 'all senders'.  This object  may  not\n            be  changed\twhen  the  value  of the RowStatus\n            object is 'active'.",
                  "format": "binary",
                  "readOnly": true
                },
                "rsvpResvDestAddrLength": {
                  "type": "integer",
                  "description": "The\tlength of the destination address in bits.\n            This\t is  the CIDR Prefix Length, which for IP4\n            hosts and multicast addresses is 32 bits.  This\n            object may not be changed when the value of the\n            RowStatus object is 'active'.",
                  "minimum": -2147483648,
                  "maximum": 2147483647,
                  "readOnly": true
                },
                "rsvpResvSenderAddrLength": {
                  "type": "integer",
                  "description": "The\tlength of the sender's\taddress\t in  bits.\n            This\t is  the CIDR Prefix Length, which for IP4\n            hosts and multicast addresses is 32 bits.  This\n            object may not be changed when the value of the\n            RowStatus object is 'active'.",
                  "minimum": -2147483648,
                  "maximum": 2147483647,
                  "readOnly": true
                },
                "rsvpResvProtocol": {
                  "type": "string",
                  "description": "The\tIP Protocol used by  this  session.   This\n            object may not be changed when the value of the\n            RowStatus object is 'active'.",
                  "x-yang-type": "integrated-services:Protocol",
                  "readOnly": true
                },
                "rsvpResvDestPort": {
                  "type": "string",
                  "description": "The\t UDP  or  TCP  port  number  used   as\t a\n            destination\t port  for  all\t senders  in  this\n            session.  If\tthe IP protocol\tin use,\t specified\n            by  rsvpResvProtocol,  is  50 (ESP) or 51 (AH),\n            this\t represents  a\tvirtual\t destination  port\n            number.   A value of\tzero indicates that the\tIP\n            protocol in use  does  not  have  ports.   This\n            object may not be changed when the value of the\n            RowStatus object is 'active'.",
                  "x-yang-type": "integrated-services:Port",
                  "readOnly": true
                },
                "rsvpResvPort": {
                  "type": "string",
                  "description": "The\tUDP or TCP port\tnumber used  as\t a  source\n            port\t for  this sender in this session.  If the\n            IP\t protocol    in\t   use,\t   specified\tby\n            rsvpResvProtocol  is\t 50 (ESP) or 51\t(AH), this\n            represents a\tgeneralized port identifier (GPI).\n            A  value of zero indicates that the IP protocol\n            in use does not have\tports.\t This  object  may\n            not\tbe changed when\tthe value of the RowStatus\n            object is 'active'.",
                  "x-yang-type": "integrated-services:Port",
                  "readOnly": true
                },
                "rsvpResvHopAddr": {
                  "type": "string",
                  "description": "The\taddress\tused by\tthe next RSVP  hop  (which\n            may be the ultimate receiver).",
                  "format": "binary",
                  "readOnly": true
                },
                "rsvpResvHopLih": {
                  "type": "integer",
                  "description": "The\tLogical\tInterface Handle received from the\n            previous  RSVP  hop\t(which may be the ultimate\n            receiver).",
                  "minimum": -2147483648,
                  "maximum": 2147483647,
                  "readOnly": true
                },
                "rsvpResvInterface": {
                  "type": "string",
                  "description": "The\tifIndex\tvalue of the  interface\t on  which\n            this\tRESV message was most recently received.",
                  "x-yang-type": "if-mib:InterfaceIndex",
                  "readOnly": true
                },
                "rsvpResvService": {
                  "type": "string",
                  "description": "The\tQoS Service  classification  requested\tby\n            the receiver.",
                  "x-yang-type": "integrated-services:QosService",
                  "readOnly": true
                },
                "rsvpResvTSpecRate": {
                  "type": "string",
                  "description": "The\tAverage\tBit  Rate  of  the  sender's  data\n            stream.    Within  a\t transmission  burst,  the\n            arrival   rate    may    be\t  as\tfast\tas\n            rsvpResvTSpecPeakRate   (if\tsupported  by  the\n            service model); however, averaged across two\tor\n            more\t burst\tintervals,  the\t rate  should  not\n            exceed rsvpResvTSpecRate.\n            \n            Note\tthat this is a prediction, often based\ton\n            the\tgeneral\t capability  of\ta type of codec\tor\n            particular encoding;\tthe measured average  rate\n            may be significantly\tlower.",
                  "x-yang-type": "integrated-services:BitRate",
                  "readOnly": true
                },
                "rsvpResvTSpecPeakRate": {
                  "type": "string",
                  "description": "The\tPeak Bit Rate of the sender's data stream.\n            Traffic  arrival is not expected to exceed this\n            rate\tat any time, apart  from  the  effects\tof\n            jitter in the network.  If not specified in the\n            TSpec, this returns zero or noSuchValue.",
                  "x-yang-type": "integrated-services:BitRate",
                  "readOnly": true
                },
                "rsvpResvTSpecBurst": {
                  "type": "string",
                  "description": "The\tsize of\tthe largest  burst  expected  from\n            the sender at a time.\n            \n            If this is less than\t the  sender's\tadvertised\n            burst  size,\tthe receiver is\tasking the network\n            to provide flow pacing  beyond  what\t would\tbe\n            provided   under   normal  circumstances.  Such\n            pacing is at\tthe network's option.",
                  "x-yang-type": "integrated-services:BurstSize",
                  "readOnly": true
                },
                "rsvpResvTSpecMinTU": {
                  "type": "string",
                  "description": "The\tminimum\tmessage\tsize for  this\tflow.  The\n            policing  algorithm will treat smaller messages\n            as though they are this size.",
                  "x-yang-type": "integrated-services:MessageSize",
                  "readOnly": true
                },
                "rsvpResvTSpecMaxTU": {
                  "type": "string",
                  "description": "The\tmaximum\tmessage\tsize for  this\tflow.  The\n            admission  algorithm\t will  reject TSpecs whose\n            Maximum Transmission\tUnit, plus  the\t interface\n            headers, exceed the interface MTU.",
                  "x-yang-type": "integrated-services:MessageSize",
                  "readOnly": true
                },
                "rsvpResvRSpecRate": {
                  "type": "string",
                  "description": "If the requested  service  is  Guaranteed,\tas\n            specified   by  rsvpResvService,  this  is  the\n            clearing  rate   that   is\tbeing\trequested.\n            Otherwise,  it is zero, or the agent\tmay return\n            noSuchValue.",
                  "x-yang-type": "integrated-services:BitRate",
                  "readOnly": true
                },
                "rsvpResvRSpecSlack": {
                  "type": "integer",
                  "description": "If the requested  service  is  Guaranteed,\tas\n            specified by\trsvpResvService, this is the delay\n            slack.  Otherwise, it is zero, or the agent may\n            return noSuchValue.",
                  "minimum": -2147483648,
                  "maximum": 2147483647,
                  "readOnly": true
                },
                "rsvpResvInterval": {
                  "type": "string",
                  "description": "The\t interval  between  refresh  messages\tas\n            advertised by the Next Hop.",
                  "x-yang-type": "RSVP-MIB:RefreshInterval",
                  "readOnly": true
                },
                "rsvpResvScope": {
                  "type": "string",
                  "description": "The\tcontents of the\tscope object, displayed\tas\n            an  uninterpreted  string  of octets, including\n            the object header.  In the absence of  such\tan\n            object, this\tshould be of zero length.\n            \n            If the length  is  non-zero,\t this  contains\t a\n            series of IP4 or IP6\taddresses.",
                  "format": "binary",
                  "readOnly": true
                },
                "rsvpResvShared": {
                  "type": "boolean",
                  "description": "If TRUE, a reservation shared among\tsenders\tis\n            requested.  If FALSE, a reservation specific\tto\n            this\tsender is requested.",
                  "readOnly": true
                },
                "rsvpResvExplicit": {
                  "type": "boolean",
                  "description": "If TRUE, individual\tsenders\tare  listed  using\n            Filter  Specifications.   If\tFALSE, all senders\n            are implicitly selected.  The Scope Object will\n            contain  a list of senders that need\tto receive\n            this\treservation request  for  the  purpose\tof\n            routing the RESV message.",
                  "readOnly": true
                },
                "rsvpResvRSVPHop": {
                  "type": "boolean",
                  "description": "If TRUE, the node believes that  the  previous\n            IP  hop  is\tan  RSVP  hop.\tIf FALSE, the node\n            believes that the previous IP hop may not be\tan\n            RSVP\thop.",
                  "readOnly": true
                },
                "rsvpResvLastChange": {
                  "type": "string",
                  "description": "The\t time  of  the\t last\tchange\t in   this\n            reservation\trequest;  This is either the first\n            time\tit was received\tor the time  of\t the  most\n            recent change in parameters.",
                  "x-yang-type": "yang:timestamp",
                  "readOnly": true
                },
                "rsvpResvPolicy": {
                  "type": "string",
                  "description": "The\tcontents of the\tpolicy\tobject,\t displayed\n            as an uninterpreted string of octets, including\n            the object header.  In the absence of  such\tan\n            object, this\tshould be of zero length.",
                  "format": "binary",
                  "readOnly": true
                },
                "rsvpResvStatus": {
                  "type": "string",
                  "description": "'active' for all active RESV  messages.   This\n            object  may\tbe  used  to  install  static RESV\n            information or delete RESV information.",
                  "x-yang-type": "snmpv2-tc:RowStatus",
                  "readOnly": true
                },
                "rsvpResvTTL": {
                  "type": "integer",
                  "description": "The\tTTL value in the RSVP header that was last\n            received.",
                  "minimum": -2147483648,
                  "maximum": 2147483647,
                  "readOnly": true
                },
                "rsvpResvFlowId": {
                  "type": "integer",
                  "description": "The\tflow ID\tthat this receiver  is\tusing,\tif\n            this\t is  an\tIPv6 session.",
                  "minimum": -2147483648,
                  "maximum": 2147483647,
                  "readOnly": true
                }
              }
            },
            "readOnly": true
          },
          "rsvpResvFwdEntry": {
            "type": "array",
            "description": "Information\tdescribing the\tstate  information\n          displayed   upstream\t  in   an   RESV   message\n          concerning a\tsingle sender.",
            "items": {
              "type": "object",
              "properties": {
                "rsvpSessionNumber": {
                  "type": "string",
                  "description": "rsvpSessionNumber",
                  "x-yang-type": "leafref",
                  "readOnly": true
                },
                "rsvpResvFwdNumber": {
                  "type": "string",
                  "description": "The\tnumber of this reservation request.   This\n            is  for  SNMP Indexing purposes only\tand has\tno\n            relation to any protocol value.",
                  "x-yang-type": "integrated-services:SessionNumber",
                  "readOnly": true
                },
                "rsvpResvFwdType": {
                  "type": "string",
                  "description": "The\ttype of\tsession\t(IP4, IP6, IP6\twith  flow\n            information,\tetc).",
                  "x-yang-type": "integrated-services:SessionType",
                  "readOnly": true
                },
                "rsvpResvFwdDestAddr": {
                  "type": "string",
                  "description": "The\tdestination address used by all\tsenders\tin\n            this\t session.   This object\tmay not\tbe changed\n            when\tthe  value  of\tthe  RowStatus\tobject\tis\n            'active'.",
                  "format": "binary",
                  "readOnly": true
                },
                "rsvpResvFwdSenderAddr": {
                  "type": "string",
                  "description": "The\tsource address of the sender  selected\tby\n            this\t reservation.\tThe  value  of\tall zeroes\n            indicates 'all senders'.  This object  may  not\n            be  changed\twhen  the  value  of the RowStatus\n            object is 'active'.",
                  "format": "binary",
                  "readOnly": true
                },
                "rsvpResvFwdDestAddrLength": {
                  "type": "integer",
                  "description": "The\tlength of the destination address in bits.\n            This\t is  the CIDR Prefix Length, which for IP4\n            hosts and multicast addresses is 32 bits.  This\n            object may not be changed when the value of the\n            RowStatus object is 'active'.",
                  "minimum": -2147483648,
                  "maximum": 2147483647,
                  "readOnly": true
                },
                "rsvpResvFwdSenderAddrLength": {
                  "type": "integer",
                  "description": "The\tlength of the sender's\taddress\t in  bits.\n            This\t is  the CIDR Prefix Length, which for IP4\n            hosts and multicast addresses is 32 bits.  This\n            object may not be changed when the value of the\n            RowStatus object is 'active'.",
                  "minimum": -2147483648,
                  "maximum": 2147483647,
                  "readOnly": true
                },
                "rsvpResvFwdProtocol": {
                  "type": "string",
                  "description": "The\tIP Protocol used by a session. for  secure\n            sessions,  this  indicates  IP  Security.  This\n            object may not be changed when the value of the\n            RowStatus object is 'active'.",
                  "x-yang-type": "integrated-services:Protocol",
                  "readOnly": true
                },
                "rsvpResvFwdDestPort": {
                  "type": "string",
                  "description": "The\t UDP  or  TCP  port  number  used   as\t a\n            destination\t port  for  all\t senders  in  this\n            session.  If\tthe IP protocol\tin use,\t specified\n            by rsvpResvFwdProtocol, is 50 (ESP) or 51 (AH),\n            this\t represents  a\tvirtual\t destination  port\n            number.   A value of\tzero indicates that the\tIP\n            protocol in use  does  not  have  ports.   This\n            object may not be changed when the value of the\n            RowStatus object is 'active'.",
                  "x-yang-type": "integrated-services:Port",
                  "readOnly": true
                },
                "rsvpResvFwdPort": {
                  "type": "string",
                  "description": "The\tUDP or TCP port\tnumber used  as\t a  source\n            port\t for  this sender in this session.  If the\n            IP\t protocol    in\t   use,\t   specified\tby\n            rsvpResvFwdProtocol\tis  50\t(ESP)  or 51 (AH),\n            this\trepresents a generalized  port\tidentifier\n            (GPI).   A  value of\tzero indicates that the\tIP\n            protocol in use  does  not  have  ports.   This\n            object may not be changed when the value of the\n            RowStatus object is 'active'.",
                  "x-yang-type": "integrated-services:Port",
                  "readOnly": true
                },
                "rsvpResvFwdHopAddr": {
                  "type": "string",
                  "description": "The\taddress\tof the (previous) RSVP\tthat  will\n            receive this\tmessage.",
                  "format": "binary",
                  "readOnly": true
                },
                "rsvpResvFwdHopLih": {
                  "type": "integer",
                  "description": "The\t Logical  Interface  Handle  sent  to  the\n            (previous)\tRSVP   that   will   receive  this\n            message.",
                  "minimum": -2147483648,
                  "maximum": 2147483647,
                  "readOnly": true
                },
                "rsvpResvFwdInterface": {
                  "type": "string",
                  "description": "The\tifIndex\tvalue of the  interface\t on  which\n            this\tRESV message was most recently sent.",
                  "x-yang-type": "if-mib:InterfaceIndex",
                  "readOnly": true
                },
                "rsvpResvFwdService": {
                  "type": "string",
                  "description": "The\tQoS Service classification requested.",
                  "x-yang-type": "integrated-services:QosService",
                  "readOnly": true
                },
                "rsvpResvFwdTSpecRate": {
                  "type": "string",
                  "description": "The\tAverage\tBit  Rate  of  the  sender's  data\n            stream.    Within  a\t transmission  burst,  the\n            arrival   rate    may    be\t  as\tfast\tas\n            rsvpResvFwdTSpecPeakRate  (if  supported by the\n            service model); however, averaged across two\tor\n            more\t burst\tintervals,  the\t rate  should  not\n            exceed rsvpResvFwdTSpecRate.\n            \n            Note\tthat this is a prediction, often based\ton\n            the\tgeneral\t capability  of\ta type of codec\tor\n            particular encoding;\tthe measured average  rate\n            may be significantly\tlower.",
                  "x-yang-type": "integrated-services:BitRate",
                  "readOnly": true
                },
                "rsvpResvFwdTSpecPeakRate": {
                  "type": "string",
                  "description": "The\tPeak Bit Rate of the sender's data  stream\n            Traffic  arrival is not expected to exceed this\n            rate\tat any time, apart  from  the  effects\tof\n            jitter in the network.  If not specified in the\n            TSpec, this returns zero or noSuchValue.",
                  "x-yang-type": "integrated-services:BitRate",
                  "readOnly": true
                },
                "rsvpResvFwdTSpecBurst": {
                  "type": "string",
                  "description": "The\tsize of\tthe largest  burst  expected  from\n            the sender at a time.\n            \n            If this is less than\t the  sender's\tadvertised\n            burst  size,\tthe receiver is\tasking the network\n            to provide flow pacing  beyond  what\t would\tbe\n            provided   under   normal  circumstances.  Such\n            pacing is at\tthe network's option.",
                  "x-yang-type": "integrated-services:BurstSize",
                  "readOnly": true
                },
                "rsvpResvFwdTSpecMinTU": {
                  "type": "string",
                  "description": "The\tminimum\tmessage\tsize for  this\tflow.  The\n            policing  algorithm will treat smaller messages\n            as though they are this size.",
                  "x-yang-type": "integrated-services:MessageSize",
                  "readOnly": true
                },
                "rsvpResvFwdTSpecMaxTU": {
                  "type": "string",
                  "description": "The\tmaximum\tmessage\tsize for  this\tflow.  The\n            admission  algorithm\t will  reject TSpecs whose\n            Maximum Transmission\tUnit, plus  the\t interface\n            headers, exceed the interface MTU.",
                  "x-yang-type": "integrated-services:MessageSize",
                  "readOnly": true
                },
                "rsvpResvFwdRSpecRate": {
                  "type": "string",
                  "description": "If the requested  service  is  Guaranteed,\tas\n            specified   by  rsvpResvService,  this  is  the\n            clearing  rate   that   is\tbeing\trequested.\n            Otherwise,  it is zero, or the agent\tmay return\n            noSuchValue.",
                  "x-yang-type": "integrated-services:BitRate",
                  "readOnly": true
                },
                "rsvpResvFwdRSpecSlack": {
                  "type": "integer",
                  "description": "If the requested  service  is  Guaranteed,\tas\n            specified by\trsvpResvService, this is the delay\n            slack.  Otherwise, it is zero, or the agent may\n            return noSuchValue.",
                  "minimum": -2147483648,
                  "maximum": 2147483647,
                  "readOnly": true
                },
                "rsvpResvFwdInterval": {
                  "type": "string",
                  "description": "The\t  interval   between   refresh\t  messages\n            advertised to the Previous Hop.",
                  "x-yang-type": "RSVP-MIB:RefreshInterval",
                  "readOnly": true
                },
                "rsvpResvFwdScope": {
                  "type": "string",
                  "description": "The\tcontents of the\tscope object, displayed\tas\n            an  uninterpreted  string  of octets, including\n            the object header.  In the absence of  such\tan\n            object, this\tshould be of zero length.",
                  "format": "binary",
                  "readOnly": true
                },
                "rsvpResvFwdShared": {
                  "type": "boolean",
                  "description": "If TRUE, a reservation shared among\tsenders\tis\n            requested.  If FALSE, a reservation specific\tto\n            this\tsender is requested.",
                  "readOnly": true
                },
                "rsvpResvFwdExplicit": {
                  "type": "boolean",
                  "description": "If TRUE, individual\tsenders\tare  listed  using\n            Filter  Specifications.   If\tFALSE, all senders\n            are implicitly selected.  The Scope Object will\n            contain  a list of senders that need\tto receive\n            this\treservation request  for  the  purpose\tof\n            routing the RESV message.",
                  "readOnly": true
                },
                "rsvpResvFwdRSVPHop": {
                  "type": "boolean",
                  "description": "If TRUE, the node believes that  the  next\tIP\n            hop\tis  an\tRSVP  hop.   If\t FALSE,\t the  node\n            believes that the next IP hop  may  not  be\tan\n            RSVP\thop.",
                  "readOnly": true
                },
                "rsvpResvFwdLastChange": {
                  "type": "string",
                  "description": "The\ttime of\tthe last change\tin  this  request;\n            This\t is  either  the first time it was sent\tor\n            the\ttime  of  the  most   recent   change\tin\n            parameters.",
                  "x-yang-type": "yang:timestamp",
                  "readOnly": true
                },
                "rsvpResvFwdPolicy": {
                  "type": "string",
                  "description": "The\tcontents of the\tpolicy\tobject,\t displayed\n            as an uninterpreted string of octets, including\n            the object header.  In the absence of  such\tan\n            object, this\tshould be of zero length.",
                  "format": "binary",
                  "readOnly": true
                },
                "rsvpResvFwdStatus": {
                  "type": "string",
                  "description": "'active' for all active RESV  messages.   This\n            object may be used to delete\tRESV information.",
                  "x-yang-type": "snmpv2-tc:RowStatus",
                  "readOnly": true
                },
                "rsvpResvFwdTTL": {
                  "type": "integer",
                  "description": "The\tTTL value in the RSVP header that was last\n            received.",
                  "minimum": -2147483648,
                  "maximum": 2147483647,
                  "readOnly": true
                },
                "rsvpResvFwdFlowId": {
                  "type": "integer",
                  "description": "The\tflow ID\tthat this receiver  is\tusing,\tif\n            this\t is  an\tIPv6 session.",
                  "minimum": -2147483648,
                  "maximum": 2147483647,
                  "readOnly": true
                }
              }
            },
            "readOnly": true
          },
          "rsvpIfEntry": {
            "type": "array",
            "description": "The\tRSVP-specific attributes of  the  a  given\n          interface.",
            "items": {
              "type": "object",
              "properties": {
                "ifIndex": {
                  "type": "string",
                  "description": "ifIndex",
                  "x-yang-type": "leafref",
                  "readOnly": true
                },
                "rsvpIfUdpNbrs": {
                  "type": "integer",
                  "description": "The\tnumber of neighbors perceived to be  using\n            only\tthe RSVP UDP Encapsulation.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "rsvpIfIpNbrs": {
                  "type": "integer",
                  "description": "The\tnumber of neighbors perceived to be  using\n            only\tthe RSVP IP Encapsulation.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "rsvpIfNbrs": {
                  "type": "integer",
                  "description": "The\tnumber of neighbors  currently\tperceived;\n            this\t will  exceed rsvpIfIpNbrs + rsvpIfUdpNbrs\n            by  the  number   of\t  neighbors   using   both\n            encapsulations.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "rsvpIfRefreshBlockadeMultiple": {
                  "type": "integer",
                  "description": "The\tvalue of the RSVP value\t'Kb', Which is the\n            minimum   number   of  refresh  intervals  that\n            blockade state will last once entered.",
                  "minimum": -2147483648,
                  "maximum": 2147483647,
                  "readOnly": true
                },
                "rsvpIfRefreshMultiple": {
                  "type": "integer",
                  "description": "The\tvalue of the RSVP value\t'K', which is  the\n            number  of  refresh intervals which must elapse\n            (minimum) before a PATH or RESV  message  which\n            is not being\trefreshed will be aged out.",
                  "minimum": -2147483648,
                  "maximum": 2147483647,
                  "readOnly": true
                },
                "rsvpIfTTL": {
                  "type": "integer",
                  "description": "The\tvalue of SEND_TTL used on  this\t interface\n            for\tmessages  this node originates.\t If set\tto\n            zero, the node determines  the  TTL\tvia  other\n            means.",
                  "minimum": -2147483648,
                  "maximum": 2147483647,
                  "readOnly": true
                },
                "rsvpIfRefreshInterval": {
                  "type": "string",
                  "description": "The\tvalue of the RSVP value\t'R', which is  the\n            minimum period between refresh transmissions\tof\n            a given PATH\tor RESV\tmessage\ton an interface.",
                  "x-yang-type": "snmpv2-tc:TimeInterval",
                  "readOnly": true
                },
                "rsvpIfRouteDelay": {
                  "type": "string",
                  "description": "The\tapproximate period from\tthe time  a  route\n            is  changed\tto  the\t time  a resulting message\n            appears on the interface.",
                  "x-yang-type": "snmpv2-tc:TimeInterval",
                  "readOnly": true
                },
                "rsvpIfEnabled": {
                  "type": "boolean",
                  "description": "If TRUE, RSVP is enabled  on  this\tInterface.\n            If\tFALSE,\t RSVP\tis  not\t enabled  on  this\n            interface.",
                  "readOnly": true
                },
                "rsvpIfUdpRequired": {
                  "type": "boolean",
                  "description": "If TRUE, manual configuration forces  the  use\n            of  UDP  encapsulation  on  the  interface.\tIf\n            FALSE,  UDP\tencapsulation  is  only\t used\tif\n            rsvpIfUdpNbrs is not\tzero.",
                  "readOnly": true
                },
                "rsvpIfStatus": {
                  "type": "string",
                  "description": "'active' on\tinterfaces that\tare configured for\n            RSVP.",
                  "x-yang-type": "snmpv2-tc:RowStatus",
                  "readOnly": true
                }
              }
            },
            "readOnly": true
          },
          "rsvpNbrEntry": {
            "type": "array",
            "description": "Information\t  describing   a    single    RSVP\n          Neighbor.",
            "items": {
              "type": "object",
              "properties": {
                "ifIndex": {
                  "type": "string",
                  "description": "ifIndex",
                  "x-yang-type": "leafref",
                  "readOnly": true
                },
                "rsvpNbrAddress": {
                  "type": "string",
                  "description": "The\tIP4 or IP6 Address used\tby this\t neighbor.\n            This\t object\t may not be changed when the value\n            of the RowStatus object is 'active'.",
                  "format": "binary",
                  "readOnly": true
                },
                "rsvpNbrProtocol": {
                  "type": "string",
                  "description": "The\t  encapsulation\t  being\t  used\t by   this\n            neighbor.",
                  "x-yang-type": "RSVP-MIB:RsvpEncapsulation",
                  "readOnly": true
                },
                "rsvpNbrStatus": {
                  "type": "string",
                  "description": "'active' for all neighbors.\t This  object  may\n            be\tused   to  configure  neighbors.   In  the\n            presence   of   configured\t neighbors,    the\n            implementation  may\t(but  is  not required to)\n            limit the  set  of  valid  neighbors\t to  those\n            configured.",
                  "x-yang-type": "snmpv2-tc:RowStatus",
                  "readOnly": true
                }
              }
            },
            "readOnly": true
          },
          "rsvpGenObjects": {
            "type": "object",
            "description": "This object\tkeeps a\tcount of the number of bad\n          RSVP\tpackets\treceived.",
            "properties": {
              "rsvpBadPackets": {
                "type": "integer",
                "description": "This object\tkeeps a\tcount of the number of bad\n          RSVP\tpackets\treceived.",
                "minimum": 0,
                "maximum": 4294967295,
                "readOnly": true
              },
              "rsvpSenderNewIndex": {
                "type": "string",
                "description": "This  object  is  used  to\tassign\tvalues\tto\n          rsvpSenderNumber   as   described  in  'Textual\n          Conventions for SNMPv2'.  The  network  manager\n          reads  the  object,\tand  then writes the value\n          back\tin the SET that\tcreates\ta new instance\tof\n          rsvpSenderEntry.   If  the  SET  fails with the\n          code\t'inconsistentValue', then the process must\n          be  repeated;  If  the  SET\tsucceeds, then the\n          object is incremented, and the new instance\tis\n          created according to\tthe manager's directions.",
                "x-yang-type": "snmpv2-tc:TestAndIncr",
                "readOnly": true
              },
              "rsvpResvNewIndex": {
                "type": "string",
                "description": "This  object  is  used  to\tassign\tvalues\tto\n          rsvpResvNumber   as\t described   in\t  'Textual\n          Conventions for SNMPv2'.  The  network  manager\n          reads  the  object,\tand  then writes the value\n          back\tin the SET that\tcreates\ta new instance\tof\n          rsvpResvEntry.   If the SET fails with the code\n          'inconsistentValue',\tthen the process  must\tbe\n          repeated;  If the SET succeeds, then\tthe object\n          is incremented, and the new instance\tis created\n          according to\tthe manager's directions.",
                "x-yang-type": "snmpv2-tc:TestAndIncr",
                "readOnly": true
              },
              "rsvpResvFwdNewIndex": {
                "type": "string",
                "description": "This  object  is  used  to\tassign\tvalues\tto\n          rsvpResvFwdNumber   as  described  in  'Textual\n          Conventions for SNMPv2'.  The  network  manager\n          reads  the  object,\tand  then writes the value\n          back\tin the SET that\tcreates\ta new instance\tof\n          rsvpResvFwdEntry.   If  the\tSET fails with the\n          code\t'inconsistentValue', then the process must\n          be  repeated;  If  the  SET\tsucceeds, then the\n          object is incremented, and the new instance\tis\n          created according to\tthe manager's directions.",
                "x-yang-type": "snmpv2-tc:TestAndIncr",
                "readOnly": true
              },
              "rsvpSessionNewIndex": {
                "type": "string",
                "description": "This  object  is  used  to\tassign\tvalues\tto\n          rsvpSessionNumber   as  described  in  'Textual\n          Conventions for SNMPv2'.  The  network  manager\n          reads  the  object,\tand  then writes the value\n          back\tin the SET that\tcreates\ta new instance\tof\n          rsvpSessionEntry.   If  the\tSET fails with the\n          code\t'inconsistentValue', then the process must\n          be  repeated;  If  the  SET\tsucceeds, then the\n          object is incremented, and the new instance\tis\n          created according to\tthe manager's directions.",
                "x-yang-type": "snmpv2-tc:TestAndIncr",
                "readOnly": true
              }
            },
            "readOnly": true
          },
          "rsvpSessionTable": {
            "type": "object",
            "description": "A table  of\t all  sessions\tseen  by  a  given\n        system.",
            "properties": {
              "rsvpSessionEntry": {
                "type": "array",
                "description": "A single session seen by a given system.",
                "items": {
                  "type": "object",
                  "properties": {
                    "rsvpSessionNumber": {
                      "type": "string",
                      "description": "The\tnumber of this session.\t This is for  SNMP\n            Indexing  purposes  only and\thas no relation\tto\n            any protocol\tvalue.",
                      "x-yang-type": "integrated-services:SessionNumber",
                      "readOnly": true
                    },
                    "rsvpSessionType": {
                      "type": "string",
                      "description": "The\ttype of\tsession\t(IP4, IP6, IP6\twith  flow\n            information,\tetc).",
                      "x-yang-type": "integrated-services:SessionType",
                      "readOnly": true
                    },
                    "rsvpSessionDestAddr": {
                      "type": "string",
                      "description": "The\tdestination address used by all\tsenders\tin\n            this\t session.   This object\tmay not\tbe changed\n            when\tthe  value  of\tthe  RowStatus\tobject\tis\n            'active'.",
                      "format": "binary",
                      "readOnly": true
                    },
                    "rsvpSessionDestAddrLength": {
                      "type": "integer",
                      "description": "The\tCIDR prefix length of the session address,\n            which   is\t32  for\t IP4  host  and\t multicast\n            addresses, and 128  for  IP6\t addresses.   This\n            object may not be changed when the value of the\n            RowStatus object is 'active'.",
                      "minimum": -2147483648,
                      "maximum": 2147483647,
                      "readOnly": true
                    },
                    "rsvpSessionProtocol": {
                      "type": "string",
                      "description": "The\tIP Protocol used by  this  session.   This\n            object may not be changed when the value of the\n            RowStatus object is 'active'.",
                      "x-yang-type": "integrated-services:Protocol",
                      "readOnly": true
                    },
                    "rsvpSessionPort": {
                      "type": "string",
                      "description": "The\t UDP  or  TCP  port  number  used   as\t a\n            destination\t port  for  all\t senders  in  this\n            session.  If\tthe IP protocol\tin use,\t specified\n            by  rsvpSenderProtocol, is 50 (ESP) or 51 (AH),\n            this\t represents  a\tvirtual\t destination  port\n            number.   A value of\tzero indicates that the\tIP\n            protocol in use  does  not  have  ports.   This\n            object may not be changed when the value of the\n            RowStatus object is 'active'.",
                      "x-yang-type": "integrated-services:Port",
                      "readOnly": true
                    },
                    "rsvpSessionSenders": {
                      "type": "integer",
                      "description": "The\tnumber of distinct senders currently known\n            to be part of this session.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "rsvpSessionReceivers": {
                      "type": "integer",
                      "description": "The\tnumber of reservations being requested\tof\n            this\tsystem for this\tsession.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "rsvpSessionRequests": {
                      "type": "integer",
                      "description": "The\tnumber of reservation requests this system\n            is sending upstream for this\tsession.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    }
                  }
                },
                "readOnly": true
              }
            },
            "readOnly": true
          },
          "rsvpSenderTable": {
            "type": "object",
            "description": "Information\tdescribing the\tstate  information\n        displayed by\tsenders\tin PATH\tmessages.",
            "properties": {
              "rsvpSenderEntry": {
                "type": "array",
                "description": "Information\tdescribing the\tstate  information\n          displayed by\ta single sender's PATH message.",
                "items": {
                  "type": "object",
                  "properties": {
                    "rsvpSessionNumber": {
                      "type": "string",
                      "description": "rsvpSessionNumber",
                      "x-yang-type": "leafref",
                      "readOnly": true
                    },
                    "rsvpSenderNumber": {
                      "type": "string",
                      "description": "The\tnumber of this sender.\tThis is\t for  SNMP\n            Indexing  purposes  only and\thas no relation\tto\n            any protocol\tvalue.",
                      "x-yang-type": "integrated-services:SessionNumber",
                      "readOnly": true
                    },
                    "rsvpSenderType": {
                      "type": "string",
                      "description": "The\ttype of\tsession\t(IP4, IP6, IP6\twith  flow\n            information,\tetc).",
                      "x-yang-type": "integrated-services:SessionType",
                      "readOnly": true
                    },
                    "rsvpSenderDestAddr": {
                      "type": "string",
                      "description": "The\tdestination address used by all\tsenders\tin\n            this\t session.   This object\tmay not\tbe changed\n            when\tthe  value  of\tthe  RowStatus\tobject\tis\n            'active'.",
                      "format": "binary",
                      "readOnly": true
                    },
                    "rsvpSenderAddr": {
                      "type": "string",
                      "description": "The\tsource address used by this sender in this\n            session.   This  object may not be changed when\n            the value of\tthe RowStatus object is\t'active'.",
                      "format": "binary",
                      "readOnly": true
                    },
                    "rsvpSenderDestAddrLength": {
                      "type": "integer",
                      "description": "The\tlength of the destination address in bits.\n            This\t is  the CIDR Prefix Length, which for IP4\n            hosts and multicast addresses is 32 bits.  This\n            object may not be changed when the value of the\n            RowStatus object is 'active'.",
                      "minimum": -2147483648,
                      "maximum": 2147483647,
                      "readOnly": true
                    },
                    "rsvpSenderAddrLength": {
                      "type": "integer",
                      "description": "The\tlength of the sender's\taddress\t in  bits.\n            This\t is  the CIDR Prefix Length, which for IP4\n            hosts and multicast addresses is 32 bits.  This\n            object may not be changed when the value of the\n            RowStatus object is 'active'.",
                      "minimum": -2147483648,
                      "maximum": 2147483647,
                      "readOnly": true
                    },
                    "rsvpSenderProtocol": {
                      "type": "string",
                      "description": "The\tIP Protocol used by  this  session.   This\n            object may not be changed when the value of the\n            RowStatus object is 'active'.",
                      "x-yang-type": "integrated-services:Protocol",
                      "readOnly": true
                    },
                    "rsvpSenderDestPort": {
                      "type": "string",
                      "description": "The\t UDP  or  TCP  port  number  used   as\t a\n            destination\t port  for  all\t senders  in  this\n            session.  If\tthe IP protocol\tin use,\t specified\n            by  rsvpSenderProtocol, is 50 (ESP) or 51 (AH),\n            this\t represents  a\tvirtual\t destination  port\n            number.   A value of\tzero indicates that the\tIP\n            protocol in use  does  not  have  ports.   This\n            object may not be changed when the value of the\n            RowStatus object is 'active'.",
                      "x-yang-type": "integrated-services:Port",
                      "readOnly": true
                    },
                    "rsvpSenderPort": {
                      "type": "string",
                      "description": "The\tUDP or TCP port\tnumber used  as\t a  source\n            port\t for  this sender in this session.  If the\n            IP\t protocol    in\t   use,\t   specified\tby\n            rsvpSenderProtocol is 50 (ESP) or 51\t(AH), this\n            represents a\tgeneralized port identifier (GPI).\n            A  value of zero indicates that the IP protocol\n            in use does not have\tports.\t This  object  may\n            not\tbe changed when\tthe value of the RowStatus\n            object is 'active'.",
                      "x-yang-type": "integrated-services:Port",
                      "readOnly": true
                    },
                    "rsvpSenderFlowId": {
                      "type": "integer",
                      "description": "The\tflow ID\tthat  this  sender  is\tusing,\tif\n            this\t is  an\tIPv6 session.",
                      "minimum": -2147483648,
                      "maximum": 2147483647,
                      "readOnly": true
                    },
                    "rsvpSenderHopAddr": {
                      "type": "string",
                      "description": "The\taddress\tused  by  the  previous\t RSVP  hop\n            (which may be the original sender).",
                      "format": "binary",
                      "readOnly": true
                    },
                    "rsvpSenderHopLih": {
                      "type": "integer",
                      "description": "The\t Logical  Interface  Handle  used  by  the\n            previous  RSVP  hop\t(which may be the original\n            sender).",
                      "minimum": -2147483648,
                      "maximum": 2147483647,
                      "readOnly": true
                    },
                    "rsvpSenderInterface": {
                      "type": "string",
                      "description": "The\tifIndex\tvalue of the  interface\t on  which\n            this\tPATH message was most recently received.",
                      "x-yang-type": "if-mib:InterfaceIndex",
                      "readOnly": true
                    },
                    "rsvpSenderTSpecRate": {
                      "type": "string",
                      "description": "The\tAverage\tBit  Rate  of  the  sender's  data\n            stream.    Within  a\t transmission  burst,  the\n            arrival   rate    may    be\t  as\tfast\tas\n            rsvpSenderTSpecPeakRate  (if\t supported  by the\n            service model); however, averaged across two\tor\n            more\t burst\tintervals,  the\t rate  should  not\n            exceed rsvpSenderTSpecRate.\n            \n            Note\tthat this is a prediction, often based\ton\n            the\tgeneral\t capability  of\ta type of codec\tor\n            particular encoding;\tthe measured average  rate\n            may be significantly\tlower.",
                      "x-yang-type": "integrated-services:BitRate",
                      "readOnly": true
                    },
                    "rsvpSenderTSpecPeakRate": {
                      "type": "string",
                      "description": "The\tPeak Bit Rate of the sender's data stream.\n            Traffic  arrival is not expected to exceed this\n            rate\tat any time, apart  from  the  effects\tof\n            jitter in the network.  If not specified in the\n            TSpec, this returns zero or noSuchValue.",
                      "x-yang-type": "integrated-services:BitRate",
                      "readOnly": true
                    },
                    "rsvpSenderTSpecBurst": {
                      "type": "string",
                      "description": "The\tsize of\tthe largest  burst  expected  from\n            the sender at a time.",
                      "x-yang-type": "integrated-services:BurstSize",
                      "readOnly": true
                    },
                    "rsvpSenderTSpecMinTU": {
                      "type": "string",
                      "description": "The\tminimum\tmessage\tsize for  this\tflow.  The\n            policing  algorithm will treat smaller messages\n            as though they are this size.",
                      "x-yang-type": "integrated-services:MessageSize",
                      "readOnly": true
                    },
                    "rsvpSenderTSpecMaxTU": {
                      "type": "string",
                      "description": "The\tmaximum\tmessage\tsize for  this\tflow.  The\n            admission  algorithm\t will  reject TSpecs whose\n            Maximum Transmission\tUnit, plus  the\t interface\n            headers, exceed the interface MTU.",
                      "x-yang-type": "integrated-services:MessageSize",
                      "readOnly": true
                    },
                    "rsvpSenderInterval": {
                      "type": "string",
                      "description": "The\t interval  between  refresh  messages\tas\n            advertised by the Previous Hop.",
                      "x-yang-type": "RSVP-MIB:RefreshInterval",
                      "readOnly": true
                    },
                    "rsvpSenderRSVPHop": {
                      "type": "boolean",
                      "description": "If TRUE, the node believes that  the  previous\n            IP  hop  is\tan  RSVP  hop.\tIf FALSE, the node\n            believes that the previous IP hop may not be\tan\n            RSVP\thop.",
                      "readOnly": true
                    },
                    "rsvpSenderLastChange": {
                      "type": "string",
                      "description": "The\ttime of\t the  last  change  in\tthis  PATH\n            message;  This  is either the first time it was\n            received or the time\tof the most recent  change\n            in parameters.",
                      "x-yang-type": "yang:timestamp",
                      "readOnly": true
                    },
                    "rsvpSenderPolicy": {
                      "type": "string",
                      "description": "The\tcontents of the\tpolicy\tobject,\t displayed\n            as an uninterpreted string of octets, including\n            the object header.  In the absence of  such\tan\n            object, this\tshould be of zero length.",
                      "format": "binary",
                      "readOnly": true
                    },
                    "rsvpSenderAdspecBreak": {
                      "type": "boolean",
                      "description": "The\tglobal break bit general  characterization\n            parameter  from  the\tADSPEC.\t If TRUE, at least\n            one non-IS hop was detected in  the\tpath.\tIf\n            FALSE, no non-IS hops were detected.",
                      "readOnly": true
                    },
                    "rsvpSenderAdspecHopCount": {
                      "type": "integer",
                      "description": "The\t  hop\tcount\tgeneral\t  characterization\n            parameter from the ADSPEC.  A return\tof zero\tor\n            noSuchValue\tindicates  one\tof  the\t following\n            conditions:\n            \n               the invalid bit was set\n               the parameter was\tnot present",
                      "minimum": -2147483648,
                      "maximum": 2147483647,
                      "readOnly": true
                    },
                    "rsvpSenderAdspecPathBw": {
                      "type": "string",
                      "description": "The\t  path\t  bandwidth    estimate\t   general\n            characterization  parameter from the\tADSPEC.\t A\n            return of zero or noSuchValue indicates one\tof\n            the following conditions:\n            \n               the invalid bit was set\n               the parameter was\tnot present",
                      "x-yang-type": "integrated-services:BitRate",
                      "readOnly": true
                    },
                    "rsvpSenderAdspecMinLatency": {
                      "type": "integer",
                      "description": "The\t   minimum    path     latency\t   general\n            characterization  parameter from the\tADSPEC.\t A\n            return of zero or noSuchValue indicates one\tof\n            the following conditions:\n            \n               the invalid bit was set\n               the parameter was\tnot present",
                      "minimum": -2147483648,
                      "maximum": 2147483647,
                      "readOnly": true
                    },
                    "rsvpSenderAdspecMtu": {
                      "type": "integer",
                      "description": "The\tcomposed Maximum Transmission Unit general\n            characterization  parameter from the\tADSPEC.\t A\n            return of zero or noSuchValue indicates one\tof\n            the following conditions:\n            \n               the invalid bit was set\n               the parameter was\tnot present",
                      "minimum": -2147483648,
                      "maximum": 2147483647,
                      "readOnly": true
                    },
                    "rsvpSenderAdspecGuaranteedSvc": {
                      "type": "boolean",
                      "description": "If TRUE,  the  ADSPEC  contains  a\tGuaranteed\n            Service  fragment.\tIf  FALSE, the ADSPEC does\n            not contain a Guaranteed Service fragment.",
                      "readOnly": true
                    },
                    "rsvpSenderAdspecGuaranteedBreak": {
                      "type": "boolean",
                      "description": "If TRUE, the Guaranteed Service  fragment  has\n            its\t'break'\t bit  set,  indicating that one\tor\n            more\tnodes along the\tpath do\t not  support  the\n            guaranteed\t  service.     If    FALSE,    and\n            rsvpSenderAdspecGuaranteedSvc  is   TRUE,   the\n            'break' bit is not set.\n            \n            If rsvpSenderAdspecGuaranteedSvc is FALSE, this\n            returns FALSE or noSuchValue.",
                      "readOnly": true
                    },
                    "rsvpSenderAdspecGuaranteedCtot": {
                      "type": "integer",
                      "description": "If rsvpSenderAdspecGuaranteedSvc is\tTRUE, this\n            is\tthe  end-to-end\t composed  value  for  the\n            guaranteed service 'C' parameter.  A\treturn\tof\n            zero\t  or  noSuchValue  indicates  one  of  the\n            following conditions:\n            \n               the invalid bit was set\n               the parameter was\tnot present\n            \n            If rsvpSenderAdspecGuaranteedSvc is FALSE, this\n            returns zero\tor noSuchValue.",
                      "minimum": -2147483648,
                      "maximum": 2147483647,
                      "readOnly": true
                    },
                    "rsvpSenderAdspecGuaranteedDtot": {
                      "type": "integer",
                      "description": "If rsvpSenderAdspecGuaranteedSvc is\tTRUE, this\n            is\tthe  end-to-end\t composed  value  for  the\n            guaranteed service 'D' parameter.  A\treturn\tof\n            zero\t  or  noSuchValue  indicates  one  of  the\n            following conditions:\n            \n               the invalid bit was set\n               the parameter was\tnot present\n            \n            If rsvpSenderAdspecGuaranteedSvc is FALSE, this\n            returns zero\tor noSuchValue.",
                      "minimum": -2147483648,
                      "maximum": 2147483647,
                      "readOnly": true
                    },
                    "rsvpSenderAdspecGuaranteedCsum": {
                      "type": "integer",
                      "description": "If rsvpSenderAdspecGuaranteedSvc is\tTRUE, this\n            is\tthe  composed  value  for  the\tguaranteed\n            service 'C' parameter since the last\t reshaping\n            point.    A\t return\t of  zero  or  noSuchValue\n            indicates one of the\tfollowing conditions:\n            \n               the invalid bit was set\n               the parameter was\tnot present\n            \n            If rsvpSenderAdspecGuaranteedSvc is FALSE, this\n            returns zero\tor noSuchValue.",
                      "minimum": -2147483648,
                      "maximum": 2147483647,
                      "readOnly": true
                    },
                    "rsvpSenderAdspecGuaranteedDsum": {
                      "type": "integer",
                      "description": "If rsvpSenderAdspecGuaranteedSvc is\tTRUE, this\n            is\tthe  composed  value  for  the\tguaranteed\n            service 'D' parameter since the last\t reshaping\n            point.    A\t return\t of  zero  or  noSuchValue\n            indicates one of the\tfollowing conditions:\n            \n               the invalid bit was set\n               the parameter was\tnot present\n            \n            If rsvpSenderAdspecGuaranteedSvc is FALSE, this\n            returns zero\tor noSuchValue.",
                      "minimum": -2147483648,
                      "maximum": 2147483647,
                      "readOnly": true
                    },
                    "rsvpSenderAdspecGuaranteedHopCount": {
                      "type": "integer",
                      "description": "If rsvpSenderAdspecGuaranteedSvc is\tTRUE, this\n            is  the  service-specific  override\tof the hop\n            count general characterization  parameter  from\n            the\tADSPEC.\t  A  return of zero or noSuchValue\n            indicates one of the\tfollowing conditions:\n            \n               the invalid bit was set\n               the parameter was\tnot present\n            \n            If rsvpSenderAdspecGuaranteedSvc is FALSE, this\n            returns zero\tor noSuchValue.",
                      "minimum": -2147483648,
                      "maximum": 2147483647,
                      "readOnly": true
                    },
                    "rsvpSenderAdspecGuaranteedPathBw": {
                      "type": "string",
                      "description": "If rsvpSenderAdspecGuaranteedSvc is\tTRUE, this\n            is  the  service-specific  override of the path\n            bandwidth  estimate\tgeneral\t  characterization\n            parameter from the ADSPEC.  A return\tof zero\tor\n            noSuchValue\tindicates  one\tof  the\t following\n            conditions:\n            \n               the invalid bit was set\n               the parameter was\tnot present\n            \n            If rsvpSenderAdspecGuaranteedSvc is FALSE, this\n            returns zero\tor noSuchValue.",
                      "x-yang-type": "integrated-services:BitRate",
                      "readOnly": true
                    },
                    "rsvpSenderAdspecGuaranteedMinLatency": {
                      "type": "integer",
                      "description": "If rsvpSenderAdspecGuaranteedSvc is\tTRUE, this\n            is the service-specific override of the minimum\n            path\tlatency\tgeneral\tcharacterization parameter\n            from\t  the\tADSPEC.\t   A  return  of  zero\tor\n            noSuchValue\tindicates  one\tof  the\t following\n            conditions:\n            \n               the invalid bit was set\n               the parameter was\tnot present\n            \n            If rsvpSenderAdspecGuaranteedSvc is FALSE, this\n            returns zero\tor noSuchValue.",
                      "minimum": -2147483648,
                      "maximum": 2147483647,
                      "readOnly": true
                    },
                    "rsvpSenderAdspecGuaranteedMtu": {
                      "type": "integer",
                      "description": "If rsvpSenderAdspecGuaranteedSvc is\tTRUE, this\n            is\tthe   service-specific\t override  of  the\n            composed  Maximum  Transmission  Unit   general\n            characterization  parameter from the\tADSPEC.\t A\n            return of zero or noSuchValue indicates one\tof\n            the following conditions:\n            \n               the invalid bit was set\n               the parameter was\tnot present\n            \n            If rsvpSenderAdspecGuaranteedSvc is FALSE, this\n            returns zero\tor noSuchValue.",
                      "minimum": -2147483648,
                      "maximum": 2147483647,
                      "readOnly": true
                    },
                    "rsvpSenderAdspecCtrlLoadSvc": {
                      "type": "boolean",
                      "description": "If TRUE, the ADSPEC\tcontains a Controlled Load\n            Service  fragment.\tIf  FALSE, the ADSPEC does\n            not\t contain   a   Controlled   Load   Service\n            fragment.",
                      "readOnly": true
                    },
                    "rsvpSenderAdspecCtrlLoadBreak": {
                      "type": "boolean",
                      "description": "If TRUE, the Controlled Load Service  fragment\n            has its 'break' bit set, indicating that one\tor\n            more\tnodes along the\tpath do\t not  support  the\n            controlled\tload   service.\t   If  FALSE,  and\n            rsvpSenderAdspecCtrlLoadSvc\t is   TRUE,    the\n            'break' bit is not set.\n            \n            If rsvpSenderAdspecCtrlLoadSvc is  FALSE,  this\n            returns FALSE or noSuchValue.",
                      "readOnly": true
                    },
                    "rsvpSenderAdspecCtrlLoadHopCount": {
                      "type": "integer",
                      "description": "If rsvpSenderAdspecCtrlLoadSvc is  TRUE,  this\n            is  the  service-specific  override\tof the hop\n            count general characterization  parameter  from\n            the\tADSPEC.\t  A  return of zero or noSuchValue\n            indicates one of the\tfollowing conditions:\n            \n               the invalid bit was set\n               the parameter was\tnot present\n            \n            If rsvpSenderAdspecCtrlLoadSvc is  FALSE,  this\n            returns zero\tor noSuchValue.",
                      "minimum": -2147483648,
                      "maximum": 2147483647,
                      "readOnly": true
                    },
                    "rsvpSenderAdspecCtrlLoadPathBw": {
                      "type": "string",
                      "description": "If rsvpSenderAdspecCtrlLoadSvc is  TRUE,  this\n            is  the  service-specific  override of the path\n            bandwidth  estimate\tgeneral\t  characterization\n            parameter from the ADSPEC.  A return\tof zero\tor\n            noSuchValue\tindicates  one\tof  the\t following\n            conditions:\n            \n               the invalid bit was set\n               the parameter was\tnot present\n            \n            If rsvpSenderAdspecCtrlLoadSvc is  FALSE,  this\n            returns zero\tor noSuchValue.",
                      "x-yang-type": "integrated-services:BitRate",
                      "readOnly": true
                    },
                    "rsvpSenderAdspecCtrlLoadMinLatency": {
                      "type": "integer",
                      "description": "If rsvpSenderAdspecCtrlLoadSvc is  TRUE,  this\n            is the service-specific override of the minimum\n            path\tlatency\tgeneral\tcharacterization parameter\n            from\t  the\tADSPEC.\t   A  return  of  zero\tor\n            noSuchValue\tindicates  one\tof  the\t following\n            conditions:\n            \n               the invalid bit was set\n               the parameter was\tnot present\n            \n            If rsvpSenderAdspecCtrlLoadSvc is  FALSE,  this\n            returns zero\tor noSuchValue.",
                      "minimum": -2147483648,
                      "maximum": 2147483647,
                      "readOnly": true
                    },
                    "rsvpSenderAdspecCtrlLoadMtu": {
                      "type": "integer",
                      "description": "If rsvpSenderAdspecCtrlLoadSvc is  TRUE,  this\n            is\tthe   service-specific\t override  of  the\n            composed  Maximum  Transmission  Unit   general\n            characterization  parameter from the\tADSPEC.\t A\n            return of zero or noSuchValue indicates one\tof\n            the following conditions:\n            \n               the invalid bit was set\n               the parameter was\tnot present\n            \n            If rsvpSenderAdspecCtrlLoadSvc is  FALSE,  this\n            returns zero\tor noSuchValue.",
                      "minimum": -2147483648,
                      "maximum": 2147483647,
                      "readOnly": true
                    },
                    "rsvpSenderStatus": {
                      "type": "string",
                      "description": "'active' for all active PATH  messages.   This\n            object  may\tbe  used  to  install  static PATH\n            information or delete PATH information.",
                      "x-yang-type": "snmpv2-tc:RowStatus",
                      "readOnly": true
                    },
                    "rsvpSenderTTL": {
                      "type": "integer",
                      "description": "The\tTTL value in the RSVP header that was last\n            received.",
                      "minimum": -2147483648,
                      "maximum": 2147483647,
                      "readOnly": true
                    }
                  }
                },
                "readOnly": true
              }
            },
            "readOnly": true
          },
          "rsvpSenderOutInterfaceTable": {
            "type": "object",
            "description": "List of outgoing interfaces\tthat PATH messages\n        use.\t The  ifIndex  is the ifIndex value of the\n        egress interface.",
            "properties": {
              "rsvpSenderOutInterfaceEntry": {
                "type": "array",
                "description": "List of outgoing interfaces\tthat a\tparticular\n          PATH\tmessage\thas.",
                "items": {
                  "type": "object",
                  "properties": {
                    "rsvpSessionNumber": {
                      "type": "string",
                      "description": "rsvpSessionNumber",
                      "x-yang-type": "leafref",
                      "readOnly": true
                    },
                    "rsvpSenderNumber": {
                      "type": "string",
                      "description": "rsvpSenderNumber",
                      "x-yang-type": "leafref",
                      "readOnly": true
                    },
                    "ifIndex": {
                      "type": "string",
                      "description": "ifIndex",
                      "x-yang-type": "leafref",
                      "readOnly": true
                    },
                    "rsvpSenderOutInterfaceStatus": {
                      "type": "string",
                      "description": "'active' for all active PATH messages.",
                      "x-yang-type": "snmpv2-tc:RowStatus",
                      "readOnly": true
                    }
                  }
                },
                "readOnly": true
              }
            },
            "readOnly": true
          },
          "rsvpResvTable": {
            "type": "object",
            "description": "Information\tdescribing the\tstate  information\n        displayed by\treceivers in RESV messages.",
            "properties": {
              "rsvpResvEntry": {
                "type": "array",
                "description": "Information\tdescribing the\tstate  information\n          displayed  by  a single receiver's RESV message\n          concerning a\tsingle sender.",
                "items": {
                  "type": "object",
                  "properties": {
                    "rsvpSessionNumber": {
                      "type": "string",
                      "description": "rsvpSessionNumber",
                      "x-yang-type": "leafref",
                      "readOnly": true
                    },
                    "rsvpResvNumber": {
                      "type": "string",
                      "description": "The\tnumber of this reservation request.   This\n            is  for  SNMP Indexing purposes only\tand has\tno\n            relation to any protocol value.",
                      "x-yang-type": "integrated-services:SessionNumber",
                      "readOnly": true
                    },
                    "rsvpResvType": {
                      "type": "string",
                      "description": "The\ttype of\tsession\t(IP4, IP6, IP6\twith  flow\n            information,\tetc).",
                      "x-yang-type": "integrated-services:SessionType",
                      "readOnly": true
                    },
                    "rsvpResvDestAddr": {
                      "type": "string",
                      "description": "The\tdestination address used by all\tsenders\tin\n            this\t session.   This object\tmay not\tbe changed\n            when\tthe  value  of\tthe  RowStatus\tobject\tis\n            'active'.",
                      "format": "binary",
                      "readOnly": true
                    },
                    "rsvpResvSenderAddr": {
                      "type": "string",
                      "description": "The\tsource address of the sender  selected\tby\n            this\t reservation.\tThe  value  of\tall zeroes\n            indicates 'all senders'.  This object  may  not\n            be  changed\twhen  the  value  of the RowStatus\n            object is 'active'.",
                      "format": "binary",
                      "readOnly": true
                    },
                    "rsvpResvDestAddrLength": {
                      "type": "integer",
                      "description": "The\tlength of the destination address in bits.\n            This\t is  the CIDR Prefix Length, which for IP4\n            hosts and multicast addresses is 32 bits.  This\n            object may not be changed when the value of the\n            RowStatus object is 'active'.",
                      "minimum": -2147483648,
                      "maximum": 2147483647,
                      "readOnly": true
                    },
                    "rsvpResvSenderAddrLength": {
                      "type": "integer",
                      "description": "The\tlength of the sender's\taddress\t in  bits.\n            This\t is  the CIDR Prefix Length, which for IP4\n            hosts and multicast addresses is 32 bits.  This\n            object may not be changed when the value of the\n            RowStatus object is 'active'.",
                      "minimum": -2147483648,
                      "maximum": 2147483647,
                      "readOnly": true
                    },
                    "rsvpResvProtocol": {
                      "type": "string",
                      "description": "The\tIP Protocol used by  this  session.   This\n            object may not be changed when the value of the\n            RowStatus object is 'active'.",
                      "x-yang-type": "integrated-services:Protocol",
                      "readOnly": true
                    },
                    "rsvpResvDestPort": {
                      "type": "string",
                      "description": "The\t UDP  or  TCP  port  number  used   as\t a\n            destination\t port  for  all\t senders  in  this\n            session.  If\tthe IP protocol\tin use,\t specified\n            by  rsvpResvProtocol,  is  50 (ESP) or 51 (AH),\n            this\t represents  a\tvirtual\t destination  port\n            number.   A value of\tzero indicates that the\tIP\n            protocol in use  does  not  have  ports.   This\n            object may not be changed when the value of the\n            RowStatus object is 'active'.",
                      "x-yang-type": "integrated-services:Port",
                      "readOnly": true
                    },
                    "rsvpResvPort": {
                      "type": "string",
                      "description": "The\tUDP or TCP port\tnumber used  as\t a  source\n            port\t for  this sender in this session.  If the\n            IP\t protocol    in\t   use,\t   specified\tby\n            rsvpResvProtocol  is\t 50 (ESP) or 51\t(AH), this\n            represents a\tgeneralized port identifier (GPI).\n            A  value of zero indicates that the IP protocol\n            in use does not have\tports.\t This  object  may\n            not\tbe changed when\tthe value of the RowStatus\n            object is 'active'.",
                      "x-yang-type": "integrated-services:Port",
                      "readOnly": true
                    },
                    "rsvpResvHopAddr": {
                      "type": "string",
                      "description": "The\taddress\tused by\tthe next RSVP  hop  (which\n            may be the ultimate receiver).",
                      "format": "binary",
                      "readOnly": true
                    },
                    "rsvpResvHopLih": {
                      "type": "integer",
                      "description": "The\tLogical\tInterface Handle received from the\n            previous  RSVP  hop\t(which may be the ultimate\n            receiver).",
                      "minimum": -2147483648,
                      "maximum": 2147483647,
                      "readOnly": true
                    },
                    "rsvpResvInterface": {
                      "type": "string",
                      "description": "The\tifIndex\tvalue of the  interface\t on  which\n            this\tRESV message was most recently received.",
                      "x-yang-type": "if-mib:InterfaceIndex",
                      "readOnly": true
                    },
                    "rsvpResvService": {
                      "type": "string",
                      "description": "The\tQoS Service  classification  requested\tby\n            the receiver.",
                      "x-yang-type": "integrated-services:QosService",
                      "readOnly": true
                    },
                    "rsvpResvTSpecRate": {
                      "type": "string",
                      "description": "The\tAverage\tBit  Rate  of  the  sender's  data\n            stream.    Within  a\t transmission  burst,  the\n            arrival   rate    may    be\t  as\tfast\tas\n            rsvpResvTSpecPeakRate   (if\tsupported  by  the\n            service model); however, averaged across two\tor\n            more\t burst\tintervals,  the\t rate  should  not\n            exceed rsvpResvTSpecRate.\n            \n            Note\tthat this is a prediction, often based\ton\n            the\tgeneral\t capability  of\ta type of codec\tor\n            particular encoding;\tthe measured average  rate\n            may be significantly\tlower.",
                      "x-yang-type": "integrated-services:BitRate",
                      "readOnly": true
                    },
                    "rsvpResvTSpecPeakRate": {
                      "type": "string",
                      "description": "The\tPeak Bit Rate of the sender's data stream.\n            Traffic  arrival is not expected to exceed this\n            rate\tat any time, apart  from  the  effects\tof\n            jitter in the network.  If not specified in the\n            TSpec, this returns zero or noSuchValue.",
                      "x-yang-type": "integrated-services:BitRate",
                      "readOnly": true
                    },
                    "rsvpResvTSpecBurst": {
                      "type": "string",
                      "description": "The\tsize of\tthe largest  burst  expected  from\n            the sender at a time.\n            \n            If this is less than\t the  sender's\tadvertised\n            burst  size,\tthe receiver is\tasking the network\n            to provide flow pacing  beyond  what\t would\tbe\n            provided   under   normal  circumstances.  Such\n            pacing is at\tthe network's option.",
                      "x-yang-type": "integrated-services:BurstSize",
                      "readOnly": true
                    },
                    "rsvpResvTSpecMinTU": {
                      "type": "string",
                      "description": "The\tminimum\tmessage\tsize for  this\tflow.  The\n            policing  algorithm will treat smaller messages\n            as though they are this size.",
                      "x-yang-type": "integrated-services:MessageSize",
                      "readOnly": true
                    },
                    "rsvpResvTSpecMaxTU": {
                      "type": "string",
                      "description": "The\tmaximum\tmessage\tsize for  this\tflow.  The\n            admission  algorithm\t will  reject TSpecs whose\n            Maximum Transmission\tUnit, plus  the\t interface\n            headers, exceed the interface MTU.",
                      "x-yang-type": "integrated-services:MessageSize",
                      "readOnly": true
                    },
                    "rsvpResvRSpecRate": {
                      "type": "string",
                      "description": "If the requested  service  is  Guaranteed,\tas\n            specified   by  rsvpResvService,  this  is  the\n            clearing  rate   that   is\tbeing\trequested.\n            Otherwise,  it is zero, or the agent\tmay return\n            noSuchValue.",
                      "x-yang-type": "integrated-services:BitRate",
                      "readOnly": true
                    },
                    "rsvpResvRSpecSlack": {
                      "type": "integer",
                      "description": "If the requested  service  is  Guaranteed,\tas\n            specified by\trsvpResvService, this is the delay\n            slack.  Otherwise, it is zero, or the agent may\n            return noSuchValue.",
                      "minimum": -2147483648,
                      "maximum": 2147483647,
                      "readOnly": true
                    },
                    "rsvpResvInterval": {
                      "type": "string",
                      "description": "The\t interval  between  refresh  messages\tas\n            advertised by the Next Hop.",
                      "x-yang-type": "RSVP-MIB:RefreshInterval",
                      "readOnly": true
                    },
                    "rsvpResvScope": {
                      "type": "string",
                      "description": "The\tcontents of the\tscope object, displayed\tas\n            an  uninterpreted  string  of octets, including\n            the object header.  In the absence of  such\tan\n            object, this\tshould be of zero length.\n            \n            If the length  is  non-zero,\t this  contains\t a\n            series of IP4 or IP6\taddresses.",
                      "format": "binary",
                      "readOnly": true
                    },
                    "rsvpResvShared": {
                      "type": "boolean",
                      "description": "If TRUE, a reservation shared among\tsenders\tis\n            requested.  If FALSE, a reservation specific\tto\n            this\tsender is requested.",
                      "readOnly": true
                    },
                    "rsvpResvExplicit": {
                      "type": "boolean",
                      "description": "If TRUE, individual\tsenders\tare  listed  using\n            Filter  Specifications.   If\tFALSE, all senders\n            are implicitly selected.  The Scope Object will\n            contain  a list of senders that need\tto receive\n            this\treservation request  for  the  purpose\tof\n            routing the RESV message.",
                      "readOnly": true
                    },
                    "rsvpResvRSVPHop": {
                      "type": "boolean",
                      "description": "If TRUE, the node believes that  the  previous\n            IP  hop  is\tan  RSVP  hop.\tIf FALSE, the node\n            believes that the previous IP hop may not be\tan\n            RSVP\thop.",
                      "readOnly": true
                    },
                    "rsvpResvLastChange": {
                      "type": "string",
                      "description": "The\t time  of  the\t last\tchange\t in   this\n            reservation\trequest;  This is either the first\n            time\tit was received\tor the time  of\t the  most\n            recent change in parameters.",
                      "x-yang-type": "yang:timestamp",
                      "readOnly": true
                    },
                    "rsvpResvPolicy": {
                      "type": "string",
                      "description": "The\tcontents of the\tpolicy\tobject,\t displayed\n            as an uninterpreted string of octets, including\n            the object header.  In the absence of  such\tan\n            object, this\tshould be of zero length.",
                      "format": "binary",
                      "readOnly": true
                    },
                    "rsvpResvStatus": {
                      "type": "string",
                      "description": "'active' for all active RESV  messages.   This\n            object  may\tbe  used  to  install  static RESV\n            information or delete RESV information.",
                      "x-yang-type": "snmpv2-tc:RowStatus",
                      "readOnly": true
                    },
                    "rsvpResvTTL": {
                      "type": "integer",
                      "description": "The\tTTL value in the RSVP header that was last\n            received.",
                      "minimum": -2147483648,
                      "maximum": 2147483647,
                      "readOnly": true
                    },
                    "rsvpResvFlowId": {
                      "type": "integer",
                      "description": "The\tflow ID\tthat this receiver  is\tusing,\tif\n            this\t is  an\tIPv6 session.",
                      "minimum": -2147483648,
                      "maximum": 2147483647,
                      "readOnly": true
                    }
                  }
                },
                "readOnly": true
              }
            },
            "readOnly": true
          },
          "rsvpResvFwdTable": {
            "type": "object",
            "description": "Information\tdescribing the\tstate  information\n        displayed upstream in RESV messages.",
            "properties": {
              "rsvpResvFwdEntry": {
                "type": "array",
                "description": "Information\tdescribing the\tstate  information\n          displayed   upstream\t  in   an   RESV   message\n          concerning a\tsingle sender.",
                "items": {
                  "type": "object",
                  "properties": {
                    "rsvpSessionNumber": {
                      "type": "string",
                      "description": "rsvpSessionNumber",
                      "x-yang-type": "leafref",
                      "readOnly": true
                    },
                    "rsvpResvFwdNumber": {
                      "type": "string",
                      "description": "The\tnumber of this reservation request.   This\n            is  for  SNMP Indexing purposes only\tand has\tno\n            relation to any protocol value.",
                      "x-yang-type": "integrated-services:SessionNumber",
                      "readOnly": true
                    },
                    "rsvpResvFwdType": {
                      "type": "string",
                      "description": "The\ttype of\tsession\t(IP4, IP6, IP6\twith  flow\n            information,\tetc).",
                      "x-yang-type": "integrated-services:SessionType",
                      "readOnly": true
                    },
                    "rsvpResvFwdDestAddr": {
                      "type": "string",
                      "description": "The\tdestination address used by all\tsenders\tin\n            this\t session.   This object\tmay not\tbe changed\n            when\tthe  value  of\tthe  RowStatus\tobject\tis\n            'active'.",
                      "format": "binary",
                      "readOnly": true
                    },
                    "rsvpResvFwdSenderAddr": {
                      "type": "string",
                      "description": "The\tsource address of the sender  selected\tby\n            this\t reservation.\tThe  value  of\tall zeroes\n            indicates 'all senders'.  This object  may  not\n            be  changed\twhen  the  value  of the RowStatus\n            object is 'active'.",
                      "format": "binary",
                      "readOnly": true
                    },
                    "rsvpResvFwdDestAddrLength": {
                      "type": "integer",
                      "description": "The\tlength of the destination address in bits.\n            This\t is  the CIDR Prefix Length, which for IP4\n            hosts and multicast addresses is 32 bits.  This\n            object may not be changed when the value of the\n            RowStatus object is 'active'.",
                      "minimum": -2147483648,
                      "maximum": 2147483647,
                      "readOnly": true
                    },
                    "rsvpResvFwdSenderAddrLength": {
                      "type": "integer",
                      "description": "The\tlength of the sender's\taddress\t in  bits.\n            This\t is  the CIDR Prefix Length, which for IP4\n            hosts and multicast addresses is 32 bits.  This\n            object may not be changed when the value of the\n            RowStatus object is 'active'.",
                      "minimum": -2147483648,
                      "maximum": 2147483647,
                      "readOnly": true
                    },
                    "rsvpResvFwdProtocol": {
                      "type": "string",
                      "description": "The\tIP Protocol used by a session. for  secure\n            sessions,  this  indicates  IP  Security.  This\n            object may not be changed when the value of the\n            RowStatus object is 'active'.",
                      "x-yang-type": "integrated-services:Protocol",
                      "readOnly": true
                    },
                    "rsvpResvFwdDestPort": {
                      "type": "string",
                      "description": "The\t UDP  or  TCP  port  number  used   as\t a\n            destination\t port  for  all\t senders  in  this\n            session.  If\tthe IP protocol\tin use,\t specified\n            by rsvpResvFwdProtocol, is 50 (ESP) or 51 (AH),\n            this\t represents  a\tvirtual\t destination  port\n            number.   A value of\tzero indicates that the\tIP\n            protocol in use  does  not  have  ports.   This\n            object may not be changed when the value of the\n            RowStatus object is 'active'.",
                      "x-yang-type": "integrated-services:Port",
                      "readOnly": true
                    },
                    "rsvpResvFwdPort": {
                      "type": "string",
                      "description": "The\tUDP or TCP port\tnumber used  as\t a  source\n            port\t for  this sender in this session.  If the\n            IP\t protocol    in\t   use,\t   specified\tby\n            rsvpResvFwdProtocol\tis  50\t(ESP)  or 51 (AH),\n            this\trepresents a generalized  port\tidentifier\n            (GPI).   A  value of\tzero indicates that the\tIP\n            protocol in use  does  not  have  ports.   This\n            object may not be changed when the value of the\n            RowStatus object is 'active'.",
                      "x-yang-type": "integrated-services:Port",
                      "readOnly": true
                    },
                    "rsvpResvFwdHopAddr": {
                      "type": "string",
                      "description": "The\taddress\tof the (previous) RSVP\tthat  will\n            receive this\tmessage.",
                      "format": "binary",
                      "readOnly": true
                    },
                    "rsvpResvFwdHopLih": {
                      "type": "integer",
                      "description": "The\t Logical  Interface  Handle  sent  to  the\n            (previous)\tRSVP   that   will   receive  this\n            message.",
                      "minimum": -2147483648,
                      "maximum": 2147483647,
                      "readOnly": true
                    },
                    "rsvpResvFwdInterface": {
                      "type": "string",
                      "description": "The\tifIndex\tvalue of the  interface\t on  which\n            this\tRESV message was most recently sent.",
                      "x-yang-type": "if-mib:InterfaceIndex",
                      "readOnly": true
                    },
                    "rsvpResvFwdService": {
                      "type": "string",
                      "description": "The\tQoS Service classification requested.",
                      "x-yang-type": "integrated-services:QosService",
                      "readOnly": true
                    },
                    "rsvpResvFwdTSpecRate": {
                      "type": "string",
                      "description": "The\tAverage\tBit  Rate  of  the  sender's  data\n            stream.    Within  a\t transmission  burst,  the\n            arrival   rate    may    be\t  as\tfast\tas\n            rsvpResvFwdTSpecPeakRate  (if  supported by the\n            service model); however, averaged across two\tor\n            more\t burst\tintervals,  the\t rate  should  not\n            exceed rsvpResvFwdTSpecRate.\n            \n            Note\tthat this is a prediction, often based\ton\n            the\tgeneral\t capability  of\ta type of codec\tor\n            particular encoding;\tthe measured average  rate\n            may be significantly\tlower.",
                      "x-yang-type": "integrated-services:BitRate",
                      "readOnly": true
                    },
                    "rsvpResvFwdTSpecPeakRate": {
                      "type": "string",
                      "description": "The\tPeak Bit Rate of the sender's data  stream\n            Traffic  arrival is not expected to exceed this\n            rate\tat any time, apart  from  the  effects\tof\n            jitter in the network.  If not specified in the\n            TSpec, this returns zero or noSuchValue.",
                      "x-yang-type": "integrated-services:BitRate",
                      "readOnly": true
                    },
                    "rsvpResvFwdTSpecBurst": {
                      "type": "string",
                      "description": "The\tsize of\tthe largest  burst  expected  from\n            the sender at a time.\n            \n            If this is less than\t the  sender's\tadvertised\n            burst  size,\tthe receiver is\tasking the network\n            to provide flow pacing  beyond  what\t would\tbe\n            provided   under   normal  circumstances.  Such\n            pacing is at\tthe network's option.",
                      "x-yang-type": "integrated-services:BurstSize",
                      "readOnly": true
                    },
                    "rsvpResvFwdTSpecMinTU": {
                      "type": "string",
                      "description": "The\tminimum\tmessage\tsize for  this\tflow.  The\n            policing  algorithm will treat smaller messages\n            as though they are this size.",
                      "x-yang-type": "integrated-services:MessageSize",
                      "readOnly": true
                    },
                    "rsvpResvFwdTSpecMaxTU": {
                      "type": "string",
                      "description": "The\tmaximum\tmessage\tsize for  this\tflow.  The\n            admission  algorithm\t will  reject TSpecs whose\n            Maximum Transmission\tUnit, plus  the\t interface\n            headers, exceed the interface MTU.",
                      "x-yang-type": "integrated-services:MessageSize",
                      "readOnly": true
                    },
                    "rsvpResvFwdRSpecRate": {
                      "type": "string",
                      "description": "If the requested  service  is  Guaranteed,\tas\n            specified   by  rsvpResvService,  this  is  the\n            clearing  rate   that   is\tbeing\trequested.\n            Otherwise,  it is zero, or the agent\tmay return\n            noSuchValue.",
                      "x-yang-type": "integrated-services:BitRate",
                      "readOnly": true
                    },
                    "rsvpResvFwdRSpecSlack": {
                      "type": "integer",
                      "description": "If the requested  service  is  Guaranteed,\tas\n            specified by\trsvpResvService, this is the delay\n            slack.  Otherwise, it is zero, or the agent may\n            return noSuchValue.",
                      "minimum": -2147483648,
                      "maximum": 2147483647,
                      "readOnly": true
                    },
                    "rsvpResvFwdInterval": {
                      "type": "string",
                      "description": "The\t  interval   between   refresh\t  messages\n            advertised to the Previous Hop.",
                      "x-yang-type": "RSVP-MIB:RefreshInterval",
                      "readOnly": true
                    },
                    "rsvpResvFwdScope": {
                      "type": "string",
                      "description": "The\tcontents of the\tscope object, displayed\tas\n            an  uninterpreted  string  of octets, including\n            the object header.  In the absence of  such\tan\n            object, this\tshould be of zero length.",
                      "format": "binary",
                      "readOnly": true
                    },
                    "rsvpResvFwdShared": {
                      "type": "boolean",
                      "description": "If TRUE, a reservation shared among\tsenders\tis\n            requested.  If FALSE, a reservation specific\tto\n            this\tsender is requested.",
                      "readOnly": true
                    },
                    "rsvpResvFwdExplicit": {
                      "type": "boolean",
                      "description": "If TRUE, individual\tsenders\tare  listed  using\n            Filter  Specifications.   If\tFALSE, all senders\n            are implicitly selected.  The Scope Object will\n            contain  a list of senders that need\tto receive\n            this\treservation request  for  the  purpose\tof\n            routing the RESV message.",
                      "readOnly": true
                    },
                    "rsvpResvFwdRSVPHop": {
                      "type": "boolean",
                      "description": "If TRUE, the node believes that  the  next\tIP\n            hop\tis  an\tRSVP  hop.   If\t FALSE,\t the  node\n            believes that the next IP hop  may  not  be\tan\n            RSVP\thop.",
                      "readOnly": true
                    },
                    "rsvpResvFwdLastChange": {
                      "type": "string",
                      "description": "The\ttime of\tthe last change\tin  this  request;\n            This\t is  either  the first time it was sent\tor\n            the\ttime  of  the  most   recent   change\tin\n            parameters.",
                      "x-yang-type": "yang:timestamp",
                      "readOnly": true
                    },
                    "rsvpResvFwdPolicy": {
                      "type": "string",
                      "description": "The\tcontents of the\tpolicy\tobject,\t displayed\n            as an uninterpreted string of octets, including\n            the object header.  In the absence of  such\tan\n            object, this\tshould be of zero length.",
                      "format": "binary",
                      "readOnly": true
                    },
                    "rsvpResvFwdStatus": {
                      "type": "string",
                      "description": "'active' for all active RESV  messages.   This\n            object may be used to delete\tRESV information.",
                      "x-yang-type": "snmpv2-tc:RowStatus",
                      "readOnly": true
                    },
                    "rsvpResvFwdTTL": {
                      "type": "integer",
                      "description": "The\tTTL value in the RSVP header that was last\n            received.",
                      "minimum": -2147483648,
                      "maximum": 2147483647,
                      "readOnly": true
                    },
                    "rsvpResvFwdFlowId": {
                      "type": "integer",
                      "description": "The\tflow ID\tthat this receiver  is\tusing,\tif\n            this\t is  an\tIPv6 session.",
                      "minimum": -2147483648,
                      "maximum": 2147483647,
                      "readOnly": true
                    }
                  }
                },
                "readOnly": true
              }
            },
            "readOnly": true
          },
          "rsvpIfTable": {
            "type": "object",
            "description": "The\tRSVP-specific attributes of  the  system's\n        interfaces.",
            "properties": {
              "rsvpIfEntry": {
                "type": "array",
                "description": "The\tRSVP-specific attributes of  the  a  given\n          interface.",
                "items": {
                  "type": "object",
                  "properties": {
                    "ifIndex": {
                      "type": "string",
                      "description": "ifIndex",
                      "x-yang-type": "leafref",
                      "readOnly": true
                    },
                    "rsvpIfUdpNbrs": {
                      "type": "integer",
                      "description": "The\tnumber of neighbors perceived to be  using\n            only\tthe RSVP UDP Encapsulation.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "rsvpIfIpNbrs": {
                      "type": "integer",
                      "description": "The\tnumber of neighbors perceived to be  using\n            only\tthe RSVP IP Encapsulation.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "rsvpIfNbrs": {
                      "type": "integer",
                      "description": "The\tnumber of neighbors  currently\tperceived;\n            this\t will  exceed rsvpIfIpNbrs + rsvpIfUdpNbrs\n            by  the  number   of\t  neighbors   using   both\n            encapsulations.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "rsvpIfRefreshBlockadeMultiple": {
                      "type": "integer",
                      "description": "The\tvalue of the RSVP value\t'Kb', Which is the\n            minimum   number   of  refresh  intervals  that\n            blockade state will last once entered.",
                      "minimum": -2147483648,
                      "maximum": 2147483647,
                      "readOnly": true
                    },
                    "rsvpIfRefreshMultiple": {
                      "type": "integer",
                      "description": "The\tvalue of the RSVP value\t'K', which is  the\n            number  of  refresh intervals which must elapse\n            (minimum) before a PATH or RESV  message  which\n            is not being\trefreshed will be aged out.",
                      "minimum": -2147483648,
                      "maximum": 2147483647,
                      "readOnly": true
                    },
                    "rsvpIfTTL": {
                      "type": "integer",
                      "description": "The\tvalue of SEND_TTL used on  this\t interface\n            for\tmessages  this node originates.\t If set\tto\n            zero, the node determines  the  TTL\tvia  other\n            means.",
                      "minimum": -2147483648,
                      "maximum": 2147483647,
                      "readOnly": true
                    },
                    "rsvpIfRefreshInterval": {
                      "type": "string",
                      "description": "The\tvalue of the RSVP value\t'R', which is  the\n            minimum period between refresh transmissions\tof\n            a given PATH\tor RESV\tmessage\ton an interface.",
                      "x-yang-type": "snmpv2-tc:TimeInterval",
                      "readOnly": true
                    },
                    "rsvpIfRouteDelay": {
                      "type": "string",
                      "description": "The\tapproximate period from\tthe time  a  route\n            is  changed\tto  the\t time  a resulting message\n            appears on the interface.",
                      "x-yang-type": "snmpv2-tc:TimeInterval",
                      "readOnly": true
                    },
                    "rsvpIfEnabled": {
                      "type": "boolean",
                      "description": "If TRUE, RSVP is enabled  on  this\tInterface.\n            If\tFALSE,\t RSVP\tis  not\t enabled  on  this\n            interface.",
                      "readOnly": true
                    },
                    "rsvpIfUdpRequired": {
                      "type": "boolean",
                      "description": "If TRUE, manual configuration forces  the  use\n            of  UDP  encapsulation  on  the  interface.\tIf\n            FALSE,  UDP\tencapsulation  is  only\t used\tif\n            rsvpIfUdpNbrs is not\tzero.",
                      "readOnly": true
                    },
                    "rsvpIfStatus": {
                      "type": "string",
                      "description": "'active' on\tinterfaces that\tare configured for\n            RSVP.",
                      "x-yang-type": "snmpv2-tc:RowStatus",
                      "readOnly": true
                    }
                  }
                },
                "readOnly": true
              }
            },
            "readOnly": true
          },
          "rsvpNbrTable": {
            "type": "object",
            "description": "Information\tdescribing  the\t Neighbors  of\tan\n        RSVP\tsystem.",
            "properties": {
              "rsvpNbrEntry": {
                "type": "array",
                "description": "Information\t  describing   a    single    RSVP\n          Neighbor.",
                "items": {
                  "type": "object",
                  "properties": {
                    "ifIndex": {
                      "type": "string",
                      "description": "ifIndex",
                      "x-yang-type": "leafref",
                      "readOnly": true
                    },
                    "rsvpNbrAddress": {
                      "type": "string",
                      "description": "The\tIP4 or IP6 Address used\tby this\t neighbor.\n            This\t object\t may not be changed when the value\n            of the RowStatus object is 'active'.",
                      "format": "binary",
                      "readOnly": true
                    },
                    "rsvpNbrProtocol": {
                      "type": "string",
                      "description": "The\t  encapsulation\t  being\t  used\t by   this\n            neighbor.",
                      "x-yang-type": "RSVP-MIB:RsvpEncapsulation",
                      "readOnly": true
                    },
                    "rsvpNbrStatus": {
                      "type": "string",
                      "description": "'active' for all neighbors.\t This  object  may\n            be\tused   to  configure  neighbors.   In  the\n            presence   of   configured\t neighbors,    the\n            implementation  may\t(but  is  not required to)\n            limit the  set  of  valid  neighbors\t to  those\n            configured.",
                      "x-yang-type": "snmpv2-tc:RowStatus",
                      "readOnly": true
                    }
                  }
                },
                "readOnly": true
              }
            },
            "readOnly": true
          }
        }
      },
      "RSVP-MIB_object-1": {
        "type": "object",
        "description": "object-1",
        "properties": {
          "intSrvFlowNumber": {
            "type": "string",
            "description": "intSrvFlowNumber",
            "x-yang-type": "leafref",
            "readOnly": true
          },
          "intSrvFlowStatus": {
            "type": "string",
            "description": "intSrvFlowStatus",
            "x-yang-type": "leafref",
            "readOnly": true
          }
        }
      },
      "RSVP-MIB_object-2": {
        "type": "object",
        "description": "object-2",
        "properties": {
          "rsvpSessionNumber": {
            "type": "string",
            "description": "rsvpSessionNumber",
            "x-yang-type": "leafref",
            "readOnly": true
          },
          "rsvpSessionDestAddr": {
            "type": "string",
            "description": "rsvpSessionDestAddr",
            "x-yang-type": "leafref",
            "readOnly": true
          }
        }
      },
      "RSVP-MIB_object-3": {
        "type": "object",
        "description": "object-3",
        "properties": {
          "rsvpSessionNumber": {
            "type": "string",
            "description": "rsvpSessionNumber",
            "x-yang-type": "leafref",
            "readOnly": true
          },
          "rsvpResvFwdNumber": {
            "type": "string",
            "description": "rsvpResvFwdNumber",
            "x-yang-type": "leafref",
            "readOnly": true
          },
          "rsvpResvFwdStatus": {
            "type": "string",
            "description": "rsvpResvFwdStatus",
            "x-yang-type": "leafref",
            "readOnly": true
          }
        }
      },
      "RSVP-MIB_object-4": {
        "type": "object",
        "description": "object-4",
        "properties": {
          "rsvpSessionNumber": {
            "type": "string",
            "description": "rsvpSessionNumber",
            "x-yang-type": "leafref",
            "readOnly": true
          },
          "rsvpResvNumber": {
            "type": "string",
            "description": "rsvpResvNumber",
            "x-yang-type": "leafref",
            "readOnly": true
          },
          "rsvpResvStatus": {
            "type": "string",
            "description": "rsvpResvStatus",
            "x-yang-type": "leafref",
            "readOnly": true
          }
        }
      },
      "RSVP-MIB_object-5": {
        "type": "object",
        "description": "object-5",
        "properties": {
          "rsvpSessionNumber": {
            "type": "string",
            "description": "rsvpSessionNumber",
            "x-yang-type": "leafref",
            "readOnly": true
          },
          "rsvpSenderNumber": {
            "type": "string",
            "description": "rsvpSenderNumber",
            "x-yang-type": "leafref",
            "readOnly": true
          },
          "rsvpSenderStatus": {
            "type": "string",
            "description": "rsvpSenderStatus",
            "x-yang-type": "leafref",
            "readOnly": true
          }
        }
      },
      "RSVP-MIB_rsvpSessionEntry": {
        "type": "array",
        "description": "A single session seen by a given system.",
        "items": {
          "type": "object",
          "properties": {
            "rsvpSessionNumber": {
              "type": "string",
              "description": "The\tnumber of this session.\t This is for  SNMP\n            Indexing  purposes  only and\thas no relation\tto\n            any protocol\tvalue.",
              "x-yang-type": "integrated-services:SessionNumber",
              "readOnly": true
            },
            "rsvpSessionType": {
              "type": "string",
              "description": "The\ttype of\tsession\t(IP4, IP6, IP6\twith  flow\n            information,\tetc).",
              "x-yang-type": "integrated-services:SessionType",
              "readOnly": true
            },
            "rsvpSessionDestAddr": {
              "type": "string",
              "description": "The\tdestination address used by all\tsenders\tin\n            this\t session.   This object\tmay not\tbe changed\n            when\tthe  value  of\tthe  RowStatus\tobject\tis\n            'active'.",
              "format": "binary",
              "readOnly": true
            },
            "rsvpSessionDestAddrLength": {
              "type": "integer",
              "description": "The\tCIDR prefix length of the session address,\n            which   is\t32  for\t IP4  host  and\t multicast\n            addresses, and 128  for  IP6\t addresses.   This\n            object may not be changed when the value of the\n            RowStatus object is 'active'.",
              "minimum": -2147483648,
              "maximum": 2147483647,
              "readOnly": true
            },
            "rsvpSessionProtocol": {
              "type": "string",
              "description": "The\tIP Protocol used by  this  session.   This\n            object may not be changed when the value of the\n            RowStatus object is 'active'.",
              "x-yang-type": "integrated-services:Protocol",
              "readOnly": true
            },
            "rsvpSessionPort": {
              "type": "string",
              "description": "The\t UDP  or  TCP  port  number  used   as\t a\n            destination\t port  for  all\t senders  in  this\n            session.  If\tthe IP protocol\tin use,\t specified\n            by  rsvpSenderProtocol, is 50 (ESP) or 51 (AH),\n            this\t represents  a\tvirtual\t destination  port\n            number.   A value of\tzero indicates that the\tIP\n            protocol in use  does  not  have  ports.   This\n            object may not be changed when the value of the\n            RowStatus object is 'active'.",
              "x-yang-type": "integrated-services:Port",
              "readOnly": true
            },
            "rsvpSessionSenders": {
              "type": "integer",
              "description": "The\tnumber of distinct senders currently known\n            to be part of this session.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "rsvpSessionReceivers": {
              "type": "integer",
              "description": "The\tnumber of reservations being requested\tof\n            this\tsystem for this\tsession.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "rsvpSessionRequests": {
              "type": "integer",
              "description": "The\tnumber of reservation requests this system\n            is sending upstream for this\tsession.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            }
          }
        }
      },
      "RSVP-MIB_rsvpSenderEntry": {
        "type": "array",
        "description": "Information\tdescribing the\tstate  information\n          displayed by\ta single sender's PATH message.",
        "items": {
          "type": "object",
          "properties": {
            "rsvpSessionNumber": {
              "type": "string",
              "description": "rsvpSessionNumber",
              "x-yang-type": "leafref",
              "readOnly": true
            },
            "rsvpSenderNumber": {
              "type": "string",
              "description": "The\tnumber of this sender.\tThis is\t for  SNMP\n            Indexing  purposes  only and\thas no relation\tto\n            any protocol\tvalue.",
              "x-yang-type": "integrated-services:SessionNumber",
              "readOnly": true
            },
            "rsvpSenderType": {
              "type": "string",
              "description": "The\ttype of\tsession\t(IP4, IP6, IP6\twith  flow\n            information,\tetc).",
              "x-yang-type": "integrated-services:SessionType",
              "readOnly": true
            },
            "rsvpSenderDestAddr": {
              "type": "string",
              "description": "The\tdestination address used by all\tsenders\tin\n            this\t session.   This object\tmay not\tbe changed\n            when\tthe  value  of\tthe  RowStatus\tobject\tis\n            'active'.",
              "format": "binary",
              "readOnly": true
            },
            "rsvpSenderAddr": {
              "type": "string",
              "description": "The\tsource address used by this sender in this\n            session.   This  object may not be changed when\n            the value of\tthe RowStatus object is\t'active'.",
              "format": "binary",
              "readOnly": true
            },
            "rsvpSenderDestAddrLength": {
              "type": "integer",
              "description": "The\tlength of the destination address in bits.\n            This\t is  the CIDR Prefix Length, which for IP4\n            hosts and multicast addresses is 32 bits.  This\n            object may not be changed when the value of the\n            RowStatus object is 'active'.",
              "minimum": -2147483648,
              "maximum": 2147483647,
              "readOnly": true
            },
            "rsvpSenderAddrLength": {
              "type": "integer",
              "description": "The\tlength of the sender's\taddress\t in  bits.\n            This\t is  the CIDR Prefix Length, which for IP4\n            hosts and multicast addresses is 32 bits.  This\n            object may not be changed when the value of the\n            RowStatus object is 'active'.",
              "minimum": -2147483648,
              "maximum": 2147483647,
              "readOnly": true
            },
            "rsvpSenderProtocol": {
              "type": "string",
              "description": "The\tIP Protocol used by  this  session.   This\n            object may not be changed when the value of the\n            RowStatus object is 'active'.",
              "x-yang-type": "integrated-services:Protocol",
              "readOnly": true
            },
            "rsvpSenderDestPort": {
              "type": "string",
              "description": "The\t UDP  or  TCP  port  number  used   as\t a\n            destination\t port  for  all\t senders  in  this\n            session.  If\tthe IP protocol\tin use,\t specified\n            by  rsvpSenderProtocol, is 50 (ESP) or 51 (AH),\n            this\t represents  a\tvirtual\t destination  port\n            number.   A value of\tzero indicates that the\tIP\n            protocol in use  does  not  have  ports.   This\n            object may not be changed when the value of the\n            RowStatus object is 'active'.",
              "x-yang-type": "integrated-services:Port",
              "readOnly": true
            },
            "rsvpSenderPort": {
              "type": "string",
              "description": "The\tUDP or TCP port\tnumber used  as\t a  source\n            port\t for  this sender in this session.  If the\n            IP\t protocol    in\t   use,\t   specified\tby\n            rsvpSenderProtocol is 50 (ESP) or 51\t(AH), this\n            represents a\tgeneralized port identifier (GPI).\n            A  value of zero indicates that the IP protocol\n            in use does not have\tports.\t This  object  may\n            not\tbe changed when\tthe value of the RowStatus\n            object is 'active'.",
              "x-yang-type": "integrated-services:Port",
              "readOnly": true
            },
            "rsvpSenderFlowId": {
              "type": "integer",
              "description": "The\tflow ID\tthat  this  sender  is\tusing,\tif\n            this\t is  an\tIPv6 session.",
              "minimum": -2147483648,
              "maximum": 2147483647,
              "readOnly": true
            },
            "rsvpSenderHopAddr": {
              "type": "string",
              "description": "The\taddress\tused  by  the  previous\t RSVP  hop\n            (which may be the original sender).",
              "format": "binary",
              "readOnly": true
            },
            "rsvpSenderHopLih": {
              "type": "integer",
              "description": "The\t Logical  Interface  Handle  used  by  the\n            previous  RSVP  hop\t(which may be the original\n            sender).",
              "minimum": -2147483648,
              "maximum": 2147483647,
              "readOnly": true
            },
            "rsvpSenderInterface": {
              "type": "string",
              "description": "The\tifIndex\tvalue of the  interface\t on  which\n            this\tPATH message was most recently received.",
              "x-yang-type": "if-mib:InterfaceIndex",
              "readOnly": true
            },
            "rsvpSenderTSpecRate": {
              "type": "string",
              "description": "The\tAverage\tBit  Rate  of  the  sender's  data\n            stream.    Within  a\t transmission  burst,  the\n            arrival   rate    may    be\t  as\tfast\tas\n            rsvpSenderTSpecPeakRate  (if\t supported  by the\n            service model); however, averaged across two\tor\n            more\t burst\tintervals,  the\t rate  should  not\n            exceed rsvpSenderTSpecRate.\n            \n            Note\tthat this is a prediction, often based\ton\n            the\tgeneral\t capability  of\ta type of codec\tor\n            particular encoding;\tthe measured average  rate\n            may be significantly\tlower.",
              "x-yang-type": "integrated-services:BitRate",
              "readOnly": true
            },
            "rsvpSenderTSpecPeakRate": {
              "type": "string",
              "description": "The\tPeak Bit Rate of the sender's data stream.\n            Traffic  arrival is not expected to exceed this\n            rate\tat any time, apart  from  the  effects\tof\n            jitter in the network.  If not specified in the\n            TSpec, this returns zero or noSuchValue.",
              "x-yang-type": "integrated-services:BitRate",
              "readOnly": true
            },
            "rsvpSenderTSpecBurst": {
              "type": "string",
              "description": "The\tsize of\tthe largest  burst  expected  from\n            the sender at a time.",
              "x-yang-type": "integrated-services:BurstSize",
              "readOnly": true
            },
            "rsvpSenderTSpecMinTU": {
              "type": "string",
              "description": "The\tminimum\tmessage\tsize for  this\tflow.  The\n            policing  algorithm will treat smaller messages\n            as though they are this size.",
              "x-yang-type": "integrated-services:MessageSize",
              "readOnly": true
            },
            "rsvpSenderTSpecMaxTU": {
              "type": "string",
              "description": "The\tmaximum\tmessage\tsize for  this\tflow.  The\n            admission  algorithm\t will  reject TSpecs whose\n            Maximum Transmission\tUnit, plus  the\t interface\n            headers, exceed the interface MTU.",
              "x-yang-type": "integrated-services:MessageSize",
              "readOnly": true
            },
            "rsvpSenderInterval": {
              "type": "string",
              "description": "The\t interval  between  refresh  messages\tas\n            advertised by the Previous Hop.",
              "x-yang-type": "RSVP-MIB:RefreshInterval",
              "readOnly": true
            },
            "rsvpSenderRSVPHop": {
              "type": "boolean",
              "description": "If TRUE, the node believes that  the  previous\n            IP  hop  is\tan  RSVP  hop.\tIf FALSE, the node\n            believes that the previous IP hop may not be\tan\n            RSVP\thop.",
              "readOnly": true
            },
            "rsvpSenderLastChange": {
              "type": "string",
              "description": "The\ttime of\t the  last  change  in\tthis  PATH\n            message;  This  is either the first time it was\n            received or the time\tof the most recent  change\n            in parameters.",
              "x-yang-type": "yang:timestamp",
              "readOnly": true
            },
            "rsvpSenderPolicy": {
              "type": "string",
              "description": "The\tcontents of the\tpolicy\tobject,\t displayed\n            as an uninterpreted string of octets, including\n            the object header.  In the absence of  such\tan\n            object, this\tshould be of zero length.",
              "format": "binary",
              "readOnly": true
            },
            "rsvpSenderAdspecBreak": {
              "type": "boolean",
              "description": "The\tglobal break bit general  characterization\n            parameter  from  the\tADSPEC.\t If TRUE, at least\n            one non-IS hop was detected in  the\tpath.\tIf\n            FALSE, no non-IS hops were detected.",
              "readOnly": true
            },
            "rsvpSenderAdspecHopCount": {
              "type": "integer",
              "description": "The\t  hop\tcount\tgeneral\t  characterization\n            parameter from the ADSPEC.  A return\tof zero\tor\n            noSuchValue\tindicates  one\tof  the\t following\n            conditions:\n            \n               the invalid bit was set\n               the parameter was\tnot present",
              "minimum": -2147483648,
              "maximum": 2147483647,
              "readOnly": true
            },
            "rsvpSenderAdspecPathBw": {
              "type": "string",
              "description": "The\t  path\t  bandwidth    estimate\t   general\n            characterization  parameter from the\tADSPEC.\t A\n            return of zero or noSuchValue indicates one\tof\n            the following conditions:\n            \n               the invalid bit was set\n               the parameter was\tnot present",
              "x-yang-type": "integrated-services:BitRate",
              "readOnly": true
            },
            "rsvpSenderAdspecMinLatency": {
              "type": "integer",
              "description": "The\t   minimum    path     latency\t   general\n            characterization  parameter from the\tADSPEC.\t A\n            return of zero or noSuchValue indicates one\tof\n            the following conditions:\n            \n               the invalid bit was set\n               the parameter was\tnot present",
              "minimum": -2147483648,
              "maximum": 2147483647,
              "readOnly": true
            },
            "rsvpSenderAdspecMtu": {
              "type": "integer",
              "description": "The\tcomposed Maximum Transmission Unit general\n            characterization  parameter from the\tADSPEC.\t A\n            return of zero or noSuchValue indicates one\tof\n            the following conditions:\n            \n               the invalid bit was set\n               the parameter was\tnot present",
              "minimum": -2147483648,
              "maximum": 2147483647,
              "readOnly": true
            },
            "rsvpSenderAdspecGuaranteedSvc": {
              "type": "boolean",
              "description": "If TRUE,  the  ADSPEC  contains  a\tGuaranteed\n            Service  fragment.\tIf  FALSE, the ADSPEC does\n            not contain a Guaranteed Service fragment.",
              "readOnly": true
            },
            "rsvpSenderAdspecGuaranteedBreak": {
              "type": "boolean",
              "description": "If TRUE, the Guaranteed Service  fragment  has\n            its\t'break'\t bit  set,  indicating that one\tor\n            more\tnodes along the\tpath do\t not  support  the\n            guaranteed\t  service.     If    FALSE,    and\n            rsvpSenderAdspecGuaranteedSvc  is   TRUE,   the\n            'break' bit is not set.\n            \n            If rsvpSenderAdspecGuaranteedSvc is FALSE, this\n            returns FALSE or noSuchValue.",
              "readOnly": true
            },
            "rsvpSenderAdspecGuaranteedCtot": {
              "type": "integer",
              "description": "If rsvpSenderAdspecGuaranteedSvc is\tTRUE, this\n            is\tthe  end-to-end\t composed  value  for  the\n            guaranteed service 'C' parameter.  A\treturn\tof\n            zero\t  or  noSuchValue  indicates  one  of  the\n            following conditions:\n            \n               the invalid bit was set\n               the parameter was\tnot present\n            \n            If rsvpSenderAdspecGuaranteedSvc is FALSE, this\n            returns zero\tor noSuchValue.",
              "minimum": -2147483648,
              "maximum": 2147483647,
              "readOnly": true
            },
            "rsvpSenderAdspecGuaranteedDtot": {
              "type": "integer",
              "description": "If rsvpSenderAdspecGuaranteedSvc is\tTRUE, this\n            is\tthe  end-to-end\t composed  value  for  the\n            guaranteed service 'D' parameter.  A\treturn\tof\n            zero\t  or  noSuchValue  indicates  one  of  the\n            following conditions:\n            \n               the invalid bit was set\n               the parameter was\tnot present\n            \n            If rsvpSenderAdspecGuaranteedSvc is FALSE, this\n            returns zero\tor noSuchValue.",
              "minimum": -2147483648,
              "maximum": 2147483647,
              "readOnly": true
            },
            "rsvpSenderAdspecGuaranteedCsum": {
              "type": "integer",
              "description": "If rsvpSenderAdspecGuaranteedSvc is\tTRUE, this\n            is\tthe  composed  value  for  the\tguaranteed\n            service 'C' parameter since the last\t reshaping\n            point.    A\t return\t of  zero  or  noSuchValue\n            indicates one of the\tfollowing conditions:\n            \n               the invalid bit was set\n               the parameter was\tnot present\n            \n            If rsvpSenderAdspecGuaranteedSvc is FALSE, this\n            returns zero\tor noSuchValue.",
              "minimum": -2147483648,
              "maximum": 2147483647,
              "readOnly": true
            },
            "rsvpSenderAdspecGuaranteedDsum": {
              "type": "integer",
              "description": "If rsvpSenderAdspecGuaranteedSvc is\tTRUE, this\n            is\tthe  composed  value  for  the\tguaranteed\n            service 'D' parameter since the last\t reshaping\n            point.    A\t return\t of  zero  or  noSuchValue\n            indicates one of the\tfollowing conditions:\n            \n               the invalid bit was set\n               the parameter was\tnot present\n            \n            If rsvpSenderAdspecGuaranteedSvc is FALSE, this\n            returns zero\tor noSuchValue.",
              "minimum": -2147483648,
              "maximum": 2147483647,
              "readOnly": true
            },
            "rsvpSenderAdspecGuaranteedHopCount": {
              "type": "integer",
              "description": "If rsvpSenderAdspecGuaranteedSvc is\tTRUE, this\n            is  the  service-specific  override\tof the hop\n            count general characterization  parameter  from\n            the\tADSPEC.\t  A  return of zero or noSuchValue\n            indicates one of the\tfollowing conditions:\n            \n               the invalid bit was set\n               the parameter was\tnot present\n            \n            If rsvpSenderAdspecGuaranteedSvc is FALSE, this\n            returns zero\tor noSuchValue.",
              "minimum": -2147483648,
              "maximum": 2147483647,
              "readOnly": true
            },
            "rsvpSenderAdspecGuaranteedPathBw": {
              "type": "string",
              "description": "If rsvpSenderAdspecGuaranteedSvc is\tTRUE, this\n            is  the  service-specific  override of the path\n            bandwidth  estimate\tgeneral\t  characterization\n            parameter from the ADSPEC.  A return\tof zero\tor\n            noSuchValue\tindicates  one\tof  the\t following\n            conditions:\n            \n               the invalid bit was set\n               the parameter was\tnot present\n            \n            If rsvpSenderAdspecGuaranteedSvc is FALSE, this\n            returns zero\tor noSuchValue.",
              "x-yang-type": "integrated-services:BitRate",
              "readOnly": true
            },
            "rsvpSenderAdspecGuaranteedMinLatency": {
              "type": "integer",
              "description": "If rsvpSenderAdspecGuaranteedSvc is\tTRUE, this\n            is the service-specific override of the minimum\n            path\tlatency\tgeneral\tcharacterization parameter\n            from\t  the\tADSPEC.\t   A  return  of  zero\tor\n            noSuchValue\tindicates  one\tof  the\t following\n            conditions:\n            \n               the invalid bit was set\n               the parameter was\tnot present\n            \n            If rsvpSenderAdspecGuaranteedSvc is FALSE, this\n            returns zero\tor noSuchValue.",
              "minimum": -2147483648,
              "maximum": 2147483647,
              "readOnly": true
            },
            "rsvpSenderAdspecGuaranteedMtu": {
              "type": "integer",
              "description": "If rsvpSenderAdspecGuaranteedSvc is\tTRUE, this\n            is\tthe   service-specific\t override  of  the\n            composed  Maximum  Transmission  Unit   general\n            characterization  parameter from the\tADSPEC.\t A\n            return of zero or noSuchValue indicates one\tof\n            the following conditions:\n            \n               the invalid bit was set\n               the parameter was\tnot present\n            \n            If rsvpSenderAdspecGuaranteedSvc is FALSE, this\n            returns zero\tor noSuchValue.",
              "minimum": -2147483648,
              "maximum": 2147483647,
              "readOnly": true
            },
            "rsvpSenderAdspecCtrlLoadSvc": {
              "type": "boolean",
              "description": "If TRUE, the ADSPEC\tcontains a Controlled Load\n            Service  fragment.\tIf  FALSE, the ADSPEC does\n            not\t contain   a   Controlled   Load   Service\n            fragment.",
              "readOnly": true
            },
            "rsvpSenderAdspecCtrlLoadBreak": {
              "type": "boolean",
              "description": "If TRUE, the Controlled Load Service  fragment\n            has its 'break' bit set, indicating that one\tor\n            more\tnodes along the\tpath do\t not  support  the\n            controlled\tload   service.\t   If  FALSE,  and\n            rsvpSenderAdspecCtrlLoadSvc\t is   TRUE,    the\n            'break' bit is not set.\n            \n            If rsvpSenderAdspecCtrlLoadSvc is  FALSE,  this\n            returns FALSE or noSuchValue.",
              "readOnly": true
            },
            "rsvpSenderAdspecCtrlLoadHopCount": {
              "type": "integer",
              "description": "If rsvpSenderAdspecCtrlLoadSvc is  TRUE,  this\n            is  the  service-specific  override\tof the hop\n            count general characterization  parameter  from\n            the\tADSPEC.\t  A  return of zero or noSuchValue\n            indicates one of the\tfollowing conditions:\n            \n               the invalid bit was set\n               the parameter was\tnot present\n            \n            If rsvpSenderAdspecCtrlLoadSvc is  FALSE,  this\n            returns zero\tor noSuchValue.",
              "minimum": -2147483648,
              "maximum": 2147483647,
              "readOnly": true
            },
            "rsvpSenderAdspecCtrlLoadPathBw": {
              "type": "string",
              "description": "If rsvpSenderAdspecCtrlLoadSvc is  TRUE,  this\n            is  the  service-specific  override of the path\n            bandwidth  estimate\tgeneral\t  characterization\n            parameter from the ADSPEC.  A return\tof zero\tor\n            noSuchValue\tindicates  one\tof  the\t following\n            conditions:\n            \n               the invalid bit was set\n               the parameter was\tnot present\n            \n            If rsvpSenderAdspecCtrlLoadSvc is  FALSE,  this\n            returns zero\tor noSuchValue.",
              "x-yang-type": "integrated-services:BitRate",
              "readOnly": true
            },
            "rsvpSenderAdspecCtrlLoadMinLatency": {
              "type": "integer",
              "description": "If rsvpSenderAdspecCtrlLoadSvc is  TRUE,  this\n            is the service-specific override of the minimum\n            path\tlatency\tgeneral\tcharacterization parameter\n            from\t  the\tADSPEC.\t   A  return  of  zero\tor\n            noSuchValue\tindicates  one\tof  the\t following\n            conditions:\n            \n               the invalid bit was set\n               the parameter was\tnot present\n            \n            If rsvpSenderAdspecCtrlLoadSvc is  FALSE,  this\n            returns zero\tor noSuchValue.",
              "minimum": -2147483648,
              "maximum": 2147483647,
              "readOnly": true
            },
            "rsvpSenderAdspecCtrlLoadMtu": {
              "type": "integer",
              "description": "If rsvpSenderAdspecCtrlLoadSvc is  TRUE,  this\n            is\tthe   service-specific\t override  of  the\n            composed  Maximum  Transmission  Unit   general\n            characterization  parameter from the\tADSPEC.\t A\n            return of zero or noSuchValue indicates one\tof\n            the following conditions:\n            \n               the invalid bit was set\n               the parameter was\tnot present\n            \n            If rsvpSenderAdspecCtrlLoadSvc is  FALSE,  this\n            returns zero\tor noSuchValue.",
              "minimum": -2147483648,
              "maximum": 2147483647,
              "readOnly": true
            },
            "rsvpSenderStatus": {
              "type": "string",
              "description": "'active' for all active PATH  messages.   This\n            object  may\tbe  used  to  install  static PATH\n            information or delete PATH information.",
              "x-yang-type": "snmpv2-tc:RowStatus",
              "readOnly": true
            },
            "rsvpSenderTTL": {
              "type": "integer",
              "description": "The\tTTL value in the RSVP header that was last\n            received.",
              "minimum": -2147483648,
              "maximum": 2147483647,
              "readOnly": true
            }
          }
        }
      },
      "RSVP-MIB_rsvpSenderOutInterfaceEntry": {
        "type": "array",
        "description": "List of outgoing interfaces\tthat a\tparticular\n          PATH\tmessage\thas.",
        "items": {
          "type": "object",
          "properties": {
            "rsvpSessionNumber": {
              "type": "string",
              "description": "rsvpSessionNumber",
              "x-yang-type": "leafref",
              "readOnly": true
            },
            "rsvpSenderNumber": {
              "type": "string",
              "description": "rsvpSenderNumber",
              "x-yang-type": "leafref",
              "readOnly": true
            },
            "ifIndex": {
              "type": "string",
              "description": "ifIndex",
              "x-yang-type": "leafref",
              "readOnly": true
            },
            "rsvpSenderOutInterfaceStatus": {
              "type": "string",
              "description": "'active' for all active PATH messages.",
              "x-yang-type": "snmpv2-tc:RowStatus",
              "readOnly": true
            }
          }
        }
      },
      "RSVP-MIB_rsvpResvEntry": {
        "type": "array",
        "description": "Information\tdescribing the\tstate  information\n          displayed  by  a single receiver's RESV message\n          concerning a\tsingle sender.",
        "items": {
          "type": "object",
          "properties": {
            "rsvpSessionNumber": {
              "type": "string",
              "description": "rsvpSessionNumber",
              "x-yang-type": "leafref",
              "readOnly": true
            },
            "rsvpResvNumber": {
              "type": "string",
              "description": "The\tnumber of this reservation request.   This\n            is  for  SNMP Indexing purposes only\tand has\tno\n            relation to any protocol value.",
              "x-yang-type": "integrated-services:SessionNumber",
              "readOnly": true
            },
            "rsvpResvType": {
              "type": "string",
              "description": "The\ttype of\tsession\t(IP4, IP6, IP6\twith  flow\n            information,\tetc).",
              "x-yang-type": "integrated-services:SessionType",
              "readOnly": true
            },
            "rsvpResvDestAddr": {
              "type": "string",
              "description": "The\tdestination address used by all\tsenders\tin\n            this\t session.   This object\tmay not\tbe changed\n            when\tthe  value  of\tthe  RowStatus\tobject\tis\n            'active'.",
              "format": "binary",
              "readOnly": true
            },
            "rsvpResvSenderAddr": {
              "type": "string",
              "description": "The\tsource address of the sender  selected\tby\n            this\t reservation.\tThe  value  of\tall zeroes\n            indicates 'all senders'.  This object  may  not\n            be  changed\twhen  the  value  of the RowStatus\n            object is 'active'.",
              "format": "binary",
              "readOnly": true
            },
            "rsvpResvDestAddrLength": {
              "type": "integer",
              "description": "The\tlength of the destination address in bits.\n            This\t is  the CIDR Prefix Length, which for IP4\n            hosts and multicast addresses is 32 bits.  This\n            object may not be changed when the value of the\n            RowStatus object is 'active'.",
              "minimum": -2147483648,
              "maximum": 2147483647,
              "readOnly": true
            },
            "rsvpResvSenderAddrLength": {
              "type": "integer",
              "description": "The\tlength of the sender's\taddress\t in  bits.\n            This\t is  the CIDR Prefix Length, which for IP4\n            hosts and multicast addresses is 32 bits.  This\n            object may not be changed when the value of the\n            RowStatus object is 'active'.",
              "minimum": -2147483648,
              "maximum": 2147483647,
              "readOnly": true
            },
            "rsvpResvProtocol": {
              "type": "string",
              "description": "The\tIP Protocol used by  this  session.   This\n            object may not be changed when the value of the\n            RowStatus object is 'active'.",
              "x-yang-type": "integrated-services:Protocol",
              "readOnly": true
            },
            "rsvpResvDestPort": {
              "type": "string",
              "description": "The\t UDP  or  TCP  port  number  used   as\t a\n            destination\t port  for  all\t senders  in  this\n            session.  If\tthe IP protocol\tin use,\t specified\n            by  rsvpResvProtocol,  is  50 (ESP) or 51 (AH),\n            this\t represents  a\tvirtual\t destination  port\n            number.   A value of\tzero indicates that the\tIP\n            protocol in use  does  not  have  ports.   This\n            object may not be changed when the value of the\n            RowStatus object is 'active'.",
              "x-yang-type": "integrated-services:Port",
              "readOnly": true
            },
            "rsvpResvPort": {
              "type": "string",
              "description": "The\tUDP or TCP port\tnumber used  as\t a  source\n            port\t for  this sender in this session.  If the\n            IP\t protocol    in\t   use,\t   specified\tby\n            rsvpResvProtocol  is\t 50 (ESP) or 51\t(AH), this\n            represents a\tgeneralized port identifier (GPI).\n            A  value of zero indicates that the IP protocol\n            in use does not have\tports.\t This  object  may\n            not\tbe changed when\tthe value of the RowStatus\n            object is 'active'.",
              "x-yang-type": "integrated-services:Port",
              "readOnly": true
            },
            "rsvpResvHopAddr": {
              "type": "string",
              "description": "The\taddress\tused by\tthe next RSVP  hop  (which\n            may be the ultimate receiver).",
              "format": "binary",
              "readOnly": true
            },
            "rsvpResvHopLih": {
              "type": "integer",
              "description": "The\tLogical\tInterface Handle received from the\n            previous  RSVP  hop\t(which may be the ultimate\n            receiver).",
              "minimum": -2147483648,
              "maximum": 2147483647,
              "readOnly": true
            },
            "rsvpResvInterface": {
              "type": "string",
              "description": "The\tifIndex\tvalue of the  interface\t on  which\n            this\tRESV message was most recently received.",
              "x-yang-type": "if-mib:InterfaceIndex",
              "readOnly": true
            },
            "rsvpResvService": {
              "type": "string",
              "description": "The\tQoS Service  classification  requested\tby\n            the receiver.",
              "x-yang-type": "integrated-services:QosService",
              "readOnly": true
            },
            "rsvpResvTSpecRate": {
              "type": "string",
              "description": "The\tAverage\tBit  Rate  of  the  sender's  data\n            stream.    Within  a\t transmission  burst,  the\n            arrival   rate    may    be\t  as\tfast\tas\n            rsvpResvTSpecPeakRate   (if\tsupported  by  the\n            service model); however, averaged across two\tor\n            more\t burst\tintervals,  the\t rate  should  not\n            exceed rsvpResvTSpecRate.\n            \n            Note\tthat this is a prediction, often based\ton\n            the\tgeneral\t capability  of\ta type of codec\tor\n            particular encoding;\tthe measured average  rate\n            may be significantly\tlower.",
              "x-yang-type": "integrated-services:BitRate",
              "readOnly": true
            },
            "rsvpResvTSpecPeakRate": {
              "type": "string",
              "description": "The\tPeak Bit Rate of the sender's data stream.\n            Traffic  arrival is not expected to exceed this\n            rate\tat any time, apart  from  the  effects\tof\n            jitter in the network.  If not specified in the\n            TSpec, this returns zero or noSuchValue.",
              "x-yang-type": "integrated-services:BitRate",
              "readOnly": true
            },
            "rsvpResvTSpecBurst": {
              "type": "string",
              "description": "The\tsize of\tthe largest  burst  expected  from\n            the sender at a time.\n            \n            If this is less than\t the  sender's\tadvertised\n            burst  size,\tthe receiver is\tasking the network\n            to provide flow pacing  beyond  what\t would\tbe\n            provided   under   normal  circumstances.  Such\n            pacing is at\tthe network's option.",
              "x-yang-type": "integrated-services:BurstSize",
              "readOnly": true
            },
            "rsvpResvTSpecMinTU": {
              "type": "string",
              "description": "The\tminimum\tmessage\tsize for  this\tflow.  The\n            policing  algorithm will treat smaller messages\n            as though they are this size.",
              "x-yang-type": "integrated-services:MessageSize",
              "readOnly": true
            },
            "rsvpResvTSpecMaxTU": {
              "type": "string",
              "description": "The\tmaximum\tmessage\tsize for  this\tflow.  The\n            admission  algorithm\t will  reject TSpecs whose\n            Maximum Transmission\tUnit, plus  the\t interface\n            headers, exceed the interface MTU.",
              "x-yang-type": "integrated-services:MessageSize",
              "readOnly": true
            },
            "rsvpResvRSpecRate": {
              "type": "string",
              "description": "If the requested  service  is  Guaranteed,\tas\n            specified   by  rsvpResvService,  this  is  the\n            clearing  rate   that   is\tbeing\trequested.\n            Otherwise,  it is zero, or the agent\tmay return\n            noSuchValue.",
              "x-yang-type": "integrated-services:BitRate",
              "readOnly": true
            },
            "rsvpResvRSpecSlack": {
              "type": "integer",
              "description": "If the requested  service  is  Guaranteed,\tas\n            specified by\trsvpResvService, this is the delay\n            slack.  Otherwise, it is zero, or the agent may\n            return noSuchValue.",
              "minimum": -2147483648,
              "maximum": 2147483647,
              "readOnly": true
            },
            "rsvpResvInterval": {
              "type": "string",
              "description": "The\t interval  between  refresh  messages\tas\n            advertised by the Next Hop.",
              "x-yang-type": "RSVP-MIB:RefreshInterval",
              "readOnly": true
            },
            "rsvpResvScope": {
              "type": "string",
              "description": "The\tcontents of the\tscope object, displayed\tas\n            an  uninterpreted  string  of octets, including\n            the object header.  In the absence of  such\tan\n            object, this\tshould be of zero length.\n            \n            If the length  is  non-zero,\t this  contains\t a\n            series of IP4 or IP6\taddresses.",
              "format": "binary",
              "readOnly": true
            },
            "rsvpResvShared": {
              "type": "boolean",
              "description": "If TRUE, a reservation shared among\tsenders\tis\n            requested.  If FALSE, a reservation specific\tto\n            this\tsender is requested.",
              "readOnly": true
            },
            "rsvpResvExplicit": {
              "type": "boolean",
              "description": "If TRUE, individual\tsenders\tare  listed  using\n            Filter  Specifications.   If\tFALSE, all senders\n            are implicitly selected.  The Scope Object will\n            contain  a list of senders that need\tto receive\n            this\treservation request  for  the  purpose\tof\n            routing the RESV message.",
              "readOnly": true
            },
            "rsvpResvRSVPHop": {
              "type": "boolean",
              "description": "If TRUE, the node believes that  the  previous\n            IP  hop  is\tan  RSVP  hop.\tIf FALSE, the node\n            believes that the previous IP hop may not be\tan\n            RSVP\thop.",
              "readOnly": true
            },
            "rsvpResvLastChange": {
              "type": "string",
              "description": "The\t time  of  the\t last\tchange\t in   this\n            reservation\trequest;  This is either the first\n            time\tit was received\tor the time  of\t the  most\n            recent change in parameters.",
              "x-yang-type": "yang:timestamp",
              "readOnly": true
            },
            "rsvpResvPolicy": {
              "type": "string",
              "description": "The\tcontents of the\tpolicy\tobject,\t displayed\n            as an uninterpreted string of octets, including\n            the object header.  In the absence of  such\tan\n            object, this\tshould be of zero length.",
              "format": "binary",
              "readOnly": true
            },
            "rsvpResvStatus": {
              "type": "string",
              "description": "'active' for all active RESV  messages.   This\n            object  may\tbe  used  to  install  static RESV\n            information or delete RESV information.",
              "x-yang-type": "snmpv2-tc:RowStatus",
              "readOnly": true
            },
            "rsvpResvTTL": {
              "type": "integer",
              "description": "The\tTTL value in the RSVP header that was last\n            received.",
              "minimum": -2147483648,
              "maximum": 2147483647,
              "readOnly": true
            },
            "rsvpResvFlowId": {
              "type": "integer",
              "description": "The\tflow ID\tthat this receiver  is\tusing,\tif\n            this\t is  an\tIPv6 session.",
              "minimum": -2147483648,
              "maximum": 2147483647,
              "readOnly": true
            }
          }
        }
      },
      "RSVP-MIB_rsvpResvFwdEntry": {
        "type": "array",
        "description": "Information\tdescribing the\tstate  information\n          displayed   upstream\t  in   an   RESV   message\n          concerning a\tsingle sender.",
        "items": {
          "type": "object",
          "properties": {
            "rsvpSessionNumber": {
              "type": "string",
              "description": "rsvpSessionNumber",
              "x-yang-type": "leafref",
              "readOnly": true
            },
            "rsvpResvFwdNumber": {
              "type": "string",
              "description": "The\tnumber of this reservation request.   This\n            is  for  SNMP Indexing purposes only\tand has\tno\n            relation to any protocol value.",
              "x-yang-type": "integrated-services:SessionNumber",
              "readOnly": true
            },
            "rsvpResvFwdType": {
              "type": "string",
              "description": "The\ttype of\tsession\t(IP4, IP6, IP6\twith  flow\n            information,\tetc).",
              "x-yang-type": "integrated-services:SessionType",
              "readOnly": true
            },
            "rsvpResvFwdDestAddr": {
              "type": "string",
              "description": "The\tdestination address used by all\tsenders\tin\n            this\t session.   This object\tmay not\tbe changed\n            when\tthe  value  of\tthe  RowStatus\tobject\tis\n            'active'.",
              "format": "binary",
              "readOnly": true
            },
            "rsvpResvFwdSenderAddr": {
              "type": "string",
              "description": "The\tsource address of the sender  selected\tby\n            this\t reservation.\tThe  value  of\tall zeroes\n            indicates 'all senders'.  This object  may  not\n            be  changed\twhen  the  value  of the RowStatus\n            object is 'active'.",
              "format": "binary",
              "readOnly": true
            },
            "rsvpResvFwdDestAddrLength": {
              "type": "integer",
              "description": "The\tlength of the destination address in bits.\n            This\t is  the CIDR Prefix Length, which for IP4\n            hosts and multicast addresses is 32 bits.  This\n            object may not be changed when the value of the\n            RowStatus object is 'active'.",
              "minimum": -2147483648,
              "maximum": 2147483647,
              "readOnly": true
            },
            "rsvpResvFwdSenderAddrLength": {
              "type": "integer",
              "description": "The\tlength of the sender's\taddress\t in  bits.\n            This\t is  the CIDR Prefix Length, which for IP4\n            hosts and multicast addresses is 32 bits.  This\n            object may not be changed when the value of the\n            RowStatus object is 'active'.",
              "minimum": -2147483648,
              "maximum": 2147483647,
              "readOnly": true
            },
            "rsvpResvFwdProtocol": {
              "type": "string",
              "description": "The\tIP Protocol used by a session. for  secure\n            sessions,  this  indicates  IP  Security.  This\n            object may not be changed when the value of the\n            RowStatus object is 'active'.",
              "x-yang-type": "integrated-services:Protocol",
              "readOnly": true
            },
            "rsvpResvFwdDestPort": {
              "type": "string",
              "description": "The\t UDP  or  TCP  port  number  used   as\t a\n            destination\t port  for  all\t senders  in  this\n            session.  If\tthe IP protocol\tin use,\t specified\n            by rsvpResvFwdProtocol, is 50 (ESP) or 51 (AH),\n            this\t represents  a\tvirtual\t destination  port\n            number.   A value of\tzero indicates that the\tIP\n            protocol in use  does  not  have  ports.   This\n            object may not be changed when the value of the\n            RowStatus object is 'active'.",
              "x-yang-type": "integrated-services:Port",
              "readOnly": true
            },
            "rsvpResvFwdPort": {
              "type": "string",
              "description": "The\tUDP or TCP port\tnumber used  as\t a  source\n            port\t for  this sender in this session.  If the\n            IP\t protocol    in\t   use,\t   specified\tby\n            rsvpResvFwdProtocol\tis  50\t(ESP)  or 51 (AH),\n            this\trepresents a generalized  port\tidentifier\n            (GPI).   A  value of\tzero indicates that the\tIP\n            protocol in use  does  not  have  ports.   This\n            object may not be changed when the value of the\n            RowStatus object is 'active'.",
              "x-yang-type": "integrated-services:Port",
              "readOnly": true
            },
            "rsvpResvFwdHopAddr": {
              "type": "string",
              "description": "The\taddress\tof the (previous) RSVP\tthat  will\n            receive this\tmessage.",
              "format": "binary",
              "readOnly": true
            },
            "rsvpResvFwdHopLih": {
              "type": "integer",
              "description": "The\t Logical  Interface  Handle  sent  to  the\n            (previous)\tRSVP   that   will   receive  this\n            message.",
              "minimum": -2147483648,
              "maximum": 2147483647,
              "readOnly": true
            },
            "rsvpResvFwdInterface": {
              "type": "string",
              "description": "The\tifIndex\tvalue of the  interface\t on  which\n            this\tRESV message was most recently sent.",
              "x-yang-type": "if-mib:InterfaceIndex",
              "readOnly": true
            },
            "rsvpResvFwdService": {
              "type": "string",
              "description": "The\tQoS Service classification requested.",
              "x-yang-type": "integrated-services:QosService",
              "readOnly": true
            },
            "rsvpResvFwdTSpecRate": {
              "type": "string",
              "description": "The\tAverage\tBit  Rate  of  the  sender's  data\n            stream.    Within  a\t transmission  burst,  the\n            arrival   rate    may    be\t  as\tfast\tas\n            rsvpResvFwdTSpecPeakRate  (if  supported by the\n            service model); however, averaged across two\tor\n            more\t burst\tintervals,  the\t rate  should  not\n            exceed rsvpResvFwdTSpecRate.\n            \n            Note\tthat this is a prediction, often based\ton\n            the\tgeneral\t capability  of\ta type of codec\tor\n            particular encoding;\tthe measured average  rate\n            may be significantly\tlower.",
              "x-yang-type": "integrated-services:BitRate",
              "readOnly": true
            },
            "rsvpResvFwdTSpecPeakRate": {
              "type": "string",
              "description": "The\tPeak Bit Rate of the sender's data  stream\n            Traffic  arrival is not expected to exceed this\n            rate\tat any time, apart  from  the  effects\tof\n            jitter in the network.  If not specified in the\n            TSpec, this returns zero or noSuchValue.",
              "x-yang-type": "integrated-services:BitRate",
              "readOnly": true
            },
            "rsvpResvFwdTSpecBurst": {
              "type": "string",
              "description": "The\tsize of\tthe largest  burst  expected  from\n            the sender at a time.\n            \n            If this is less than\t the  sender's\tadvertised\n            burst  size,\tthe receiver is\tasking the network\n            to provide flow pacing  beyond  what\t would\tbe\n            provided   under   normal  circumstances.  Such\n            pacing is at\tthe network's option.",
              "x-yang-type": "integrated-services:BurstSize",
              "readOnly": true
            },
            "rsvpResvFwdTSpecMinTU": {
              "type": "string",
              "description": "The\tminimum\tmessage\tsize for  this\tflow.  The\n            policing  algorithm will treat smaller messages\n            as though they are this size.",
              "x-yang-type": "integrated-services:MessageSize",
              "readOnly": true
            },
            "rsvpResvFwdTSpecMaxTU": {
              "type": "string",
              "description": "The\tmaximum\tmessage\tsize for  this\tflow.  The\n            admission  algorithm\t will  reject TSpecs whose\n            Maximum Transmission\tUnit, plus  the\t interface\n            headers, exceed the interface MTU.",
              "x-yang-type": "integrated-services:MessageSize",
              "readOnly": true
            },
            "rsvpResvFwdRSpecRate": {
              "type": "string",
              "description": "If the requested  service  is  Guaranteed,\tas\n            specified   by  rsvpResvService,  this  is  the\n            clearing  rate   that   is\tbeing\trequested.\n            Otherwise,  it is zero, or the agent\tmay return\n            noSuchValue.",
              "x-yang-type": "integrated-services:BitRate",
              "readOnly": true
            },
            "rsvpResvFwdRSpecSlack": {
              "type": "integer",
              "description": "If the requested  service  is  Guaranteed,\tas\n            specified by\trsvpResvService, this is the delay\n            slack.  Otherwise, it is zero, or the agent may\n            return noSuchValue.",
              "minimum": -2147483648,
              "maximum": 2147483647,
              "readOnly": true
            },
            "rsvpResvFwdInterval": {
              "type": "string",
              "description": "The\t  interval   between   refresh\t  messages\n            advertised to the Previous Hop.",
              "x-yang-type": "RSVP-MIB:RefreshInterval",
              "readOnly": true
            },
            "rsvpResvFwdScope": {
              "type": "string",
              "description": "The\tcontents of the\tscope object, displayed\tas\n            an  uninterpreted  string  of octets, including\n            the object header.  In the absence of  such\tan\n            object, this\tshould be of zero length.",
              "format": "binary",
              "readOnly": true
            },
            "rsvpResvFwdShared": {
              "type": "boolean",
              "description": "If TRUE, a reservation shared among\tsenders\tis\n            requested.  If FALSE, a reservation specific\tto\n            this\tsender is requested.",
              "readOnly": true
            },
            "rsvpResvFwdExplicit": {
              "type": "boolean",
              "description": "If TRUE, individual\tsenders\tare  listed  using\n            Filter  Specifications.   If\tFALSE, all senders\n            are implicitly selected.  The Scope Object will\n            contain  a list of senders that need\tto receive\n            this\treservation request  for  the  purpose\tof\n            routing the RESV message.",
              "readOnly": true
            },
            "rsvpResvFwdRSVPHop": {
              "type": "boolean",
              "description": "If TRUE, the node believes that  the  next\tIP\n            hop\tis  an\tRSVP  hop.   If\t FALSE,\t the  node\n            believes that the next IP hop  may  not  be\tan\n            RSVP\thop.",
              "readOnly": true
            },
            "rsvpResvFwdLastChange": {
              "type": "string",
              "description": "The\ttime of\tthe last change\tin  this  request;\n            This\t is  either  the first time it was sent\tor\n            the\ttime  of  the  most   recent   change\tin\n            parameters.",
              "x-yang-type": "yang:timestamp",
              "readOnly": true
            },
            "rsvpResvFwdPolicy": {
              "type": "string",
              "description": "The\tcontents of the\tpolicy\tobject,\t displayed\n            as an uninterpreted string of octets, including\n            the object header.  In the absence of  such\tan\n            object, this\tshould be of zero length.",
              "format": "binary",
              "readOnly": true
            },
            "rsvpResvFwdStatus": {
              "type": "string",
              "description": "'active' for all active RESV  messages.   This\n            object may be used to delete\tRESV information.",
              "x-yang-type": "snmpv2-tc:RowStatus",
              "readOnly": true
            },
            "rsvpResvFwdTTL": {
              "type": "integer",
              "description": "The\tTTL value in the RSVP header that was last\n            received.",
              "minimum": -2147483648,
              "maximum": 2147483647,
              "readOnly": true
            },
            "rsvpResvFwdFlowId": {
              "type": "integer",
              "description": "The\tflow ID\tthat this receiver  is\tusing,\tif\n            this\t is  an\tIPv6 session.",
              "minimum": -2147483648,
              "maximum": 2147483647,
              "readOnly": true
            }
          }
        }
      },
      "RSVP-MIB_rsvpIfEntry": {
        "type": "array",
        "description": "The\tRSVP-specific attributes of  the  a  given\n          interface.",
        "items": {
          "type": "object",
          "properties": {
            "ifIndex": {
              "type": "string",
              "description": "ifIndex",
              "x-yang-type": "leafref",
              "readOnly": true
            },
            "rsvpIfUdpNbrs": {
              "type": "integer",
              "description": "The\tnumber of neighbors perceived to be  using\n            only\tthe RSVP UDP Encapsulation.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "rsvpIfIpNbrs": {
              "type": "integer",
              "description": "The\tnumber of neighbors perceived to be  using\n            only\tthe RSVP IP Encapsulation.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "rsvpIfNbrs": {
              "type": "integer",
              "description": "The\tnumber of neighbors  currently\tperceived;\n            this\t will  exceed rsvpIfIpNbrs + rsvpIfUdpNbrs\n            by  the  number   of\t  neighbors   using   both\n            encapsulations.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "rsvpIfRefreshBlockadeMultiple": {
              "type": "integer",
              "description": "The\tvalue of the RSVP value\t'Kb', Which is the\n            minimum   number   of  refresh  intervals  that\n            blockade state will last once entered.",
              "minimum": -2147483648,
              "maximum": 2147483647,
              "readOnly": true
            },
            "rsvpIfRefreshMultiple": {
              "type": "integer",
              "description": "The\tvalue of the RSVP value\t'K', which is  the\n            number  of  refresh intervals which must elapse\n            (minimum) before a PATH or RESV  message  which\n            is not being\trefreshed will be aged out.",
              "minimum": -2147483648,
              "maximum": 2147483647,
              "readOnly": true
            },
            "rsvpIfTTL": {
              "type": "integer",
              "description": "The\tvalue of SEND_TTL used on  this\t interface\n            for\tmessages  this node originates.\t If set\tto\n            zero, the node determines  the  TTL\tvia  other\n            means.",
              "minimum": -2147483648,
              "maximum": 2147483647,
              "readOnly": true
            },
            "rsvpIfRefreshInterval": {
              "type": "string",
              "description": "The\tvalue of the RSVP value\t'R', which is  the\n            minimum period between refresh transmissions\tof\n            a given PATH\tor RESV\tmessage\ton an interface.",
              "x-yang-type": "snmpv2-tc:TimeInterval",
              "readOnly": true
            },
            "rsvpIfRouteDelay": {
              "type": "string",
              "description": "The\tapproximate period from\tthe time  a  route\n            is  changed\tto  the\t time  a resulting message\n            appears on the interface.",
              "x-yang-type": "snmpv2-tc:TimeInterval",
              "readOnly": true
            },
            "rsvpIfEnabled": {
              "type": "boolean",
              "description": "If TRUE, RSVP is enabled  on  this\tInterface.\n            If\tFALSE,\t RSVP\tis  not\t enabled  on  this\n            interface.",
              "readOnly": true
            },
            "rsvpIfUdpRequired": {
              "type": "boolean",
              "description": "If TRUE, manual configuration forces  the  use\n            of  UDP  encapsulation  on  the  interface.\tIf\n            FALSE,  UDP\tencapsulation  is  only\t used\tif\n            rsvpIfUdpNbrs is not\tzero.",
              "readOnly": true
            },
            "rsvpIfStatus": {
              "type": "string",
              "description": "'active' on\tinterfaces that\tare configured for\n            RSVP.",
              "x-yang-type": "snmpv2-tc:RowStatus",
              "readOnly": true
            }
          }
        }
      },
      "RSVP-MIB_rsvpNbrEntry": {
        "type": "array",
        "description": "Information\t  describing   a    single    RSVP\n          Neighbor.",
        "items": {
          "type": "object",
          "properties": {
            "ifIndex": {
              "type": "string",
              "description": "ifIndex",
              "x-yang-type": "leafref",
              "readOnly": true
            },
            "rsvpNbrAddress": {
              "type": "string",
              "description": "The\tIP4 or IP6 Address used\tby this\t neighbor.\n            This\t object\t may not be changed when the value\n            of the RowStatus object is 'active'.",
              "format": "binary",
              "readOnly": true
            },
            "rsvpNbrProtocol": {
              "type": "string",
              "description": "The\t  encapsulation\t  being\t  used\t by   this\n            neighbor.",
              "x-yang-type": "RSVP-MIB:RsvpEncapsulation",
              "readOnly": true
            },
            "rsvpNbrStatus": {
              "type": "string",
              "description": "'active' for all neighbors.\t This  object  may\n            be\tused   to  configure  neighbors.   In  the\n            presence   of   configured\t neighbors,    the\n            implementation  may\t(but  is  not required to)\n            limit the  set  of  valid  neighbors\t to  those\n            configured.",
              "x-yang-type": "snmpv2-tc:RowStatus",
              "readOnly": true
            }
          }
        }
      },
      "restconf-error": {
        "type": "object",
        "description": "Standard RESTCONF error response (RFC 8040 Section 7.1)",
        "properties": {
          "ietf-restconf:errors": {
            "type": "object",
            "properties": {
              "error": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {
                    "error-type": {
                      "type": "string",
                      "enum": [
                        "transport",
                        "rpc",
                        "protocol",
                        "application"
                      ],
                      "description": "Layer where the error occurred"
                    },
                    "error-tag": {
                      "type": "string",
                      "description": "Enumerated error tag (e.g. invalid-value, data-missing, access-denied)"
                    },
                    "error-severity": {
                      "type": "string",
                      "enum": [
                        "error",
                        "warning"
                      ],
                      "description": "Error severity"
                    },
                    "error-app-tag": {
                      "type": "string",
                      "description": "Application-specific error tag"
                    },
                    "error-path": {
                      "type": "string",
                      "description": "YANG instance-identifier of the error node"
                    },
                    "error-message": {
                      "type": "string",
                      "description": "Human-readable error description"
                    }
                  },
                  "required": [
                    "error-type",
                    "error-tag"
                  ]
                }
              }
            }
          }
        },
        "example": {
          "ietf-restconf:errors": {
            "error": [
              {
                "error-type": "protocol",
                "error-tag": "invalid-value",
                "error-severity": "error",
                "error-message": "Invalid input parameter"
              }
            ]
          }
        }
      }
    },
    "securitySchemes": {
      "basicAuth": {
        "type": "http",
        "scheme": "basic"
      }
    }
  },
  "security": [
    {
      "basicAuth": []
    }
  ],
  "tags": [
    {
      "name": "RSVP-MIB",
      "description": "MIB operations for RSVP-MIB"
    }
  ],
  "externalDocs": {
    "description": "Cisco SNMP Object Navigator",
    "url": "https://snmp.cloudapps.cisco.com/Support/IOS/do/BrowseMIB.do"
  }
}
