{
  "openapi": "3.0.0",
  "info": {
    "title": "CISCO-EIGRP-MIB MIB API",
    "version": "1.0.0",
    "description": "SNMP MIB translated to YANG data model\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 CISCO-EIGRP-MIB structure](https://jeremycohoe.github.io/cisco-ios-xe-openapi-swagger/yang-trees/CISCO-EIGRP-MIB.html)",
    "contact": {
      "name": "Cisco DevNet",
      "url": "https://developer.cisco.com"
    },
    "x-yang-module": "CISCO-EIGRP-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/CISCO-EIGRP-MIB:cEigrpVpnTable": {
      "get": {
        "summary": "Get cEigrpVpnTable data",
        "description": "Retrieve cEigrpVpnTable operational data from MIB",
        "tags": [
          "CISCO-EIGRP-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "description": "This table contains information on those VPN's configured\n        to run EIGRP.  The VPN creation on a router is independent\n        of the routing protocol to be used over it.   A VPN is\n        given a name and has a dedicated routing table associated\n        with it.  This routing table is identified internally\n        by a unique integer value.",
                  "properties": {
                    "cEigrpVpnEntry": {
                      "type": "array",
                      "description": "Information relating to a single VPN which is configured\n          to run EIGRP.",
                      "items": {
                        "type": "object",
                        "properties": {
                          "cEigrpVpnId": {
                            "type": "integer",
                            "description": "The unique VPN identifier.  This is a unique integer\n            relative to all other VPN's defined on the router.  It\n            also identifies internally the routing table instance.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "cEigrpVpnName": {
                            "type": "string",
                            "description": "The name given to the VPN.",
                            "x-yang-type": "snmp-framework:SnmpAdminString"
                          }
                        }
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-EIGRP-MIB:cEigrpVpnTable": {
                    "cEigrpVpnEntry": [
                      {
                        "cEigrpVpnId": 0,
                        "cEigrpVpnName": "interface-1"
                      },
                      {
                        "cEigrpVpnId": 0,
                        "cEigrpVpnName": "interface-1"
                      },
                      {
                        "cEigrpVpnId": 0,
                        "cEigrpVpnName": "interface-1"
                      }
                    ]
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cEigrpVpnTable",
        "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": "/cEigrpVpnTable",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-EIGRP-MIB:cEigrpVpnTable/cEigrpVpnEntry": {
      "get": {
        "summary": "Get cEigrpVpnEntry list",
        "description": "Retrieve list of cEigrpVpnEntry entries from MIB",
        "tags": [
          "CISCO-EIGRP-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "Information relating to a single VPN which is configured\n          to run EIGRP.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "cEigrpVpnId": {
                        "type": "integer",
                        "description": "The unique VPN identifier.  This is a unique integer\n            relative to all other VPN's defined on the router.  It\n            also identifies internally the routing table instance.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cEigrpVpnName": {
                        "type": "string",
                        "description": "The name given to the VPN.",
                        "x-yang-type": "snmp-framework:SnmpAdminString"
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-EIGRP-MIB:cEigrpVpnEntry": [
                    {
                      "cEigrpVpnId": 0,
                      "cEigrpVpnName": "interface-1"
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cEigrpVpnEntry",
        "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": "/cEigrpVpnTable/cEigrpVpnEntry",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-EIGRP-MIB:cEigrpVpnTable/cEigrpVpnEntry={cEigrpVpnId}": {
      "get": {
        "summary": "Get cEigrpVpnEntry entry",
        "description": "Retrieve specific cEigrpVpnEntry entry by key from MIB",
        "tags": [
          "CISCO-EIGRP-MIB"
        ],
        "parameters": [
          {
            "name": "cEigrpVpnId",
            "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": {
                    "cEigrpVpnId": {
                      "type": "integer",
                      "description": "The unique VPN identifier.  This is a unique integer\n            relative to all other VPN's defined on the router.  It\n            also identifies internally the routing table instance.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cEigrpVpnName": {
                      "type": "string",
                      "description": "The name given to the VPN.",
                      "x-yang-type": "snmp-framework:SnmpAdminString"
                    }
                  }
                },
                "example": {
                  "CISCO-EIGRP-MIB:cEigrpVpnEntry": {
                    "cEigrpVpnId": 0,
                    "cEigrpVpnName": "interface-1"
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cEigrpVpnEntry-2"
      },
      "x-yang-path": "/cEigrpVpnTable/cEigrpVpnEntry={cEigrpVpnId}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "cEigrpVpnId"
      ]
    },
    "/data/CISCO-EIGRP-MIB:cEigrpTraffStatsTable": {
      "get": {
        "summary": "Get cEigrpTraffStatsTable data",
        "description": "Retrieve cEigrpTraffStatsTable operational data from MIB",
        "tags": [
          "CISCO-EIGRP-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "description": "Table of EIGRP traffic statistics and information\n        associated with all EIGRP autonomous systems.",
                  "properties": {
                    "cEigrpTraffStatsEntry": {
                      "type": "array",
                      "description": "The set of statistics and information for a single EIGRP\n          Autonomous System.",
                      "items": {
                        "type": "object",
                        "properties": {
                          "cEigrpVpnId": {
                            "type": "string",
                            "description": "cEigrpVpnId",
                            "x-yang-type": "leafref"
                          },
                          "cEigrpAsNumber": {
                            "type": "integer",
                            "description": "The Autonomous System number which is unique integer\n            per VPN.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "cEigrpNbrCount": {
                            "type": "integer",
                            "description": "The total number of live EIGRP neighbors formed on all\n            interfaces whose IP addresses fall under networks configured\n            in the EIGRP AS.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "cEigrpHellosSent": {
                            "type": "integer",
                            "description": "The total number Hello packets that have been sent to all\n            EIGRP neighbors formed on all interfaces whose IP addresses\n            fall under networks configured for the EIGRP AS.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "cEigrpHellosRcvd": {
                            "type": "integer",
                            "description": "The total number Hello packets that have been received\n            from all EIGRP neighbors formed on all interfaces whose IP\n            addresses fall under networks configured for the\n            EIGRP AS.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "cEigrpUpdatesSent": {
                            "type": "integer",
                            "description": "The total number routing update packets that have been\n            sent to all EIGRP neighbors formed on all interfaces whose\n            IP addresses fall under networks configured for the\n            EIGRP AS.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "cEigrpUpdatesRcvd": {
                            "type": "integer",
                            "description": "The total number routing update packets that have been\n            received from all EIGRP neighbors formed on all interfaces\n            whose IP addresses fall under networks configured for the\n            EIGRP AS.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "cEigrpQueriesSent": {
                            "type": "integer",
                            "description": "The total number alternate route query packets that have\n            been sent to all EIGRP neighbors formed on all interfaces\n            whose IP addresses fall under networks configured for the\n            EIGRP AS.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "cEigrpQueriesRcvd": {
                            "type": "integer",
                            "description": "The total number alternate route query packets that\n            have been received from all EIGRP neighbors formed on\n            all interfaces whose IP addresses fall under networks\n            configured for the EIGRP AS.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "cEigrpRepliesSent": {
                            "type": "integer",
                            "description": "The total number query reply packets that have been sent\n            to all EIGRP neighbors formed on all interfaces whose IP\n            addresses fall under networks configured for the\n            EIGRP AS.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "cEigrpRepliesRcvd": {
                            "type": "integer",
                            "description": "The total number query reply packets that have been\n            received from all EIGRP neighbors formed on all interfaces\n            whose IP addresses fall under networks configured for the\n            EIGRP AS.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "cEigrpAcksSent": {
                            "type": "integer",
                            "description": "The total number packet acknowledgements that have been\n            sent to all EIGRP neighbors formed on all interfaces whose\n            IP addresses fall under networks configured for the\n            EIGRP AS.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "cEigrpAcksRcvd": {
                            "type": "integer",
                            "description": "The total number packet acknowledgements that have been\n            received from all EIGRP neighbors formed on all interfaces\n            whose IP addresses fall under networks configured for the\n            EIGRP AS.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "cEigrpInputQHighMark": {
                            "type": "integer",
                            "description": "The highest number of EIGRP packets in the input queue\n            waiting to be processed internally addressed to this\n            AS.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "cEigrpInputQDrops": {
                            "type": "integer",
                            "description": "The number of EIGRP packets dropped from the input\n            queue due to it being full within the AS.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "cEigrpSiaQueriesSent": {
                            "type": "integer",
                            "description": "The total number of Stuck-In-Active (SIA) query packets\n            sent to all EIGRP neighbors formed on all interfaces whose\n            IP addresses fall under networks configured for the\n            EIGRP AS.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "cEigrpSiaQueriesRcvd": {
                            "type": "integer",
                            "description": "The total number of Stuck-In-Active (SIA) query packets\n            received from all EIGRP neighbors formed on all interfaces\n            whose IP addresses fall under networks configured for the\n            EIGRP AS.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "cEigrpAsRouterIdType": {
                            "type": "string",
                            "description": "The format of the router-id configured or automatically\n            selected for the EIGRP AS.",
                            "x-yang-type": "inet-address:InetAddressType"
                          },
                          "cEigrpAsRouterId": {
                            "type": "string",
                            "description": "The router-id configured or automatically selected for the\n            EIGRP AS.   Each EIGRP routing process has a unique\n            router-id selected from each autonomous system configured.\n            The format is governed by object cEigrpAsRouterIdType.",
                            "x-yang-type": "inet-address:InetAddress"
                          },
                          "cEigrpTopoRoutes": {
                            "type": "integer",
                            "description": "The total number of EIGRP derived routes currently existing\n            in the topology table for the AS.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "cEigrpHeadSerial": {
                            "type": "integer",
                            "description": "Routes in a topology table for an AS are assigned serial\n            numbers and are sequenced internally as they are inserted\n            and deleted.   The serial number of the first route in\n            that internal sequence is called the head serial number.\n            Each AS has its own topology table, and its own serial\n            number space, each of which begins with the value 1.\n            A serial number of zero implies that there are no routes\n            in the topology.",
                            "minimum": 0
                          },
                          "cEigrpNextSerial": {
                            "type": "integer",
                            "description": "The serial number that would be assigned to the next new\n            or changed route in the topology table for the AS.",
                            "minimum": 0
                          },
                          "cEigrpXmitPendReplies": {
                            "type": "integer",
                            "description": "When alternate route query packets are sent to adjacent\n            EIGRP peers in an AS, replies are expected.   This object\n            is the total number of outstanding replies expected to\n            queries that have been sent to peers in the current AS.\n            It remains at zero most of the time until an EIGRP route\n            becomes active.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "cEigrpXmitDummies": {
                            "type": "integer",
                            "description": "A dummy is a temporary internal entity used as a place\n            holder in the topology table for an AS. They are not\n            transmitted in routing updates.  This is the total\n            number currently in existence associated with the AS.",
                            "minimum": 0,
                            "maximum": 4294967295
                          }
                        }
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-EIGRP-MIB:cEigrpTraffStatsTable": {
                    "cEigrpTraffStatsEntry": [
                      {
                        "cEigrpVpnId": "example-string",
                        "cEigrpAsNumber": 0,
                        "cEigrpNbrCount": 0,
                        "cEigrpHellosSent": 0,
                        "cEigrpHellosRcvd": 0,
                        "cEigrpUpdatesSent": 0,
                        "cEigrpUpdatesRcvd": 0,
                        "cEigrpQueriesSent": 0,
                        "cEigrpQueriesRcvd": 0,
                        "cEigrpRepliesSent": 0,
                        "cEigrpRepliesRcvd": 0,
                        "cEigrpAcksSent": 0,
                        "cEigrpAcksRcvd": 0,
                        "cEigrpInputQHighMark": 0,
                        "cEigrpInputQDrops": 0,
                        "cEigrpSiaQueriesSent": 0,
                        "cEigrpSiaQueriesRcvd": 0,
                        "cEigrpAsRouterIdType": "ethernetCsmacd(6)",
                        "cEigrpAsRouterId": "example-string",
                        "cEigrpTopoRoutes": 0,
                        "cEigrpHeadSerial": 0,
                        "cEigrpNextSerial": 0,
                        "cEigrpXmitPendReplies": 0,
                        "cEigrpXmitDummies": 0
                      },
                      {
                        "cEigrpVpnId": "example-string",
                        "cEigrpAsNumber": 0,
                        "cEigrpNbrCount": 0,
                        "cEigrpHellosSent": 0,
                        "cEigrpHellosRcvd": 0,
                        "cEigrpUpdatesSent": 0,
                        "cEigrpUpdatesRcvd": 0,
                        "cEigrpQueriesSent": 0,
                        "cEigrpQueriesRcvd": 0,
                        "cEigrpRepliesSent": 0,
                        "cEigrpRepliesRcvd": 0,
                        "cEigrpAcksSent": 0,
                        "cEigrpAcksRcvd": 0,
                        "cEigrpInputQHighMark": 0,
                        "cEigrpInputQDrops": 0,
                        "cEigrpSiaQueriesSent": 0,
                        "cEigrpSiaQueriesRcvd": 0,
                        "cEigrpAsRouterIdType": "ethernetCsmacd(6)",
                        "cEigrpAsRouterId": "example-string",
                        "cEigrpTopoRoutes": 0,
                        "cEigrpHeadSerial": 0,
                        "cEigrpNextSerial": 0,
                        "cEigrpXmitPendReplies": 0,
                        "cEigrpXmitDummies": 0
                      },
                      {
                        "cEigrpVpnId": "example-string",
                        "cEigrpAsNumber": 0,
                        "cEigrpNbrCount": 0,
                        "cEigrpHellosSent": 0,
                        "cEigrpHellosRcvd": 0,
                        "cEigrpUpdatesSent": 0,
                        "cEigrpUpdatesRcvd": 0,
                        "cEigrpQueriesSent": 0,
                        "cEigrpQueriesRcvd": 0,
                        "cEigrpRepliesSent": 0,
                        "cEigrpRepliesRcvd": 0,
                        "cEigrpAcksSent": 0,
                        "cEigrpAcksRcvd": 0,
                        "cEigrpInputQHighMark": 0,
                        "cEigrpInputQDrops": 0,
                        "cEigrpSiaQueriesSent": 0,
                        "cEigrpSiaQueriesRcvd": 0,
                        "cEigrpAsRouterIdType": "ethernetCsmacd(6)",
                        "cEigrpAsRouterId": "example-string",
                        "cEigrpTopoRoutes": 0,
                        "cEigrpHeadSerial": 0,
                        "cEigrpNextSerial": 0,
                        "cEigrpXmitPendReplies": 0,
                        "cEigrpXmitDummies": 0
                      }
                    ]
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cEigrpTraffStatsTable",
        "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": "/cEigrpTraffStatsTable",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-EIGRP-MIB:cEigrpTraffStatsTable/cEigrpTraffStatsEntry": {
      "get": {
        "summary": "Get cEigrpTraffStatsEntry list",
        "description": "Retrieve list of cEigrpTraffStatsEntry entries from MIB",
        "tags": [
          "CISCO-EIGRP-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "The set of statistics and information for a single EIGRP\n          Autonomous System.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "cEigrpVpnId": {
                        "type": "string",
                        "description": "cEigrpVpnId",
                        "x-yang-type": "leafref"
                      },
                      "cEigrpAsNumber": {
                        "type": "integer",
                        "description": "The Autonomous System number which is unique integer\n            per VPN.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cEigrpNbrCount": {
                        "type": "integer",
                        "description": "The total number of live EIGRP neighbors formed on all\n            interfaces whose IP addresses fall under networks configured\n            in the EIGRP AS.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cEigrpHellosSent": {
                        "type": "integer",
                        "description": "The total number Hello packets that have been sent to all\n            EIGRP neighbors formed on all interfaces whose IP addresses\n            fall under networks configured for the EIGRP AS.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cEigrpHellosRcvd": {
                        "type": "integer",
                        "description": "The total number Hello packets that have been received\n            from all EIGRP neighbors formed on all interfaces whose IP\n            addresses fall under networks configured for the\n            EIGRP AS.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cEigrpUpdatesSent": {
                        "type": "integer",
                        "description": "The total number routing update packets that have been\n            sent to all EIGRP neighbors formed on all interfaces whose\n            IP addresses fall under networks configured for the\n            EIGRP AS.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cEigrpUpdatesRcvd": {
                        "type": "integer",
                        "description": "The total number routing update packets that have been\n            received from all EIGRP neighbors formed on all interfaces\n            whose IP addresses fall under networks configured for the\n            EIGRP AS.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cEigrpQueriesSent": {
                        "type": "integer",
                        "description": "The total number alternate route query packets that have\n            been sent to all EIGRP neighbors formed on all interfaces\n            whose IP addresses fall under networks configured for the\n            EIGRP AS.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cEigrpQueriesRcvd": {
                        "type": "integer",
                        "description": "The total number alternate route query packets that\n            have been received from all EIGRP neighbors formed on\n            all interfaces whose IP addresses fall under networks\n            configured for the EIGRP AS.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cEigrpRepliesSent": {
                        "type": "integer",
                        "description": "The total number query reply packets that have been sent\n            to all EIGRP neighbors formed on all interfaces whose IP\n            addresses fall under networks configured for the\n            EIGRP AS.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cEigrpRepliesRcvd": {
                        "type": "integer",
                        "description": "The total number query reply packets that have been\n            received from all EIGRP neighbors formed on all interfaces\n            whose IP addresses fall under networks configured for the\n            EIGRP AS.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cEigrpAcksSent": {
                        "type": "integer",
                        "description": "The total number packet acknowledgements that have been\n            sent to all EIGRP neighbors formed on all interfaces whose\n            IP addresses fall under networks configured for the\n            EIGRP AS.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cEigrpAcksRcvd": {
                        "type": "integer",
                        "description": "The total number packet acknowledgements that have been\n            received from all EIGRP neighbors formed on all interfaces\n            whose IP addresses fall under networks configured for the\n            EIGRP AS.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cEigrpInputQHighMark": {
                        "type": "integer",
                        "description": "The highest number of EIGRP packets in the input queue\n            waiting to be processed internally addressed to this\n            AS.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cEigrpInputQDrops": {
                        "type": "integer",
                        "description": "The number of EIGRP packets dropped from the input\n            queue due to it being full within the AS.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cEigrpSiaQueriesSent": {
                        "type": "integer",
                        "description": "The total number of Stuck-In-Active (SIA) query packets\n            sent to all EIGRP neighbors formed on all interfaces whose\n            IP addresses fall under networks configured for the\n            EIGRP AS.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cEigrpSiaQueriesRcvd": {
                        "type": "integer",
                        "description": "The total number of Stuck-In-Active (SIA) query packets\n            received from all EIGRP neighbors formed on all interfaces\n            whose IP addresses fall under networks configured for the\n            EIGRP AS.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cEigrpAsRouterIdType": {
                        "type": "string",
                        "description": "The format of the router-id configured or automatically\n            selected for the EIGRP AS.",
                        "x-yang-type": "inet-address:InetAddressType"
                      },
                      "cEigrpAsRouterId": {
                        "type": "string",
                        "description": "The router-id configured or automatically selected for the\n            EIGRP AS.   Each EIGRP routing process has a unique\n            router-id selected from each autonomous system configured.\n            The format is governed by object cEigrpAsRouterIdType.",
                        "x-yang-type": "inet-address:InetAddress"
                      },
                      "cEigrpTopoRoutes": {
                        "type": "integer",
                        "description": "The total number of EIGRP derived routes currently existing\n            in the topology table for the AS.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cEigrpHeadSerial": {
                        "type": "integer",
                        "description": "Routes in a topology table for an AS are assigned serial\n            numbers and are sequenced internally as they are inserted\n            and deleted.   The serial number of the first route in\n            that internal sequence is called the head serial number.\n            Each AS has its own topology table, and its own serial\n            number space, each of which begins with the value 1.\n            A serial number of zero implies that there are no routes\n            in the topology.",
                        "minimum": 0
                      },
                      "cEigrpNextSerial": {
                        "type": "integer",
                        "description": "The serial number that would be assigned to the next new\n            or changed route in the topology table for the AS.",
                        "minimum": 0
                      },
                      "cEigrpXmitPendReplies": {
                        "type": "integer",
                        "description": "When alternate route query packets are sent to adjacent\n            EIGRP peers in an AS, replies are expected.   This object\n            is the total number of outstanding replies expected to\n            queries that have been sent to peers in the current AS.\n            It remains at zero most of the time until an EIGRP route\n            becomes active.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cEigrpXmitDummies": {
                        "type": "integer",
                        "description": "A dummy is a temporary internal entity used as a place\n            holder in the topology table for an AS. They are not\n            transmitted in routing updates.  This is the total\n            number currently in existence associated with the AS.",
                        "minimum": 0,
                        "maximum": 4294967295
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-EIGRP-MIB:cEigrpTraffStatsEntry": [
                    {
                      "cEigrpVpnId": "example-string",
                      "cEigrpAsNumber": 0,
                      "cEigrpNbrCount": 0,
                      "cEigrpHellosSent": 0,
                      "cEigrpHellosRcvd": 0,
                      "cEigrpUpdatesSent": 0,
                      "cEigrpUpdatesRcvd": 0,
                      "cEigrpQueriesSent": 0,
                      "cEigrpQueriesRcvd": 0,
                      "cEigrpRepliesSent": 0,
                      "cEigrpRepliesRcvd": 0,
                      "cEigrpAcksSent": 0,
                      "cEigrpAcksRcvd": 0,
                      "cEigrpInputQHighMark": 0,
                      "cEigrpInputQDrops": 0,
                      "cEigrpSiaQueriesSent": 0,
                      "cEigrpSiaQueriesRcvd": 0,
                      "cEigrpAsRouterIdType": "ethernetCsmacd(6)",
                      "cEigrpAsRouterId": "example-string",
                      "cEigrpTopoRoutes": 0,
                      "cEigrpHeadSerial": 0,
                      "cEigrpNextSerial": 0,
                      "cEigrpXmitPendReplies": 0,
                      "cEigrpXmitDummies": 0
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cEigrpTraffStatsEntry",
        "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": "/cEigrpTraffStatsTable/cEigrpTraffStatsEntry",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-EIGRP-MIB:cEigrpTopoTable": {
      "get": {
        "summary": "Get cEigrpTopoTable data",
        "description": "Retrieve cEigrpTopoTable operational data from MIB",
        "tags": [
          "CISCO-EIGRP-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "description": "The table of EIGRP routes and their associated\n        attributes for an Autonomous System (AS) configured\n        in a VPN is called a topology table.  All route entries in\n        the topology table will be indexed by IP network type,\n        IP network number and network mask (prefix) size.",
                  "properties": {
                    "cEigrpTopoEntry": {
                      "type": "array",
                      "description": "The entry for a single EIGRP topology table in the given\n          AS.",
                      "items": {
                        "type": "object",
                        "properties": {
                          "cEigrpVpnId": {
                            "type": "string",
                            "description": "cEigrpVpnId",
                            "x-yang-type": "leafref"
                          },
                          "cEigrpAsNumber": {
                            "type": "string",
                            "description": "cEigrpAsNumber",
                            "x-yang-type": "leafref"
                          },
                          "cEigrpDestNetType": {
                            "type": "string",
                            "description": "The format of the destination IP network number for\n            a single route in the topology table in the AS specified\n            in cEigrpDestNet.",
                            "x-yang-type": "inet-address:InetAddressType"
                          },
                          "cEigrpDestNet": {
                            "type": "string",
                            "description": "The destination IP network number for a single route in\n            the topology table in the AS.  The format is governed\n            by object cEigrpDestNetType.",
                            "x-yang-type": "inet-address:InetAddress"
                          },
                          "cEigrpDestNetPrefixLen": {
                            "type": "string",
                            "description": "The prefix length associated with the destination IP\n            network address for a single route in the topology\n            table in the AS.  The format is governed by the object\n            cEigrpDestNetType.",
                            "x-yang-type": "inet-address:InetAddressPrefixLength"
                          },
                          "cEigrpActive": {
                            "type": "boolean",
                            "description": "A value of true(1) indicates the route to the\n            destination network has failed and an active (query)\n            search for an alternative path is in progress.  A value\n            of false(2) indicates the route is stable (passive)."
                          },
                          "cEigrpStuckInActive": {
                            "type": "boolean",
                            "description": "A value of true(1) indicates that that this route which is\n            in active state (cEigrpActive = true(1)) has not received\n            any replies to queries for alternate paths, and a second\n            EIGRP route query, called a stuck-in-active query, has\n            now been sent."
                          },
                          "cEigrpDestSuccessors": {
                            "type": "integer",
                            "description": "A successor is the next routing hop for a path to the\n            destination IP network number for a single route in the\n            topology table in the AS.  There can be several\n            potential successors if there are multiple paths to the\n            destination.   This is the total number of successors for\n            a topology entry.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "cEigrpFdistance": {
                            "type": "integer",
                            "description": "The feasibility (best) distance is the minimum distance\n            from this router to the destination IP network in\n            this topology entry.  The feasibility distance is\n            used in determining the best successor for a path to the\n            destination network.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "cEigrpRouteOriginType": {
                            "type": "string",
                            "description": "This is a text string describing the internal origin\n            of the EIGRP route represented by the topology entry.",
                            "x-yang-type": "snmp-framework:SnmpAdminString"
                          },
                          "cEigrpRouteOriginAddrType": {
                            "type": "string",
                            "description": "The format of the IP address defined as the origin of\n            this topology route entry.",
                            "x-yang-type": "inet-address:InetAddressType"
                          },
                          "cEigrpRouteOriginAddr": {
                            "type": "string",
                            "description": "If the origin of the topology route entry is external\n            to this router, then this object is the IP address\n            of the router from which it originated.  The format \n            is governed by object cEigrpRouteOriginAddrType.",
                            "x-yang-type": "inet-address:InetAddress"
                          },
                          "cEigrpNextHopAddressType": {
                            "type": "string",
                            "description": "The format of the next hop IP address for the route\n            represented by the topology entry.",
                            "x-yang-type": "inet-address:InetAddressType"
                          },
                          "cEigrpNextHopAddress": {
                            "type": "string",
                            "description": "This is the next hop IP address for the route represented\n            by the topology entry.   The next hop is where\n            network traffic will be routed to in order to reach\n            the destination network for this topology entry.  The\n            format is governed by cEigrpNextHopAddressType.",
                            "x-yang-type": "inet-address:InetAddress"
                          },
                          "cEigrpNextHopInterface": {
                            "type": "string",
                            "description": "The interface through which the next hop IP address\n            is reached to send network traffic to the destination\n            network represented by the topology entry.",
                            "x-yang-type": "snmp-framework:SnmpAdminString"
                          },
                          "cEigrpDistance": {
                            "type": "integer",
                            "description": "The computed distance to the destination network entry\n            from this router.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "cEigrpReportDistance": {
                            "type": "integer",
                            "description": "The computed distance to the destination network in the\n            topology entry reported to this router by the originator\n            of this route.",
                            "minimum": 0,
                            "maximum": 4294967295
                          }
                        }
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-EIGRP-MIB:cEigrpTopoTable": {
                    "cEigrpTopoEntry": [
                      {
                        "cEigrpVpnId": "example-string",
                        "cEigrpAsNumber": "example-string",
                        "cEigrpDestNetType": "ethernetCsmacd(6)",
                        "cEigrpDestNet": "example-string",
                        "cEigrpDestNetPrefixLen": "example-string",
                        "cEigrpActive": true,
                        "cEigrpStuckInActive": true,
                        "cEigrpDestSuccessors": 0,
                        "cEigrpFdistance": 0,
                        "cEigrpRouteOriginType": "ethernetCsmacd(6)",
                        "cEigrpRouteOriginAddrType": "192.168.1.1",
                        "cEigrpRouteOriginAddr": "192.168.1.1",
                        "cEigrpNextHopAddressType": "192.168.1.1",
                        "cEigrpNextHopAddress": "192.168.1.1",
                        "cEigrpNextHopInterface": "GigabitEthernet1/0/1",
                        "cEigrpDistance": 0,
                        "cEigrpReportDistance": 0
                      },
                      {
                        "cEigrpVpnId": "example-string",
                        "cEigrpAsNumber": "example-string",
                        "cEigrpDestNetType": "ethernetCsmacd(6)",
                        "cEigrpDestNet": "example-string",
                        "cEigrpDestNetPrefixLen": "example-string",
                        "cEigrpActive": true,
                        "cEigrpStuckInActive": true,
                        "cEigrpDestSuccessors": 0,
                        "cEigrpFdistance": 0,
                        "cEigrpRouteOriginType": "ethernetCsmacd(6)",
                        "cEigrpRouteOriginAddrType": "192.168.1.1",
                        "cEigrpRouteOriginAddr": "192.168.1.1",
                        "cEigrpNextHopAddressType": "192.168.1.1",
                        "cEigrpNextHopAddress": "192.168.1.1",
                        "cEigrpNextHopInterface": "GigabitEthernet1/0/1",
                        "cEigrpDistance": 0,
                        "cEigrpReportDistance": 0
                      },
                      {
                        "cEigrpVpnId": "example-string",
                        "cEigrpAsNumber": "example-string",
                        "cEigrpDestNetType": "ethernetCsmacd(6)",
                        "cEigrpDestNet": "example-string",
                        "cEigrpDestNetPrefixLen": "example-string",
                        "cEigrpActive": true,
                        "cEigrpStuckInActive": true,
                        "cEigrpDestSuccessors": 0,
                        "cEigrpFdistance": 0,
                        "cEigrpRouteOriginType": "ethernetCsmacd(6)",
                        "cEigrpRouteOriginAddrType": "192.168.1.1",
                        "cEigrpRouteOriginAddr": "192.168.1.1",
                        "cEigrpNextHopAddressType": "192.168.1.1",
                        "cEigrpNextHopAddress": "192.168.1.1",
                        "cEigrpNextHopInterface": "GigabitEthernet1/0/1",
                        "cEigrpDistance": 0,
                        "cEigrpReportDistance": 0
                      }
                    ]
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cEigrpTopoTable",
        "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": "/cEigrpTopoTable",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-EIGRP-MIB:cEigrpTopoTable/cEigrpTopoEntry": {
      "get": {
        "summary": "Get cEigrpTopoEntry list",
        "description": "Retrieve list of cEigrpTopoEntry entries from MIB",
        "tags": [
          "CISCO-EIGRP-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "The entry for a single EIGRP topology table in the given\n          AS.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "cEigrpVpnId": {
                        "type": "string",
                        "description": "cEigrpVpnId",
                        "x-yang-type": "leafref"
                      },
                      "cEigrpAsNumber": {
                        "type": "string",
                        "description": "cEigrpAsNumber",
                        "x-yang-type": "leafref"
                      },
                      "cEigrpDestNetType": {
                        "type": "string",
                        "description": "The format of the destination IP network number for\n            a single route in the topology table in the AS specified\n            in cEigrpDestNet.",
                        "x-yang-type": "inet-address:InetAddressType"
                      },
                      "cEigrpDestNet": {
                        "type": "string",
                        "description": "The destination IP network number for a single route in\n            the topology table in the AS.  The format is governed\n            by object cEigrpDestNetType.",
                        "x-yang-type": "inet-address:InetAddress"
                      },
                      "cEigrpDestNetPrefixLen": {
                        "type": "string",
                        "description": "The prefix length associated with the destination IP\n            network address for a single route in the topology\n            table in the AS.  The format is governed by the object\n            cEigrpDestNetType.",
                        "x-yang-type": "inet-address:InetAddressPrefixLength"
                      },
                      "cEigrpActive": {
                        "type": "boolean",
                        "description": "A value of true(1) indicates the route to the\n            destination network has failed and an active (query)\n            search for an alternative path is in progress.  A value\n            of false(2) indicates the route is stable (passive)."
                      },
                      "cEigrpStuckInActive": {
                        "type": "boolean",
                        "description": "A value of true(1) indicates that that this route which is\n            in active state (cEigrpActive = true(1)) has not received\n            any replies to queries for alternate paths, and a second\n            EIGRP route query, called a stuck-in-active query, has\n            now been sent."
                      },
                      "cEigrpDestSuccessors": {
                        "type": "integer",
                        "description": "A successor is the next routing hop for a path to the\n            destination IP network number for a single route in the\n            topology table in the AS.  There can be several\n            potential successors if there are multiple paths to the\n            destination.   This is the total number of successors for\n            a topology entry.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cEigrpFdistance": {
                        "type": "integer",
                        "description": "The feasibility (best) distance is the minimum distance\n            from this router to the destination IP network in\n            this topology entry.  The feasibility distance is\n            used in determining the best successor for a path to the\n            destination network.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cEigrpRouteOriginType": {
                        "type": "string",
                        "description": "This is a text string describing the internal origin\n            of the EIGRP route represented by the topology entry.",
                        "x-yang-type": "snmp-framework:SnmpAdminString"
                      },
                      "cEigrpRouteOriginAddrType": {
                        "type": "string",
                        "description": "The format of the IP address defined as the origin of\n            this topology route entry.",
                        "x-yang-type": "inet-address:InetAddressType"
                      },
                      "cEigrpRouteOriginAddr": {
                        "type": "string",
                        "description": "If the origin of the topology route entry is external\n            to this router, then this object is the IP address\n            of the router from which it originated.  The format \n            is governed by object cEigrpRouteOriginAddrType.",
                        "x-yang-type": "inet-address:InetAddress"
                      },
                      "cEigrpNextHopAddressType": {
                        "type": "string",
                        "description": "The format of the next hop IP address for the route\n            represented by the topology entry.",
                        "x-yang-type": "inet-address:InetAddressType"
                      },
                      "cEigrpNextHopAddress": {
                        "type": "string",
                        "description": "This is the next hop IP address for the route represented\n            by the topology entry.   The next hop is where\n            network traffic will be routed to in order to reach\n            the destination network for this topology entry.  The\n            format is governed by cEigrpNextHopAddressType.",
                        "x-yang-type": "inet-address:InetAddress"
                      },
                      "cEigrpNextHopInterface": {
                        "type": "string",
                        "description": "The interface through which the next hop IP address\n            is reached to send network traffic to the destination\n            network represented by the topology entry.",
                        "x-yang-type": "snmp-framework:SnmpAdminString"
                      },
                      "cEigrpDistance": {
                        "type": "integer",
                        "description": "The computed distance to the destination network entry\n            from this router.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cEigrpReportDistance": {
                        "type": "integer",
                        "description": "The computed distance to the destination network in the\n            topology entry reported to this router by the originator\n            of this route.",
                        "minimum": 0,
                        "maximum": 4294967295
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-EIGRP-MIB:cEigrpTopoEntry": [
                    {
                      "cEigrpVpnId": "example-string",
                      "cEigrpAsNumber": "example-string",
                      "cEigrpDestNetType": "ethernetCsmacd(6)",
                      "cEigrpDestNet": "example-string",
                      "cEigrpDestNetPrefixLen": "example-string",
                      "cEigrpActive": true,
                      "cEigrpStuckInActive": true,
                      "cEigrpDestSuccessors": 0,
                      "cEigrpFdistance": 0,
                      "cEigrpRouteOriginType": "ethernetCsmacd(6)",
                      "cEigrpRouteOriginAddrType": "192.168.1.1",
                      "cEigrpRouteOriginAddr": "192.168.1.1",
                      "cEigrpNextHopAddressType": "192.168.1.1",
                      "cEigrpNextHopAddress": "192.168.1.1",
                      "cEigrpNextHopInterface": "GigabitEthernet1/0/1",
                      "cEigrpDistance": 0,
                      "cEigrpReportDistance": 0
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cEigrpTopoEntry",
        "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": "/cEigrpTopoTable/cEigrpTopoEntry",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-EIGRP-MIB:cEigrpPeerTable": {
      "get": {
        "summary": "Get cEigrpPeerTable data",
        "description": "Retrieve cEigrpPeerTable operational data from MIB",
        "tags": [
          "CISCO-EIGRP-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "description": "The table of established EIGRP peers (neighbors) in the\n        selected autonomous system.   Peers are indexed by their\n        unique internal handle id, as well as the AS number and\n        VPN id.   The peer entry is removed from the table if\n        the peer is declared down.",
                  "properties": {
                    "cEigrpPeerEntry": {
                      "type": "array",
                      "description": "Statistics and operational parameters for a single peer\n          in the AS.",
                      "items": {
                        "type": "object",
                        "properties": {
                          "cEigrpVpnId": {
                            "type": "string",
                            "description": "cEigrpVpnId",
                            "x-yang-type": "leafref"
                          },
                          "cEigrpAsNumber": {
                            "type": "string",
                            "description": "cEigrpAsNumber",
                            "x-yang-type": "leafref"
                          },
                          "cEigrpHandle": {
                            "type": "integer",
                            "description": "The unique internal identifier for the peer in the AS.\n            This is a unique value among peer entries in a selected\n            table.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "cEigrpPeerAddrType": {
                            "type": "string",
                            "description": "The format of the remote source IP address used by the\n            peer to establish the EIGRP adjacency with this router.",
                            "x-yang-type": "inet-address:InetAddressType"
                          },
                          "cEigrpPeerAddr": {
                            "type": "string",
                            "description": "The source IP address used by the peer to establish the\n            EIGRP adjacency with this router.  The format is\n            governed by object cEigrpPeerAddrType.",
                            "x-yang-type": "inet-address:InetAddress"
                          },
                          "cEigrpPeerIfIndex": {
                            "type": "string",
                            "description": "The ifIndex of the interface on this router through\n            which this peer can be reached.",
                            "x-yang-type": "if-mib:InterfaceIndexOrZero"
                          },
                          "cEigrpHoldTime": {
                            "type": "integer",
                            "description": "The count-down timer indicating how much time must\n            pass without receiving a hello packet from this\n            EIGRP peer before this router declares the peer down.\n            A peer declared as down is removed from the table and\n            is no longer visible.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "cEigrpUpTime": {
                            "type": "string",
                            "description": "The elapsed time since the EIGRP adjacency was first\n            established with the peer.",
                            "x-yang-type": "CISCO-EIGRP-MIB:EigrpUpTimeString"
                          },
                          "cEigrpSrtt": {
                            "type": "integer",
                            "description": "The computed smooth round trip time for packets to and\n            from the peer.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "cEigrpRto": {
                            "type": "integer",
                            "description": "The computed retransmission timeout for the peer.\n            This value is computed over time as packets are sent to\n            the peer and acknowledgements are received from it,\n            and is the amount of time to wait before resending\n            a packet from the retransmission queue to the peer\n            when an expected acknowledgement has not been received.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "cEigrpPktsEnqueued": {
                            "type": "integer",
                            "description": "The number of any EIGRP packets currently enqueued\n            waiting to be sent to this peer.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "cEigrpLastSeq": {
                            "type": "integer",
                            "description": "All transmitted EIGRP packets have a sequence number\n            assigned. This is the sequence number of the last EIGRP\n            packet sent to this peer.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "cEigrpVersion": {
                            "type": "string",
                            "description": "The EIGRP version information reported by the remote\n            peer.",
                            "x-yang-type": "CISCO-EIGRP-MIB:EigrpVersionString"
                          },
                          "cEigrpRetrans": {
                            "type": "integer",
                            "description": "The cumulative number of retransmissions to this peer\n            during the period that the peer adjacency has remained\n            up.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "cEigrpRetries": {
                            "type": "integer",
                            "description": "The number of times the current unacknowledged packet\n            has been retried, i.e. resent to this peer to be\n            acknowledged.",
                            "minimum": 0,
                            "maximum": 4294967295
                          }
                        }
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-EIGRP-MIB:cEigrpPeerTable": {
                    "cEigrpPeerEntry": [
                      {
                        "cEigrpVpnId": "example-string",
                        "cEigrpAsNumber": "example-string",
                        "cEigrpHandle": 0,
                        "cEigrpPeerAddrType": "192.168.1.1",
                        "cEigrpPeerAddr": "192.168.1.1",
                        "cEigrpPeerIfIndex": "1",
                        "cEigrpHoldTime": 0,
                        "cEigrpUpTime": "example-string",
                        "cEigrpSrtt": 0,
                        "cEigrpRto": 0,
                        "cEigrpPktsEnqueued": 0,
                        "cEigrpLastSeq": 0,
                        "cEigrpVersion": "example-string",
                        "cEigrpRetrans": 0,
                        "cEigrpRetries": 0
                      },
                      {
                        "cEigrpVpnId": "example-string",
                        "cEigrpAsNumber": "example-string",
                        "cEigrpHandle": 0,
                        "cEigrpPeerAddrType": "192.168.1.1",
                        "cEigrpPeerAddr": "192.168.1.1",
                        "cEigrpPeerIfIndex": "2",
                        "cEigrpHoldTime": 0,
                        "cEigrpUpTime": "example-string",
                        "cEigrpSrtt": 0,
                        "cEigrpRto": 0,
                        "cEigrpPktsEnqueued": 0,
                        "cEigrpLastSeq": 0,
                        "cEigrpVersion": "example-string",
                        "cEigrpRetrans": 0,
                        "cEigrpRetries": 0
                      },
                      {
                        "cEigrpVpnId": "example-string",
                        "cEigrpAsNumber": "example-string",
                        "cEigrpHandle": 0,
                        "cEigrpPeerAddrType": "192.168.1.1",
                        "cEigrpPeerAddr": "192.168.1.1",
                        "cEigrpPeerIfIndex": "3",
                        "cEigrpHoldTime": 0,
                        "cEigrpUpTime": "example-string",
                        "cEigrpSrtt": 0,
                        "cEigrpRto": 0,
                        "cEigrpPktsEnqueued": 0,
                        "cEigrpLastSeq": 0,
                        "cEigrpVersion": "example-string",
                        "cEigrpRetrans": 0,
                        "cEigrpRetries": 0
                      }
                    ]
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cEigrpPeerTable",
        "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": "/cEigrpPeerTable",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-EIGRP-MIB:cEigrpPeerTable/cEigrpPeerEntry": {
      "get": {
        "summary": "Get cEigrpPeerEntry list",
        "description": "Retrieve list of cEigrpPeerEntry entries from MIB",
        "tags": [
          "CISCO-EIGRP-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "Statistics and operational parameters for a single peer\n          in the AS.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "cEigrpVpnId": {
                        "type": "string",
                        "description": "cEigrpVpnId",
                        "x-yang-type": "leafref"
                      },
                      "cEigrpAsNumber": {
                        "type": "string",
                        "description": "cEigrpAsNumber",
                        "x-yang-type": "leafref"
                      },
                      "cEigrpHandle": {
                        "type": "integer",
                        "description": "The unique internal identifier for the peer in the AS.\n            This is a unique value among peer entries in a selected\n            table.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cEigrpPeerAddrType": {
                        "type": "string",
                        "description": "The format of the remote source IP address used by the\n            peer to establish the EIGRP adjacency with this router.",
                        "x-yang-type": "inet-address:InetAddressType"
                      },
                      "cEigrpPeerAddr": {
                        "type": "string",
                        "description": "The source IP address used by the peer to establish the\n            EIGRP adjacency with this router.  The format is\n            governed by object cEigrpPeerAddrType.",
                        "x-yang-type": "inet-address:InetAddress"
                      },
                      "cEigrpPeerIfIndex": {
                        "type": "string",
                        "description": "The ifIndex of the interface on this router through\n            which this peer can be reached.",
                        "x-yang-type": "if-mib:InterfaceIndexOrZero"
                      },
                      "cEigrpHoldTime": {
                        "type": "integer",
                        "description": "The count-down timer indicating how much time must\n            pass without receiving a hello packet from this\n            EIGRP peer before this router declares the peer down.\n            A peer declared as down is removed from the table and\n            is no longer visible.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cEigrpUpTime": {
                        "type": "string",
                        "description": "The elapsed time since the EIGRP adjacency was first\n            established with the peer.",
                        "x-yang-type": "CISCO-EIGRP-MIB:EigrpUpTimeString"
                      },
                      "cEigrpSrtt": {
                        "type": "integer",
                        "description": "The computed smooth round trip time for packets to and\n            from the peer.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cEigrpRto": {
                        "type": "integer",
                        "description": "The computed retransmission timeout for the peer.\n            This value is computed over time as packets are sent to\n            the peer and acknowledgements are received from it,\n            and is the amount of time to wait before resending\n            a packet from the retransmission queue to the peer\n            when an expected acknowledgement has not been received.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cEigrpPktsEnqueued": {
                        "type": "integer",
                        "description": "The number of any EIGRP packets currently enqueued\n            waiting to be sent to this peer.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cEigrpLastSeq": {
                        "type": "integer",
                        "description": "All transmitted EIGRP packets have a sequence number\n            assigned. This is the sequence number of the last EIGRP\n            packet sent to this peer.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cEigrpVersion": {
                        "type": "string",
                        "description": "The EIGRP version information reported by the remote\n            peer.",
                        "x-yang-type": "CISCO-EIGRP-MIB:EigrpVersionString"
                      },
                      "cEigrpRetrans": {
                        "type": "integer",
                        "description": "The cumulative number of retransmissions to this peer\n            during the period that the peer adjacency has remained\n            up.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cEigrpRetries": {
                        "type": "integer",
                        "description": "The number of times the current unacknowledged packet\n            has been retried, i.e. resent to this peer to be\n            acknowledged.",
                        "minimum": 0,
                        "maximum": 4294967295
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-EIGRP-MIB:cEigrpPeerEntry": [
                    {
                      "cEigrpVpnId": "example-string",
                      "cEigrpAsNumber": "example-string",
                      "cEigrpHandle": 0,
                      "cEigrpPeerAddrType": "192.168.1.1",
                      "cEigrpPeerAddr": "192.168.1.1",
                      "cEigrpPeerIfIndex": "example-string",
                      "cEigrpHoldTime": 0,
                      "cEigrpUpTime": "example-string",
                      "cEigrpSrtt": 0,
                      "cEigrpRto": 0,
                      "cEigrpPktsEnqueued": 0,
                      "cEigrpLastSeq": 0,
                      "cEigrpVersion": "example-string",
                      "cEigrpRetrans": 0,
                      "cEigrpRetries": 0
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cEigrpPeerEntry",
        "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": "/cEigrpPeerTable/cEigrpPeerEntry",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-EIGRP-MIB:cEigrpInterfaceTable": {
      "get": {
        "summary": "Get cEigrpInterfaceTable data",
        "description": "Retrieve cEigrpInterfaceTable operational data from MIB",
        "tags": [
          "CISCO-EIGRP-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "description": "The table of interfaces over which EIGRP is running, and\n        their associated statistics.   This table is independent\n        of whether any peer adjacencies have been formed over\n        the interfaces or not.   Interfaces running EIGRP are\n        determined by whether their assigned IP addresses fall\n        within configured EIGRP network statements.",
                  "properties": {
                    "cEigrpInterfaceEntry": {
                      "type": "array",
                      "description": "Information for a single interface running EIGRP in the\n          AS and VPN.",
                      "items": {
                        "type": "object",
                        "properties": {
                          "cEigrpVpnId": {
                            "type": "string",
                            "description": "cEigrpVpnId",
                            "x-yang-type": "leafref"
                          },
                          "cEigrpAsNumber": {
                            "type": "string",
                            "description": "cEigrpAsNumber",
                            "x-yang-type": "leafref"
                          },
                          "ifIndex": {
                            "type": "string",
                            "description": "ifIndex",
                            "x-yang-type": "leafref"
                          },
                          "cEigrpPeerCount": {
                            "type": "integer",
                            "description": "The number of EIGRP adjacencies currently formed with\n            peers reached through this interface.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "cEigrpXmitReliableQ": {
                            "type": "integer",
                            "description": "The number of EIGRP packets currently waiting in the\n            reliable transport (acknowledgement-required) \n            transmission queue to be sent to a peer.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "cEigrpXmitUnreliableQ": {
                            "type": "integer",
                            "description": "The number EIGRP of packets currently waiting in\n            the unreliable transport (no acknowledgement required)\n            transmission queue.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "cEigrpMeanSrtt": {
                            "type": "integer",
                            "description": "The average of all the computed smooth round trip time\n            values for a packet to and from all peers established on\n            this interface.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "cEigrpPacingReliable": {
                            "type": "integer",
                            "description": "The configured time interval between EIGRP packet\n            transmissions on the interface when the reliable transport\n            method is used.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "cEigrpPacingUnreliable": {
                            "type": "integer",
                            "description": "The configured time interval between EIGRP packet\n            transmissions on the interface when the unreliable\n            transport method is used.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "cEigrpMFlowTimer": {
                            "type": "integer",
                            "description": "The configured multicast flow control timer value for\n            this interface.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "cEigrpPendingRoutes": {
                            "type": "integer",
                            "description": "The number of queued EIGRP routing updates awaiting\n            transmission on this interface.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "cEigrpHelloInterval": {
                            "type": "integer",
                            "description": "The configured time interval between Hello packet\n            transmissions for this interface.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "cEigrpXmitNextSerial": {
                            "type": "integer",
                            "description": "The serial number of the next EIGRP packet that is to\n            be queued for transmission on this interface.",
                            "minimum": 0
                          },
                          "cEigrpUMcasts": {
                            "type": "integer",
                            "description": "The total number of unreliable (no acknowledgement\n            required) EIGRP multicast packets sent on this\n            interface.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "cEigrpRMcasts": {
                            "type": "integer",
                            "description": "The total number of reliable (acknowledgement required)\n            EIGRP multicast packets sent on this interface.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "cEigrpUUcasts": {
                            "type": "integer",
                            "description": "The total number of unreliable (no acknowledgement\n            required) EIGRP unicast packets sent on this\n            interface.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "cEigrpRUcasts": {
                            "type": "integer",
                            "description": "The total number of reliable (acknowledgement required)\n            unicast packets sent on this interface.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "cEigrpMcastExcepts": {
                            "type": "integer",
                            "description": "The total number of EIGRP multicast exception\n            transmissions that have occurred on this interface.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "cEigrpCRpkts": {
                            "type": "integer",
                            "description": "The total number EIGRP Conditional-Receive packets sent on\n            this interface.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "cEigrpAcksSuppressed": {
                            "type": "integer",
                            "description": "The total number of individual EIGRP acknowledgement\n            packets that have been suppressed and combined in\n            an already enqueued outbound reliable packet on this\n            interface.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "cEigrpRetransSent": {
                            "type": "integer",
                            "description": "The total number EIGRP packet retransmissions sent on\n            the interface.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "cEigrpOOSrvcd": {
                            "type": "integer",
                            "description": "The total number of out-of-sequence EIGRP packets\n            received.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "cEigrpAuthMode": {
                            "type": "string",
                            "description": "The EIGRP authentication mode of the interface.\n            none  :  no authentication enabled on the interface\n            md5   :  MD5 authentication enabled on the interface"
                          },
                          "cEigrpAuthKeyChain": {
                            "type": "string",
                            "description": "The name of the authentication key-chain configured\n            on this interface.   The key-chain is a reference to\n            which set of secret keys are to be accessed in order\n            to determine which secret key string to use.  The key\n            chain name is not the secret key string password and\n            can also be used in other routing protocols, such\n            as RIP and ISIS.",
                            "x-yang-type": "snmp-framework:SnmpAdminString"
                          }
                        }
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-EIGRP-MIB:cEigrpInterfaceTable": {
                    "cEigrpInterfaceEntry": [
                      {
                        "cEigrpVpnId": "example-string",
                        "cEigrpAsNumber": "example-string",
                        "ifIndex": "1",
                        "cEigrpPeerCount": 0,
                        "cEigrpXmitReliableQ": 0,
                        "cEigrpXmitUnreliableQ": 0,
                        "cEigrpMeanSrtt": 0,
                        "cEigrpPacingReliable": 0,
                        "cEigrpPacingUnreliable": 0,
                        "cEigrpMFlowTimer": 0,
                        "cEigrpPendingRoutes": 0,
                        "cEigrpHelloInterval": 0,
                        "cEigrpXmitNextSerial": 0,
                        "cEigrpUMcasts": 0,
                        "cEigrpRMcasts": 0,
                        "cEigrpUUcasts": 0,
                        "cEigrpRUcasts": 0,
                        "cEigrpMcastExcepts": 0,
                        "cEigrpCRpkts": 0,
                        "cEigrpAcksSuppressed": 0,
                        "cEigrpRetransSent": 0,
                        "cEigrpOOSrvcd": 0,
                        "cEigrpAuthMode": "example-string",
                        "cEigrpAuthKeyChain": "example-string"
                      },
                      {
                        "cEigrpVpnId": "example-string",
                        "cEigrpAsNumber": "example-string",
                        "ifIndex": "2",
                        "cEigrpPeerCount": 0,
                        "cEigrpXmitReliableQ": 0,
                        "cEigrpXmitUnreliableQ": 0,
                        "cEigrpMeanSrtt": 0,
                        "cEigrpPacingReliable": 0,
                        "cEigrpPacingUnreliable": 0,
                        "cEigrpMFlowTimer": 0,
                        "cEigrpPendingRoutes": 0,
                        "cEigrpHelloInterval": 0,
                        "cEigrpXmitNextSerial": 0,
                        "cEigrpUMcasts": 0,
                        "cEigrpRMcasts": 0,
                        "cEigrpUUcasts": 0,
                        "cEigrpRUcasts": 0,
                        "cEigrpMcastExcepts": 0,
                        "cEigrpCRpkts": 0,
                        "cEigrpAcksSuppressed": 0,
                        "cEigrpRetransSent": 0,
                        "cEigrpOOSrvcd": 0,
                        "cEigrpAuthMode": "example-string",
                        "cEigrpAuthKeyChain": "example-string"
                      },
                      {
                        "cEigrpVpnId": "example-string",
                        "cEigrpAsNumber": "example-string",
                        "ifIndex": "3",
                        "cEigrpPeerCount": 0,
                        "cEigrpXmitReliableQ": 0,
                        "cEigrpXmitUnreliableQ": 0,
                        "cEigrpMeanSrtt": 0,
                        "cEigrpPacingReliable": 0,
                        "cEigrpPacingUnreliable": 0,
                        "cEigrpMFlowTimer": 0,
                        "cEigrpPendingRoutes": 0,
                        "cEigrpHelloInterval": 0,
                        "cEigrpXmitNextSerial": 0,
                        "cEigrpUMcasts": 0,
                        "cEigrpRMcasts": 0,
                        "cEigrpUUcasts": 0,
                        "cEigrpRUcasts": 0,
                        "cEigrpMcastExcepts": 0,
                        "cEigrpCRpkts": 0,
                        "cEigrpAcksSuppressed": 0,
                        "cEigrpRetransSent": 0,
                        "cEigrpOOSrvcd": 0,
                        "cEigrpAuthMode": "example-string",
                        "cEigrpAuthKeyChain": "example-string"
                      }
                    ]
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cEigrpInterfaceTable",
        "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": "/cEigrpInterfaceTable",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-EIGRP-MIB:cEigrpInterfaceTable/cEigrpInterfaceEntry": {
      "get": {
        "summary": "Get cEigrpInterfaceEntry list",
        "description": "Retrieve list of cEigrpInterfaceEntry entries from MIB",
        "tags": [
          "CISCO-EIGRP-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "Information for a single interface running EIGRP in the\n          AS and VPN.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "cEigrpVpnId": {
                        "type": "string",
                        "description": "cEigrpVpnId",
                        "x-yang-type": "leafref"
                      },
                      "cEigrpAsNumber": {
                        "type": "string",
                        "description": "cEigrpAsNumber",
                        "x-yang-type": "leafref"
                      },
                      "ifIndex": {
                        "type": "string",
                        "description": "ifIndex",
                        "x-yang-type": "leafref"
                      },
                      "cEigrpPeerCount": {
                        "type": "integer",
                        "description": "The number of EIGRP adjacencies currently formed with\n            peers reached through this interface.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cEigrpXmitReliableQ": {
                        "type": "integer",
                        "description": "The number of EIGRP packets currently waiting in the\n            reliable transport (acknowledgement-required) \n            transmission queue to be sent to a peer.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cEigrpXmitUnreliableQ": {
                        "type": "integer",
                        "description": "The number EIGRP of packets currently waiting in\n            the unreliable transport (no acknowledgement required)\n            transmission queue.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cEigrpMeanSrtt": {
                        "type": "integer",
                        "description": "The average of all the computed smooth round trip time\n            values for a packet to and from all peers established on\n            this interface.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cEigrpPacingReliable": {
                        "type": "integer",
                        "description": "The configured time interval between EIGRP packet\n            transmissions on the interface when the reliable transport\n            method is used.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cEigrpPacingUnreliable": {
                        "type": "integer",
                        "description": "The configured time interval between EIGRP packet\n            transmissions on the interface when the unreliable\n            transport method is used.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cEigrpMFlowTimer": {
                        "type": "integer",
                        "description": "The configured multicast flow control timer value for\n            this interface.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cEigrpPendingRoutes": {
                        "type": "integer",
                        "description": "The number of queued EIGRP routing updates awaiting\n            transmission on this interface.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cEigrpHelloInterval": {
                        "type": "integer",
                        "description": "The configured time interval between Hello packet\n            transmissions for this interface.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cEigrpXmitNextSerial": {
                        "type": "integer",
                        "description": "The serial number of the next EIGRP packet that is to\n            be queued for transmission on this interface.",
                        "minimum": 0
                      },
                      "cEigrpUMcasts": {
                        "type": "integer",
                        "description": "The total number of unreliable (no acknowledgement\n            required) EIGRP multicast packets sent on this\n            interface.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cEigrpRMcasts": {
                        "type": "integer",
                        "description": "The total number of reliable (acknowledgement required)\n            EIGRP multicast packets sent on this interface.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cEigrpUUcasts": {
                        "type": "integer",
                        "description": "The total number of unreliable (no acknowledgement\n            required) EIGRP unicast packets sent on this\n            interface.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cEigrpRUcasts": {
                        "type": "integer",
                        "description": "The total number of reliable (acknowledgement required)\n            unicast packets sent on this interface.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cEigrpMcastExcepts": {
                        "type": "integer",
                        "description": "The total number of EIGRP multicast exception\n            transmissions that have occurred on this interface.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cEigrpCRpkts": {
                        "type": "integer",
                        "description": "The total number EIGRP Conditional-Receive packets sent on\n            this interface.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cEigrpAcksSuppressed": {
                        "type": "integer",
                        "description": "The total number of individual EIGRP acknowledgement\n            packets that have been suppressed and combined in\n            an already enqueued outbound reliable packet on this\n            interface.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cEigrpRetransSent": {
                        "type": "integer",
                        "description": "The total number EIGRP packet retransmissions sent on\n            the interface.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cEigrpOOSrvcd": {
                        "type": "integer",
                        "description": "The total number of out-of-sequence EIGRP packets\n            received.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cEigrpAuthMode": {
                        "type": "string",
                        "description": "The EIGRP authentication mode of the interface.\n            none  :  no authentication enabled on the interface\n            md5   :  MD5 authentication enabled on the interface"
                      },
                      "cEigrpAuthKeyChain": {
                        "type": "string",
                        "description": "The name of the authentication key-chain configured\n            on this interface.   The key-chain is a reference to\n            which set of secret keys are to be accessed in order\n            to determine which secret key string to use.  The key\n            chain name is not the secret key string password and\n            can also be used in other routing protocols, such\n            as RIP and ISIS.",
                        "x-yang-type": "snmp-framework:SnmpAdminString"
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-EIGRP-MIB:cEigrpInterfaceEntry": [
                    {
                      "cEigrpVpnId": "example-string",
                      "cEigrpAsNumber": "example-string",
                      "ifIndex": "example-string",
                      "cEigrpPeerCount": 0,
                      "cEigrpXmitReliableQ": 0,
                      "cEigrpXmitUnreliableQ": 0,
                      "cEigrpMeanSrtt": 0,
                      "cEigrpPacingReliable": 0,
                      "cEigrpPacingUnreliable": 0,
                      "cEigrpMFlowTimer": 0,
                      "cEigrpPendingRoutes": 0,
                      "cEigrpHelloInterval": 0,
                      "cEigrpXmitNextSerial": 0,
                      "cEigrpUMcasts": 0,
                      "cEigrpRMcasts": 0,
                      "cEigrpUUcasts": 0,
                      "cEigrpRUcasts": 0,
                      "cEigrpMcastExcepts": 0,
                      "cEigrpCRpkts": 0,
                      "cEigrpAcksSuppressed": 0,
                      "cEigrpRetransSent": 0,
                      "cEigrpOOSrvcd": 0,
                      "cEigrpAuthMode": "example-string",
                      "cEigrpAuthKeyChain": "example-string"
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cEigrpInterfaceEntry",
        "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": "/cEigrpInterfaceTable/cEigrpInterfaceEntry",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-EIGRP-MIB:cEigrpVpnEntry": {
      "get": {
        "summary": "Get cEigrpVpnEntry list",
        "description": "Retrieve list of cEigrpVpnEntry entries from MIB",
        "tags": [
          "CISCO-EIGRP-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "Information relating to a single VPN which is configured\n          to run EIGRP.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "cEigrpVpnId": {
                        "type": "integer",
                        "description": "The unique VPN identifier.  This is a unique integer\n            relative to all other VPN's defined on the router.  It\n            also identifies internally the routing table instance.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cEigrpVpnName": {
                        "type": "string",
                        "description": "The name given to the VPN.",
                        "x-yang-type": "snmp-framework:SnmpAdminString"
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-EIGRP-MIB:cEigrpVpnEntry": [
                    {
                      "cEigrpVpnId": 0,
                      "cEigrpVpnName": "interface-1"
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cEigrpVpnEntry-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": "/cEigrpVpnEntry",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-EIGRP-MIB:cEigrpVpnEntry={cEigrpVpnId}": {
      "get": {
        "summary": "Get cEigrpVpnEntry entry",
        "description": "Retrieve specific cEigrpVpnEntry entry by key from MIB",
        "tags": [
          "CISCO-EIGRP-MIB"
        ],
        "parameters": [
          {
            "name": "cEigrpVpnId",
            "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": {
                    "cEigrpVpnId": {
                      "type": "integer",
                      "description": "The unique VPN identifier.  This is a unique integer\n            relative to all other VPN's defined on the router.  It\n            also identifies internally the routing table instance.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cEigrpVpnName": {
                      "type": "string",
                      "description": "The name given to the VPN.",
                      "x-yang-type": "snmp-framework:SnmpAdminString"
                    }
                  }
                },
                "example": {
                  "CISCO-EIGRP-MIB:cEigrpVpnEntry": {
                    "cEigrpVpnId": 0,
                    "cEigrpVpnName": "interface-1"
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cEigrpVpnEntry-4"
      },
      "x-yang-path": "/cEigrpVpnEntry={cEigrpVpnId}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "cEigrpVpnId"
      ]
    },
    "/data/CISCO-EIGRP-MIB:cEigrpTraffStatsEntry": {
      "get": {
        "summary": "Get cEigrpTraffStatsEntry list",
        "description": "Retrieve list of cEigrpTraffStatsEntry entries from MIB",
        "tags": [
          "CISCO-EIGRP-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "The set of statistics and information for a single EIGRP\n          Autonomous System.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "cEigrpVpnId": {
                        "type": "string",
                        "description": "cEigrpVpnId",
                        "x-yang-type": "leafref"
                      },
                      "cEigrpAsNumber": {
                        "type": "integer",
                        "description": "The Autonomous System number which is unique integer\n            per VPN.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cEigrpNbrCount": {
                        "type": "integer",
                        "description": "The total number of live EIGRP neighbors formed on all\n            interfaces whose IP addresses fall under networks configured\n            in the EIGRP AS.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cEigrpHellosSent": {
                        "type": "integer",
                        "description": "The total number Hello packets that have been sent to all\n            EIGRP neighbors formed on all interfaces whose IP addresses\n            fall under networks configured for the EIGRP AS.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cEigrpHellosRcvd": {
                        "type": "integer",
                        "description": "The total number Hello packets that have been received\n            from all EIGRP neighbors formed on all interfaces whose IP\n            addresses fall under networks configured for the\n            EIGRP AS.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cEigrpUpdatesSent": {
                        "type": "integer",
                        "description": "The total number routing update packets that have been\n            sent to all EIGRP neighbors formed on all interfaces whose\n            IP addresses fall under networks configured for the\n            EIGRP AS.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cEigrpUpdatesRcvd": {
                        "type": "integer",
                        "description": "The total number routing update packets that have been\n            received from all EIGRP neighbors formed on all interfaces\n            whose IP addresses fall under networks configured for the\n            EIGRP AS.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cEigrpQueriesSent": {
                        "type": "integer",
                        "description": "The total number alternate route query packets that have\n            been sent to all EIGRP neighbors formed on all interfaces\n            whose IP addresses fall under networks configured for the\n            EIGRP AS.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cEigrpQueriesRcvd": {
                        "type": "integer",
                        "description": "The total number alternate route query packets that\n            have been received from all EIGRP neighbors formed on\n            all interfaces whose IP addresses fall under networks\n            configured for the EIGRP AS.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cEigrpRepliesSent": {
                        "type": "integer",
                        "description": "The total number query reply packets that have been sent\n            to all EIGRP neighbors formed on all interfaces whose IP\n            addresses fall under networks configured for the\n            EIGRP AS.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cEigrpRepliesRcvd": {
                        "type": "integer",
                        "description": "The total number query reply packets that have been\n            received from all EIGRP neighbors formed on all interfaces\n            whose IP addresses fall under networks configured for the\n            EIGRP AS.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cEigrpAcksSent": {
                        "type": "integer",
                        "description": "The total number packet acknowledgements that have been\n            sent to all EIGRP neighbors formed on all interfaces whose\n            IP addresses fall under networks configured for the\n            EIGRP AS.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cEigrpAcksRcvd": {
                        "type": "integer",
                        "description": "The total number packet acknowledgements that have been\n            received from all EIGRP neighbors formed on all interfaces\n            whose IP addresses fall under networks configured for the\n            EIGRP AS.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cEigrpInputQHighMark": {
                        "type": "integer",
                        "description": "The highest number of EIGRP packets in the input queue\n            waiting to be processed internally addressed to this\n            AS.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cEigrpInputQDrops": {
                        "type": "integer",
                        "description": "The number of EIGRP packets dropped from the input\n            queue due to it being full within the AS.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cEigrpSiaQueriesSent": {
                        "type": "integer",
                        "description": "The total number of Stuck-In-Active (SIA) query packets\n            sent to all EIGRP neighbors formed on all interfaces whose\n            IP addresses fall under networks configured for the\n            EIGRP AS.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cEigrpSiaQueriesRcvd": {
                        "type": "integer",
                        "description": "The total number of Stuck-In-Active (SIA) query packets\n            received from all EIGRP neighbors formed on all interfaces\n            whose IP addresses fall under networks configured for the\n            EIGRP AS.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cEigrpAsRouterIdType": {
                        "type": "string",
                        "description": "The format of the router-id configured or automatically\n            selected for the EIGRP AS.",
                        "x-yang-type": "inet-address:InetAddressType"
                      },
                      "cEigrpAsRouterId": {
                        "type": "string",
                        "description": "The router-id configured or automatically selected for the\n            EIGRP AS.   Each EIGRP routing process has a unique\n            router-id selected from each autonomous system configured.\n            The format is governed by object cEigrpAsRouterIdType.",
                        "x-yang-type": "inet-address:InetAddress"
                      },
                      "cEigrpTopoRoutes": {
                        "type": "integer",
                        "description": "The total number of EIGRP derived routes currently existing\n            in the topology table for the AS.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cEigrpHeadSerial": {
                        "type": "integer",
                        "description": "Routes in a topology table for an AS are assigned serial\n            numbers and are sequenced internally as they are inserted\n            and deleted.   The serial number of the first route in\n            that internal sequence is called the head serial number.\n            Each AS has its own topology table, and its own serial\n            number space, each of which begins with the value 1.\n            A serial number of zero implies that there are no routes\n            in the topology.",
                        "minimum": 0
                      },
                      "cEigrpNextSerial": {
                        "type": "integer",
                        "description": "The serial number that would be assigned to the next new\n            or changed route in the topology table for the AS.",
                        "minimum": 0
                      },
                      "cEigrpXmitPendReplies": {
                        "type": "integer",
                        "description": "When alternate route query packets are sent to adjacent\n            EIGRP peers in an AS, replies are expected.   This object\n            is the total number of outstanding replies expected to\n            queries that have been sent to peers in the current AS.\n            It remains at zero most of the time until an EIGRP route\n            becomes active.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cEigrpXmitDummies": {
                        "type": "integer",
                        "description": "A dummy is a temporary internal entity used as a place\n            holder in the topology table for an AS. They are not\n            transmitted in routing updates.  This is the total\n            number currently in existence associated with the AS.",
                        "minimum": 0,
                        "maximum": 4294967295
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-EIGRP-MIB:cEigrpTraffStatsEntry": [
                    {
                      "cEigrpVpnId": "example-string",
                      "cEigrpAsNumber": 0,
                      "cEigrpNbrCount": 0,
                      "cEigrpHellosSent": 0,
                      "cEigrpHellosRcvd": 0,
                      "cEigrpUpdatesSent": 0,
                      "cEigrpUpdatesRcvd": 0,
                      "cEigrpQueriesSent": 0,
                      "cEigrpQueriesRcvd": 0,
                      "cEigrpRepliesSent": 0,
                      "cEigrpRepliesRcvd": 0,
                      "cEigrpAcksSent": 0,
                      "cEigrpAcksRcvd": 0,
                      "cEigrpInputQHighMark": 0,
                      "cEigrpInputQDrops": 0,
                      "cEigrpSiaQueriesSent": 0,
                      "cEigrpSiaQueriesRcvd": 0,
                      "cEigrpAsRouterIdType": "ethernetCsmacd(6)",
                      "cEigrpAsRouterId": "example-string",
                      "cEigrpTopoRoutes": 0,
                      "cEigrpHeadSerial": 0,
                      "cEigrpNextSerial": 0,
                      "cEigrpXmitPendReplies": 0,
                      "cEigrpXmitDummies": 0
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cEigrpTraffStatsEntry-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": "/cEigrpTraffStatsEntry",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-EIGRP-MIB:cEigrpTopoEntry": {
      "get": {
        "summary": "Get cEigrpTopoEntry list",
        "description": "Retrieve list of cEigrpTopoEntry entries from MIB",
        "tags": [
          "CISCO-EIGRP-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "The entry for a single EIGRP topology table in the given\n          AS.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "cEigrpVpnId": {
                        "type": "string",
                        "description": "cEigrpVpnId",
                        "x-yang-type": "leafref"
                      },
                      "cEigrpAsNumber": {
                        "type": "string",
                        "description": "cEigrpAsNumber",
                        "x-yang-type": "leafref"
                      },
                      "cEigrpDestNetType": {
                        "type": "string",
                        "description": "The format of the destination IP network number for\n            a single route in the topology table in the AS specified\n            in cEigrpDestNet.",
                        "x-yang-type": "inet-address:InetAddressType"
                      },
                      "cEigrpDestNet": {
                        "type": "string",
                        "description": "The destination IP network number for a single route in\n            the topology table in the AS.  The format is governed\n            by object cEigrpDestNetType.",
                        "x-yang-type": "inet-address:InetAddress"
                      },
                      "cEigrpDestNetPrefixLen": {
                        "type": "string",
                        "description": "The prefix length associated with the destination IP\n            network address for a single route in the topology\n            table in the AS.  The format is governed by the object\n            cEigrpDestNetType.",
                        "x-yang-type": "inet-address:InetAddressPrefixLength"
                      },
                      "cEigrpActive": {
                        "type": "boolean",
                        "description": "A value of true(1) indicates the route to the\n            destination network has failed and an active (query)\n            search for an alternative path is in progress.  A value\n            of false(2) indicates the route is stable (passive)."
                      },
                      "cEigrpStuckInActive": {
                        "type": "boolean",
                        "description": "A value of true(1) indicates that that this route which is\n            in active state (cEigrpActive = true(1)) has not received\n            any replies to queries for alternate paths, and a second\n            EIGRP route query, called a stuck-in-active query, has\n            now been sent."
                      },
                      "cEigrpDestSuccessors": {
                        "type": "integer",
                        "description": "A successor is the next routing hop for a path to the\n            destination IP network number for a single route in the\n            topology table in the AS.  There can be several\n            potential successors if there are multiple paths to the\n            destination.   This is the total number of successors for\n            a topology entry.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cEigrpFdistance": {
                        "type": "integer",
                        "description": "The feasibility (best) distance is the minimum distance\n            from this router to the destination IP network in\n            this topology entry.  The feasibility distance is\n            used in determining the best successor for a path to the\n            destination network.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cEigrpRouteOriginType": {
                        "type": "string",
                        "description": "This is a text string describing the internal origin\n            of the EIGRP route represented by the topology entry.",
                        "x-yang-type": "snmp-framework:SnmpAdminString"
                      },
                      "cEigrpRouteOriginAddrType": {
                        "type": "string",
                        "description": "The format of the IP address defined as the origin of\n            this topology route entry.",
                        "x-yang-type": "inet-address:InetAddressType"
                      },
                      "cEigrpRouteOriginAddr": {
                        "type": "string",
                        "description": "If the origin of the topology route entry is external\n            to this router, then this object is the IP address\n            of the router from which it originated.  The format \n            is governed by object cEigrpRouteOriginAddrType.",
                        "x-yang-type": "inet-address:InetAddress"
                      },
                      "cEigrpNextHopAddressType": {
                        "type": "string",
                        "description": "The format of the next hop IP address for the route\n            represented by the topology entry.",
                        "x-yang-type": "inet-address:InetAddressType"
                      },
                      "cEigrpNextHopAddress": {
                        "type": "string",
                        "description": "This is the next hop IP address for the route represented\n            by the topology entry.   The next hop is where\n            network traffic will be routed to in order to reach\n            the destination network for this topology entry.  The\n            format is governed by cEigrpNextHopAddressType.",
                        "x-yang-type": "inet-address:InetAddress"
                      },
                      "cEigrpNextHopInterface": {
                        "type": "string",
                        "description": "The interface through which the next hop IP address\n            is reached to send network traffic to the destination\n            network represented by the topology entry.",
                        "x-yang-type": "snmp-framework:SnmpAdminString"
                      },
                      "cEigrpDistance": {
                        "type": "integer",
                        "description": "The computed distance to the destination network entry\n            from this router.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cEigrpReportDistance": {
                        "type": "integer",
                        "description": "The computed distance to the destination network in the\n            topology entry reported to this router by the originator\n            of this route.",
                        "minimum": 0,
                        "maximum": 4294967295
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-EIGRP-MIB:cEigrpTopoEntry": [
                    {
                      "cEigrpVpnId": "example-string",
                      "cEigrpAsNumber": "example-string",
                      "cEigrpDestNetType": "ethernetCsmacd(6)",
                      "cEigrpDestNet": "example-string",
                      "cEigrpDestNetPrefixLen": "example-string",
                      "cEigrpActive": true,
                      "cEigrpStuckInActive": true,
                      "cEigrpDestSuccessors": 0,
                      "cEigrpFdistance": 0,
                      "cEigrpRouteOriginType": "ethernetCsmacd(6)",
                      "cEigrpRouteOriginAddrType": "192.168.1.1",
                      "cEigrpRouteOriginAddr": "192.168.1.1",
                      "cEigrpNextHopAddressType": "192.168.1.1",
                      "cEigrpNextHopAddress": "192.168.1.1",
                      "cEigrpNextHopInterface": "GigabitEthernet1/0/1",
                      "cEigrpDistance": 0,
                      "cEigrpReportDistance": 0
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cEigrpTopoEntry-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": "/cEigrpTopoEntry",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-EIGRP-MIB:cEigrpPeerEntry": {
      "get": {
        "summary": "Get cEigrpPeerEntry list",
        "description": "Retrieve list of cEigrpPeerEntry entries from MIB",
        "tags": [
          "CISCO-EIGRP-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "Statistics and operational parameters for a single peer\n          in the AS.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "cEigrpVpnId": {
                        "type": "string",
                        "description": "cEigrpVpnId",
                        "x-yang-type": "leafref"
                      },
                      "cEigrpAsNumber": {
                        "type": "string",
                        "description": "cEigrpAsNumber",
                        "x-yang-type": "leafref"
                      },
                      "cEigrpHandle": {
                        "type": "integer",
                        "description": "The unique internal identifier for the peer in the AS.\n            This is a unique value among peer entries in a selected\n            table.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cEigrpPeerAddrType": {
                        "type": "string",
                        "description": "The format of the remote source IP address used by the\n            peer to establish the EIGRP adjacency with this router.",
                        "x-yang-type": "inet-address:InetAddressType"
                      },
                      "cEigrpPeerAddr": {
                        "type": "string",
                        "description": "The source IP address used by the peer to establish the\n            EIGRP adjacency with this router.  The format is\n            governed by object cEigrpPeerAddrType.",
                        "x-yang-type": "inet-address:InetAddress"
                      },
                      "cEigrpPeerIfIndex": {
                        "type": "string",
                        "description": "The ifIndex of the interface on this router through\n            which this peer can be reached.",
                        "x-yang-type": "if-mib:InterfaceIndexOrZero"
                      },
                      "cEigrpHoldTime": {
                        "type": "integer",
                        "description": "The count-down timer indicating how much time must\n            pass without receiving a hello packet from this\n            EIGRP peer before this router declares the peer down.\n            A peer declared as down is removed from the table and\n            is no longer visible.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cEigrpUpTime": {
                        "type": "string",
                        "description": "The elapsed time since the EIGRP adjacency was first\n            established with the peer.",
                        "x-yang-type": "CISCO-EIGRP-MIB:EigrpUpTimeString"
                      },
                      "cEigrpSrtt": {
                        "type": "integer",
                        "description": "The computed smooth round trip time for packets to and\n            from the peer.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cEigrpRto": {
                        "type": "integer",
                        "description": "The computed retransmission timeout for the peer.\n            This value is computed over time as packets are sent to\n            the peer and acknowledgements are received from it,\n            and is the amount of time to wait before resending\n            a packet from the retransmission queue to the peer\n            when an expected acknowledgement has not been received.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cEigrpPktsEnqueued": {
                        "type": "integer",
                        "description": "The number of any EIGRP packets currently enqueued\n            waiting to be sent to this peer.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cEigrpLastSeq": {
                        "type": "integer",
                        "description": "All transmitted EIGRP packets have a sequence number\n            assigned. This is the sequence number of the last EIGRP\n            packet sent to this peer.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cEigrpVersion": {
                        "type": "string",
                        "description": "The EIGRP version information reported by the remote\n            peer.",
                        "x-yang-type": "CISCO-EIGRP-MIB:EigrpVersionString"
                      },
                      "cEigrpRetrans": {
                        "type": "integer",
                        "description": "The cumulative number of retransmissions to this peer\n            during the period that the peer adjacency has remained\n            up.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cEigrpRetries": {
                        "type": "integer",
                        "description": "The number of times the current unacknowledged packet\n            has been retried, i.e. resent to this peer to be\n            acknowledged.",
                        "minimum": 0,
                        "maximum": 4294967295
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-EIGRP-MIB:cEigrpPeerEntry": [
                    {
                      "cEigrpVpnId": "example-string",
                      "cEigrpAsNumber": "example-string",
                      "cEigrpHandle": 0,
                      "cEigrpPeerAddrType": "192.168.1.1",
                      "cEigrpPeerAddr": "192.168.1.1",
                      "cEigrpPeerIfIndex": "example-string",
                      "cEigrpHoldTime": 0,
                      "cEigrpUpTime": "example-string",
                      "cEigrpSrtt": 0,
                      "cEigrpRto": 0,
                      "cEigrpPktsEnqueued": 0,
                      "cEigrpLastSeq": 0,
                      "cEigrpVersion": "example-string",
                      "cEigrpRetrans": 0,
                      "cEigrpRetries": 0
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cEigrpPeerEntry-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": "/cEigrpPeerEntry",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-EIGRP-MIB:cEigrpInterfaceEntry": {
      "get": {
        "summary": "Get cEigrpInterfaceEntry list",
        "description": "Retrieve list of cEigrpInterfaceEntry entries from MIB",
        "tags": [
          "CISCO-EIGRP-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "Information for a single interface running EIGRP in the\n          AS and VPN.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "cEigrpVpnId": {
                        "type": "string",
                        "description": "cEigrpVpnId",
                        "x-yang-type": "leafref"
                      },
                      "cEigrpAsNumber": {
                        "type": "string",
                        "description": "cEigrpAsNumber",
                        "x-yang-type": "leafref"
                      },
                      "ifIndex": {
                        "type": "string",
                        "description": "ifIndex",
                        "x-yang-type": "leafref"
                      },
                      "cEigrpPeerCount": {
                        "type": "integer",
                        "description": "The number of EIGRP adjacencies currently formed with\n            peers reached through this interface.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cEigrpXmitReliableQ": {
                        "type": "integer",
                        "description": "The number of EIGRP packets currently waiting in the\n            reliable transport (acknowledgement-required) \n            transmission queue to be sent to a peer.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cEigrpXmitUnreliableQ": {
                        "type": "integer",
                        "description": "The number EIGRP of packets currently waiting in\n            the unreliable transport (no acknowledgement required)\n            transmission queue.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cEigrpMeanSrtt": {
                        "type": "integer",
                        "description": "The average of all the computed smooth round trip time\n            values for a packet to and from all peers established on\n            this interface.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cEigrpPacingReliable": {
                        "type": "integer",
                        "description": "The configured time interval between EIGRP packet\n            transmissions on the interface when the reliable transport\n            method is used.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cEigrpPacingUnreliable": {
                        "type": "integer",
                        "description": "The configured time interval between EIGRP packet\n            transmissions on the interface when the unreliable\n            transport method is used.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cEigrpMFlowTimer": {
                        "type": "integer",
                        "description": "The configured multicast flow control timer value for\n            this interface.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cEigrpPendingRoutes": {
                        "type": "integer",
                        "description": "The number of queued EIGRP routing updates awaiting\n            transmission on this interface.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cEigrpHelloInterval": {
                        "type": "integer",
                        "description": "The configured time interval between Hello packet\n            transmissions for this interface.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cEigrpXmitNextSerial": {
                        "type": "integer",
                        "description": "The serial number of the next EIGRP packet that is to\n            be queued for transmission on this interface.",
                        "minimum": 0
                      },
                      "cEigrpUMcasts": {
                        "type": "integer",
                        "description": "The total number of unreliable (no acknowledgement\n            required) EIGRP multicast packets sent on this\n            interface.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cEigrpRMcasts": {
                        "type": "integer",
                        "description": "The total number of reliable (acknowledgement required)\n            EIGRP multicast packets sent on this interface.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cEigrpUUcasts": {
                        "type": "integer",
                        "description": "The total number of unreliable (no acknowledgement\n            required) EIGRP unicast packets sent on this\n            interface.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cEigrpRUcasts": {
                        "type": "integer",
                        "description": "The total number of reliable (acknowledgement required)\n            unicast packets sent on this interface.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cEigrpMcastExcepts": {
                        "type": "integer",
                        "description": "The total number of EIGRP multicast exception\n            transmissions that have occurred on this interface.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cEigrpCRpkts": {
                        "type": "integer",
                        "description": "The total number EIGRP Conditional-Receive packets sent on\n            this interface.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cEigrpAcksSuppressed": {
                        "type": "integer",
                        "description": "The total number of individual EIGRP acknowledgement\n            packets that have been suppressed and combined in\n            an already enqueued outbound reliable packet on this\n            interface.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cEigrpRetransSent": {
                        "type": "integer",
                        "description": "The total number EIGRP packet retransmissions sent on\n            the interface.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cEigrpOOSrvcd": {
                        "type": "integer",
                        "description": "The total number of out-of-sequence EIGRP packets\n            received.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cEigrpAuthMode": {
                        "type": "string",
                        "description": "The EIGRP authentication mode of the interface.\n            none  :  no authentication enabled on the interface\n            md5   :  MD5 authentication enabled on the interface"
                      },
                      "cEigrpAuthKeyChain": {
                        "type": "string",
                        "description": "The name of the authentication key-chain configured\n            on this interface.   The key-chain is a reference to\n            which set of secret keys are to be accessed in order\n            to determine which secret key string to use.  The key\n            chain name is not the secret key string password and\n            can also be used in other routing protocols, such\n            as RIP and ISIS.",
                        "x-yang-type": "snmp-framework:SnmpAdminString"
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-EIGRP-MIB:cEigrpInterfaceEntry": [
                    {
                      "cEigrpVpnId": "example-string",
                      "cEigrpAsNumber": "example-string",
                      "ifIndex": "example-string",
                      "cEigrpPeerCount": 0,
                      "cEigrpXmitReliableQ": 0,
                      "cEigrpXmitUnreliableQ": 0,
                      "cEigrpMeanSrtt": 0,
                      "cEigrpPacingReliable": 0,
                      "cEigrpPacingUnreliable": 0,
                      "cEigrpMFlowTimer": 0,
                      "cEigrpPendingRoutes": 0,
                      "cEigrpHelloInterval": 0,
                      "cEigrpXmitNextSerial": 0,
                      "cEigrpUMcasts": 0,
                      "cEigrpRMcasts": 0,
                      "cEigrpUUcasts": 0,
                      "cEigrpRUcasts": 0,
                      "cEigrpMcastExcepts": 0,
                      "cEigrpCRpkts": 0,
                      "cEigrpAcksSuppressed": 0,
                      "cEigrpRetransSent": 0,
                      "cEigrpOOSrvcd": 0,
                      "cEigrpAuthMode": "example-string",
                      "cEigrpAuthKeyChain": "example-string"
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cEigrpInterfaceEntry-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": "/cEigrpInterfaceEntry",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-EIGRP-MIB:cEigrpTraffStatsTable/cEigrpTraffStatsEntry={cEigrpVpnId},{cEigrpAsNumber}": {
      "get": {
        "summary": "Get cEigrpTraffStatsEntry entry",
        "description": "Retrieve specific cEigrpTraffStatsEntry entry by key from MIB",
        "tags": [
          "CISCO-EIGRP-MIB"
        ],
        "parameters": [
          {
            "name": "cEigrpVpnId",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "cEigrpAsNumber",
            "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": {
                    "cEigrpVpnId": {
                      "type": "string",
                      "description": "cEigrpVpnId",
                      "x-yang-type": "leafref"
                    },
                    "cEigrpAsNumber": {
                      "type": "integer",
                      "description": "The Autonomous System number which is unique integer\n            per VPN.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cEigrpNbrCount": {
                      "type": "integer",
                      "description": "The total number of live EIGRP neighbors formed on all\n            interfaces whose IP addresses fall under networks configured\n            in the EIGRP AS.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cEigrpHellosSent": {
                      "type": "integer",
                      "description": "The total number Hello packets that have been sent to all\n            EIGRP neighbors formed on all interfaces whose IP addresses\n            fall under networks configured for the EIGRP AS.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cEigrpHellosRcvd": {
                      "type": "integer",
                      "description": "The total number Hello packets that have been received\n            from all EIGRP neighbors formed on all interfaces whose IP\n            addresses fall under networks configured for the\n            EIGRP AS.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cEigrpUpdatesSent": {
                      "type": "integer",
                      "description": "The total number routing update packets that have been\n            sent to all EIGRP neighbors formed on all interfaces whose\n            IP addresses fall under networks configured for the\n            EIGRP AS.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cEigrpUpdatesRcvd": {
                      "type": "integer",
                      "description": "The total number routing update packets that have been\n            received from all EIGRP neighbors formed on all interfaces\n            whose IP addresses fall under networks configured for the\n            EIGRP AS.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cEigrpQueriesSent": {
                      "type": "integer",
                      "description": "The total number alternate route query packets that have\n            been sent to all EIGRP neighbors formed on all interfaces\n            whose IP addresses fall under networks configured for the\n            EIGRP AS.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cEigrpQueriesRcvd": {
                      "type": "integer",
                      "description": "The total number alternate route query packets that\n            have been received from all EIGRP neighbors formed on\n            all interfaces whose IP addresses fall under networks\n            configured for the EIGRP AS.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cEigrpRepliesSent": {
                      "type": "integer",
                      "description": "The total number query reply packets that have been sent\n            to all EIGRP neighbors formed on all interfaces whose IP\n            addresses fall under networks configured for the\n            EIGRP AS.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cEigrpRepliesRcvd": {
                      "type": "integer",
                      "description": "The total number query reply packets that have been\n            received from all EIGRP neighbors formed on all interfaces\n            whose IP addresses fall under networks configured for the\n            EIGRP AS.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cEigrpAcksSent": {
                      "type": "integer",
                      "description": "The total number packet acknowledgements that have been\n            sent to all EIGRP neighbors formed on all interfaces whose\n            IP addresses fall under networks configured for the\n            EIGRP AS.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cEigrpAcksRcvd": {
                      "type": "integer",
                      "description": "The total number packet acknowledgements that have been\n            received from all EIGRP neighbors formed on all interfaces\n            whose IP addresses fall under networks configured for the\n            EIGRP AS.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cEigrpInputQHighMark": {
                      "type": "integer",
                      "description": "The highest number of EIGRP packets in the input queue\n            waiting to be processed internally addressed to this\n            AS.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cEigrpInputQDrops": {
                      "type": "integer",
                      "description": "The number of EIGRP packets dropped from the input\n            queue due to it being full within the AS.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cEigrpSiaQueriesSent": {
                      "type": "integer",
                      "description": "The total number of Stuck-In-Active (SIA) query packets\n            sent to all EIGRP neighbors formed on all interfaces whose\n            IP addresses fall under networks configured for the\n            EIGRP AS.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cEigrpSiaQueriesRcvd": {
                      "type": "integer",
                      "description": "The total number of Stuck-In-Active (SIA) query packets\n            received from all EIGRP neighbors formed on all interfaces\n            whose IP addresses fall under networks configured for the\n            EIGRP AS.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cEigrpAsRouterIdType": {
                      "type": "string",
                      "description": "The format of the router-id configured or automatically\n            selected for the EIGRP AS.",
                      "x-yang-type": "inet-address:InetAddressType"
                    },
                    "cEigrpAsRouterId": {
                      "type": "string",
                      "description": "The router-id configured or automatically selected for the\n            EIGRP AS.   Each EIGRP routing process has a unique\n            router-id selected from each autonomous system configured.\n            The format is governed by object cEigrpAsRouterIdType.",
                      "x-yang-type": "inet-address:InetAddress"
                    },
                    "cEigrpTopoRoutes": {
                      "type": "integer",
                      "description": "The total number of EIGRP derived routes currently existing\n            in the topology table for the AS.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cEigrpHeadSerial": {
                      "type": "integer",
                      "description": "Routes in a topology table for an AS are assigned serial\n            numbers and are sequenced internally as they are inserted\n            and deleted.   The serial number of the first route in\n            that internal sequence is called the head serial number.\n            Each AS has its own topology table, and its own serial\n            number space, each of which begins with the value 1.\n            A serial number of zero implies that there are no routes\n            in the topology.",
                      "minimum": 0
                    },
                    "cEigrpNextSerial": {
                      "type": "integer",
                      "description": "The serial number that would be assigned to the next new\n            or changed route in the topology table for the AS.",
                      "minimum": 0
                    },
                    "cEigrpXmitPendReplies": {
                      "type": "integer",
                      "description": "When alternate route query packets are sent to adjacent\n            EIGRP peers in an AS, replies are expected.   This object\n            is the total number of outstanding replies expected to\n            queries that have been sent to peers in the current AS.\n            It remains at zero most of the time until an EIGRP route\n            becomes active.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cEigrpXmitDummies": {
                      "type": "integer",
                      "description": "A dummy is a temporary internal entity used as a place\n            holder in the topology table for an AS. They are not\n            transmitted in routing updates.  This is the total\n            number currently in existence associated with the AS.",
                      "minimum": 0,
                      "maximum": 4294967295
                    }
                  }
                },
                "example": {
                  "CISCO-EIGRP-MIB:cEigrpTraffStatsEntry": {
                    "cEigrpVpnId": "example-string",
                    "cEigrpAsNumber": 0,
                    "cEigrpNbrCount": 0,
                    "cEigrpHellosSent": 0,
                    "cEigrpHellosRcvd": 0,
                    "cEigrpUpdatesSent": 0,
                    "cEigrpUpdatesRcvd": 0,
                    "cEigrpQueriesSent": 0,
                    "cEigrpQueriesRcvd": 0,
                    "cEigrpRepliesSent": 0,
                    "cEigrpRepliesRcvd": 0,
                    "cEigrpAcksSent": 0,
                    "cEigrpAcksRcvd": 0,
                    "cEigrpInputQHighMark": 0,
                    "cEigrpInputQDrops": 0,
                    "cEigrpSiaQueriesSent": 0,
                    "cEigrpSiaQueriesRcvd": 0,
                    "cEigrpAsRouterIdType": "ethernetCsmacd(6)",
                    "cEigrpAsRouterId": "example-string",
                    "cEigrpTopoRoutes": 0,
                    "cEigrpHeadSerial": 0,
                    "cEigrpNextSerial": 0,
                    "cEigrpXmitPendReplies": 0,
                    "cEigrpXmitDummies": 0
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cEigrpTraffStatsEntry-2"
      },
      "x-yang-path": "/cEigrpTraffStatsTable/cEigrpTraffStatsEntry={cEigrpVpnId cEigrpAsNumber}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "cEigrpVpnId cEigrpAsNumber"
      ]
    },
    "/data/CISCO-EIGRP-MIB:cEigrpTopoTable/cEigrpTopoEntry={cEigrpVpnId},{cEigrpAsNumber},{cEigrpDestNetType},{cEigrpDestNet},{cEigrpDestNetPrefixLen}": {
      "get": {
        "summary": "Get cEigrpTopoEntry entry",
        "description": "Retrieve specific cEigrpTopoEntry entry by key from MIB",
        "tags": [
          "CISCO-EIGRP-MIB"
        ],
        "parameters": [
          {
            "name": "cEigrpVpnId",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "cEigrpAsNumber",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "cEigrpDestNetType",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "cEigrpDestNet",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "cEigrpDestNetPrefixLen",
            "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": {
                    "cEigrpVpnId": {
                      "type": "string",
                      "description": "cEigrpVpnId",
                      "x-yang-type": "leafref"
                    },
                    "cEigrpAsNumber": {
                      "type": "string",
                      "description": "cEigrpAsNumber",
                      "x-yang-type": "leafref"
                    },
                    "cEigrpDestNetType": {
                      "type": "string",
                      "description": "The format of the destination IP network number for\n            a single route in the topology table in the AS specified\n            in cEigrpDestNet.",
                      "x-yang-type": "inet-address:InetAddressType"
                    },
                    "cEigrpDestNet": {
                      "type": "string",
                      "description": "The destination IP network number for a single route in\n            the topology table in the AS.  The format is governed\n            by object cEigrpDestNetType.",
                      "x-yang-type": "inet-address:InetAddress"
                    },
                    "cEigrpDestNetPrefixLen": {
                      "type": "string",
                      "description": "The prefix length associated with the destination IP\n            network address for a single route in the topology\n            table in the AS.  The format is governed by the object\n            cEigrpDestNetType.",
                      "x-yang-type": "inet-address:InetAddressPrefixLength"
                    },
                    "cEigrpActive": {
                      "type": "boolean",
                      "description": "A value of true(1) indicates the route to the\n            destination network has failed and an active (query)\n            search for an alternative path is in progress.  A value\n            of false(2) indicates the route is stable (passive)."
                    },
                    "cEigrpStuckInActive": {
                      "type": "boolean",
                      "description": "A value of true(1) indicates that that this route which is\n            in active state (cEigrpActive = true(1)) has not received\n            any replies to queries for alternate paths, and a second\n            EIGRP route query, called a stuck-in-active query, has\n            now been sent."
                    },
                    "cEigrpDestSuccessors": {
                      "type": "integer",
                      "description": "A successor is the next routing hop for a path to the\n            destination IP network number for a single route in the\n            topology table in the AS.  There can be several\n            potential successors if there are multiple paths to the\n            destination.   This is the total number of successors for\n            a topology entry.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cEigrpFdistance": {
                      "type": "integer",
                      "description": "The feasibility (best) distance is the minimum distance\n            from this router to the destination IP network in\n            this topology entry.  The feasibility distance is\n            used in determining the best successor for a path to the\n            destination network.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cEigrpRouteOriginType": {
                      "type": "string",
                      "description": "This is a text string describing the internal origin\n            of the EIGRP route represented by the topology entry.",
                      "x-yang-type": "snmp-framework:SnmpAdminString"
                    },
                    "cEigrpRouteOriginAddrType": {
                      "type": "string",
                      "description": "The format of the IP address defined as the origin of\n            this topology route entry.",
                      "x-yang-type": "inet-address:InetAddressType"
                    },
                    "cEigrpRouteOriginAddr": {
                      "type": "string",
                      "description": "If the origin of the topology route entry is external\n            to this router, then this object is the IP address\n            of the router from which it originated.  The format \n            is governed by object cEigrpRouteOriginAddrType.",
                      "x-yang-type": "inet-address:InetAddress"
                    },
                    "cEigrpNextHopAddressType": {
                      "type": "string",
                      "description": "The format of the next hop IP address for the route\n            represented by the topology entry.",
                      "x-yang-type": "inet-address:InetAddressType"
                    },
                    "cEigrpNextHopAddress": {
                      "type": "string",
                      "description": "This is the next hop IP address for the route represented\n            by the topology entry.   The next hop is where\n            network traffic will be routed to in order to reach\n            the destination network for this topology entry.  The\n            format is governed by cEigrpNextHopAddressType.",
                      "x-yang-type": "inet-address:InetAddress"
                    },
                    "cEigrpNextHopInterface": {
                      "type": "string",
                      "description": "The interface through which the next hop IP address\n            is reached to send network traffic to the destination\n            network represented by the topology entry.",
                      "x-yang-type": "snmp-framework:SnmpAdminString"
                    },
                    "cEigrpDistance": {
                      "type": "integer",
                      "description": "The computed distance to the destination network entry\n            from this router.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cEigrpReportDistance": {
                      "type": "integer",
                      "description": "The computed distance to the destination network in the\n            topology entry reported to this router by the originator\n            of this route.",
                      "minimum": 0,
                      "maximum": 4294967295
                    }
                  }
                },
                "example": {
                  "CISCO-EIGRP-MIB:cEigrpTopoEntry": {
                    "cEigrpVpnId": "example-string",
                    "cEigrpAsNumber": "example-string",
                    "cEigrpDestNetType": "ethernetCsmacd(6)",
                    "cEigrpDestNet": "example-string",
                    "cEigrpDestNetPrefixLen": "example-string",
                    "cEigrpActive": true,
                    "cEigrpStuckInActive": true,
                    "cEigrpDestSuccessors": 0,
                    "cEigrpFdistance": 0,
                    "cEigrpRouteOriginType": "ethernetCsmacd(6)",
                    "cEigrpRouteOriginAddrType": "192.168.1.1",
                    "cEigrpRouteOriginAddr": "192.168.1.1",
                    "cEigrpNextHopAddressType": "192.168.1.1",
                    "cEigrpNextHopAddress": "192.168.1.1",
                    "cEigrpNextHopInterface": "GigabitEthernet1/0/1",
                    "cEigrpDistance": 0,
                    "cEigrpReportDistance": 0
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cEigrpTopoEntry-2"
      },
      "x-yang-path": "/cEigrpTopoTable/cEigrpTopoEntry={cEigrpVpnId cEigrpAsNumber cEigrpDestNetType cEigrpDestNet cEigrpDestNetPrefixLen}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "cEigrpVpnId cEigrpAsNumber cEigrpDestNetType cEigrpDestNet cEigrpDestNetPrefixLen"
      ]
    },
    "/data/CISCO-EIGRP-MIB:cEigrpPeerTable/cEigrpPeerEntry={cEigrpVpnId},{cEigrpAsNumber},{cEigrpHandle}": {
      "get": {
        "summary": "Get cEigrpPeerEntry entry",
        "description": "Retrieve specific cEigrpPeerEntry entry by key from MIB",
        "tags": [
          "CISCO-EIGRP-MIB"
        ],
        "parameters": [
          {
            "name": "cEigrpVpnId",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "cEigrpAsNumber",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "cEigrpHandle",
            "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": {
                    "cEigrpVpnId": {
                      "type": "string",
                      "description": "cEigrpVpnId",
                      "x-yang-type": "leafref"
                    },
                    "cEigrpAsNumber": {
                      "type": "string",
                      "description": "cEigrpAsNumber",
                      "x-yang-type": "leafref"
                    },
                    "cEigrpHandle": {
                      "type": "integer",
                      "description": "The unique internal identifier for the peer in the AS.\n            This is a unique value among peer entries in a selected\n            table.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cEigrpPeerAddrType": {
                      "type": "string",
                      "description": "The format of the remote source IP address used by the\n            peer to establish the EIGRP adjacency with this router.",
                      "x-yang-type": "inet-address:InetAddressType"
                    },
                    "cEigrpPeerAddr": {
                      "type": "string",
                      "description": "The source IP address used by the peer to establish the\n            EIGRP adjacency with this router.  The format is\n            governed by object cEigrpPeerAddrType.",
                      "x-yang-type": "inet-address:InetAddress"
                    },
                    "cEigrpPeerIfIndex": {
                      "type": "string",
                      "description": "The ifIndex of the interface on this router through\n            which this peer can be reached.",
                      "x-yang-type": "if-mib:InterfaceIndexOrZero"
                    },
                    "cEigrpHoldTime": {
                      "type": "integer",
                      "description": "The count-down timer indicating how much time must\n            pass without receiving a hello packet from this\n            EIGRP peer before this router declares the peer down.\n            A peer declared as down is removed from the table and\n            is no longer visible.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cEigrpUpTime": {
                      "type": "string",
                      "description": "The elapsed time since the EIGRP adjacency was first\n            established with the peer.",
                      "x-yang-type": "CISCO-EIGRP-MIB:EigrpUpTimeString"
                    },
                    "cEigrpSrtt": {
                      "type": "integer",
                      "description": "The computed smooth round trip time for packets to and\n            from the peer.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cEigrpRto": {
                      "type": "integer",
                      "description": "The computed retransmission timeout for the peer.\n            This value is computed over time as packets are sent to\n            the peer and acknowledgements are received from it,\n            and is the amount of time to wait before resending\n            a packet from the retransmission queue to the peer\n            when an expected acknowledgement has not been received.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cEigrpPktsEnqueued": {
                      "type": "integer",
                      "description": "The number of any EIGRP packets currently enqueued\n            waiting to be sent to this peer.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cEigrpLastSeq": {
                      "type": "integer",
                      "description": "All transmitted EIGRP packets have a sequence number\n            assigned. This is the sequence number of the last EIGRP\n            packet sent to this peer.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cEigrpVersion": {
                      "type": "string",
                      "description": "The EIGRP version information reported by the remote\n            peer.",
                      "x-yang-type": "CISCO-EIGRP-MIB:EigrpVersionString"
                    },
                    "cEigrpRetrans": {
                      "type": "integer",
                      "description": "The cumulative number of retransmissions to this peer\n            during the period that the peer adjacency has remained\n            up.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cEigrpRetries": {
                      "type": "integer",
                      "description": "The number of times the current unacknowledged packet\n            has been retried, i.e. resent to this peer to be\n            acknowledged.",
                      "minimum": 0,
                      "maximum": 4294967295
                    }
                  }
                },
                "example": {
                  "CISCO-EIGRP-MIB:cEigrpPeerEntry": {
                    "cEigrpVpnId": "example-string",
                    "cEigrpAsNumber": "example-string",
                    "cEigrpHandle": 0,
                    "cEigrpPeerAddrType": "192.168.1.1",
                    "cEigrpPeerAddr": "192.168.1.1",
                    "cEigrpPeerIfIndex": "example-string",
                    "cEigrpHoldTime": 0,
                    "cEigrpUpTime": "example-string",
                    "cEigrpSrtt": 0,
                    "cEigrpRto": 0,
                    "cEigrpPktsEnqueued": 0,
                    "cEigrpLastSeq": 0,
                    "cEigrpVersion": "example-string",
                    "cEigrpRetrans": 0,
                    "cEigrpRetries": 0
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cEigrpPeerEntry-2"
      },
      "x-yang-path": "/cEigrpPeerTable/cEigrpPeerEntry={cEigrpVpnId cEigrpAsNumber cEigrpHandle}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "cEigrpVpnId cEigrpAsNumber cEigrpHandle"
      ]
    },
    "/data/CISCO-EIGRP-MIB:cEigrpInterfaceTable/cEigrpInterfaceEntry={cEigrpVpnId},{cEigrpAsNumber},{ifIndex}": {
      "get": {
        "summary": "Get cEigrpInterfaceEntry entry",
        "description": "Retrieve specific cEigrpInterfaceEntry entry by key from MIB",
        "tags": [
          "CISCO-EIGRP-MIB"
        ],
        "parameters": [
          {
            "name": "cEigrpVpnId",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "cEigrpAsNumber",
            "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": {
                    "cEigrpVpnId": {
                      "type": "string",
                      "description": "cEigrpVpnId",
                      "x-yang-type": "leafref"
                    },
                    "cEigrpAsNumber": {
                      "type": "string",
                      "description": "cEigrpAsNumber",
                      "x-yang-type": "leafref"
                    },
                    "ifIndex": {
                      "type": "string",
                      "description": "ifIndex",
                      "x-yang-type": "leafref"
                    },
                    "cEigrpPeerCount": {
                      "type": "integer",
                      "description": "The number of EIGRP adjacencies currently formed with\n            peers reached through this interface.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cEigrpXmitReliableQ": {
                      "type": "integer",
                      "description": "The number of EIGRP packets currently waiting in the\n            reliable transport (acknowledgement-required) \n            transmission queue to be sent to a peer.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cEigrpXmitUnreliableQ": {
                      "type": "integer",
                      "description": "The number EIGRP of packets currently waiting in\n            the unreliable transport (no acknowledgement required)\n            transmission queue.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cEigrpMeanSrtt": {
                      "type": "integer",
                      "description": "The average of all the computed smooth round trip time\n            values for a packet to and from all peers established on\n            this interface.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cEigrpPacingReliable": {
                      "type": "integer",
                      "description": "The configured time interval between EIGRP packet\n            transmissions on the interface when the reliable transport\n            method is used.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cEigrpPacingUnreliable": {
                      "type": "integer",
                      "description": "The configured time interval between EIGRP packet\n            transmissions on the interface when the unreliable\n            transport method is used.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cEigrpMFlowTimer": {
                      "type": "integer",
                      "description": "The configured multicast flow control timer value for\n            this interface.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cEigrpPendingRoutes": {
                      "type": "integer",
                      "description": "The number of queued EIGRP routing updates awaiting\n            transmission on this interface.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cEigrpHelloInterval": {
                      "type": "integer",
                      "description": "The configured time interval between Hello packet\n            transmissions for this interface.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cEigrpXmitNextSerial": {
                      "type": "integer",
                      "description": "The serial number of the next EIGRP packet that is to\n            be queued for transmission on this interface.",
                      "minimum": 0
                    },
                    "cEigrpUMcasts": {
                      "type": "integer",
                      "description": "The total number of unreliable (no acknowledgement\n            required) EIGRP multicast packets sent on this\n            interface.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cEigrpRMcasts": {
                      "type": "integer",
                      "description": "The total number of reliable (acknowledgement required)\n            EIGRP multicast packets sent on this interface.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cEigrpUUcasts": {
                      "type": "integer",
                      "description": "The total number of unreliable (no acknowledgement\n            required) EIGRP unicast packets sent on this\n            interface.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cEigrpRUcasts": {
                      "type": "integer",
                      "description": "The total number of reliable (acknowledgement required)\n            unicast packets sent on this interface.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cEigrpMcastExcepts": {
                      "type": "integer",
                      "description": "The total number of EIGRP multicast exception\n            transmissions that have occurred on this interface.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cEigrpCRpkts": {
                      "type": "integer",
                      "description": "The total number EIGRP Conditional-Receive packets sent on\n            this interface.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cEigrpAcksSuppressed": {
                      "type": "integer",
                      "description": "The total number of individual EIGRP acknowledgement\n            packets that have been suppressed and combined in\n            an already enqueued outbound reliable packet on this\n            interface.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cEigrpRetransSent": {
                      "type": "integer",
                      "description": "The total number EIGRP packet retransmissions sent on\n            the interface.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cEigrpOOSrvcd": {
                      "type": "integer",
                      "description": "The total number of out-of-sequence EIGRP packets\n            received.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cEigrpAuthMode": {
                      "type": "string",
                      "description": "The EIGRP authentication mode of the interface.\n            none  :  no authentication enabled on the interface\n            md5   :  MD5 authentication enabled on the interface"
                    },
                    "cEigrpAuthKeyChain": {
                      "type": "string",
                      "description": "The name of the authentication key-chain configured\n            on this interface.   The key-chain is a reference to\n            which set of secret keys are to be accessed in order\n            to determine which secret key string to use.  The key\n            chain name is not the secret key string password and\n            can also be used in other routing protocols, such\n            as RIP and ISIS.",
                      "x-yang-type": "snmp-framework:SnmpAdminString"
                    }
                  }
                },
                "example": {
                  "CISCO-EIGRP-MIB:cEigrpInterfaceEntry": {
                    "cEigrpVpnId": "example-string",
                    "cEigrpAsNumber": "example-string",
                    "ifIndex": "example-string",
                    "cEigrpPeerCount": 0,
                    "cEigrpXmitReliableQ": 0,
                    "cEigrpXmitUnreliableQ": 0,
                    "cEigrpMeanSrtt": 0,
                    "cEigrpPacingReliable": 0,
                    "cEigrpPacingUnreliable": 0,
                    "cEigrpMFlowTimer": 0,
                    "cEigrpPendingRoutes": 0,
                    "cEigrpHelloInterval": 0,
                    "cEigrpXmitNextSerial": 0,
                    "cEigrpUMcasts": 0,
                    "cEigrpRMcasts": 0,
                    "cEigrpUUcasts": 0,
                    "cEigrpRUcasts": 0,
                    "cEigrpMcastExcepts": 0,
                    "cEigrpCRpkts": 0,
                    "cEigrpAcksSuppressed": 0,
                    "cEigrpRetransSent": 0,
                    "cEigrpOOSrvcd": 0,
                    "cEigrpAuthMode": "example-string",
                    "cEigrpAuthKeyChain": "example-string"
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cEigrpInterfaceEntry-2"
      },
      "x-yang-path": "/cEigrpInterfaceTable/cEigrpInterfaceEntry={cEigrpVpnId cEigrpAsNumber ifIndex}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "cEigrpVpnId cEigrpAsNumber ifIndex"
      ]
    },
    "/data/CISCO-EIGRP-MIB:cEigrpTraffStatsEntry={cEigrpVpnId},{cEigrpAsNumber}": {
      "get": {
        "summary": "Get cEigrpTraffStatsEntry entry",
        "description": "Retrieve specific cEigrpTraffStatsEntry entry by key from MIB",
        "tags": [
          "CISCO-EIGRP-MIB"
        ],
        "parameters": [
          {
            "name": "cEigrpVpnId",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "cEigrpAsNumber",
            "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": {
                    "cEigrpVpnId": {
                      "type": "string",
                      "description": "cEigrpVpnId",
                      "x-yang-type": "leafref"
                    },
                    "cEigrpAsNumber": {
                      "type": "integer",
                      "description": "The Autonomous System number which is unique integer\n            per VPN.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cEigrpNbrCount": {
                      "type": "integer",
                      "description": "The total number of live EIGRP neighbors formed on all\n            interfaces whose IP addresses fall under networks configured\n            in the EIGRP AS.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cEigrpHellosSent": {
                      "type": "integer",
                      "description": "The total number Hello packets that have been sent to all\n            EIGRP neighbors formed on all interfaces whose IP addresses\n            fall under networks configured for the EIGRP AS.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cEigrpHellosRcvd": {
                      "type": "integer",
                      "description": "The total number Hello packets that have been received\n            from all EIGRP neighbors formed on all interfaces whose IP\n            addresses fall under networks configured for the\n            EIGRP AS.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cEigrpUpdatesSent": {
                      "type": "integer",
                      "description": "The total number routing update packets that have been\n            sent to all EIGRP neighbors formed on all interfaces whose\n            IP addresses fall under networks configured for the\n            EIGRP AS.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cEigrpUpdatesRcvd": {
                      "type": "integer",
                      "description": "The total number routing update packets that have been\n            received from all EIGRP neighbors formed on all interfaces\n            whose IP addresses fall under networks configured for the\n            EIGRP AS.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cEigrpQueriesSent": {
                      "type": "integer",
                      "description": "The total number alternate route query packets that have\n            been sent to all EIGRP neighbors formed on all interfaces\n            whose IP addresses fall under networks configured for the\n            EIGRP AS.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cEigrpQueriesRcvd": {
                      "type": "integer",
                      "description": "The total number alternate route query packets that\n            have been received from all EIGRP neighbors formed on\n            all interfaces whose IP addresses fall under networks\n            configured for the EIGRP AS.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cEigrpRepliesSent": {
                      "type": "integer",
                      "description": "The total number query reply packets that have been sent\n            to all EIGRP neighbors formed on all interfaces whose IP\n            addresses fall under networks configured for the\n            EIGRP AS.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cEigrpRepliesRcvd": {
                      "type": "integer",
                      "description": "The total number query reply packets that have been\n            received from all EIGRP neighbors formed on all interfaces\n            whose IP addresses fall under networks configured for the\n            EIGRP AS.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cEigrpAcksSent": {
                      "type": "integer",
                      "description": "The total number packet acknowledgements that have been\n            sent to all EIGRP neighbors formed on all interfaces whose\n            IP addresses fall under networks configured for the\n            EIGRP AS.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cEigrpAcksRcvd": {
                      "type": "integer",
                      "description": "The total number packet acknowledgements that have been\n            received from all EIGRP neighbors formed on all interfaces\n            whose IP addresses fall under networks configured for the\n            EIGRP AS.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cEigrpInputQHighMark": {
                      "type": "integer",
                      "description": "The highest number of EIGRP packets in the input queue\n            waiting to be processed internally addressed to this\n            AS.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cEigrpInputQDrops": {
                      "type": "integer",
                      "description": "The number of EIGRP packets dropped from the input\n            queue due to it being full within the AS.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cEigrpSiaQueriesSent": {
                      "type": "integer",
                      "description": "The total number of Stuck-In-Active (SIA) query packets\n            sent to all EIGRP neighbors formed on all interfaces whose\n            IP addresses fall under networks configured for the\n            EIGRP AS.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cEigrpSiaQueriesRcvd": {
                      "type": "integer",
                      "description": "The total number of Stuck-In-Active (SIA) query packets\n            received from all EIGRP neighbors formed on all interfaces\n            whose IP addresses fall under networks configured for the\n            EIGRP AS.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cEigrpAsRouterIdType": {
                      "type": "string",
                      "description": "The format of the router-id configured or automatically\n            selected for the EIGRP AS.",
                      "x-yang-type": "inet-address:InetAddressType"
                    },
                    "cEigrpAsRouterId": {
                      "type": "string",
                      "description": "The router-id configured or automatically selected for the\n            EIGRP AS.   Each EIGRP routing process has a unique\n            router-id selected from each autonomous system configured.\n            The format is governed by object cEigrpAsRouterIdType.",
                      "x-yang-type": "inet-address:InetAddress"
                    },
                    "cEigrpTopoRoutes": {
                      "type": "integer",
                      "description": "The total number of EIGRP derived routes currently existing\n            in the topology table for the AS.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cEigrpHeadSerial": {
                      "type": "integer",
                      "description": "Routes in a topology table for an AS are assigned serial\n            numbers and are sequenced internally as they are inserted\n            and deleted.   The serial number of the first route in\n            that internal sequence is called the head serial number.\n            Each AS has its own topology table, and its own serial\n            number space, each of which begins with the value 1.\n            A serial number of zero implies that there are no routes\n            in the topology.",
                      "minimum": 0
                    },
                    "cEigrpNextSerial": {
                      "type": "integer",
                      "description": "The serial number that would be assigned to the next new\n            or changed route in the topology table for the AS.",
                      "minimum": 0
                    },
                    "cEigrpXmitPendReplies": {
                      "type": "integer",
                      "description": "When alternate route query packets are sent to adjacent\n            EIGRP peers in an AS, replies are expected.   This object\n            is the total number of outstanding replies expected to\n            queries that have been sent to peers in the current AS.\n            It remains at zero most of the time until an EIGRP route\n            becomes active.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cEigrpXmitDummies": {
                      "type": "integer",
                      "description": "A dummy is a temporary internal entity used as a place\n            holder in the topology table for an AS. They are not\n            transmitted in routing updates.  This is the total\n            number currently in existence associated with the AS.",
                      "minimum": 0,
                      "maximum": 4294967295
                    }
                  }
                },
                "example": {
                  "CISCO-EIGRP-MIB:cEigrpTraffStatsEntry": {
                    "cEigrpVpnId": "example-string",
                    "cEigrpAsNumber": 0,
                    "cEigrpNbrCount": 0,
                    "cEigrpHellosSent": 0,
                    "cEigrpHellosRcvd": 0,
                    "cEigrpUpdatesSent": 0,
                    "cEigrpUpdatesRcvd": 0,
                    "cEigrpQueriesSent": 0,
                    "cEigrpQueriesRcvd": 0,
                    "cEigrpRepliesSent": 0,
                    "cEigrpRepliesRcvd": 0,
                    "cEigrpAcksSent": 0,
                    "cEigrpAcksRcvd": 0,
                    "cEigrpInputQHighMark": 0,
                    "cEigrpInputQDrops": 0,
                    "cEigrpSiaQueriesSent": 0,
                    "cEigrpSiaQueriesRcvd": 0,
                    "cEigrpAsRouterIdType": "ethernetCsmacd(6)",
                    "cEigrpAsRouterId": "example-string",
                    "cEigrpTopoRoutes": 0,
                    "cEigrpHeadSerial": 0,
                    "cEigrpNextSerial": 0,
                    "cEigrpXmitPendReplies": 0,
                    "cEigrpXmitDummies": 0
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cEigrpTraffStatsEntry-4"
      },
      "x-yang-path": "/cEigrpTraffStatsEntry={cEigrpVpnId cEigrpAsNumber}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "cEigrpVpnId cEigrpAsNumber"
      ]
    },
    "/data/CISCO-EIGRP-MIB:cEigrpTopoEntry={cEigrpVpnId},{cEigrpAsNumber},{cEigrpDestNetType},{cEigrpDestNet},{cEigrpDestNetPrefixLen}": {
      "get": {
        "summary": "Get cEigrpTopoEntry entry",
        "description": "Retrieve specific cEigrpTopoEntry entry by key from MIB",
        "tags": [
          "CISCO-EIGRP-MIB"
        ],
        "parameters": [
          {
            "name": "cEigrpVpnId",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "cEigrpAsNumber",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "cEigrpDestNetType",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "cEigrpDestNet",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "cEigrpDestNetPrefixLen",
            "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": {
                    "cEigrpVpnId": {
                      "type": "string",
                      "description": "cEigrpVpnId",
                      "x-yang-type": "leafref"
                    },
                    "cEigrpAsNumber": {
                      "type": "string",
                      "description": "cEigrpAsNumber",
                      "x-yang-type": "leafref"
                    },
                    "cEigrpDestNetType": {
                      "type": "string",
                      "description": "The format of the destination IP network number for\n            a single route in the topology table in the AS specified\n            in cEigrpDestNet.",
                      "x-yang-type": "inet-address:InetAddressType"
                    },
                    "cEigrpDestNet": {
                      "type": "string",
                      "description": "The destination IP network number for a single route in\n            the topology table in the AS.  The format is governed\n            by object cEigrpDestNetType.",
                      "x-yang-type": "inet-address:InetAddress"
                    },
                    "cEigrpDestNetPrefixLen": {
                      "type": "string",
                      "description": "The prefix length associated with the destination IP\n            network address for a single route in the topology\n            table in the AS.  The format is governed by the object\n            cEigrpDestNetType.",
                      "x-yang-type": "inet-address:InetAddressPrefixLength"
                    },
                    "cEigrpActive": {
                      "type": "boolean",
                      "description": "A value of true(1) indicates the route to the\n            destination network has failed and an active (query)\n            search for an alternative path is in progress.  A value\n            of false(2) indicates the route is stable (passive)."
                    },
                    "cEigrpStuckInActive": {
                      "type": "boolean",
                      "description": "A value of true(1) indicates that that this route which is\n            in active state (cEigrpActive = true(1)) has not received\n            any replies to queries for alternate paths, and a second\n            EIGRP route query, called a stuck-in-active query, has\n            now been sent."
                    },
                    "cEigrpDestSuccessors": {
                      "type": "integer",
                      "description": "A successor is the next routing hop for a path to the\n            destination IP network number for a single route in the\n            topology table in the AS.  There can be several\n            potential successors if there are multiple paths to the\n            destination.   This is the total number of successors for\n            a topology entry.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cEigrpFdistance": {
                      "type": "integer",
                      "description": "The feasibility (best) distance is the minimum distance\n            from this router to the destination IP network in\n            this topology entry.  The feasibility distance is\n            used in determining the best successor for a path to the\n            destination network.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cEigrpRouteOriginType": {
                      "type": "string",
                      "description": "This is a text string describing the internal origin\n            of the EIGRP route represented by the topology entry.",
                      "x-yang-type": "snmp-framework:SnmpAdminString"
                    },
                    "cEigrpRouteOriginAddrType": {
                      "type": "string",
                      "description": "The format of the IP address defined as the origin of\n            this topology route entry.",
                      "x-yang-type": "inet-address:InetAddressType"
                    },
                    "cEigrpRouteOriginAddr": {
                      "type": "string",
                      "description": "If the origin of the topology route entry is external\n            to this router, then this object is the IP address\n            of the router from which it originated.  The format \n            is governed by object cEigrpRouteOriginAddrType.",
                      "x-yang-type": "inet-address:InetAddress"
                    },
                    "cEigrpNextHopAddressType": {
                      "type": "string",
                      "description": "The format of the next hop IP address for the route\n            represented by the topology entry.",
                      "x-yang-type": "inet-address:InetAddressType"
                    },
                    "cEigrpNextHopAddress": {
                      "type": "string",
                      "description": "This is the next hop IP address for the route represented\n            by the topology entry.   The next hop is where\n            network traffic will be routed to in order to reach\n            the destination network for this topology entry.  The\n            format is governed by cEigrpNextHopAddressType.",
                      "x-yang-type": "inet-address:InetAddress"
                    },
                    "cEigrpNextHopInterface": {
                      "type": "string",
                      "description": "The interface through which the next hop IP address\n            is reached to send network traffic to the destination\n            network represented by the topology entry.",
                      "x-yang-type": "snmp-framework:SnmpAdminString"
                    },
                    "cEigrpDistance": {
                      "type": "integer",
                      "description": "The computed distance to the destination network entry\n            from this router.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cEigrpReportDistance": {
                      "type": "integer",
                      "description": "The computed distance to the destination network in the\n            topology entry reported to this router by the originator\n            of this route.",
                      "minimum": 0,
                      "maximum": 4294967295
                    }
                  }
                },
                "example": {
                  "CISCO-EIGRP-MIB:cEigrpTopoEntry": {
                    "cEigrpVpnId": "example-string",
                    "cEigrpAsNumber": "example-string",
                    "cEigrpDestNetType": "ethernetCsmacd(6)",
                    "cEigrpDestNet": "example-string",
                    "cEigrpDestNetPrefixLen": "example-string",
                    "cEigrpActive": true,
                    "cEigrpStuckInActive": true,
                    "cEigrpDestSuccessors": 0,
                    "cEigrpFdistance": 0,
                    "cEigrpRouteOriginType": "ethernetCsmacd(6)",
                    "cEigrpRouteOriginAddrType": "192.168.1.1",
                    "cEigrpRouteOriginAddr": "192.168.1.1",
                    "cEigrpNextHopAddressType": "192.168.1.1",
                    "cEigrpNextHopAddress": "192.168.1.1",
                    "cEigrpNextHopInterface": "GigabitEthernet1/0/1",
                    "cEigrpDistance": 0,
                    "cEigrpReportDistance": 0
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cEigrpTopoEntry-4"
      },
      "x-yang-path": "/cEigrpTopoEntry={cEigrpVpnId cEigrpAsNumber cEigrpDestNetType cEigrpDestNet cEigrpDestNetPrefixLen}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "cEigrpVpnId cEigrpAsNumber cEigrpDestNetType cEigrpDestNet cEigrpDestNetPrefixLen"
      ]
    },
    "/data/CISCO-EIGRP-MIB:cEigrpPeerEntry={cEigrpVpnId},{cEigrpAsNumber},{cEigrpHandle}": {
      "get": {
        "summary": "Get cEigrpPeerEntry entry",
        "description": "Retrieve specific cEigrpPeerEntry entry by key from MIB",
        "tags": [
          "CISCO-EIGRP-MIB"
        ],
        "parameters": [
          {
            "name": "cEigrpVpnId",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "cEigrpAsNumber",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "cEigrpHandle",
            "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": {
                    "cEigrpVpnId": {
                      "type": "string",
                      "description": "cEigrpVpnId",
                      "x-yang-type": "leafref"
                    },
                    "cEigrpAsNumber": {
                      "type": "string",
                      "description": "cEigrpAsNumber",
                      "x-yang-type": "leafref"
                    },
                    "cEigrpHandle": {
                      "type": "integer",
                      "description": "The unique internal identifier for the peer in the AS.\n            This is a unique value among peer entries in a selected\n            table.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cEigrpPeerAddrType": {
                      "type": "string",
                      "description": "The format of the remote source IP address used by the\n            peer to establish the EIGRP adjacency with this router.",
                      "x-yang-type": "inet-address:InetAddressType"
                    },
                    "cEigrpPeerAddr": {
                      "type": "string",
                      "description": "The source IP address used by the peer to establish the\n            EIGRP adjacency with this router.  The format is\n            governed by object cEigrpPeerAddrType.",
                      "x-yang-type": "inet-address:InetAddress"
                    },
                    "cEigrpPeerIfIndex": {
                      "type": "string",
                      "description": "The ifIndex of the interface on this router through\n            which this peer can be reached.",
                      "x-yang-type": "if-mib:InterfaceIndexOrZero"
                    },
                    "cEigrpHoldTime": {
                      "type": "integer",
                      "description": "The count-down timer indicating how much time must\n            pass without receiving a hello packet from this\n            EIGRP peer before this router declares the peer down.\n            A peer declared as down is removed from the table and\n            is no longer visible.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cEigrpUpTime": {
                      "type": "string",
                      "description": "The elapsed time since the EIGRP adjacency was first\n            established with the peer.",
                      "x-yang-type": "CISCO-EIGRP-MIB:EigrpUpTimeString"
                    },
                    "cEigrpSrtt": {
                      "type": "integer",
                      "description": "The computed smooth round trip time for packets to and\n            from the peer.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cEigrpRto": {
                      "type": "integer",
                      "description": "The computed retransmission timeout for the peer.\n            This value is computed over time as packets are sent to\n            the peer and acknowledgements are received from it,\n            and is the amount of time to wait before resending\n            a packet from the retransmission queue to the peer\n            when an expected acknowledgement has not been received.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cEigrpPktsEnqueued": {
                      "type": "integer",
                      "description": "The number of any EIGRP packets currently enqueued\n            waiting to be sent to this peer.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cEigrpLastSeq": {
                      "type": "integer",
                      "description": "All transmitted EIGRP packets have a sequence number\n            assigned. This is the sequence number of the last EIGRP\n            packet sent to this peer.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cEigrpVersion": {
                      "type": "string",
                      "description": "The EIGRP version information reported by the remote\n            peer.",
                      "x-yang-type": "CISCO-EIGRP-MIB:EigrpVersionString"
                    },
                    "cEigrpRetrans": {
                      "type": "integer",
                      "description": "The cumulative number of retransmissions to this peer\n            during the period that the peer adjacency has remained\n            up.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cEigrpRetries": {
                      "type": "integer",
                      "description": "The number of times the current unacknowledged packet\n            has been retried, i.e. resent to this peer to be\n            acknowledged.",
                      "minimum": 0,
                      "maximum": 4294967295
                    }
                  }
                },
                "example": {
                  "CISCO-EIGRP-MIB:cEigrpPeerEntry": {
                    "cEigrpVpnId": "example-string",
                    "cEigrpAsNumber": "example-string",
                    "cEigrpHandle": 0,
                    "cEigrpPeerAddrType": "192.168.1.1",
                    "cEigrpPeerAddr": "192.168.1.1",
                    "cEigrpPeerIfIndex": "example-string",
                    "cEigrpHoldTime": 0,
                    "cEigrpUpTime": "example-string",
                    "cEigrpSrtt": 0,
                    "cEigrpRto": 0,
                    "cEigrpPktsEnqueued": 0,
                    "cEigrpLastSeq": 0,
                    "cEigrpVersion": "example-string",
                    "cEigrpRetrans": 0,
                    "cEigrpRetries": 0
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cEigrpPeerEntry-4"
      },
      "x-yang-path": "/cEigrpPeerEntry={cEigrpVpnId cEigrpAsNumber cEigrpHandle}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "cEigrpVpnId cEigrpAsNumber cEigrpHandle"
      ]
    },
    "/data/CISCO-EIGRP-MIB:cEigrpInterfaceEntry={cEigrpVpnId},{cEigrpAsNumber},{ifIndex}": {
      "get": {
        "summary": "Get cEigrpInterfaceEntry entry",
        "description": "Retrieve specific cEigrpInterfaceEntry entry by key from MIB",
        "tags": [
          "CISCO-EIGRP-MIB"
        ],
        "parameters": [
          {
            "name": "cEigrpVpnId",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "cEigrpAsNumber",
            "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": {
                    "cEigrpVpnId": {
                      "type": "string",
                      "description": "cEigrpVpnId",
                      "x-yang-type": "leafref"
                    },
                    "cEigrpAsNumber": {
                      "type": "string",
                      "description": "cEigrpAsNumber",
                      "x-yang-type": "leafref"
                    },
                    "ifIndex": {
                      "type": "string",
                      "description": "ifIndex",
                      "x-yang-type": "leafref"
                    },
                    "cEigrpPeerCount": {
                      "type": "integer",
                      "description": "The number of EIGRP adjacencies currently formed with\n            peers reached through this interface.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cEigrpXmitReliableQ": {
                      "type": "integer",
                      "description": "The number of EIGRP packets currently waiting in the\n            reliable transport (acknowledgement-required) \n            transmission queue to be sent to a peer.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cEigrpXmitUnreliableQ": {
                      "type": "integer",
                      "description": "The number EIGRP of packets currently waiting in\n            the unreliable transport (no acknowledgement required)\n            transmission queue.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cEigrpMeanSrtt": {
                      "type": "integer",
                      "description": "The average of all the computed smooth round trip time\n            values for a packet to and from all peers established on\n            this interface.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cEigrpPacingReliable": {
                      "type": "integer",
                      "description": "The configured time interval between EIGRP packet\n            transmissions on the interface when the reliable transport\n            method is used.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cEigrpPacingUnreliable": {
                      "type": "integer",
                      "description": "The configured time interval between EIGRP packet\n            transmissions on the interface when the unreliable\n            transport method is used.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cEigrpMFlowTimer": {
                      "type": "integer",
                      "description": "The configured multicast flow control timer value for\n            this interface.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cEigrpPendingRoutes": {
                      "type": "integer",
                      "description": "The number of queued EIGRP routing updates awaiting\n            transmission on this interface.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cEigrpHelloInterval": {
                      "type": "integer",
                      "description": "The configured time interval between Hello packet\n            transmissions for this interface.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cEigrpXmitNextSerial": {
                      "type": "integer",
                      "description": "The serial number of the next EIGRP packet that is to\n            be queued for transmission on this interface.",
                      "minimum": 0
                    },
                    "cEigrpUMcasts": {
                      "type": "integer",
                      "description": "The total number of unreliable (no acknowledgement\n            required) EIGRP multicast packets sent on this\n            interface.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cEigrpRMcasts": {
                      "type": "integer",
                      "description": "The total number of reliable (acknowledgement required)\n            EIGRP multicast packets sent on this interface.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cEigrpUUcasts": {
                      "type": "integer",
                      "description": "The total number of unreliable (no acknowledgement\n            required) EIGRP unicast packets sent on this\n            interface.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cEigrpRUcasts": {
                      "type": "integer",
                      "description": "The total number of reliable (acknowledgement required)\n            unicast packets sent on this interface.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cEigrpMcastExcepts": {
                      "type": "integer",
                      "description": "The total number of EIGRP multicast exception\n            transmissions that have occurred on this interface.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cEigrpCRpkts": {
                      "type": "integer",
                      "description": "The total number EIGRP Conditional-Receive packets sent on\n            this interface.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cEigrpAcksSuppressed": {
                      "type": "integer",
                      "description": "The total number of individual EIGRP acknowledgement\n            packets that have been suppressed and combined in\n            an already enqueued outbound reliable packet on this\n            interface.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cEigrpRetransSent": {
                      "type": "integer",
                      "description": "The total number EIGRP packet retransmissions sent on\n            the interface.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cEigrpOOSrvcd": {
                      "type": "integer",
                      "description": "The total number of out-of-sequence EIGRP packets\n            received.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cEigrpAuthMode": {
                      "type": "string",
                      "description": "The EIGRP authentication mode of the interface.\n            none  :  no authentication enabled on the interface\n            md5   :  MD5 authentication enabled on the interface"
                    },
                    "cEigrpAuthKeyChain": {
                      "type": "string",
                      "description": "The name of the authentication key-chain configured\n            on this interface.   The key-chain is a reference to\n            which set of secret keys are to be accessed in order\n            to determine which secret key string to use.  The key\n            chain name is not the secret key string password and\n            can also be used in other routing protocols, such\n            as RIP and ISIS.",
                      "x-yang-type": "snmp-framework:SnmpAdminString"
                    }
                  }
                },
                "example": {
                  "CISCO-EIGRP-MIB:cEigrpInterfaceEntry": {
                    "cEigrpVpnId": "example-string",
                    "cEigrpAsNumber": "example-string",
                    "ifIndex": "example-string",
                    "cEigrpPeerCount": 0,
                    "cEigrpXmitReliableQ": 0,
                    "cEigrpXmitUnreliableQ": 0,
                    "cEigrpMeanSrtt": 0,
                    "cEigrpPacingReliable": 0,
                    "cEigrpPacingUnreliable": 0,
                    "cEigrpMFlowTimer": 0,
                    "cEigrpPendingRoutes": 0,
                    "cEigrpHelloInterval": 0,
                    "cEigrpXmitNextSerial": 0,
                    "cEigrpUMcasts": 0,
                    "cEigrpRMcasts": 0,
                    "cEigrpUUcasts": 0,
                    "cEigrpRUcasts": 0,
                    "cEigrpMcastExcepts": 0,
                    "cEigrpCRpkts": 0,
                    "cEigrpAcksSuppressed": 0,
                    "cEigrpRetransSent": 0,
                    "cEigrpOOSrvcd": 0,
                    "cEigrpAuthMode": "example-string",
                    "cEigrpAuthKeyChain": "example-string"
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cEigrpInterfaceEntry-4"
      },
      "x-yang-path": "/cEigrpInterfaceEntry={cEigrpVpnId cEigrpAsNumber ifIndex}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "cEigrpVpnId cEigrpAsNumber ifIndex"
      ]
    }
  },
  "components": {
    "schemas": {
      "CISCO-EIGRP-MIB_CISCO-EIGRP-MIB": {
        "type": "object",
        "description": "This table contains information on those VPN's configured\n        to run EIGRP.  The VPN creation on a router is independent\n        of the routing protocol to be used over it.   A VPN is\n        given a name and has a dedicated routing table associated\n        with it.  This routing table is identified internally\n        by a unique integer value.",
        "properties": {
          "cEigrpVpnEntry": {
            "type": "array",
            "description": "Information relating to a single VPN which is configured\n          to run EIGRP.",
            "items": {
              "type": "object",
              "properties": {
                "cEigrpVpnId": {
                  "type": "integer",
                  "description": "The unique VPN identifier.  This is a unique integer\n            relative to all other VPN's defined on the router.  It\n            also identifies internally the routing table instance.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "cEigrpVpnName": {
                  "type": "string",
                  "description": "The name given to the VPN.",
                  "x-yang-type": "snmp-framework:SnmpAdminString",
                  "readOnly": true
                }
              }
            },
            "readOnly": true
          },
          "cEigrpTraffStatsEntry": {
            "type": "array",
            "description": "The set of statistics and information for a single EIGRP\n          Autonomous System.",
            "items": {
              "type": "object",
              "properties": {
                "cEigrpVpnId": {
                  "type": "string",
                  "description": "cEigrpVpnId",
                  "x-yang-type": "leafref",
                  "readOnly": true
                },
                "cEigrpAsNumber": {
                  "type": "integer",
                  "description": "The Autonomous System number which is unique integer\n            per VPN.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "cEigrpNbrCount": {
                  "type": "integer",
                  "description": "The total number of live EIGRP neighbors formed on all\n            interfaces whose IP addresses fall under networks configured\n            in the EIGRP AS.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "cEigrpHellosSent": {
                  "type": "integer",
                  "description": "The total number Hello packets that have been sent to all\n            EIGRP neighbors formed on all interfaces whose IP addresses\n            fall under networks configured for the EIGRP AS.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "cEigrpHellosRcvd": {
                  "type": "integer",
                  "description": "The total number Hello packets that have been received\n            from all EIGRP neighbors formed on all interfaces whose IP\n            addresses fall under networks configured for the\n            EIGRP AS.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "cEigrpUpdatesSent": {
                  "type": "integer",
                  "description": "The total number routing update packets that have been\n            sent to all EIGRP neighbors formed on all interfaces whose\n            IP addresses fall under networks configured for the\n            EIGRP AS.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "cEigrpUpdatesRcvd": {
                  "type": "integer",
                  "description": "The total number routing update packets that have been\n            received from all EIGRP neighbors formed on all interfaces\n            whose IP addresses fall under networks configured for the\n            EIGRP AS.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "cEigrpQueriesSent": {
                  "type": "integer",
                  "description": "The total number alternate route query packets that have\n            been sent to all EIGRP neighbors formed on all interfaces\n            whose IP addresses fall under networks configured for the\n            EIGRP AS.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "cEigrpQueriesRcvd": {
                  "type": "integer",
                  "description": "The total number alternate route query packets that\n            have been received from all EIGRP neighbors formed on\n            all interfaces whose IP addresses fall under networks\n            configured for the EIGRP AS.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "cEigrpRepliesSent": {
                  "type": "integer",
                  "description": "The total number query reply packets that have been sent\n            to all EIGRP neighbors formed on all interfaces whose IP\n            addresses fall under networks configured for the\n            EIGRP AS.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "cEigrpRepliesRcvd": {
                  "type": "integer",
                  "description": "The total number query reply packets that have been\n            received from all EIGRP neighbors formed on all interfaces\n            whose IP addresses fall under networks configured for the\n            EIGRP AS.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "cEigrpAcksSent": {
                  "type": "integer",
                  "description": "The total number packet acknowledgements that have been\n            sent to all EIGRP neighbors formed on all interfaces whose\n            IP addresses fall under networks configured for the\n            EIGRP AS.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "cEigrpAcksRcvd": {
                  "type": "integer",
                  "description": "The total number packet acknowledgements that have been\n            received from all EIGRP neighbors formed on all interfaces\n            whose IP addresses fall under networks configured for the\n            EIGRP AS.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "cEigrpInputQHighMark": {
                  "type": "integer",
                  "description": "The highest number of EIGRP packets in the input queue\n            waiting to be processed internally addressed to this\n            AS.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "cEigrpInputQDrops": {
                  "type": "integer",
                  "description": "The number of EIGRP packets dropped from the input\n            queue due to it being full within the AS.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "cEigrpSiaQueriesSent": {
                  "type": "integer",
                  "description": "The total number of Stuck-In-Active (SIA) query packets\n            sent to all EIGRP neighbors formed on all interfaces whose\n            IP addresses fall under networks configured for the\n            EIGRP AS.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "cEigrpSiaQueriesRcvd": {
                  "type": "integer",
                  "description": "The total number of Stuck-In-Active (SIA) query packets\n            received from all EIGRP neighbors formed on all interfaces\n            whose IP addresses fall under networks configured for the\n            EIGRP AS.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "cEigrpAsRouterIdType": {
                  "type": "string",
                  "description": "The format of the router-id configured or automatically\n            selected for the EIGRP AS.",
                  "x-yang-type": "inet-address:InetAddressType",
                  "readOnly": true
                },
                "cEigrpAsRouterId": {
                  "type": "string",
                  "description": "The router-id configured or automatically selected for the\n            EIGRP AS.   Each EIGRP routing process has a unique\n            router-id selected from each autonomous system configured.\n            The format is governed by object cEigrpAsRouterIdType.",
                  "x-yang-type": "inet-address:InetAddress",
                  "readOnly": true
                },
                "cEigrpTopoRoutes": {
                  "type": "integer",
                  "description": "The total number of EIGRP derived routes currently existing\n            in the topology table for the AS.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "cEigrpHeadSerial": {
                  "type": "integer",
                  "description": "Routes in a topology table for an AS are assigned serial\n            numbers and are sequenced internally as they are inserted\n            and deleted.   The serial number of the first route in\n            that internal sequence is called the head serial number.\n            Each AS has its own topology table, and its own serial\n            number space, each of which begins with the value 1.\n            A serial number of zero implies that there are no routes\n            in the topology.",
                  "minimum": 0,
                  "readOnly": true
                },
                "cEigrpNextSerial": {
                  "type": "integer",
                  "description": "The serial number that would be assigned to the next new\n            or changed route in the topology table for the AS.",
                  "minimum": 0,
                  "readOnly": true
                },
                "cEigrpXmitPendReplies": {
                  "type": "integer",
                  "description": "When alternate route query packets are sent to adjacent\n            EIGRP peers in an AS, replies are expected.   This object\n            is the total number of outstanding replies expected to\n            queries that have been sent to peers in the current AS.\n            It remains at zero most of the time until an EIGRP route\n            becomes active.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "cEigrpXmitDummies": {
                  "type": "integer",
                  "description": "A dummy is a temporary internal entity used as a place\n            holder in the topology table for an AS. They are not\n            transmitted in routing updates.  This is the total\n            number currently in existence associated with the AS.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                }
              }
            },
            "readOnly": true
          },
          "cEigrpTopoEntry": {
            "type": "array",
            "description": "The entry for a single EIGRP topology table in the given\n          AS.",
            "items": {
              "type": "object",
              "properties": {
                "cEigrpVpnId": {
                  "type": "string",
                  "description": "cEigrpVpnId",
                  "x-yang-type": "leafref",
                  "readOnly": true
                },
                "cEigrpAsNumber": {
                  "type": "string",
                  "description": "cEigrpAsNumber",
                  "x-yang-type": "leafref",
                  "readOnly": true
                },
                "cEigrpDestNetType": {
                  "type": "string",
                  "description": "The format of the destination IP network number for\n            a single route in the topology table in the AS specified\n            in cEigrpDestNet.",
                  "x-yang-type": "inet-address:InetAddressType",
                  "readOnly": true
                },
                "cEigrpDestNet": {
                  "type": "string",
                  "description": "The destination IP network number for a single route in\n            the topology table in the AS.  The format is governed\n            by object cEigrpDestNetType.",
                  "x-yang-type": "inet-address:InetAddress",
                  "readOnly": true
                },
                "cEigrpDestNetPrefixLen": {
                  "type": "string",
                  "description": "The prefix length associated with the destination IP\n            network address for a single route in the topology\n            table in the AS.  The format is governed by the object\n            cEigrpDestNetType.",
                  "x-yang-type": "inet-address:InetAddressPrefixLength",
                  "readOnly": true
                },
                "cEigrpActive": {
                  "type": "boolean",
                  "description": "A value of true(1) indicates the route to the\n            destination network has failed and an active (query)\n            search for an alternative path is in progress.  A value\n            of false(2) indicates the route is stable (passive).",
                  "readOnly": true
                },
                "cEigrpStuckInActive": {
                  "type": "boolean",
                  "description": "A value of true(1) indicates that that this route which is\n            in active state (cEigrpActive = true(1)) has not received\n            any replies to queries for alternate paths, and a second\n            EIGRP route query, called a stuck-in-active query, has\n            now been sent.",
                  "readOnly": true
                },
                "cEigrpDestSuccessors": {
                  "type": "integer",
                  "description": "A successor is the next routing hop for a path to the\n            destination IP network number for a single route in the\n            topology table in the AS.  There can be several\n            potential successors if there are multiple paths to the\n            destination.   This is the total number of successors for\n            a topology entry.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "cEigrpFdistance": {
                  "type": "integer",
                  "description": "The feasibility (best) distance is the minimum distance\n            from this router to the destination IP network in\n            this topology entry.  The feasibility distance is\n            used in determining the best successor for a path to the\n            destination network.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "cEigrpRouteOriginType": {
                  "type": "string",
                  "description": "This is a text string describing the internal origin\n            of the EIGRP route represented by the topology entry.",
                  "x-yang-type": "snmp-framework:SnmpAdminString",
                  "readOnly": true
                },
                "cEigrpRouteOriginAddrType": {
                  "type": "string",
                  "description": "The format of the IP address defined as the origin of\n            this topology route entry.",
                  "x-yang-type": "inet-address:InetAddressType",
                  "readOnly": true
                },
                "cEigrpRouteOriginAddr": {
                  "type": "string",
                  "description": "If the origin of the topology route entry is external\n            to this router, then this object is the IP address\n            of the router from which it originated.  The format \n            is governed by object cEigrpRouteOriginAddrType.",
                  "x-yang-type": "inet-address:InetAddress",
                  "readOnly": true
                },
                "cEigrpNextHopAddressType": {
                  "type": "string",
                  "description": "The format of the next hop IP address for the route\n            represented by the topology entry.",
                  "x-yang-type": "inet-address:InetAddressType",
                  "readOnly": true
                },
                "cEigrpNextHopAddress": {
                  "type": "string",
                  "description": "This is the next hop IP address for the route represented\n            by the topology entry.   The next hop is where\n            network traffic will be routed to in order to reach\n            the destination network for this topology entry.  The\n            format is governed by cEigrpNextHopAddressType.",
                  "x-yang-type": "inet-address:InetAddress",
                  "readOnly": true
                },
                "cEigrpNextHopInterface": {
                  "type": "string",
                  "description": "The interface through which the next hop IP address\n            is reached to send network traffic to the destination\n            network represented by the topology entry.",
                  "x-yang-type": "snmp-framework:SnmpAdminString",
                  "readOnly": true
                },
                "cEigrpDistance": {
                  "type": "integer",
                  "description": "The computed distance to the destination network entry\n            from this router.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "cEigrpReportDistance": {
                  "type": "integer",
                  "description": "The computed distance to the destination network in the\n            topology entry reported to this router by the originator\n            of this route.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                }
              }
            },
            "readOnly": true
          },
          "cEigrpPeerEntry": {
            "type": "array",
            "description": "Statistics and operational parameters for a single peer\n          in the AS.",
            "items": {
              "type": "object",
              "properties": {
                "cEigrpVpnId": {
                  "type": "string",
                  "description": "cEigrpVpnId",
                  "x-yang-type": "leafref",
                  "readOnly": true
                },
                "cEigrpAsNumber": {
                  "type": "string",
                  "description": "cEigrpAsNumber",
                  "x-yang-type": "leafref",
                  "readOnly": true
                },
                "cEigrpHandle": {
                  "type": "integer",
                  "description": "The unique internal identifier for the peer in the AS.\n            This is a unique value among peer entries in a selected\n            table.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "cEigrpPeerAddrType": {
                  "type": "string",
                  "description": "The format of the remote source IP address used by the\n            peer to establish the EIGRP adjacency with this router.",
                  "x-yang-type": "inet-address:InetAddressType",
                  "readOnly": true
                },
                "cEigrpPeerAddr": {
                  "type": "string",
                  "description": "The source IP address used by the peer to establish the\n            EIGRP adjacency with this router.  The format is\n            governed by object cEigrpPeerAddrType.",
                  "x-yang-type": "inet-address:InetAddress",
                  "readOnly": true
                },
                "cEigrpPeerIfIndex": {
                  "type": "string",
                  "description": "The ifIndex of the interface on this router through\n            which this peer can be reached.",
                  "x-yang-type": "if-mib:InterfaceIndexOrZero",
                  "readOnly": true
                },
                "cEigrpHoldTime": {
                  "type": "integer",
                  "description": "The count-down timer indicating how much time must\n            pass without receiving a hello packet from this\n            EIGRP peer before this router declares the peer down.\n            A peer declared as down is removed from the table and\n            is no longer visible.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "cEigrpUpTime": {
                  "type": "string",
                  "description": "The elapsed time since the EIGRP adjacency was first\n            established with the peer.",
                  "x-yang-type": "CISCO-EIGRP-MIB:EigrpUpTimeString",
                  "readOnly": true
                },
                "cEigrpSrtt": {
                  "type": "integer",
                  "description": "The computed smooth round trip time for packets to and\n            from the peer.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "cEigrpRto": {
                  "type": "integer",
                  "description": "The computed retransmission timeout for the peer.\n            This value is computed over time as packets are sent to\n            the peer and acknowledgements are received from it,\n            and is the amount of time to wait before resending\n            a packet from the retransmission queue to the peer\n            when an expected acknowledgement has not been received.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "cEigrpPktsEnqueued": {
                  "type": "integer",
                  "description": "The number of any EIGRP packets currently enqueued\n            waiting to be sent to this peer.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "cEigrpLastSeq": {
                  "type": "integer",
                  "description": "All transmitted EIGRP packets have a sequence number\n            assigned. This is the sequence number of the last EIGRP\n            packet sent to this peer.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "cEigrpVersion": {
                  "type": "string",
                  "description": "The EIGRP version information reported by the remote\n            peer.",
                  "x-yang-type": "CISCO-EIGRP-MIB:EigrpVersionString",
                  "readOnly": true
                },
                "cEigrpRetrans": {
                  "type": "integer",
                  "description": "The cumulative number of retransmissions to this peer\n            during the period that the peer adjacency has remained\n            up.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "cEigrpRetries": {
                  "type": "integer",
                  "description": "The number of times the current unacknowledged packet\n            has been retried, i.e. resent to this peer to be\n            acknowledged.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                }
              }
            },
            "readOnly": true
          },
          "cEigrpInterfaceEntry": {
            "type": "array",
            "description": "Information for a single interface running EIGRP in the\n          AS and VPN.",
            "items": {
              "type": "object",
              "properties": {
                "cEigrpVpnId": {
                  "type": "string",
                  "description": "cEigrpVpnId",
                  "x-yang-type": "leafref",
                  "readOnly": true
                },
                "cEigrpAsNumber": {
                  "type": "string",
                  "description": "cEigrpAsNumber",
                  "x-yang-type": "leafref",
                  "readOnly": true
                },
                "ifIndex": {
                  "type": "string",
                  "description": "ifIndex",
                  "x-yang-type": "leafref",
                  "readOnly": true
                },
                "cEigrpPeerCount": {
                  "type": "integer",
                  "description": "The number of EIGRP adjacencies currently formed with\n            peers reached through this interface.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "cEigrpXmitReliableQ": {
                  "type": "integer",
                  "description": "The number of EIGRP packets currently waiting in the\n            reliable transport (acknowledgement-required) \n            transmission queue to be sent to a peer.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "cEigrpXmitUnreliableQ": {
                  "type": "integer",
                  "description": "The number EIGRP of packets currently waiting in\n            the unreliable transport (no acknowledgement required)\n            transmission queue.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "cEigrpMeanSrtt": {
                  "type": "integer",
                  "description": "The average of all the computed smooth round trip time\n            values for a packet to and from all peers established on\n            this interface.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "cEigrpPacingReliable": {
                  "type": "integer",
                  "description": "The configured time interval between EIGRP packet\n            transmissions on the interface when the reliable transport\n            method is used.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "cEigrpPacingUnreliable": {
                  "type": "integer",
                  "description": "The configured time interval between EIGRP packet\n            transmissions on the interface when the unreliable\n            transport method is used.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "cEigrpMFlowTimer": {
                  "type": "integer",
                  "description": "The configured multicast flow control timer value for\n            this interface.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "cEigrpPendingRoutes": {
                  "type": "integer",
                  "description": "The number of queued EIGRP routing updates awaiting\n            transmission on this interface.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "cEigrpHelloInterval": {
                  "type": "integer",
                  "description": "The configured time interval between Hello packet\n            transmissions for this interface.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "cEigrpXmitNextSerial": {
                  "type": "integer",
                  "description": "The serial number of the next EIGRP packet that is to\n            be queued for transmission on this interface.",
                  "minimum": 0,
                  "readOnly": true
                },
                "cEigrpUMcasts": {
                  "type": "integer",
                  "description": "The total number of unreliable (no acknowledgement\n            required) EIGRP multicast packets sent on this\n            interface.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "cEigrpRMcasts": {
                  "type": "integer",
                  "description": "The total number of reliable (acknowledgement required)\n            EIGRP multicast packets sent on this interface.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "cEigrpUUcasts": {
                  "type": "integer",
                  "description": "The total number of unreliable (no acknowledgement\n            required) EIGRP unicast packets sent on this\n            interface.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "cEigrpRUcasts": {
                  "type": "integer",
                  "description": "The total number of reliable (acknowledgement required)\n            unicast packets sent on this interface.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "cEigrpMcastExcepts": {
                  "type": "integer",
                  "description": "The total number of EIGRP multicast exception\n            transmissions that have occurred on this interface.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "cEigrpCRpkts": {
                  "type": "integer",
                  "description": "The total number EIGRP Conditional-Receive packets sent on\n            this interface.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "cEigrpAcksSuppressed": {
                  "type": "integer",
                  "description": "The total number of individual EIGRP acknowledgement\n            packets that have been suppressed and combined in\n            an already enqueued outbound reliable packet on this\n            interface.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "cEigrpRetransSent": {
                  "type": "integer",
                  "description": "The total number EIGRP packet retransmissions sent on\n            the interface.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "cEigrpOOSrvcd": {
                  "type": "integer",
                  "description": "The total number of out-of-sequence EIGRP packets\n            received.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "cEigrpAuthMode": {
                  "type": "string",
                  "description": "The EIGRP authentication mode of the interface.\n            none  :  no authentication enabled on the interface\n            md5   :  MD5 authentication enabled on the interface",
                  "readOnly": true
                },
                "cEigrpAuthKeyChain": {
                  "type": "string",
                  "description": "The name of the authentication key-chain configured\n            on this interface.   The key-chain is a reference to\n            which set of secret keys are to be accessed in order\n            to determine which secret key string to use.  The key\n            chain name is not the secret key string password and\n            can also be used in other routing protocols, such\n            as RIP and ISIS.",
                  "x-yang-type": "snmp-framework:SnmpAdminString",
                  "readOnly": true
                }
              }
            },
            "readOnly": true
          },
          "cEigrpVpnTable": {
            "type": "object",
            "description": "This table contains information on those VPN's configured\n        to run EIGRP.  The VPN creation on a router is independent\n        of the routing protocol to be used over it.   A VPN is\n        given a name and has a dedicated routing table associated\n        with it.  This routing table is identified internally\n        by a unique integer value.",
            "properties": {
              "cEigrpVpnEntry": {
                "type": "array",
                "description": "Information relating to a single VPN which is configured\n          to run EIGRP.",
                "items": {
                  "type": "object",
                  "properties": {
                    "cEigrpVpnId": {
                      "type": "integer",
                      "description": "The unique VPN identifier.  This is a unique integer\n            relative to all other VPN's defined on the router.  It\n            also identifies internally the routing table instance.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "cEigrpVpnName": {
                      "type": "string",
                      "description": "The name given to the VPN.",
                      "x-yang-type": "snmp-framework:SnmpAdminString",
                      "readOnly": true
                    }
                  }
                },
                "readOnly": true
              }
            },
            "readOnly": true
          },
          "cEigrpTraffStatsTable": {
            "type": "object",
            "description": "Table of EIGRP traffic statistics and information\n        associated with all EIGRP autonomous systems.",
            "properties": {
              "cEigrpTraffStatsEntry": {
                "type": "array",
                "description": "The set of statistics and information for a single EIGRP\n          Autonomous System.",
                "items": {
                  "type": "object",
                  "properties": {
                    "cEigrpVpnId": {
                      "type": "string",
                      "description": "cEigrpVpnId",
                      "x-yang-type": "leafref",
                      "readOnly": true
                    },
                    "cEigrpAsNumber": {
                      "type": "integer",
                      "description": "The Autonomous System number which is unique integer\n            per VPN.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "cEigrpNbrCount": {
                      "type": "integer",
                      "description": "The total number of live EIGRP neighbors formed on all\n            interfaces whose IP addresses fall under networks configured\n            in the EIGRP AS.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "cEigrpHellosSent": {
                      "type": "integer",
                      "description": "The total number Hello packets that have been sent to all\n            EIGRP neighbors formed on all interfaces whose IP addresses\n            fall under networks configured for the EIGRP AS.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "cEigrpHellosRcvd": {
                      "type": "integer",
                      "description": "The total number Hello packets that have been received\n            from all EIGRP neighbors formed on all interfaces whose IP\n            addresses fall under networks configured for the\n            EIGRP AS.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "cEigrpUpdatesSent": {
                      "type": "integer",
                      "description": "The total number routing update packets that have been\n            sent to all EIGRP neighbors formed on all interfaces whose\n            IP addresses fall under networks configured for the\n            EIGRP AS.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "cEigrpUpdatesRcvd": {
                      "type": "integer",
                      "description": "The total number routing update packets that have been\n            received from all EIGRP neighbors formed on all interfaces\n            whose IP addresses fall under networks configured for the\n            EIGRP AS.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "cEigrpQueriesSent": {
                      "type": "integer",
                      "description": "The total number alternate route query packets that have\n            been sent to all EIGRP neighbors formed on all interfaces\n            whose IP addresses fall under networks configured for the\n            EIGRP AS.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "cEigrpQueriesRcvd": {
                      "type": "integer",
                      "description": "The total number alternate route query packets that\n            have been received from all EIGRP neighbors formed on\n            all interfaces whose IP addresses fall under networks\n            configured for the EIGRP AS.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "cEigrpRepliesSent": {
                      "type": "integer",
                      "description": "The total number query reply packets that have been sent\n            to all EIGRP neighbors formed on all interfaces whose IP\n            addresses fall under networks configured for the\n            EIGRP AS.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "cEigrpRepliesRcvd": {
                      "type": "integer",
                      "description": "The total number query reply packets that have been\n            received from all EIGRP neighbors formed on all interfaces\n            whose IP addresses fall under networks configured for the\n            EIGRP AS.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "cEigrpAcksSent": {
                      "type": "integer",
                      "description": "The total number packet acknowledgements that have been\n            sent to all EIGRP neighbors formed on all interfaces whose\n            IP addresses fall under networks configured for the\n            EIGRP AS.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "cEigrpAcksRcvd": {
                      "type": "integer",
                      "description": "The total number packet acknowledgements that have been\n            received from all EIGRP neighbors formed on all interfaces\n            whose IP addresses fall under networks configured for the\n            EIGRP AS.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "cEigrpInputQHighMark": {
                      "type": "integer",
                      "description": "The highest number of EIGRP packets in the input queue\n            waiting to be processed internally addressed to this\n            AS.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "cEigrpInputQDrops": {
                      "type": "integer",
                      "description": "The number of EIGRP packets dropped from the input\n            queue due to it being full within the AS.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "cEigrpSiaQueriesSent": {
                      "type": "integer",
                      "description": "The total number of Stuck-In-Active (SIA) query packets\n            sent to all EIGRP neighbors formed on all interfaces whose\n            IP addresses fall under networks configured for the\n            EIGRP AS.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "cEigrpSiaQueriesRcvd": {
                      "type": "integer",
                      "description": "The total number of Stuck-In-Active (SIA) query packets\n            received from all EIGRP neighbors formed on all interfaces\n            whose IP addresses fall under networks configured for the\n            EIGRP AS.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "cEigrpAsRouterIdType": {
                      "type": "string",
                      "description": "The format of the router-id configured or automatically\n            selected for the EIGRP AS.",
                      "x-yang-type": "inet-address:InetAddressType",
                      "readOnly": true
                    },
                    "cEigrpAsRouterId": {
                      "type": "string",
                      "description": "The router-id configured or automatically selected for the\n            EIGRP AS.   Each EIGRP routing process has a unique\n            router-id selected from each autonomous system configured.\n            The format is governed by object cEigrpAsRouterIdType.",
                      "x-yang-type": "inet-address:InetAddress",
                      "readOnly": true
                    },
                    "cEigrpTopoRoutes": {
                      "type": "integer",
                      "description": "The total number of EIGRP derived routes currently existing\n            in the topology table for the AS.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "cEigrpHeadSerial": {
                      "type": "integer",
                      "description": "Routes in a topology table for an AS are assigned serial\n            numbers and are sequenced internally as they are inserted\n            and deleted.   The serial number of the first route in\n            that internal sequence is called the head serial number.\n            Each AS has its own topology table, and its own serial\n            number space, each of which begins with the value 1.\n            A serial number of zero implies that there are no routes\n            in the topology.",
                      "minimum": 0,
                      "readOnly": true
                    },
                    "cEigrpNextSerial": {
                      "type": "integer",
                      "description": "The serial number that would be assigned to the next new\n            or changed route in the topology table for the AS.",
                      "minimum": 0,
                      "readOnly": true
                    },
                    "cEigrpXmitPendReplies": {
                      "type": "integer",
                      "description": "When alternate route query packets are sent to adjacent\n            EIGRP peers in an AS, replies are expected.   This object\n            is the total number of outstanding replies expected to\n            queries that have been sent to peers in the current AS.\n            It remains at zero most of the time until an EIGRP route\n            becomes active.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "cEigrpXmitDummies": {
                      "type": "integer",
                      "description": "A dummy is a temporary internal entity used as a place\n            holder in the topology table for an AS. They are not\n            transmitted in routing updates.  This is the total\n            number currently in existence associated with the AS.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    }
                  }
                },
                "readOnly": true
              }
            },
            "readOnly": true
          },
          "cEigrpTopoTable": {
            "type": "object",
            "description": "The table of EIGRP routes and their associated\n        attributes for an Autonomous System (AS) configured\n        in a VPN is called a topology table.  All route entries in\n        the topology table will be indexed by IP network type,\n        IP network number and network mask (prefix) size.",
            "properties": {
              "cEigrpTopoEntry": {
                "type": "array",
                "description": "The entry for a single EIGRP topology table in the given\n          AS.",
                "items": {
                  "type": "object",
                  "properties": {
                    "cEigrpVpnId": {
                      "type": "string",
                      "description": "cEigrpVpnId",
                      "x-yang-type": "leafref",
                      "readOnly": true
                    },
                    "cEigrpAsNumber": {
                      "type": "string",
                      "description": "cEigrpAsNumber",
                      "x-yang-type": "leafref",
                      "readOnly": true
                    },
                    "cEigrpDestNetType": {
                      "type": "string",
                      "description": "The format of the destination IP network number for\n            a single route in the topology table in the AS specified\n            in cEigrpDestNet.",
                      "x-yang-type": "inet-address:InetAddressType",
                      "readOnly": true
                    },
                    "cEigrpDestNet": {
                      "type": "string",
                      "description": "The destination IP network number for a single route in\n            the topology table in the AS.  The format is governed\n            by object cEigrpDestNetType.",
                      "x-yang-type": "inet-address:InetAddress",
                      "readOnly": true
                    },
                    "cEigrpDestNetPrefixLen": {
                      "type": "string",
                      "description": "The prefix length associated with the destination IP\n            network address for a single route in the topology\n            table in the AS.  The format is governed by the object\n            cEigrpDestNetType.",
                      "x-yang-type": "inet-address:InetAddressPrefixLength",
                      "readOnly": true
                    },
                    "cEigrpActive": {
                      "type": "boolean",
                      "description": "A value of true(1) indicates the route to the\n            destination network has failed and an active (query)\n            search for an alternative path is in progress.  A value\n            of false(2) indicates the route is stable (passive).",
                      "readOnly": true
                    },
                    "cEigrpStuckInActive": {
                      "type": "boolean",
                      "description": "A value of true(1) indicates that that this route which is\n            in active state (cEigrpActive = true(1)) has not received\n            any replies to queries for alternate paths, and a second\n            EIGRP route query, called a stuck-in-active query, has\n            now been sent.",
                      "readOnly": true
                    },
                    "cEigrpDestSuccessors": {
                      "type": "integer",
                      "description": "A successor is the next routing hop for a path to the\n            destination IP network number for a single route in the\n            topology table in the AS.  There can be several\n            potential successors if there are multiple paths to the\n            destination.   This is the total number of successors for\n            a topology entry.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "cEigrpFdistance": {
                      "type": "integer",
                      "description": "The feasibility (best) distance is the minimum distance\n            from this router to the destination IP network in\n            this topology entry.  The feasibility distance is\n            used in determining the best successor for a path to the\n            destination network.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "cEigrpRouteOriginType": {
                      "type": "string",
                      "description": "This is a text string describing the internal origin\n            of the EIGRP route represented by the topology entry.",
                      "x-yang-type": "snmp-framework:SnmpAdminString",
                      "readOnly": true
                    },
                    "cEigrpRouteOriginAddrType": {
                      "type": "string",
                      "description": "The format of the IP address defined as the origin of\n            this topology route entry.",
                      "x-yang-type": "inet-address:InetAddressType",
                      "readOnly": true
                    },
                    "cEigrpRouteOriginAddr": {
                      "type": "string",
                      "description": "If the origin of the topology route entry is external\n            to this router, then this object is the IP address\n            of the router from which it originated.  The format \n            is governed by object cEigrpRouteOriginAddrType.",
                      "x-yang-type": "inet-address:InetAddress",
                      "readOnly": true
                    },
                    "cEigrpNextHopAddressType": {
                      "type": "string",
                      "description": "The format of the next hop IP address for the route\n            represented by the topology entry.",
                      "x-yang-type": "inet-address:InetAddressType",
                      "readOnly": true
                    },
                    "cEigrpNextHopAddress": {
                      "type": "string",
                      "description": "This is the next hop IP address for the route represented\n            by the topology entry.   The next hop is where\n            network traffic will be routed to in order to reach\n            the destination network for this topology entry.  The\n            format is governed by cEigrpNextHopAddressType.",
                      "x-yang-type": "inet-address:InetAddress",
                      "readOnly": true
                    },
                    "cEigrpNextHopInterface": {
                      "type": "string",
                      "description": "The interface through which the next hop IP address\n            is reached to send network traffic to the destination\n            network represented by the topology entry.",
                      "x-yang-type": "snmp-framework:SnmpAdminString",
                      "readOnly": true
                    },
                    "cEigrpDistance": {
                      "type": "integer",
                      "description": "The computed distance to the destination network entry\n            from this router.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "cEigrpReportDistance": {
                      "type": "integer",
                      "description": "The computed distance to the destination network in the\n            topology entry reported to this router by the originator\n            of this route.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    }
                  }
                },
                "readOnly": true
              }
            },
            "readOnly": true
          },
          "cEigrpPeerTable": {
            "type": "object",
            "description": "The table of established EIGRP peers (neighbors) in the\n        selected autonomous system.   Peers are indexed by their\n        unique internal handle id, as well as the AS number and\n        VPN id.   The peer entry is removed from the table if\n        the peer is declared down.",
            "properties": {
              "cEigrpPeerEntry": {
                "type": "array",
                "description": "Statistics and operational parameters for a single peer\n          in the AS.",
                "items": {
                  "type": "object",
                  "properties": {
                    "cEigrpVpnId": {
                      "type": "string",
                      "description": "cEigrpVpnId",
                      "x-yang-type": "leafref",
                      "readOnly": true
                    },
                    "cEigrpAsNumber": {
                      "type": "string",
                      "description": "cEigrpAsNumber",
                      "x-yang-type": "leafref",
                      "readOnly": true
                    },
                    "cEigrpHandle": {
                      "type": "integer",
                      "description": "The unique internal identifier for the peer in the AS.\n            This is a unique value among peer entries in a selected\n            table.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "cEigrpPeerAddrType": {
                      "type": "string",
                      "description": "The format of the remote source IP address used by the\n            peer to establish the EIGRP adjacency with this router.",
                      "x-yang-type": "inet-address:InetAddressType",
                      "readOnly": true
                    },
                    "cEigrpPeerAddr": {
                      "type": "string",
                      "description": "The source IP address used by the peer to establish the\n            EIGRP adjacency with this router.  The format is\n            governed by object cEigrpPeerAddrType.",
                      "x-yang-type": "inet-address:InetAddress",
                      "readOnly": true
                    },
                    "cEigrpPeerIfIndex": {
                      "type": "string",
                      "description": "The ifIndex of the interface on this router through\n            which this peer can be reached.",
                      "x-yang-type": "if-mib:InterfaceIndexOrZero",
                      "readOnly": true
                    },
                    "cEigrpHoldTime": {
                      "type": "integer",
                      "description": "The count-down timer indicating how much time must\n            pass without receiving a hello packet from this\n            EIGRP peer before this router declares the peer down.\n            A peer declared as down is removed from the table and\n            is no longer visible.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "cEigrpUpTime": {
                      "type": "string",
                      "description": "The elapsed time since the EIGRP adjacency was first\n            established with the peer.",
                      "x-yang-type": "CISCO-EIGRP-MIB:EigrpUpTimeString",
                      "readOnly": true
                    },
                    "cEigrpSrtt": {
                      "type": "integer",
                      "description": "The computed smooth round trip time for packets to and\n            from the peer.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "cEigrpRto": {
                      "type": "integer",
                      "description": "The computed retransmission timeout for the peer.\n            This value is computed over time as packets are sent to\n            the peer and acknowledgements are received from it,\n            and is the amount of time to wait before resending\n            a packet from the retransmission queue to the peer\n            when an expected acknowledgement has not been received.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "cEigrpPktsEnqueued": {
                      "type": "integer",
                      "description": "The number of any EIGRP packets currently enqueued\n            waiting to be sent to this peer.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "cEigrpLastSeq": {
                      "type": "integer",
                      "description": "All transmitted EIGRP packets have a sequence number\n            assigned. This is the sequence number of the last EIGRP\n            packet sent to this peer.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "cEigrpVersion": {
                      "type": "string",
                      "description": "The EIGRP version information reported by the remote\n            peer.",
                      "x-yang-type": "CISCO-EIGRP-MIB:EigrpVersionString",
                      "readOnly": true
                    },
                    "cEigrpRetrans": {
                      "type": "integer",
                      "description": "The cumulative number of retransmissions to this peer\n            during the period that the peer adjacency has remained\n            up.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "cEigrpRetries": {
                      "type": "integer",
                      "description": "The number of times the current unacknowledged packet\n            has been retried, i.e. resent to this peer to be\n            acknowledged.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    }
                  }
                },
                "readOnly": true
              }
            },
            "readOnly": true
          },
          "cEigrpInterfaceTable": {
            "type": "object",
            "description": "The table of interfaces over which EIGRP is running, and\n        their associated statistics.   This table is independent\n        of whether any peer adjacencies have been formed over\n        the interfaces or not.   Interfaces running EIGRP are\n        determined by whether their assigned IP addresses fall\n        within configured EIGRP network statements.",
            "properties": {
              "cEigrpInterfaceEntry": {
                "type": "array",
                "description": "Information for a single interface running EIGRP in the\n          AS and VPN.",
                "items": {
                  "type": "object",
                  "properties": {
                    "cEigrpVpnId": {
                      "type": "string",
                      "description": "cEigrpVpnId",
                      "x-yang-type": "leafref",
                      "readOnly": true
                    },
                    "cEigrpAsNumber": {
                      "type": "string",
                      "description": "cEigrpAsNumber",
                      "x-yang-type": "leafref",
                      "readOnly": true
                    },
                    "ifIndex": {
                      "type": "string",
                      "description": "ifIndex",
                      "x-yang-type": "leafref",
                      "readOnly": true
                    },
                    "cEigrpPeerCount": {
                      "type": "integer",
                      "description": "The number of EIGRP adjacencies currently formed with\n            peers reached through this interface.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "cEigrpXmitReliableQ": {
                      "type": "integer",
                      "description": "The number of EIGRP packets currently waiting in the\n            reliable transport (acknowledgement-required) \n            transmission queue to be sent to a peer.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "cEigrpXmitUnreliableQ": {
                      "type": "integer",
                      "description": "The number EIGRP of packets currently waiting in\n            the unreliable transport (no acknowledgement required)\n            transmission queue.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "cEigrpMeanSrtt": {
                      "type": "integer",
                      "description": "The average of all the computed smooth round trip time\n            values for a packet to and from all peers established on\n            this interface.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "cEigrpPacingReliable": {
                      "type": "integer",
                      "description": "The configured time interval between EIGRP packet\n            transmissions on the interface when the reliable transport\n            method is used.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "cEigrpPacingUnreliable": {
                      "type": "integer",
                      "description": "The configured time interval between EIGRP packet\n            transmissions on the interface when the unreliable\n            transport method is used.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "cEigrpMFlowTimer": {
                      "type": "integer",
                      "description": "The configured multicast flow control timer value for\n            this interface.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "cEigrpPendingRoutes": {
                      "type": "integer",
                      "description": "The number of queued EIGRP routing updates awaiting\n            transmission on this interface.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "cEigrpHelloInterval": {
                      "type": "integer",
                      "description": "The configured time interval between Hello packet\n            transmissions for this interface.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "cEigrpXmitNextSerial": {
                      "type": "integer",
                      "description": "The serial number of the next EIGRP packet that is to\n            be queued for transmission on this interface.",
                      "minimum": 0,
                      "readOnly": true
                    },
                    "cEigrpUMcasts": {
                      "type": "integer",
                      "description": "The total number of unreliable (no acknowledgement\n            required) EIGRP multicast packets sent on this\n            interface.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "cEigrpRMcasts": {
                      "type": "integer",
                      "description": "The total number of reliable (acknowledgement required)\n            EIGRP multicast packets sent on this interface.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "cEigrpUUcasts": {
                      "type": "integer",
                      "description": "The total number of unreliable (no acknowledgement\n            required) EIGRP unicast packets sent on this\n            interface.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "cEigrpRUcasts": {
                      "type": "integer",
                      "description": "The total number of reliable (acknowledgement required)\n            unicast packets sent on this interface.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "cEigrpMcastExcepts": {
                      "type": "integer",
                      "description": "The total number of EIGRP multicast exception\n            transmissions that have occurred on this interface.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "cEigrpCRpkts": {
                      "type": "integer",
                      "description": "The total number EIGRP Conditional-Receive packets sent on\n            this interface.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "cEigrpAcksSuppressed": {
                      "type": "integer",
                      "description": "The total number of individual EIGRP acknowledgement\n            packets that have been suppressed and combined in\n            an already enqueued outbound reliable packet on this\n            interface.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "cEigrpRetransSent": {
                      "type": "integer",
                      "description": "The total number EIGRP packet retransmissions sent on\n            the interface.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "cEigrpOOSrvcd": {
                      "type": "integer",
                      "description": "The total number of out-of-sequence EIGRP packets\n            received.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "cEigrpAuthMode": {
                      "type": "string",
                      "description": "The EIGRP authentication mode of the interface.\n            none  :  no authentication enabled on the interface\n            md5   :  MD5 authentication enabled on the interface",
                      "readOnly": true
                    },
                    "cEigrpAuthKeyChain": {
                      "type": "string",
                      "description": "The name of the authentication key-chain configured\n            on this interface.   The key-chain is a reference to\n            which set of secret keys are to be accessed in order\n            to determine which secret key string to use.  The key\n            chain name is not the secret key string password and\n            can also be used in other routing protocols, such\n            as RIP and ISIS.",
                      "x-yang-type": "snmp-framework:SnmpAdminString",
                      "readOnly": true
                    }
                  }
                },
                "readOnly": true
              }
            },
            "readOnly": true
          }
        }
      },
      "CISCO-EIGRP-MIB_object-1": {
        "type": "object",
        "description": "object-1",
        "properties": {
          "cEigrpVpnId": {
            "type": "string",
            "description": "cEigrpVpnId",
            "x-yang-type": "leafref",
            "readOnly": true
          },
          "cEigrpAsNumber": {
            "type": "string",
            "description": "cEigrpAsNumber",
            "x-yang-type": "leafref",
            "readOnly": true
          },
          "cEigrpHandle": {
            "type": "string",
            "description": "cEigrpHandle",
            "x-yang-type": "leafref",
            "readOnly": true
          },
          "cEigrpPeerAddrType": {
            "type": "string",
            "description": "cEigrpPeerAddrType",
            "x-yang-type": "leafref",
            "readOnly": true
          }
        }
      },
      "CISCO-EIGRP-MIB_object-2": {
        "type": "object",
        "description": "object-2",
        "properties": {
          "cEigrpVpnId": {
            "type": "string",
            "description": "cEigrpVpnId",
            "x-yang-type": "leafref",
            "readOnly": true
          },
          "cEigrpAsNumber": {
            "type": "string",
            "description": "cEigrpAsNumber",
            "x-yang-type": "leafref",
            "readOnly": true
          },
          "cEigrpHandle": {
            "type": "string",
            "description": "cEigrpHandle",
            "x-yang-type": "leafref",
            "readOnly": true
          },
          "cEigrpPeerAddr": {
            "type": "string",
            "description": "cEigrpPeerAddr",
            "x-yang-type": "leafref",
            "readOnly": true
          }
        }
      },
      "CISCO-EIGRP-MIB_object-3": {
        "type": "object",
        "description": "object-3",
        "properties": {
          "cEigrpVpnId": {
            "type": "string",
            "description": "cEigrpVpnId",
            "x-yang-type": "leafref",
            "readOnly": true
          },
          "cEigrpAsNumber": {
            "type": "string",
            "description": "cEigrpAsNumber",
            "x-yang-type": "leafref",
            "readOnly": true
          },
          "cEigrpDestNetType": {
            "type": "string",
            "description": "cEigrpDestNetType",
            "x-yang-type": "leafref",
            "readOnly": true
          },
          "cEigrpDestNet": {
            "type": "string",
            "description": "cEigrpDestNet",
            "x-yang-type": "leafref",
            "readOnly": true
          },
          "cEigrpDestNetPrefixLen": {
            "type": "string",
            "description": "cEigrpDestNetPrefixLen",
            "x-yang-type": "leafref",
            "readOnly": true
          },
          "cEigrpStuckInActive": {
            "type": "string",
            "description": "cEigrpStuckInActive",
            "x-yang-type": "leafref",
            "readOnly": true
          }
        }
      },
      "CISCO-EIGRP-MIB_cEigrpVpnEntry": {
        "type": "array",
        "description": "Information relating to a single VPN which is configured\n          to run EIGRP.",
        "items": {
          "type": "object",
          "properties": {
            "cEigrpVpnId": {
              "type": "integer",
              "description": "The unique VPN identifier.  This is a unique integer\n            relative to all other VPN's defined on the router.  It\n            also identifies internally the routing table instance.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "cEigrpVpnName": {
              "type": "string",
              "description": "The name given to the VPN.",
              "x-yang-type": "snmp-framework:SnmpAdminString",
              "readOnly": true
            }
          }
        }
      },
      "CISCO-EIGRP-MIB_cEigrpTraffStatsEntry": {
        "type": "array",
        "description": "The set of statistics and information for a single EIGRP\n          Autonomous System.",
        "items": {
          "type": "object",
          "properties": {
            "cEigrpVpnId": {
              "type": "string",
              "description": "cEigrpVpnId",
              "x-yang-type": "leafref",
              "readOnly": true
            },
            "cEigrpAsNumber": {
              "type": "integer",
              "description": "The Autonomous System number which is unique integer\n            per VPN.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "cEigrpNbrCount": {
              "type": "integer",
              "description": "The total number of live EIGRP neighbors formed on all\n            interfaces whose IP addresses fall under networks configured\n            in the EIGRP AS.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "cEigrpHellosSent": {
              "type": "integer",
              "description": "The total number Hello packets that have been sent to all\n            EIGRP neighbors formed on all interfaces whose IP addresses\n            fall under networks configured for the EIGRP AS.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "cEigrpHellosRcvd": {
              "type": "integer",
              "description": "The total number Hello packets that have been received\n            from all EIGRP neighbors formed on all interfaces whose IP\n            addresses fall under networks configured for the\n            EIGRP AS.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "cEigrpUpdatesSent": {
              "type": "integer",
              "description": "The total number routing update packets that have been\n            sent to all EIGRP neighbors formed on all interfaces whose\n            IP addresses fall under networks configured for the\n            EIGRP AS.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "cEigrpUpdatesRcvd": {
              "type": "integer",
              "description": "The total number routing update packets that have been\n            received from all EIGRP neighbors formed on all interfaces\n            whose IP addresses fall under networks configured for the\n            EIGRP AS.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "cEigrpQueriesSent": {
              "type": "integer",
              "description": "The total number alternate route query packets that have\n            been sent to all EIGRP neighbors formed on all interfaces\n            whose IP addresses fall under networks configured for the\n            EIGRP AS.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "cEigrpQueriesRcvd": {
              "type": "integer",
              "description": "The total number alternate route query packets that\n            have been received from all EIGRP neighbors formed on\n            all interfaces whose IP addresses fall under networks\n            configured for the EIGRP AS.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "cEigrpRepliesSent": {
              "type": "integer",
              "description": "The total number query reply packets that have been sent\n            to all EIGRP neighbors formed on all interfaces whose IP\n            addresses fall under networks configured for the\n            EIGRP AS.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "cEigrpRepliesRcvd": {
              "type": "integer",
              "description": "The total number query reply packets that have been\n            received from all EIGRP neighbors formed on all interfaces\n            whose IP addresses fall under networks configured for the\n            EIGRP AS.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "cEigrpAcksSent": {
              "type": "integer",
              "description": "The total number packet acknowledgements that have been\n            sent to all EIGRP neighbors formed on all interfaces whose\n            IP addresses fall under networks configured for the\n            EIGRP AS.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "cEigrpAcksRcvd": {
              "type": "integer",
              "description": "The total number packet acknowledgements that have been\n            received from all EIGRP neighbors formed on all interfaces\n            whose IP addresses fall under networks configured for the\n            EIGRP AS.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "cEigrpInputQHighMark": {
              "type": "integer",
              "description": "The highest number of EIGRP packets in the input queue\n            waiting to be processed internally addressed to this\n            AS.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "cEigrpInputQDrops": {
              "type": "integer",
              "description": "The number of EIGRP packets dropped from the input\n            queue due to it being full within the AS.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "cEigrpSiaQueriesSent": {
              "type": "integer",
              "description": "The total number of Stuck-In-Active (SIA) query packets\n            sent to all EIGRP neighbors formed on all interfaces whose\n            IP addresses fall under networks configured for the\n            EIGRP AS.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "cEigrpSiaQueriesRcvd": {
              "type": "integer",
              "description": "The total number of Stuck-In-Active (SIA) query packets\n            received from all EIGRP neighbors formed on all interfaces\n            whose IP addresses fall under networks configured for the\n            EIGRP AS.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "cEigrpAsRouterIdType": {
              "type": "string",
              "description": "The format of the router-id configured or automatically\n            selected for the EIGRP AS.",
              "x-yang-type": "inet-address:InetAddressType",
              "readOnly": true
            },
            "cEigrpAsRouterId": {
              "type": "string",
              "description": "The router-id configured or automatically selected for the\n            EIGRP AS.   Each EIGRP routing process has a unique\n            router-id selected from each autonomous system configured.\n            The format is governed by object cEigrpAsRouterIdType.",
              "x-yang-type": "inet-address:InetAddress",
              "readOnly": true
            },
            "cEigrpTopoRoutes": {
              "type": "integer",
              "description": "The total number of EIGRP derived routes currently existing\n            in the topology table for the AS.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "cEigrpHeadSerial": {
              "type": "integer",
              "description": "Routes in a topology table for an AS are assigned serial\n            numbers and are sequenced internally as they are inserted\n            and deleted.   The serial number of the first route in\n            that internal sequence is called the head serial number.\n            Each AS has its own topology table, and its own serial\n            number space, each of which begins with the value 1.\n            A serial number of zero implies that there are no routes\n            in the topology.",
              "minimum": 0,
              "readOnly": true
            },
            "cEigrpNextSerial": {
              "type": "integer",
              "description": "The serial number that would be assigned to the next new\n            or changed route in the topology table for the AS.",
              "minimum": 0,
              "readOnly": true
            },
            "cEigrpXmitPendReplies": {
              "type": "integer",
              "description": "When alternate route query packets are sent to adjacent\n            EIGRP peers in an AS, replies are expected.   This object\n            is the total number of outstanding replies expected to\n            queries that have been sent to peers in the current AS.\n            It remains at zero most of the time until an EIGRP route\n            becomes active.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "cEigrpXmitDummies": {
              "type": "integer",
              "description": "A dummy is a temporary internal entity used as a place\n            holder in the topology table for an AS. They are not\n            transmitted in routing updates.  This is the total\n            number currently in existence associated with the AS.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            }
          }
        }
      },
      "CISCO-EIGRP-MIB_cEigrpTopoEntry": {
        "type": "array",
        "description": "The entry for a single EIGRP topology table in the given\n          AS.",
        "items": {
          "type": "object",
          "properties": {
            "cEigrpVpnId": {
              "type": "string",
              "description": "cEigrpVpnId",
              "x-yang-type": "leafref",
              "readOnly": true
            },
            "cEigrpAsNumber": {
              "type": "string",
              "description": "cEigrpAsNumber",
              "x-yang-type": "leafref",
              "readOnly": true
            },
            "cEigrpDestNetType": {
              "type": "string",
              "description": "The format of the destination IP network number for\n            a single route in the topology table in the AS specified\n            in cEigrpDestNet.",
              "x-yang-type": "inet-address:InetAddressType",
              "readOnly": true
            },
            "cEigrpDestNet": {
              "type": "string",
              "description": "The destination IP network number for a single route in\n            the topology table in the AS.  The format is governed\n            by object cEigrpDestNetType.",
              "x-yang-type": "inet-address:InetAddress",
              "readOnly": true
            },
            "cEigrpDestNetPrefixLen": {
              "type": "string",
              "description": "The prefix length associated with the destination IP\n            network address for a single route in the topology\n            table in the AS.  The format is governed by the object\n            cEigrpDestNetType.",
              "x-yang-type": "inet-address:InetAddressPrefixLength",
              "readOnly": true
            },
            "cEigrpActive": {
              "type": "boolean",
              "description": "A value of true(1) indicates the route to the\n            destination network has failed and an active (query)\n            search for an alternative path is in progress.  A value\n            of false(2) indicates the route is stable (passive).",
              "readOnly": true
            },
            "cEigrpStuckInActive": {
              "type": "boolean",
              "description": "A value of true(1) indicates that that this route which is\n            in active state (cEigrpActive = true(1)) has not received\n            any replies to queries for alternate paths, and a second\n            EIGRP route query, called a stuck-in-active query, has\n            now been sent.",
              "readOnly": true
            },
            "cEigrpDestSuccessors": {
              "type": "integer",
              "description": "A successor is the next routing hop for a path to the\n            destination IP network number for a single route in the\n            topology table in the AS.  There can be several\n            potential successors if there are multiple paths to the\n            destination.   This is the total number of successors for\n            a topology entry.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "cEigrpFdistance": {
              "type": "integer",
              "description": "The feasibility (best) distance is the minimum distance\n            from this router to the destination IP network in\n            this topology entry.  The feasibility distance is\n            used in determining the best successor for a path to the\n            destination network.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "cEigrpRouteOriginType": {
              "type": "string",
              "description": "This is a text string describing the internal origin\n            of the EIGRP route represented by the topology entry.",
              "x-yang-type": "snmp-framework:SnmpAdminString",
              "readOnly": true
            },
            "cEigrpRouteOriginAddrType": {
              "type": "string",
              "description": "The format of the IP address defined as the origin of\n            this topology route entry.",
              "x-yang-type": "inet-address:InetAddressType",
              "readOnly": true
            },
            "cEigrpRouteOriginAddr": {
              "type": "string",
              "description": "If the origin of the topology route entry is external\n            to this router, then this object is the IP address\n            of the router from which it originated.  The format \n            is governed by object cEigrpRouteOriginAddrType.",
              "x-yang-type": "inet-address:InetAddress",
              "readOnly": true
            },
            "cEigrpNextHopAddressType": {
              "type": "string",
              "description": "The format of the next hop IP address for the route\n            represented by the topology entry.",
              "x-yang-type": "inet-address:InetAddressType",
              "readOnly": true
            },
            "cEigrpNextHopAddress": {
              "type": "string",
              "description": "This is the next hop IP address for the route represented\n            by the topology entry.   The next hop is where\n            network traffic will be routed to in order to reach\n            the destination network for this topology entry.  The\n            format is governed by cEigrpNextHopAddressType.",
              "x-yang-type": "inet-address:InetAddress",
              "readOnly": true
            },
            "cEigrpNextHopInterface": {
              "type": "string",
              "description": "The interface through which the next hop IP address\n            is reached to send network traffic to the destination\n            network represented by the topology entry.",
              "x-yang-type": "snmp-framework:SnmpAdminString",
              "readOnly": true
            },
            "cEigrpDistance": {
              "type": "integer",
              "description": "The computed distance to the destination network entry\n            from this router.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "cEigrpReportDistance": {
              "type": "integer",
              "description": "The computed distance to the destination network in the\n            topology entry reported to this router by the originator\n            of this route.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            }
          }
        }
      },
      "CISCO-EIGRP-MIB_cEigrpPeerEntry": {
        "type": "array",
        "description": "Statistics and operational parameters for a single peer\n          in the AS.",
        "items": {
          "type": "object",
          "properties": {
            "cEigrpVpnId": {
              "type": "string",
              "description": "cEigrpVpnId",
              "x-yang-type": "leafref",
              "readOnly": true
            },
            "cEigrpAsNumber": {
              "type": "string",
              "description": "cEigrpAsNumber",
              "x-yang-type": "leafref",
              "readOnly": true
            },
            "cEigrpHandle": {
              "type": "integer",
              "description": "The unique internal identifier for the peer in the AS.\n            This is a unique value among peer entries in a selected\n            table.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "cEigrpPeerAddrType": {
              "type": "string",
              "description": "The format of the remote source IP address used by the\n            peer to establish the EIGRP adjacency with this router.",
              "x-yang-type": "inet-address:InetAddressType",
              "readOnly": true
            },
            "cEigrpPeerAddr": {
              "type": "string",
              "description": "The source IP address used by the peer to establish the\n            EIGRP adjacency with this router.  The format is\n            governed by object cEigrpPeerAddrType.",
              "x-yang-type": "inet-address:InetAddress",
              "readOnly": true
            },
            "cEigrpPeerIfIndex": {
              "type": "string",
              "description": "The ifIndex of the interface on this router through\n            which this peer can be reached.",
              "x-yang-type": "if-mib:InterfaceIndexOrZero",
              "readOnly": true
            },
            "cEigrpHoldTime": {
              "type": "integer",
              "description": "The count-down timer indicating how much time must\n            pass without receiving a hello packet from this\n            EIGRP peer before this router declares the peer down.\n            A peer declared as down is removed from the table and\n            is no longer visible.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "cEigrpUpTime": {
              "type": "string",
              "description": "The elapsed time since the EIGRP adjacency was first\n            established with the peer.",
              "x-yang-type": "CISCO-EIGRP-MIB:EigrpUpTimeString",
              "readOnly": true
            },
            "cEigrpSrtt": {
              "type": "integer",
              "description": "The computed smooth round trip time for packets to and\n            from the peer.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "cEigrpRto": {
              "type": "integer",
              "description": "The computed retransmission timeout for the peer.\n            This value is computed over time as packets are sent to\n            the peer and acknowledgements are received from it,\n            and is the amount of time to wait before resending\n            a packet from the retransmission queue to the peer\n            when an expected acknowledgement has not been received.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "cEigrpPktsEnqueued": {
              "type": "integer",
              "description": "The number of any EIGRP packets currently enqueued\n            waiting to be sent to this peer.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "cEigrpLastSeq": {
              "type": "integer",
              "description": "All transmitted EIGRP packets have a sequence number\n            assigned. This is the sequence number of the last EIGRP\n            packet sent to this peer.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "cEigrpVersion": {
              "type": "string",
              "description": "The EIGRP version information reported by the remote\n            peer.",
              "x-yang-type": "CISCO-EIGRP-MIB:EigrpVersionString",
              "readOnly": true
            },
            "cEigrpRetrans": {
              "type": "integer",
              "description": "The cumulative number of retransmissions to this peer\n            during the period that the peer adjacency has remained\n            up.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "cEigrpRetries": {
              "type": "integer",
              "description": "The number of times the current unacknowledged packet\n            has been retried, i.e. resent to this peer to be\n            acknowledged.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            }
          }
        }
      },
      "CISCO-EIGRP-MIB_cEigrpInterfaceEntry": {
        "type": "array",
        "description": "Information for a single interface running EIGRP in the\n          AS and VPN.",
        "items": {
          "type": "object",
          "properties": {
            "cEigrpVpnId": {
              "type": "string",
              "description": "cEigrpVpnId",
              "x-yang-type": "leafref",
              "readOnly": true
            },
            "cEigrpAsNumber": {
              "type": "string",
              "description": "cEigrpAsNumber",
              "x-yang-type": "leafref",
              "readOnly": true
            },
            "ifIndex": {
              "type": "string",
              "description": "ifIndex",
              "x-yang-type": "leafref",
              "readOnly": true
            },
            "cEigrpPeerCount": {
              "type": "integer",
              "description": "The number of EIGRP adjacencies currently formed with\n            peers reached through this interface.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "cEigrpXmitReliableQ": {
              "type": "integer",
              "description": "The number of EIGRP packets currently waiting in the\n            reliable transport (acknowledgement-required) \n            transmission queue to be sent to a peer.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "cEigrpXmitUnreliableQ": {
              "type": "integer",
              "description": "The number EIGRP of packets currently waiting in\n            the unreliable transport (no acknowledgement required)\n            transmission queue.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "cEigrpMeanSrtt": {
              "type": "integer",
              "description": "The average of all the computed smooth round trip time\n            values for a packet to and from all peers established on\n            this interface.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "cEigrpPacingReliable": {
              "type": "integer",
              "description": "The configured time interval between EIGRP packet\n            transmissions on the interface when the reliable transport\n            method is used.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "cEigrpPacingUnreliable": {
              "type": "integer",
              "description": "The configured time interval between EIGRP packet\n            transmissions on the interface when the unreliable\n            transport method is used.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "cEigrpMFlowTimer": {
              "type": "integer",
              "description": "The configured multicast flow control timer value for\n            this interface.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "cEigrpPendingRoutes": {
              "type": "integer",
              "description": "The number of queued EIGRP routing updates awaiting\n            transmission on this interface.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "cEigrpHelloInterval": {
              "type": "integer",
              "description": "The configured time interval between Hello packet\n            transmissions for this interface.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "cEigrpXmitNextSerial": {
              "type": "integer",
              "description": "The serial number of the next EIGRP packet that is to\n            be queued for transmission on this interface.",
              "minimum": 0,
              "readOnly": true
            },
            "cEigrpUMcasts": {
              "type": "integer",
              "description": "The total number of unreliable (no acknowledgement\n            required) EIGRP multicast packets sent on this\n            interface.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "cEigrpRMcasts": {
              "type": "integer",
              "description": "The total number of reliable (acknowledgement required)\n            EIGRP multicast packets sent on this interface.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "cEigrpUUcasts": {
              "type": "integer",
              "description": "The total number of unreliable (no acknowledgement\n            required) EIGRP unicast packets sent on this\n            interface.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "cEigrpRUcasts": {
              "type": "integer",
              "description": "The total number of reliable (acknowledgement required)\n            unicast packets sent on this interface.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "cEigrpMcastExcepts": {
              "type": "integer",
              "description": "The total number of EIGRP multicast exception\n            transmissions that have occurred on this interface.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "cEigrpCRpkts": {
              "type": "integer",
              "description": "The total number EIGRP Conditional-Receive packets sent on\n            this interface.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "cEigrpAcksSuppressed": {
              "type": "integer",
              "description": "The total number of individual EIGRP acknowledgement\n            packets that have been suppressed and combined in\n            an already enqueued outbound reliable packet on this\n            interface.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "cEigrpRetransSent": {
              "type": "integer",
              "description": "The total number EIGRP packet retransmissions sent on\n            the interface.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "cEigrpOOSrvcd": {
              "type": "integer",
              "description": "The total number of out-of-sequence EIGRP packets\n            received.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "cEigrpAuthMode": {
              "type": "string",
              "description": "The EIGRP authentication mode of the interface.\n            none  :  no authentication enabled on the interface\n            md5   :  MD5 authentication enabled on the interface",
              "readOnly": true
            },
            "cEigrpAuthKeyChain": {
              "type": "string",
              "description": "The name of the authentication key-chain configured\n            on this interface.   The key-chain is a reference to\n            which set of secret keys are to be accessed in order\n            to determine which secret key string to use.  The key\n            chain name is not the secret key string password and\n            can also be used in other routing protocols, such\n            as RIP and ISIS.",
              "x-yang-type": "snmp-framework:SnmpAdminString",
              "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": "CISCO-EIGRP-MIB",
      "description": "MIB operations for CISCO-EIGRP-MIB"
    }
  ],
  "externalDocs": {
    "description": "Cisco SNMP Object Navigator",
    "url": "https://snmp.cloudapps.cisco.com/Support/IOS/do/BrowseMIB.do"
  }
}
