{
  "openapi": "3.0.0",
  "info": {
    "title": "DIFFSERV-MIB MIB API",
    "version": "1.0.0",
    "description": "This MIB defines the objects necessary to manage a device that\n    uses the Differentiated Services Architecture described in RFC\n    2475. The Conceptual Model of a Differentiated Services Router\n    provides supporting information on how such a router is modeled.\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 DIFFSERV-MIB structure](https://jeremycohoe.github.io/cisco-ios-xe-openapi-swagger/yang-trees/DIFFSERV-MIB.html)",
    "contact": {
      "name": "Cisco DevNet",
      "url": "https://developer.cisco.com"
    },
    "x-yang-module": "DIFFSERV-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/DIFFSERV-MIB:diffServClassifier": {
      "get": {
        "summary": "Get diffServClassifier data",
        "description": "Retrieve diffServClassifier operational data from MIB",
        "tags": [
          "DIFFSERV-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "description": "This object contains an unused value for diffServClfrId, or a\n          zero to indicate that none exist.",
                  "properties": {
                    "diffServClfrNextFree": {
                      "type": "string",
                      "description": "This object contains an unused value for diffServClfrId, or a\n          zero to indicate that none exist.",
                      "x-yang-type": "DIFFSERV-MIB:IndexIntegerNextFree"
                    },
                    "diffServClfrElementNextFree": {
                      "type": "string",
                      "description": "This object contains an unused value for diffServClfrElementId,\n          or a zero to indicate that none exist.",
                      "x-yang-type": "DIFFSERV-MIB:IndexIntegerNextFree"
                    },
                    "diffServMultiFieldClfrNextFree": {
                      "type": "string",
                      "description": "This object contains an unused value for\n          diffServMultiFieldClfrId, or a zero to indicate that none exist.",
                      "x-yang-type": "DIFFSERV-MIB:IndexIntegerNextFree"
                    }
                  }
                },
                "example": {
                  "DIFFSERV-MIB:diffServClassifier": {
                    "diffServClfrNextFree": "example-string",
                    "diffServClfrElementNextFree": "example-string",
                    "diffServMultiFieldClfrNextFree": "example-string"
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-diffServClassifier",
        "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": "/diffServClassifier",
      "x-restconf-kind": "container"
    },
    "/data/DIFFSERV-MIB:diffServMeter": {
      "get": {
        "summary": "Get diffServMeter data",
        "description": "Retrieve diffServMeter operational data from MIB",
        "tags": [
          "DIFFSERV-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "description": "This object contains an unused value for diffServMeterId, or a\n          zero to indicate that none exist.",
                  "properties": {
                    "diffServMeterNextFree": {
                      "type": "string",
                      "description": "This object contains an unused value for diffServMeterId, or a\n          zero to indicate that none exist.",
                      "x-yang-type": "DIFFSERV-MIB:IndexIntegerNextFree"
                    }
                  }
                },
                "example": {
                  "DIFFSERV-MIB:diffServMeter": {
                    "diffServMeterNextFree": "example-string"
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-diffServMeter",
        "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": "/diffServMeter",
      "x-restconf-kind": "container"
    },
    "/data/DIFFSERV-MIB:diffServTBParam": {
      "get": {
        "summary": "Get diffServTBParam data",
        "description": "Retrieve diffServTBParam operational data from MIB",
        "tags": [
          "DIFFSERV-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "description": "This object contains an unused value for diffServTBParamId, or a\n          zero to indicate that none exist.",
                  "properties": {
                    "diffServTBParamNextFree": {
                      "type": "string",
                      "description": "This object contains an unused value for diffServTBParamId, or a\n          zero to indicate that none exist.",
                      "x-yang-type": "DIFFSERV-MIB:IndexIntegerNextFree"
                    }
                  }
                },
                "example": {
                  "DIFFSERV-MIB:diffServTBParam": {
                    "diffServTBParamNextFree": "example-string"
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-diffServTBParam",
        "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": "/diffServTBParam",
      "x-restconf-kind": "container"
    },
    "/data/DIFFSERV-MIB:diffServAction": {
      "get": {
        "summary": "Get diffServAction data",
        "description": "Retrieve diffServAction operational data from MIB",
        "tags": [
          "DIFFSERV-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "description": "This object contains an unused value for diffServActionId, or a\n          zero to indicate that none exist.",
                  "properties": {
                    "diffServActionNextFree": {
                      "type": "string",
                      "description": "This object contains an unused value for diffServActionId, or a\n          zero to indicate that none exist.",
                      "x-yang-type": "DIFFSERV-MIB:IndexIntegerNextFree"
                    },
                    "diffServCountActNextFree": {
                      "type": "string",
                      "description": "This object contains an unused value for\n          diffServCountActId, or a zero to indicate that none exist.",
                      "x-yang-type": "DIFFSERV-MIB:IndexIntegerNextFree"
                    }
                  }
                },
                "example": {
                  "DIFFSERV-MIB:diffServAction": {
                    "diffServActionNextFree": "example-string",
                    "diffServCountActNextFree": "example-string"
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-diffServAction",
        "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": "/diffServAction",
      "x-restconf-kind": "container"
    },
    "/data/DIFFSERV-MIB:diffServAlgDrop": {
      "get": {
        "summary": "Get diffServAlgDrop data",
        "description": "Retrieve diffServAlgDrop operational data from MIB",
        "tags": [
          "DIFFSERV-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "description": "This object contains an unused value for diffServAlgDropId, or a\n          zero to indicate that none exist.",
                  "properties": {
                    "diffServAlgDropNextFree": {
                      "type": "string",
                      "description": "This object contains an unused value for diffServAlgDropId, or a\n          zero to indicate that none exist.",
                      "x-yang-type": "DIFFSERV-MIB:IndexIntegerNextFree"
                    },
                    "diffServRandomDropNextFree": {
                      "type": "string",
                      "description": "This object contains an unused value for diffServRandomDropId,\n          or a zero to indicate that none exist.",
                      "x-yang-type": "DIFFSERV-MIB:IndexIntegerNextFree"
                    }
                  }
                },
                "example": {
                  "DIFFSERV-MIB:diffServAlgDrop": {
                    "diffServAlgDropNextFree": "example-string",
                    "diffServRandomDropNextFree": "example-string"
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-diffServAlgDrop",
        "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": "/diffServAlgDrop",
      "x-restconf-kind": "container"
    },
    "/data/DIFFSERV-MIB:diffServQueue": {
      "get": {
        "summary": "Get diffServQueue data",
        "description": "Retrieve diffServQueue operational data from MIB",
        "tags": [
          "DIFFSERV-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "description": "This object contains an unused value for diffServQId, or a zero\n          to indicate that none exist.",
                  "properties": {
                    "diffServQNextFree": {
                      "type": "string",
                      "description": "This object contains an unused value for diffServQId, or a zero\n          to indicate that none exist.",
                      "x-yang-type": "DIFFSERV-MIB:IndexIntegerNextFree"
                    }
                  }
                },
                "example": {
                  "DIFFSERV-MIB:diffServQueue": {
                    "diffServQNextFree": "example-string"
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-diffServQueue",
        "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": "/diffServQueue",
      "x-restconf-kind": "container"
    },
    "/data/DIFFSERV-MIB:diffServScheduler": {
      "get": {
        "summary": "Get diffServScheduler data",
        "description": "Retrieve diffServScheduler operational data from MIB",
        "tags": [
          "DIFFSERV-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "description": "This object contains an unused value for diffServSchedulerId, or\n          a zero to indicate that none exist.",
                  "properties": {
                    "diffServSchedulerNextFree": {
                      "type": "string",
                      "description": "This object contains an unused value for diffServSchedulerId, or\n          a zero to indicate that none exist.",
                      "x-yang-type": "DIFFSERV-MIB:IndexIntegerNextFree"
                    },
                    "diffServMinRateNextFree": {
                      "type": "string",
                      "description": "This object contains an unused value for diffServMinRateId, or a\n          zero to indicate that none exist.",
                      "x-yang-type": "DIFFSERV-MIB:IndexIntegerNextFree"
                    },
                    "diffServMaxRateNextFree": {
                      "type": "string",
                      "description": "This object contains an unused value for diffServMaxRateId, or a\n          zero to indicate that none exist.",
                      "x-yang-type": "DIFFSERV-MIB:IndexIntegerNextFree"
                    }
                  }
                },
                "example": {
                  "DIFFSERV-MIB:diffServScheduler": {
                    "diffServSchedulerNextFree": "example-string",
                    "diffServMinRateNextFree": "example-string",
                    "diffServMaxRateNextFree": "example-string"
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-diffServScheduler",
        "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": "/diffServScheduler",
      "x-restconf-kind": "container"
    },
    "/data/DIFFSERV-MIB:diffServDataPathTable": {
      "get": {
        "summary": "Get diffServDataPathTable data",
        "description": "Retrieve diffServDataPathTable operational data from MIB",
        "tags": [
          "DIFFSERV-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "description": "The data path table contains RowPointers indicating the start of\n        the functional data path for each interface and traffic direction\n        in this device. These may merge, or be separated into parallel\n        data paths.",
                  "properties": {
                    "diffServDataPathEntry": {
                      "type": "array",
                      "description": "diffServDataPathEntry",
                      "items": {
                        "type": "object",
                        "properties": {
                          "ifIndex": {
                            "type": "string",
                            "description": "ifIndex",
                            "x-yang-type": "leafref"
                          },
                          "diffServDataPathIfDirection": {
                            "type": "string",
                            "description": "IfDirection specifies whether the reception or transmission path\n            for this interface is in view.",
                            "x-yang-type": "DIFFSERV-MIB:IfDirection"
                          },
                          "diffServDataPathStart": {
                            "type": "string",
                            "description": "This selects the first Differentiated Services Functional Data\n            Path Element to handle traffic for this data path. This\n            RowPointer should point to an instance of one of:\n              diffServClfrEntry\n              diffServMeterEntry\n              diffServActionEntry\n              diffServAlgDropEntry\n              diffServQEntry\n            \n            A value of zeroDotZero in this attribute indicates that no\n            Differentiated Services treatment is performed on traffic of this\n            data path. A pointer with the value zeroDotZero normally\n            terminates a functional data path.\n            \n            Setting this to point to a target that does not exist results in\n            an inconsistentValue error.  If the row pointed to is removed or\n            becomes inactive by other means, the treatment is as if this\n            attribute contains a value of zeroDotZero.",
                            "x-yang-type": "snmpv2-tc:RowPointer"
                          },
                          "diffServDataPathStorage": {
                            "type": "string",
                            "description": "The storage type for this conceptual row.  Conceptual rows\n            having the value 'permanent' need not allow write-access to any\n            columnar objects in the row.",
                            "x-yang-type": "snmpv2-tc:StorageType"
                          },
                          "diffServDataPathStatus": {
                            "type": "string",
                            "description": "The status of this conceptual row. All writable objects in this\n            row may be modified at any time.",
                            "x-yang-type": "snmpv2-tc:RowStatus"
                          }
                        }
                      }
                    }
                  }
                },
                "example": {
                  "DIFFSERV-MIB:diffServDataPathTable": {
                    "diffServDataPathEntry": [
                      {
                        "ifIndex": "1",
                        "diffServDataPathIfDirection": "example-string",
                        "diffServDataPathStart": "example-string",
                        "diffServDataPathStorage": "example-string",
                        "diffServDataPathStatus": "up(1)"
                      },
                      {
                        "ifIndex": "2",
                        "diffServDataPathIfDirection": "example-string",
                        "diffServDataPathStart": "example-string",
                        "diffServDataPathStorage": "example-string",
                        "diffServDataPathStatus": "up(1)"
                      },
                      {
                        "ifIndex": "3",
                        "diffServDataPathIfDirection": "example-string",
                        "diffServDataPathStart": "example-string",
                        "diffServDataPathStorage": "example-string",
                        "diffServDataPathStatus": "up(1)"
                      }
                    ]
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-diffServDataPathTable",
        "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": "/diffServDataPathTable",
      "x-restconf-kind": "container"
    },
    "/data/DIFFSERV-MIB:diffServDataPathTable/diffServDataPathEntry": {
      "get": {
        "summary": "Get diffServDataPathEntry list",
        "description": "Retrieve list of diffServDataPathEntry entries from MIB",
        "tags": [
          "DIFFSERV-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "diffServDataPathEntry",
                  "items": {
                    "type": "object",
                    "properties": {
                      "ifIndex": {
                        "type": "string",
                        "description": "ifIndex",
                        "x-yang-type": "leafref"
                      },
                      "diffServDataPathIfDirection": {
                        "type": "string",
                        "description": "IfDirection specifies whether the reception or transmission path\n            for this interface is in view.",
                        "x-yang-type": "DIFFSERV-MIB:IfDirection"
                      },
                      "diffServDataPathStart": {
                        "type": "string",
                        "description": "This selects the first Differentiated Services Functional Data\n            Path Element to handle traffic for this data path. This\n            RowPointer should point to an instance of one of:\n              diffServClfrEntry\n              diffServMeterEntry\n              diffServActionEntry\n              diffServAlgDropEntry\n              diffServQEntry\n            \n            A value of zeroDotZero in this attribute indicates that no\n            Differentiated Services treatment is performed on traffic of this\n            data path. A pointer with the value zeroDotZero normally\n            terminates a functional data path.\n            \n            Setting this to point to a target that does not exist results in\n            an inconsistentValue error.  If the row pointed to is removed or\n            becomes inactive by other means, the treatment is as if this\n            attribute contains a value of zeroDotZero.",
                        "x-yang-type": "snmpv2-tc:RowPointer"
                      },
                      "diffServDataPathStorage": {
                        "type": "string",
                        "description": "The storage type for this conceptual row.  Conceptual rows\n            having the value 'permanent' need not allow write-access to any\n            columnar objects in the row.",
                        "x-yang-type": "snmpv2-tc:StorageType"
                      },
                      "diffServDataPathStatus": {
                        "type": "string",
                        "description": "The status of this conceptual row. All writable objects in this\n            row may be modified at any time.",
                        "x-yang-type": "snmpv2-tc:RowStatus"
                      }
                    }
                  }
                },
                "example": {
                  "DIFFSERV-MIB:diffServDataPathEntry": [
                    {
                      "ifIndex": "example-string",
                      "diffServDataPathIfDirection": "example-string",
                      "diffServDataPathStart": "example-string",
                      "diffServDataPathStorage": "example-string",
                      "diffServDataPathStatus": "up(1)"
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-diffServDataPathEntry",
        "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": "/diffServDataPathTable/diffServDataPathEntry",
      "x-restconf-kind": "container"
    },
    "/data/DIFFSERV-MIB:diffServClfrTable": {
      "get": {
        "summary": "Get diffServClfrTable data",
        "description": "Retrieve diffServClfrTable operational data from MIB",
        "tags": [
          "DIFFSERV-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "description": "diffServClfrTable",
                  "properties": {
                    "diffServClfrEntry": {
                      "type": "array",
                      "description": "An entry in the classifier table describes a single classifier.\n          All classifier elements belonging to the same classifier use the\n          classifier's diffServClfrId as part of their index.",
                      "items": {
                        "type": "object",
                        "properties": {
                          "diffServClfrId": {
                            "type": "string",
                            "description": "An index that enumerates the classifier entries.  Managers\n            should obtain new values for row creation in this table by\n            reading diffServClfrNextFree.",
                            "x-yang-type": "DIFFSERV-MIB:IndexInteger"
                          },
                          "diffServClfrStorage": {
                            "type": "string",
                            "description": "The storage type for this conceptual row.  Conceptual rows\n            having the value 'permanent' need not allow write-access to any\n            columnar objects in the row.",
                            "x-yang-type": "snmpv2-tc:StorageType"
                          },
                          "diffServClfrStatus": {
                            "type": "string",
                            "description": "The status of this conceptual row. All writable objects in this\n            row may be modified at any time. Setting this variable to\n            'destroy' when the MIB contains one or more RowPointers pointing\n            to it results in destruction being delayed until the row is no\n            longer used.",
                            "x-yang-type": "snmpv2-tc:RowStatus"
                          }
                        }
                      }
                    }
                  }
                },
                "example": {
                  "DIFFSERV-MIB:diffServClfrTable": {
                    "diffServClfrEntry": [
                      {
                        "diffServClfrId": "example-string",
                        "diffServClfrStorage": "example-string",
                        "diffServClfrStatus": "up(1)"
                      },
                      {
                        "diffServClfrId": "example-string",
                        "diffServClfrStorage": "example-string",
                        "diffServClfrStatus": "up(1)"
                      },
                      {
                        "diffServClfrId": "example-string",
                        "diffServClfrStorage": "example-string",
                        "diffServClfrStatus": "up(1)"
                      }
                    ]
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-diffServClfrTable",
        "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": "/diffServClfrTable",
      "x-restconf-kind": "container"
    },
    "/data/DIFFSERV-MIB:diffServClfrTable/diffServClfrEntry": {
      "get": {
        "summary": "Get diffServClfrEntry list",
        "description": "Retrieve list of diffServClfrEntry entries from MIB",
        "tags": [
          "DIFFSERV-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "An entry in the classifier table describes a single classifier.\n          All classifier elements belonging to the same classifier use the\n          classifier's diffServClfrId as part of their index.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "diffServClfrId": {
                        "type": "string",
                        "description": "An index that enumerates the classifier entries.  Managers\n            should obtain new values for row creation in this table by\n            reading diffServClfrNextFree.",
                        "x-yang-type": "DIFFSERV-MIB:IndexInteger"
                      },
                      "diffServClfrStorage": {
                        "type": "string",
                        "description": "The storage type for this conceptual row.  Conceptual rows\n            having the value 'permanent' need not allow write-access to any\n            columnar objects in the row.",
                        "x-yang-type": "snmpv2-tc:StorageType"
                      },
                      "diffServClfrStatus": {
                        "type": "string",
                        "description": "The status of this conceptual row. All writable objects in this\n            row may be modified at any time. Setting this variable to\n            'destroy' when the MIB contains one or more RowPointers pointing\n            to it results in destruction being delayed until the row is no\n            longer used.",
                        "x-yang-type": "snmpv2-tc:RowStatus"
                      }
                    }
                  }
                },
                "example": {
                  "DIFFSERV-MIB:diffServClfrEntry": [
                    {
                      "diffServClfrId": "example-string",
                      "diffServClfrStorage": "example-string",
                      "diffServClfrStatus": "up(1)"
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-diffServClfrEntry",
        "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": "/diffServClfrTable/diffServClfrEntry",
      "x-restconf-kind": "container"
    },
    "/data/DIFFSERV-MIB:diffServClfrTable/diffServClfrEntry={diffServClfrId}": {
      "get": {
        "summary": "Get diffServClfrEntry entry",
        "description": "Retrieve specific diffServClfrEntry entry by key from MIB",
        "tags": [
          "DIFFSERV-MIB"
        ],
        "parameters": [
          {
            "name": "diffServClfrId",
            "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": {
                    "diffServClfrId": {
                      "type": "string",
                      "description": "An index that enumerates the classifier entries.  Managers\n            should obtain new values for row creation in this table by\n            reading diffServClfrNextFree.",
                      "x-yang-type": "DIFFSERV-MIB:IndexInteger"
                    },
                    "diffServClfrStorage": {
                      "type": "string",
                      "description": "The storage type for this conceptual row.  Conceptual rows\n            having the value 'permanent' need not allow write-access to any\n            columnar objects in the row.",
                      "x-yang-type": "snmpv2-tc:StorageType"
                    },
                    "diffServClfrStatus": {
                      "type": "string",
                      "description": "The status of this conceptual row. All writable objects in this\n            row may be modified at any time. Setting this variable to\n            'destroy' when the MIB contains one or more RowPointers pointing\n            to it results in destruction being delayed until the row is no\n            longer used.",
                      "x-yang-type": "snmpv2-tc:RowStatus"
                    }
                  }
                },
                "example": {
                  "DIFFSERV-MIB:diffServClfrEntry": {
                    "diffServClfrId": "example-string",
                    "diffServClfrStorage": "example-string",
                    "diffServClfrStatus": "up(1)"
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-diffServClfrEntry-2"
      },
      "x-yang-path": "/diffServClfrTable/diffServClfrEntry={diffServClfrId}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "diffServClfrId"
      ]
    },
    "/data/DIFFSERV-MIB:diffServClfrElementTable": {
      "get": {
        "summary": "Get diffServClfrElementTable data",
        "description": "Retrieve diffServClfrElementTable operational data from MIB",
        "tags": [
          "DIFFSERV-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "description": "diffServClfrElementTable",
                  "properties": {
                    "diffServClfrElementEntry": {
                      "type": "array",
                      "description": "An entry in the classifier element table describes a single\n          element of the classifier.",
                      "items": {
                        "type": "object",
                        "properties": {
                          "diffServClfrId": {
                            "type": "string",
                            "description": "diffServClfrId",
                            "x-yang-type": "leafref"
                          },
                          "diffServClfrElementId": {
                            "type": "string",
                            "description": "An index that enumerates the Classifier Element entries.\n            Managers obtain new values for row creation in this table by\n            reading diffServClfrElementNextFree.",
                            "x-yang-type": "DIFFSERV-MIB:IndexInteger"
                          },
                          "diffServClfrElementPrecedence": {
                            "type": "integer",
                            "description": "The relative order in which classifier elements are applied:\n            higher numbers represent classifier element with higher\n            precedence.  Classifier elements with the same order must be\n            unambiguous i.e. they must define non-overlapping patterns, and\n            are considered to be applied simultaneously to the traffic\n            stream. Classifier elements with different order may overlap in\n            their filters:  the classifier element with the highest order\n            that matches is taken.\n            \n            On a given interface, there must be a complete classifier in\n            place at all times in the ingress direction.  This means one or\n            more filters must match any possible pattern. There is no such\n            \n            \n            \n            requirement in the egress direction.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "diffServClfrElementNext": {
                            "type": "string",
                            "description": "This attribute provides one branch of the fan-out functionality\n            of a classifier described in the Informal Differentiated Services\n            Model section 4.1.\n            \n            This selects the next Differentiated Services Functional Data\n            Path Element to handle traffic for this data path. This\n            RowPointer should point to an instance of one of:\n              diffServClfrEntry\n              diffServMeterEntry\n              diffServActionEntry\n              diffServAlgDropEntry\n              diffServQEntry\n            \n            A value of zeroDotZero in this attribute indicates no further\n            Differentiated Services treatment is performed on traffic of this\n            data path. The use of zeroDotZero is the normal usage for the\n            last functional data path element of the current data path.\n            \n            Setting this to point to a target that does not exist results in\n            an inconsistentValue error.  If the row pointed to is removed or\n            becomes inactive by other means, the treatment is as if this\n            attribute contains a value of zeroDotZero.",
                            "x-yang-type": "snmpv2-tc:RowPointer"
                          },
                          "diffServClfrElementSpecific": {
                            "type": "string",
                            "description": "A pointer to a valid entry in another table, filter table, that\n            describes the applicable classification parameters, e.g. an entry\n            in diffServMultiFieldClfrTable.\n            \n            The value zeroDotZero is interpreted to match anything not\n            matched by another classifier element - only one such entry may\n            exist for each classifier.\n            \n            Setting this to point to a target that does not exist results in\n            an inconsistentValue error.  If the row pointed to is removed or\n            \n            \n            \n            becomes inactive by other means, the element is ignored.",
                            "x-yang-type": "snmpv2-tc:RowPointer"
                          },
                          "diffServClfrElementStorage": {
                            "type": "string",
                            "description": "The storage type for this conceptual row.  Conceptual rows\n            having the value 'permanent' need not allow write-access to any\n            columnar objects in the row.",
                            "x-yang-type": "snmpv2-tc:StorageType"
                          },
                          "diffServClfrElementStatus": {
                            "type": "string",
                            "description": "The status of this conceptual row. All writable objects in this\n            row may be modified at any time. Setting this variable to\n            'destroy' when the MIB contains one or more RowPointers pointing\n            to it results in destruction being delayed until the row is no\n            longer used.",
                            "x-yang-type": "snmpv2-tc:RowStatus"
                          }
                        }
                      }
                    }
                  }
                },
                "example": {
                  "DIFFSERV-MIB:diffServClfrElementTable": {
                    "diffServClfrElementEntry": [
                      {
                        "diffServClfrId": "example-string",
                        "diffServClfrElementId": "example-string",
                        "diffServClfrElementPrecedence": 0,
                        "diffServClfrElementNext": "example-string",
                        "diffServClfrElementSpecific": "example-string",
                        "diffServClfrElementStorage": "example-string",
                        "diffServClfrElementStatus": "up(1)"
                      },
                      {
                        "diffServClfrId": "example-string",
                        "diffServClfrElementId": "example-string",
                        "diffServClfrElementPrecedence": 0,
                        "diffServClfrElementNext": "example-string",
                        "diffServClfrElementSpecific": "example-string",
                        "diffServClfrElementStorage": "example-string",
                        "diffServClfrElementStatus": "up(1)"
                      },
                      {
                        "diffServClfrId": "example-string",
                        "diffServClfrElementId": "example-string",
                        "diffServClfrElementPrecedence": 0,
                        "diffServClfrElementNext": "example-string",
                        "diffServClfrElementSpecific": "example-string",
                        "diffServClfrElementStorage": "example-string",
                        "diffServClfrElementStatus": "up(1)"
                      }
                    ]
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-diffServClfrElementTable",
        "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": "/diffServClfrElementTable",
      "x-restconf-kind": "container"
    },
    "/data/DIFFSERV-MIB:diffServClfrElementTable/diffServClfrElementEntry": {
      "get": {
        "summary": "Get diffServClfrElementEntry list",
        "description": "Retrieve list of diffServClfrElementEntry entries from MIB",
        "tags": [
          "DIFFSERV-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "An entry in the classifier element table describes a single\n          element of the classifier.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "diffServClfrId": {
                        "type": "string",
                        "description": "diffServClfrId",
                        "x-yang-type": "leafref"
                      },
                      "diffServClfrElementId": {
                        "type": "string",
                        "description": "An index that enumerates the Classifier Element entries.\n            Managers obtain new values for row creation in this table by\n            reading diffServClfrElementNextFree.",
                        "x-yang-type": "DIFFSERV-MIB:IndexInteger"
                      },
                      "diffServClfrElementPrecedence": {
                        "type": "integer",
                        "description": "The relative order in which classifier elements are applied:\n            higher numbers represent classifier element with higher\n            precedence.  Classifier elements with the same order must be\n            unambiguous i.e. they must define non-overlapping patterns, and\n            are considered to be applied simultaneously to the traffic\n            stream. Classifier elements with different order may overlap in\n            their filters:  the classifier element with the highest order\n            that matches is taken.\n            \n            On a given interface, there must be a complete classifier in\n            place at all times in the ingress direction.  This means one or\n            more filters must match any possible pattern. There is no such\n            \n            \n            \n            requirement in the egress direction.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "diffServClfrElementNext": {
                        "type": "string",
                        "description": "This attribute provides one branch of the fan-out functionality\n            of a classifier described in the Informal Differentiated Services\n            Model section 4.1.\n            \n            This selects the next Differentiated Services Functional Data\n            Path Element to handle traffic for this data path. This\n            RowPointer should point to an instance of one of:\n              diffServClfrEntry\n              diffServMeterEntry\n              diffServActionEntry\n              diffServAlgDropEntry\n              diffServQEntry\n            \n            A value of zeroDotZero in this attribute indicates no further\n            Differentiated Services treatment is performed on traffic of this\n            data path. The use of zeroDotZero is the normal usage for the\n            last functional data path element of the current data path.\n            \n            Setting this to point to a target that does not exist results in\n            an inconsistentValue error.  If the row pointed to is removed or\n            becomes inactive by other means, the treatment is as if this\n            attribute contains a value of zeroDotZero.",
                        "x-yang-type": "snmpv2-tc:RowPointer"
                      },
                      "diffServClfrElementSpecific": {
                        "type": "string",
                        "description": "A pointer to a valid entry in another table, filter table, that\n            describes the applicable classification parameters, e.g. an entry\n            in diffServMultiFieldClfrTable.\n            \n            The value zeroDotZero is interpreted to match anything not\n            matched by another classifier element - only one such entry may\n            exist for each classifier.\n            \n            Setting this to point to a target that does not exist results in\n            an inconsistentValue error.  If the row pointed to is removed or\n            \n            \n            \n            becomes inactive by other means, the element is ignored.",
                        "x-yang-type": "snmpv2-tc:RowPointer"
                      },
                      "diffServClfrElementStorage": {
                        "type": "string",
                        "description": "The storage type for this conceptual row.  Conceptual rows\n            having the value 'permanent' need not allow write-access to any\n            columnar objects in the row.",
                        "x-yang-type": "snmpv2-tc:StorageType"
                      },
                      "diffServClfrElementStatus": {
                        "type": "string",
                        "description": "The status of this conceptual row. All writable objects in this\n            row may be modified at any time. Setting this variable to\n            'destroy' when the MIB contains one or more RowPointers pointing\n            to it results in destruction being delayed until the row is no\n            longer used.",
                        "x-yang-type": "snmpv2-tc:RowStatus"
                      }
                    }
                  }
                },
                "example": {
                  "DIFFSERV-MIB:diffServClfrElementEntry": [
                    {
                      "diffServClfrId": "example-string",
                      "diffServClfrElementId": "example-string",
                      "diffServClfrElementPrecedence": 0,
                      "diffServClfrElementNext": "example-string",
                      "diffServClfrElementSpecific": "example-string",
                      "diffServClfrElementStorage": "example-string",
                      "diffServClfrElementStatus": "up(1)"
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-diffServClfrElementEntry",
        "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": "/diffServClfrElementTable/diffServClfrElementEntry",
      "x-restconf-kind": "container"
    },
    "/data/DIFFSERV-MIB:diffServMultiFieldClfrTable": {
      "get": {
        "summary": "Get diffServMultiFieldClfrTable data",
        "description": "Retrieve diffServMultiFieldClfrTable operational data from MIB",
        "tags": [
          "DIFFSERV-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "description": "A table of IP Multi-field Classifier filter entries that a\n        \n        \n        \n        system may use to identify IP traffic.",
                  "properties": {
                    "diffServMultiFieldClfrEntry": {
                      "type": "array",
                      "description": "An IP Multi-field Classifier entry describes a single filter.",
                      "items": {
                        "type": "object",
                        "properties": {
                          "diffServMultiFieldClfrId": {
                            "type": "string",
                            "description": "An index that enumerates the MultiField Classifier filter\n            entries.  Managers obtain new values for row creation in this\n            table by reading diffServMultiFieldClfrNextFree.",
                            "x-yang-type": "DIFFSERV-MIB:IndexInteger"
                          },
                          "diffServMultiFieldClfrAddrType": {
                            "type": "string",
                            "description": "The type of IP address used by this classifier entry.  While\n            other types of addresses are defined in the InetAddressType\n            \n            \n            \n            textual convention, and DNS names, a classifier can only look at\n            packets on the wire. Therefore, this object is limited to IPv4\n            and IPv6 addresses.",
                            "x-yang-type": "inet-address:InetAddressType"
                          },
                          "diffServMultiFieldClfrDstAddr": {
                            "type": "string",
                            "description": "The IP address to match against the packet's destination IP\n            address. This may not be a DNS name, but may be an IPv4 or IPv6\n            prefix.  diffServMultiFieldClfrDstPrefixLength indicates the\n            number of bits that are relevant.",
                            "x-yang-type": "inet-address:InetAddress"
                          },
                          "diffServMultiFieldClfrDstPrefixLength": {
                            "type": "string",
                            "description": "The length of the CIDR Prefix carried in\n            diffServMultiFieldClfrDstAddr. In IPv4 addresses, a length of 0\n            indicates a match of any address; a length of 32 indicates a\n            match of a single host address, and a length between 0 and 32\n            indicates the use of a CIDR Prefix. IPv6 is similar, except that\n            prefix lengths range from 0..128.",
                            "x-yang-type": "inet-address:InetAddressPrefixLength"
                          },
                          "diffServMultiFieldClfrSrcAddr": {
                            "type": "string",
                            "description": "The IP address to match against the packet's source IP address.\n            This may not be a DNS name, but may be an IPv4 or IPv6 prefix.\n            diffServMultiFieldClfrSrcPrefixLength indicates the number of\n            bits that are relevant.",
                            "x-yang-type": "inet-address:InetAddress"
                          },
                          "diffServMultiFieldClfrSrcPrefixLength": {
                            "type": "string",
                            "description": "The length of the CIDR Prefix carried in\n            diffServMultiFieldClfrSrcAddr. In IPv4 addresses, a length of 0\n            indicates a match of any address; a length of 32 indicates a\n            match of a single host address, and a length between 0 and 32\n            indicates the use of a CIDR Prefix. IPv6 is similar, except that\n            prefix lengths range from 0..128.",
                            "x-yang-type": "inet-address:InetAddressPrefixLength"
                          },
                          "diffServMultiFieldClfrDscp": {
                            "type": "string",
                            "description": "The value that the DSCP in the packet must have to match this\n            entry. A value of -1 indicates that a specific DSCP value has not\n            been defined and thus all DSCP values are considered a match.",
                            "x-yang-type": "diffserv-dscp:DscpOrAny"
                          },
                          "diffServMultiFieldClfrFlowId": {
                            "type": "integer",
                            "description": "The flow identifier in an IPv6 header.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "diffServMultiFieldClfrProtocol": {
                            "type": "integer",
                            "description": "The IP protocol to match against the IPv4 protocol number or the\n            IPv6 Next- Header number in the packet. A value of 255 means\n            match all.  Note the protocol number of 255 is reserved by IANA,\n            and Next-Header number of 0 is used in IPv6.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "diffServMultiFieldClfrDstL4PortMin": {
                            "type": "string",
                            "description": "The minimum value that the layer-4 destination port number in\n            the packet must have in order to match this classifier entry.",
                            "format": "inet:port-number"
                          },
                          "diffServMultiFieldClfrDstL4PortMax": {
                            "type": "string",
                            "description": "The maximum value that the layer-4 destination port number in\n            the packet must have in order to match this classifier entry.\n            This value must be equal to or greater than the value specified\n            for this entry in diffServMultiFieldClfrDstL4PortMin.",
                            "format": "inet:port-number"
                          },
                          "diffServMultiFieldClfrSrcL4PortMin": {
                            "type": "string",
                            "description": "The minimum value that the layer-4 source port number in the\n            packet must have in order to match this classifier entry.",
                            "format": "inet:port-number"
                          },
                          "diffServMultiFieldClfrSrcL4PortMax": {
                            "type": "string",
                            "description": "The maximum value that the layer-4 source port number in the\n            packet must have in order to match this classifier entry. This\n            value must be equal to or greater than the value specified for\n            this entry in diffServMultiFieldClfrSrcL4PortMin.",
                            "format": "inet:port-number"
                          },
                          "diffServMultiFieldClfrStorage": {
                            "type": "string",
                            "description": "The storage type for this conceptual row.  Conceptual rows\n            having the value 'permanent' need not allow write-access to any\n            columnar objects in the row.",
                            "x-yang-type": "snmpv2-tc:StorageType"
                          },
                          "diffServMultiFieldClfrStatus": {
                            "type": "string",
                            "description": "The status of this conceptual row. All writable objects in this\n            row may be modified at any time. Setting this variable to\n            'destroy' when the MIB contains one or more RowPointers pointing\n            to it results in destruction being delayed until the row is no\n            longer used.",
                            "x-yang-type": "snmpv2-tc:RowStatus"
                          }
                        }
                      }
                    }
                  }
                },
                "example": {
                  "DIFFSERV-MIB:diffServMultiFieldClfrTable": {
                    "diffServMultiFieldClfrEntry": [
                      {
                        "diffServMultiFieldClfrId": "example-string",
                        "diffServMultiFieldClfrAddrType": "192.168.1.1",
                        "diffServMultiFieldClfrDstAddr": "192.168.1.1",
                        "diffServMultiFieldClfrDstPrefixLength": "example-string",
                        "diffServMultiFieldClfrSrcAddr": "192.168.1.1",
                        "diffServMultiFieldClfrSrcPrefixLength": "example-string",
                        "diffServMultiFieldClfrDscp": "example-string",
                        "diffServMultiFieldClfrFlowId": 0,
                        "diffServMultiFieldClfrProtocol": 0,
                        "diffServMultiFieldClfrDstL4PortMin": "example-string",
                        "diffServMultiFieldClfrDstL4PortMax": "example-string",
                        "diffServMultiFieldClfrSrcL4PortMin": "example-string",
                        "diffServMultiFieldClfrSrcL4PortMax": "example-string",
                        "diffServMultiFieldClfrStorage": "example-string",
                        "diffServMultiFieldClfrStatus": "up(1)"
                      },
                      {
                        "diffServMultiFieldClfrId": "example-string",
                        "diffServMultiFieldClfrAddrType": "192.168.1.1",
                        "diffServMultiFieldClfrDstAddr": "192.168.1.1",
                        "diffServMultiFieldClfrDstPrefixLength": "example-string",
                        "diffServMultiFieldClfrSrcAddr": "192.168.1.1",
                        "diffServMultiFieldClfrSrcPrefixLength": "example-string",
                        "diffServMultiFieldClfrDscp": "example-string",
                        "diffServMultiFieldClfrFlowId": 0,
                        "diffServMultiFieldClfrProtocol": 0,
                        "diffServMultiFieldClfrDstL4PortMin": "example-string",
                        "diffServMultiFieldClfrDstL4PortMax": "example-string",
                        "diffServMultiFieldClfrSrcL4PortMin": "example-string",
                        "diffServMultiFieldClfrSrcL4PortMax": "example-string",
                        "diffServMultiFieldClfrStorage": "example-string",
                        "diffServMultiFieldClfrStatus": "up(1)"
                      },
                      {
                        "diffServMultiFieldClfrId": "example-string",
                        "diffServMultiFieldClfrAddrType": "192.168.1.1",
                        "diffServMultiFieldClfrDstAddr": "192.168.1.1",
                        "diffServMultiFieldClfrDstPrefixLength": "example-string",
                        "diffServMultiFieldClfrSrcAddr": "192.168.1.1",
                        "diffServMultiFieldClfrSrcPrefixLength": "example-string",
                        "diffServMultiFieldClfrDscp": "example-string",
                        "diffServMultiFieldClfrFlowId": 0,
                        "diffServMultiFieldClfrProtocol": 0,
                        "diffServMultiFieldClfrDstL4PortMin": "example-string",
                        "diffServMultiFieldClfrDstL4PortMax": "example-string",
                        "diffServMultiFieldClfrSrcL4PortMin": "example-string",
                        "diffServMultiFieldClfrSrcL4PortMax": "example-string",
                        "diffServMultiFieldClfrStorage": "example-string",
                        "diffServMultiFieldClfrStatus": "up(1)"
                      }
                    ]
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-diffServMultiFieldClfrTable",
        "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": "/diffServMultiFieldClfrTable",
      "x-restconf-kind": "container"
    },
    "/data/DIFFSERV-MIB:diffServMultiFieldClfrTable/diffServMultiFieldClfrEntry": {
      "get": {
        "summary": "Get diffServMultiFieldClfrEntry list",
        "description": "Retrieve list of diffServMultiFieldClfrEntry entries from MIB",
        "tags": [
          "DIFFSERV-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "An IP Multi-field Classifier entry describes a single filter.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "diffServMultiFieldClfrId": {
                        "type": "string",
                        "description": "An index that enumerates the MultiField Classifier filter\n            entries.  Managers obtain new values for row creation in this\n            table by reading diffServMultiFieldClfrNextFree.",
                        "x-yang-type": "DIFFSERV-MIB:IndexInteger"
                      },
                      "diffServMultiFieldClfrAddrType": {
                        "type": "string",
                        "description": "The type of IP address used by this classifier entry.  While\n            other types of addresses are defined in the InetAddressType\n            \n            \n            \n            textual convention, and DNS names, a classifier can only look at\n            packets on the wire. Therefore, this object is limited to IPv4\n            and IPv6 addresses.",
                        "x-yang-type": "inet-address:InetAddressType"
                      },
                      "diffServMultiFieldClfrDstAddr": {
                        "type": "string",
                        "description": "The IP address to match against the packet's destination IP\n            address. This may not be a DNS name, but may be an IPv4 or IPv6\n            prefix.  diffServMultiFieldClfrDstPrefixLength indicates the\n            number of bits that are relevant.",
                        "x-yang-type": "inet-address:InetAddress"
                      },
                      "diffServMultiFieldClfrDstPrefixLength": {
                        "type": "string",
                        "description": "The length of the CIDR Prefix carried in\n            diffServMultiFieldClfrDstAddr. In IPv4 addresses, a length of 0\n            indicates a match of any address; a length of 32 indicates a\n            match of a single host address, and a length between 0 and 32\n            indicates the use of a CIDR Prefix. IPv6 is similar, except that\n            prefix lengths range from 0..128.",
                        "x-yang-type": "inet-address:InetAddressPrefixLength"
                      },
                      "diffServMultiFieldClfrSrcAddr": {
                        "type": "string",
                        "description": "The IP address to match against the packet's source IP address.\n            This may not be a DNS name, but may be an IPv4 or IPv6 prefix.\n            diffServMultiFieldClfrSrcPrefixLength indicates the number of\n            bits that are relevant.",
                        "x-yang-type": "inet-address:InetAddress"
                      },
                      "diffServMultiFieldClfrSrcPrefixLength": {
                        "type": "string",
                        "description": "The length of the CIDR Prefix carried in\n            diffServMultiFieldClfrSrcAddr. In IPv4 addresses, a length of 0\n            indicates a match of any address; a length of 32 indicates a\n            match of a single host address, and a length between 0 and 32\n            indicates the use of a CIDR Prefix. IPv6 is similar, except that\n            prefix lengths range from 0..128.",
                        "x-yang-type": "inet-address:InetAddressPrefixLength"
                      },
                      "diffServMultiFieldClfrDscp": {
                        "type": "string",
                        "description": "The value that the DSCP in the packet must have to match this\n            entry. A value of -1 indicates that a specific DSCP value has not\n            been defined and thus all DSCP values are considered a match.",
                        "x-yang-type": "diffserv-dscp:DscpOrAny"
                      },
                      "diffServMultiFieldClfrFlowId": {
                        "type": "integer",
                        "description": "The flow identifier in an IPv6 header.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "diffServMultiFieldClfrProtocol": {
                        "type": "integer",
                        "description": "The IP protocol to match against the IPv4 protocol number or the\n            IPv6 Next- Header number in the packet. A value of 255 means\n            match all.  Note the protocol number of 255 is reserved by IANA,\n            and Next-Header number of 0 is used in IPv6.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "diffServMultiFieldClfrDstL4PortMin": {
                        "type": "string",
                        "description": "The minimum value that the layer-4 destination port number in\n            the packet must have in order to match this classifier entry.",
                        "format": "inet:port-number"
                      },
                      "diffServMultiFieldClfrDstL4PortMax": {
                        "type": "string",
                        "description": "The maximum value that the layer-4 destination port number in\n            the packet must have in order to match this classifier entry.\n            This value must be equal to or greater than the value specified\n            for this entry in diffServMultiFieldClfrDstL4PortMin.",
                        "format": "inet:port-number"
                      },
                      "diffServMultiFieldClfrSrcL4PortMin": {
                        "type": "string",
                        "description": "The minimum value that the layer-4 source port number in the\n            packet must have in order to match this classifier entry.",
                        "format": "inet:port-number"
                      },
                      "diffServMultiFieldClfrSrcL4PortMax": {
                        "type": "string",
                        "description": "The maximum value that the layer-4 source port number in the\n            packet must have in order to match this classifier entry. This\n            value must be equal to or greater than the value specified for\n            this entry in diffServMultiFieldClfrSrcL4PortMin.",
                        "format": "inet:port-number"
                      },
                      "diffServMultiFieldClfrStorage": {
                        "type": "string",
                        "description": "The storage type for this conceptual row.  Conceptual rows\n            having the value 'permanent' need not allow write-access to any\n            columnar objects in the row.",
                        "x-yang-type": "snmpv2-tc:StorageType"
                      },
                      "diffServMultiFieldClfrStatus": {
                        "type": "string",
                        "description": "The status of this conceptual row. All writable objects in this\n            row may be modified at any time. Setting this variable to\n            'destroy' when the MIB contains one or more RowPointers pointing\n            to it results in destruction being delayed until the row is no\n            longer used.",
                        "x-yang-type": "snmpv2-tc:RowStatus"
                      }
                    }
                  }
                },
                "example": {
                  "DIFFSERV-MIB:diffServMultiFieldClfrEntry": [
                    {
                      "diffServMultiFieldClfrId": "example-string",
                      "diffServMultiFieldClfrAddrType": "192.168.1.1",
                      "diffServMultiFieldClfrDstAddr": "192.168.1.1",
                      "diffServMultiFieldClfrDstPrefixLength": "example-string",
                      "diffServMultiFieldClfrSrcAddr": "192.168.1.1",
                      "diffServMultiFieldClfrSrcPrefixLength": "example-string",
                      "diffServMultiFieldClfrDscp": "example-string",
                      "diffServMultiFieldClfrFlowId": 0,
                      "diffServMultiFieldClfrProtocol": 0,
                      "diffServMultiFieldClfrDstL4PortMin": "example-string",
                      "diffServMultiFieldClfrDstL4PortMax": "example-string",
                      "diffServMultiFieldClfrSrcL4PortMin": "example-string",
                      "diffServMultiFieldClfrSrcL4PortMax": "example-string",
                      "diffServMultiFieldClfrStorage": "example-string",
                      "diffServMultiFieldClfrStatus": "up(1)"
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-diffServMultiFieldClfrEntry",
        "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": "/diffServMultiFieldClfrTable/diffServMultiFieldClfrEntry",
      "x-restconf-kind": "container"
    },
    "/data/DIFFSERV-MIB:diffServMultiFieldClfrTable/diffServMultiFieldClfrEntry={diffServMultiFieldClfrId}": {
      "get": {
        "summary": "Get diffServMultiFieldClfrEntry entry",
        "description": "Retrieve specific diffServMultiFieldClfrEntry entry by key from MIB",
        "tags": [
          "DIFFSERV-MIB"
        ],
        "parameters": [
          {
            "name": "diffServMultiFieldClfrId",
            "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": {
                    "diffServMultiFieldClfrId": {
                      "type": "string",
                      "description": "An index that enumerates the MultiField Classifier filter\n            entries.  Managers obtain new values for row creation in this\n            table by reading diffServMultiFieldClfrNextFree.",
                      "x-yang-type": "DIFFSERV-MIB:IndexInteger"
                    },
                    "diffServMultiFieldClfrAddrType": {
                      "type": "string",
                      "description": "The type of IP address used by this classifier entry.  While\n            other types of addresses are defined in the InetAddressType\n            \n            \n            \n            textual convention, and DNS names, a classifier can only look at\n            packets on the wire. Therefore, this object is limited to IPv4\n            and IPv6 addresses.",
                      "x-yang-type": "inet-address:InetAddressType"
                    },
                    "diffServMultiFieldClfrDstAddr": {
                      "type": "string",
                      "description": "The IP address to match against the packet's destination IP\n            address. This may not be a DNS name, but may be an IPv4 or IPv6\n            prefix.  diffServMultiFieldClfrDstPrefixLength indicates the\n            number of bits that are relevant.",
                      "x-yang-type": "inet-address:InetAddress"
                    },
                    "diffServMultiFieldClfrDstPrefixLength": {
                      "type": "string",
                      "description": "The length of the CIDR Prefix carried in\n            diffServMultiFieldClfrDstAddr. In IPv4 addresses, a length of 0\n            indicates a match of any address; a length of 32 indicates a\n            match of a single host address, and a length between 0 and 32\n            indicates the use of a CIDR Prefix. IPv6 is similar, except that\n            prefix lengths range from 0..128.",
                      "x-yang-type": "inet-address:InetAddressPrefixLength"
                    },
                    "diffServMultiFieldClfrSrcAddr": {
                      "type": "string",
                      "description": "The IP address to match against the packet's source IP address.\n            This may not be a DNS name, but may be an IPv4 or IPv6 prefix.\n            diffServMultiFieldClfrSrcPrefixLength indicates the number of\n            bits that are relevant.",
                      "x-yang-type": "inet-address:InetAddress"
                    },
                    "diffServMultiFieldClfrSrcPrefixLength": {
                      "type": "string",
                      "description": "The length of the CIDR Prefix carried in\n            diffServMultiFieldClfrSrcAddr. In IPv4 addresses, a length of 0\n            indicates a match of any address; a length of 32 indicates a\n            match of a single host address, and a length between 0 and 32\n            indicates the use of a CIDR Prefix. IPv6 is similar, except that\n            prefix lengths range from 0..128.",
                      "x-yang-type": "inet-address:InetAddressPrefixLength"
                    },
                    "diffServMultiFieldClfrDscp": {
                      "type": "string",
                      "description": "The value that the DSCP in the packet must have to match this\n            entry. A value of -1 indicates that a specific DSCP value has not\n            been defined and thus all DSCP values are considered a match.",
                      "x-yang-type": "diffserv-dscp:DscpOrAny"
                    },
                    "diffServMultiFieldClfrFlowId": {
                      "type": "integer",
                      "description": "The flow identifier in an IPv6 header.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "diffServMultiFieldClfrProtocol": {
                      "type": "integer",
                      "description": "The IP protocol to match against the IPv4 protocol number or the\n            IPv6 Next- Header number in the packet. A value of 255 means\n            match all.  Note the protocol number of 255 is reserved by IANA,\n            and Next-Header number of 0 is used in IPv6.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "diffServMultiFieldClfrDstL4PortMin": {
                      "type": "string",
                      "description": "The minimum value that the layer-4 destination port number in\n            the packet must have in order to match this classifier entry.",
                      "format": "inet:port-number"
                    },
                    "diffServMultiFieldClfrDstL4PortMax": {
                      "type": "string",
                      "description": "The maximum value that the layer-4 destination port number in\n            the packet must have in order to match this classifier entry.\n            This value must be equal to or greater than the value specified\n            for this entry in diffServMultiFieldClfrDstL4PortMin.",
                      "format": "inet:port-number"
                    },
                    "diffServMultiFieldClfrSrcL4PortMin": {
                      "type": "string",
                      "description": "The minimum value that the layer-4 source port number in the\n            packet must have in order to match this classifier entry.",
                      "format": "inet:port-number"
                    },
                    "diffServMultiFieldClfrSrcL4PortMax": {
                      "type": "string",
                      "description": "The maximum value that the layer-4 source port number in the\n            packet must have in order to match this classifier entry. This\n            value must be equal to or greater than the value specified for\n            this entry in diffServMultiFieldClfrSrcL4PortMin.",
                      "format": "inet:port-number"
                    },
                    "diffServMultiFieldClfrStorage": {
                      "type": "string",
                      "description": "The storage type for this conceptual row.  Conceptual rows\n            having the value 'permanent' need not allow write-access to any\n            columnar objects in the row.",
                      "x-yang-type": "snmpv2-tc:StorageType"
                    },
                    "diffServMultiFieldClfrStatus": {
                      "type": "string",
                      "description": "The status of this conceptual row. All writable objects in this\n            row may be modified at any time. Setting this variable to\n            'destroy' when the MIB contains one or more RowPointers pointing\n            to it results in destruction being delayed until the row is no\n            longer used.",
                      "x-yang-type": "snmpv2-tc:RowStatus"
                    }
                  }
                },
                "example": {
                  "DIFFSERV-MIB:diffServMultiFieldClfrEntry": {
                    "diffServMultiFieldClfrId": "example-string",
                    "diffServMultiFieldClfrAddrType": "192.168.1.1",
                    "diffServMultiFieldClfrDstAddr": "192.168.1.1",
                    "diffServMultiFieldClfrDstPrefixLength": "example-string",
                    "diffServMultiFieldClfrSrcAddr": "192.168.1.1",
                    "diffServMultiFieldClfrSrcPrefixLength": "example-string",
                    "diffServMultiFieldClfrDscp": "example-string",
                    "diffServMultiFieldClfrFlowId": 0,
                    "diffServMultiFieldClfrProtocol": 0,
                    "diffServMultiFieldClfrDstL4PortMin": "example-string",
                    "diffServMultiFieldClfrDstL4PortMax": "example-string",
                    "diffServMultiFieldClfrSrcL4PortMin": "example-string",
                    "diffServMultiFieldClfrSrcL4PortMax": "example-string",
                    "diffServMultiFieldClfrStorage": "example-string",
                    "diffServMultiFieldClfrStatus": "up(1)"
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-diffServMultiFieldClfrEntry-2"
      },
      "x-yang-path": "/diffServMultiFieldClfrTable/diffServMultiFieldClfrEntry={diffServMultiFieldClfrId}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "diffServMultiFieldClfrId"
      ]
    },
    "/data/DIFFSERV-MIB:diffServMeterTable": {
      "get": {
        "summary": "Get diffServMeterTable data",
        "description": "Retrieve diffServMeterTable operational data from MIB",
        "tags": [
          "DIFFSERV-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "description": "diffServMeterTable",
                  "properties": {
                    "diffServMeterEntry": {
                      "type": "array",
                      "description": "An entry in the meter table describes a single conformance level\n          of a meter.",
                      "items": {
                        "type": "object",
                        "properties": {
                          "diffServMeterId": {
                            "type": "string",
                            "description": "An index that enumerates the Meter entries.  Managers obtain new\n            values for row creation in this table by reading\n            diffServMeterNextFree.",
                            "x-yang-type": "DIFFSERV-MIB:IndexInteger"
                          },
                          "diffServMeterSucceedNext": {
                            "type": "string",
                            "description": "If the traffic does conform, this selects the next\n            Differentiated Services Functional Data Path element to handle\n            traffic for this data path. This RowPointer should point to an\n            instance of one of:\n              diffServClfrEntry\n              diffServMeterEntry\n              diffServActionEntry\n              diffServAlgDropEntry\n              diffServQEntry\n            \n            A value of zeroDotZero in this attribute indicates that no\n            further Differentiated Services treatment is performed on traffic\n            of this data path. The use of zeroDotZero is the normal usage for\n            the last functional data path element of the current data path.\n            \n            Setting this to point to a target that does not exist results in\n            an inconsistentValue error.  If the row pointed to is removed or\n            becomes inactive by other means, the treatment is as if this\n            attribute contains a value of zeroDotZero.",
                            "x-yang-type": "snmpv2-tc:RowPointer"
                          },
                          "diffServMeterFailNext": {
                            "type": "string",
                            "description": "If the traffic does not conform, this selects the next\n            Differentiated Services Functional Data Path element to handle\n            traffic for this data path. This RowPointer should point to an\n            instance of one of:\n              diffServClfrEntry\n              diffServMeterEntry\n            \n            \n            \n              diffServActionEntry\n              diffServAlgDropEntry\n              diffServQEntry\n            \n            A value of zeroDotZero in this attribute indicates no further\n            Differentiated Services treatment is performed on traffic of this\n            data path. The use of zeroDotZero is the normal usage for the\n            last functional data path element of the current data path.\n            \n            Setting this to point to a target that does not exist results in\n            an inconsistentValue error.  If the row pointed to is removed or\n            becomes inactive by other means, the treatment is as if this\n            attribute contains a value of zeroDotZero.",
                            "x-yang-type": "snmpv2-tc:RowPointer"
                          },
                          "diffServMeterSpecific": {
                            "type": "string",
                            "description": "This indicates the behavior of the meter by pointing to an entry\n            containing detailed parameters. Note that entries in that\n            specific table must be managed explicitly.\n            \n            For example, diffServMeterSpecific may point to an entry in\n            diffServTBParamTable, which contains an instance of a single set\n            of Token Bucket parameters.\n            \n            Setting this to point to a target that does not exist results in\n            an inconsistentValue error.  If the row pointed to is removed or\n            becomes inactive by other means, the meter always succeeds.",
                            "x-yang-type": "snmpv2-tc:RowPointer"
                          },
                          "diffServMeterStorage": {
                            "type": "string",
                            "description": "The storage type for this conceptual row.  Conceptual rows\n            having the value 'permanent' need not allow write-access to any\n            columnar objects in the row.",
                            "x-yang-type": "snmpv2-tc:StorageType"
                          },
                          "diffServMeterStatus": {
                            "type": "string",
                            "description": "The status of this conceptual row. All writable objects in this\n            row may be modified at any time. Setting this variable to\n            'destroy' when the MIB contains one or more RowPointers pointing\n            to it results in destruction being delayed until the row is no\n            longer used.",
                            "x-yang-type": "snmpv2-tc:RowStatus"
                          }
                        }
                      }
                    }
                  }
                },
                "example": {
                  "DIFFSERV-MIB:diffServMeterTable": {
                    "diffServMeterEntry": [
                      {
                        "diffServMeterId": "example-string",
                        "diffServMeterSucceedNext": "example-string",
                        "diffServMeterFailNext": "example-string",
                        "diffServMeterSpecific": "example-string",
                        "diffServMeterStorage": "example-string",
                        "diffServMeterStatus": "up(1)"
                      },
                      {
                        "diffServMeterId": "example-string",
                        "diffServMeterSucceedNext": "example-string",
                        "diffServMeterFailNext": "example-string",
                        "diffServMeterSpecific": "example-string",
                        "diffServMeterStorage": "example-string",
                        "diffServMeterStatus": "up(1)"
                      },
                      {
                        "diffServMeterId": "example-string",
                        "diffServMeterSucceedNext": "example-string",
                        "diffServMeterFailNext": "example-string",
                        "diffServMeterSpecific": "example-string",
                        "diffServMeterStorage": "example-string",
                        "diffServMeterStatus": "up(1)"
                      }
                    ]
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-diffServMeterTable",
        "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": "/diffServMeterTable",
      "x-restconf-kind": "container"
    },
    "/data/DIFFSERV-MIB:diffServMeterTable/diffServMeterEntry": {
      "get": {
        "summary": "Get diffServMeterEntry list",
        "description": "Retrieve list of diffServMeterEntry entries from MIB",
        "tags": [
          "DIFFSERV-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "An entry in the meter table describes a single conformance level\n          of a meter.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "diffServMeterId": {
                        "type": "string",
                        "description": "An index that enumerates the Meter entries.  Managers obtain new\n            values for row creation in this table by reading\n            diffServMeterNextFree.",
                        "x-yang-type": "DIFFSERV-MIB:IndexInteger"
                      },
                      "diffServMeterSucceedNext": {
                        "type": "string",
                        "description": "If the traffic does conform, this selects the next\n            Differentiated Services Functional Data Path element to handle\n            traffic for this data path. This RowPointer should point to an\n            instance of one of:\n              diffServClfrEntry\n              diffServMeterEntry\n              diffServActionEntry\n              diffServAlgDropEntry\n              diffServQEntry\n            \n            A value of zeroDotZero in this attribute indicates that no\n            further Differentiated Services treatment is performed on traffic\n            of this data path. The use of zeroDotZero is the normal usage for\n            the last functional data path element of the current data path.\n            \n            Setting this to point to a target that does not exist results in\n            an inconsistentValue error.  If the row pointed to is removed or\n            becomes inactive by other means, the treatment is as if this\n            attribute contains a value of zeroDotZero.",
                        "x-yang-type": "snmpv2-tc:RowPointer"
                      },
                      "diffServMeterFailNext": {
                        "type": "string",
                        "description": "If the traffic does not conform, this selects the next\n            Differentiated Services Functional Data Path element to handle\n            traffic for this data path. This RowPointer should point to an\n            instance of one of:\n              diffServClfrEntry\n              diffServMeterEntry\n            \n            \n            \n              diffServActionEntry\n              diffServAlgDropEntry\n              diffServQEntry\n            \n            A value of zeroDotZero in this attribute indicates no further\n            Differentiated Services treatment is performed on traffic of this\n            data path. The use of zeroDotZero is the normal usage for the\n            last functional data path element of the current data path.\n            \n            Setting this to point to a target that does not exist results in\n            an inconsistentValue error.  If the row pointed to is removed or\n            becomes inactive by other means, the treatment is as if this\n            attribute contains a value of zeroDotZero.",
                        "x-yang-type": "snmpv2-tc:RowPointer"
                      },
                      "diffServMeterSpecific": {
                        "type": "string",
                        "description": "This indicates the behavior of the meter by pointing to an entry\n            containing detailed parameters. Note that entries in that\n            specific table must be managed explicitly.\n            \n            For example, diffServMeterSpecific may point to an entry in\n            diffServTBParamTable, which contains an instance of a single set\n            of Token Bucket parameters.\n            \n            Setting this to point to a target that does not exist results in\n            an inconsistentValue error.  If the row pointed to is removed or\n            becomes inactive by other means, the meter always succeeds.",
                        "x-yang-type": "snmpv2-tc:RowPointer"
                      },
                      "diffServMeterStorage": {
                        "type": "string",
                        "description": "The storage type for this conceptual row.  Conceptual rows\n            having the value 'permanent' need not allow write-access to any\n            columnar objects in the row.",
                        "x-yang-type": "snmpv2-tc:StorageType"
                      },
                      "diffServMeterStatus": {
                        "type": "string",
                        "description": "The status of this conceptual row. All writable objects in this\n            row may be modified at any time. Setting this variable to\n            'destroy' when the MIB contains one or more RowPointers pointing\n            to it results in destruction being delayed until the row is no\n            longer used.",
                        "x-yang-type": "snmpv2-tc:RowStatus"
                      }
                    }
                  }
                },
                "example": {
                  "DIFFSERV-MIB:diffServMeterEntry": [
                    {
                      "diffServMeterId": "example-string",
                      "diffServMeterSucceedNext": "example-string",
                      "diffServMeterFailNext": "example-string",
                      "diffServMeterSpecific": "example-string",
                      "diffServMeterStorage": "example-string",
                      "diffServMeterStatus": "up(1)"
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-diffServMeterEntry",
        "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": "/diffServMeterTable/diffServMeterEntry",
      "x-restconf-kind": "container"
    },
    "/data/DIFFSERV-MIB:diffServMeterTable/diffServMeterEntry={diffServMeterId}": {
      "get": {
        "summary": "Get diffServMeterEntry entry",
        "description": "Retrieve specific diffServMeterEntry entry by key from MIB",
        "tags": [
          "DIFFSERV-MIB"
        ],
        "parameters": [
          {
            "name": "diffServMeterId",
            "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": {
                    "diffServMeterId": {
                      "type": "string",
                      "description": "An index that enumerates the Meter entries.  Managers obtain new\n            values for row creation in this table by reading\n            diffServMeterNextFree.",
                      "x-yang-type": "DIFFSERV-MIB:IndexInteger"
                    },
                    "diffServMeterSucceedNext": {
                      "type": "string",
                      "description": "If the traffic does conform, this selects the next\n            Differentiated Services Functional Data Path element to handle\n            traffic for this data path. This RowPointer should point to an\n            instance of one of:\n              diffServClfrEntry\n              diffServMeterEntry\n              diffServActionEntry\n              diffServAlgDropEntry\n              diffServQEntry\n            \n            A value of zeroDotZero in this attribute indicates that no\n            further Differentiated Services treatment is performed on traffic\n            of this data path. The use of zeroDotZero is the normal usage for\n            the last functional data path element of the current data path.\n            \n            Setting this to point to a target that does not exist results in\n            an inconsistentValue error.  If the row pointed to is removed or\n            becomes inactive by other means, the treatment is as if this\n            attribute contains a value of zeroDotZero.",
                      "x-yang-type": "snmpv2-tc:RowPointer"
                    },
                    "diffServMeterFailNext": {
                      "type": "string",
                      "description": "If the traffic does not conform, this selects the next\n            Differentiated Services Functional Data Path element to handle\n            traffic for this data path. This RowPointer should point to an\n            instance of one of:\n              diffServClfrEntry\n              diffServMeterEntry\n            \n            \n            \n              diffServActionEntry\n              diffServAlgDropEntry\n              diffServQEntry\n            \n            A value of zeroDotZero in this attribute indicates no further\n            Differentiated Services treatment is performed on traffic of this\n            data path. The use of zeroDotZero is the normal usage for the\n            last functional data path element of the current data path.\n            \n            Setting this to point to a target that does not exist results in\n            an inconsistentValue error.  If the row pointed to is removed or\n            becomes inactive by other means, the treatment is as if this\n            attribute contains a value of zeroDotZero.",
                      "x-yang-type": "snmpv2-tc:RowPointer"
                    },
                    "diffServMeterSpecific": {
                      "type": "string",
                      "description": "This indicates the behavior of the meter by pointing to an entry\n            containing detailed parameters. Note that entries in that\n            specific table must be managed explicitly.\n            \n            For example, diffServMeterSpecific may point to an entry in\n            diffServTBParamTable, which contains an instance of a single set\n            of Token Bucket parameters.\n            \n            Setting this to point to a target that does not exist results in\n            an inconsistentValue error.  If the row pointed to is removed or\n            becomes inactive by other means, the meter always succeeds.",
                      "x-yang-type": "snmpv2-tc:RowPointer"
                    },
                    "diffServMeterStorage": {
                      "type": "string",
                      "description": "The storage type for this conceptual row.  Conceptual rows\n            having the value 'permanent' need not allow write-access to any\n            columnar objects in the row.",
                      "x-yang-type": "snmpv2-tc:StorageType"
                    },
                    "diffServMeterStatus": {
                      "type": "string",
                      "description": "The status of this conceptual row. All writable objects in this\n            row may be modified at any time. Setting this variable to\n            'destroy' when the MIB contains one or more RowPointers pointing\n            to it results in destruction being delayed until the row is no\n            longer used.",
                      "x-yang-type": "snmpv2-tc:RowStatus"
                    }
                  }
                },
                "example": {
                  "DIFFSERV-MIB:diffServMeterEntry": {
                    "diffServMeterId": "example-string",
                    "diffServMeterSucceedNext": "example-string",
                    "diffServMeterFailNext": "example-string",
                    "diffServMeterSpecific": "example-string",
                    "diffServMeterStorage": "example-string",
                    "diffServMeterStatus": "up(1)"
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-diffServMeterEntry-2"
      },
      "x-yang-path": "/diffServMeterTable/diffServMeterEntry={diffServMeterId}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "diffServMeterId"
      ]
    },
    "/data/DIFFSERV-MIB:diffServTBParamTable": {
      "get": {
        "summary": "Get diffServTBParamTable data",
        "description": "Retrieve diffServTBParamTable operational data from MIB",
        "tags": [
          "DIFFSERV-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "description": "This table enumerates a single set of token bucket meter\n        parameters that a system may use to police a stream of traffic.\n        Such meters are modeled here as having a single rate and a single\n        burst size. Multiple entries are used when multiple rates/burst\n        sizes are needed.",
                  "properties": {
                    "diffServTBParamEntry": {
                      "type": "array",
                      "description": "An entry that describes a single set of token bucket\n          parameters.",
                      "items": {
                        "type": "object",
                        "properties": {
                          "diffServTBParamId": {
                            "type": "string",
                            "description": "An index that enumerates the Token Bucket Parameter entries.\n            Managers obtain new values for row creation in this table by\n            reading diffServTBParamNextFree.",
                            "x-yang-type": "DIFFSERV-MIB:IndexInteger"
                          },
                          "diffServTBParamType": {
                            "type": "string",
                            "description": "The Metering algorithm associated with the Token Bucket\n            parameters.  zeroDotZero indicates this is unknown.\n            \n            Standard values for generic algorithms:\n            diffServTBParamSimpleTokenBucket, diffServTBParamAvgRate,\n            diffServTBParamSrTCMBlind, diffServTBParamSrTCMAware,\n            diffServTBParamTrTCMBlind, diffServTBParamTrTCMAware, and\n            diffServTBParamTswTCM are specified in this MIB as OBJECT-\n            IDENTITYs; additional values may be further specified in other\n            MIBs.",
                            "x-yang-type": "snmpv2-tc:AutonomousType"
                          },
                          "diffServTBParamRate": {
                            "type": "integer",
                            "description": "The token-bucket rate, in kilobits per second (kbps). This\n            attribute is used for:\n            1. CIR in RFC 2697 for srTCM\n            2. CIR and PIR in RFC 2698 for trTCM\n            3. CTR and PTR in RFC 2859 for TSWTCM\n            4. AverageRate in RFC 3290.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "diffServTBParamBurstSize": {
                            "type": "string",
                            "description": "The maximum number of bytes in a single transmission burst. This\n            attribute is used for:\n            1. CBS and EBS in RFC 2697 for srTCM\n            2. CBS and PBS in RFC 2698 for trTCM\n            3. Burst Size in RFC 3290.",
                            "x-yang-type": "integrated-services:BurstSize"
                          },
                          "diffServTBParamInterval": {
                            "type": "integer",
                            "description": "The time interval used with the token bucket.  For:\n            1. Average Rate Meter, the Informal Differentiated Services Model\n               section 5.2.1, - Delta.\n            2. Simple Token Bucket Meter, the Informal Differentiated\n               Services Model section 5.1, - time interval t.\n            3. RFC 2859 TSWTCM, - AVG_INTERVAL.\n            4. RFC 2697 srTCM, RFC 2698 trTCM, - token bucket update time\n               interval.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "diffServTBParamStorage": {
                            "type": "string",
                            "description": "The storage type for this conceptual row.  Conceptual rows\n            having the value 'permanent' need not allow write-access to any\n            columnar objects in the row.",
                            "x-yang-type": "snmpv2-tc:StorageType"
                          },
                          "diffServTBParamStatus": {
                            "type": "string",
                            "description": "The status of this conceptual row. All writable objects in this\n            row may be modified at any time. Setting this variable to\n            'destroy' when the MIB contains one or more RowPointers pointing\n            to it results in destruction being delayed until the row is no\n            longer used.",
                            "x-yang-type": "snmpv2-tc:RowStatus"
                          }
                        }
                      }
                    }
                  }
                },
                "example": {
                  "DIFFSERV-MIB:diffServTBParamTable": {
                    "diffServTBParamEntry": [
                      {
                        "diffServTBParamId": "example-string",
                        "diffServTBParamType": "ethernetCsmacd(6)",
                        "diffServTBParamRate": 0,
                        "diffServTBParamBurstSize": "example-string",
                        "diffServTBParamInterval": 0,
                        "diffServTBParamStorage": "example-string",
                        "diffServTBParamStatus": "up(1)"
                      },
                      {
                        "diffServTBParamId": "example-string",
                        "diffServTBParamType": "ethernetCsmacd(6)",
                        "diffServTBParamRate": 0,
                        "diffServTBParamBurstSize": "example-string",
                        "diffServTBParamInterval": 0,
                        "diffServTBParamStorage": "example-string",
                        "diffServTBParamStatus": "up(1)"
                      },
                      {
                        "diffServTBParamId": "example-string",
                        "diffServTBParamType": "ethernetCsmacd(6)",
                        "diffServTBParamRate": 0,
                        "diffServTBParamBurstSize": "example-string",
                        "diffServTBParamInterval": 0,
                        "diffServTBParamStorage": "example-string",
                        "diffServTBParamStatus": "up(1)"
                      }
                    ]
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-diffServTBParamTable",
        "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": "/diffServTBParamTable",
      "x-restconf-kind": "container"
    },
    "/data/DIFFSERV-MIB:diffServTBParamTable/diffServTBParamEntry": {
      "get": {
        "summary": "Get diffServTBParamEntry list",
        "description": "Retrieve list of diffServTBParamEntry entries from MIB",
        "tags": [
          "DIFFSERV-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "An entry that describes a single set of token bucket\n          parameters.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "diffServTBParamId": {
                        "type": "string",
                        "description": "An index that enumerates the Token Bucket Parameter entries.\n            Managers obtain new values for row creation in this table by\n            reading diffServTBParamNextFree.",
                        "x-yang-type": "DIFFSERV-MIB:IndexInteger"
                      },
                      "diffServTBParamType": {
                        "type": "string",
                        "description": "The Metering algorithm associated with the Token Bucket\n            parameters.  zeroDotZero indicates this is unknown.\n            \n            Standard values for generic algorithms:\n            diffServTBParamSimpleTokenBucket, diffServTBParamAvgRate,\n            diffServTBParamSrTCMBlind, diffServTBParamSrTCMAware,\n            diffServTBParamTrTCMBlind, diffServTBParamTrTCMAware, and\n            diffServTBParamTswTCM are specified in this MIB as OBJECT-\n            IDENTITYs; additional values may be further specified in other\n            MIBs.",
                        "x-yang-type": "snmpv2-tc:AutonomousType"
                      },
                      "diffServTBParamRate": {
                        "type": "integer",
                        "description": "The token-bucket rate, in kilobits per second (kbps). This\n            attribute is used for:\n            1. CIR in RFC 2697 for srTCM\n            2. CIR and PIR in RFC 2698 for trTCM\n            3. CTR and PTR in RFC 2859 for TSWTCM\n            4. AverageRate in RFC 3290.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "diffServTBParamBurstSize": {
                        "type": "string",
                        "description": "The maximum number of bytes in a single transmission burst. This\n            attribute is used for:\n            1. CBS and EBS in RFC 2697 for srTCM\n            2. CBS and PBS in RFC 2698 for trTCM\n            3. Burst Size in RFC 3290.",
                        "x-yang-type": "integrated-services:BurstSize"
                      },
                      "diffServTBParamInterval": {
                        "type": "integer",
                        "description": "The time interval used with the token bucket.  For:\n            1. Average Rate Meter, the Informal Differentiated Services Model\n               section 5.2.1, - Delta.\n            2. Simple Token Bucket Meter, the Informal Differentiated\n               Services Model section 5.1, - time interval t.\n            3. RFC 2859 TSWTCM, - AVG_INTERVAL.\n            4. RFC 2697 srTCM, RFC 2698 trTCM, - token bucket update time\n               interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "diffServTBParamStorage": {
                        "type": "string",
                        "description": "The storage type for this conceptual row.  Conceptual rows\n            having the value 'permanent' need not allow write-access to any\n            columnar objects in the row.",
                        "x-yang-type": "snmpv2-tc:StorageType"
                      },
                      "diffServTBParamStatus": {
                        "type": "string",
                        "description": "The status of this conceptual row. All writable objects in this\n            row may be modified at any time. Setting this variable to\n            'destroy' when the MIB contains one or more RowPointers pointing\n            to it results in destruction being delayed until the row is no\n            longer used.",
                        "x-yang-type": "snmpv2-tc:RowStatus"
                      }
                    }
                  }
                },
                "example": {
                  "DIFFSERV-MIB:diffServTBParamEntry": [
                    {
                      "diffServTBParamId": "example-string",
                      "diffServTBParamType": "ethernetCsmacd(6)",
                      "diffServTBParamRate": 0,
                      "diffServTBParamBurstSize": "example-string",
                      "diffServTBParamInterval": 0,
                      "diffServTBParamStorage": "example-string",
                      "diffServTBParamStatus": "up(1)"
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-diffServTBParamEntry",
        "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": "/diffServTBParamTable/diffServTBParamEntry",
      "x-restconf-kind": "container"
    },
    "/data/DIFFSERV-MIB:diffServTBParamTable/diffServTBParamEntry={diffServTBParamId}": {
      "get": {
        "summary": "Get diffServTBParamEntry entry",
        "description": "Retrieve specific diffServTBParamEntry entry by key from MIB",
        "tags": [
          "DIFFSERV-MIB"
        ],
        "parameters": [
          {
            "name": "diffServTBParamId",
            "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": {
                    "diffServTBParamId": {
                      "type": "string",
                      "description": "An index that enumerates the Token Bucket Parameter entries.\n            Managers obtain new values for row creation in this table by\n            reading diffServTBParamNextFree.",
                      "x-yang-type": "DIFFSERV-MIB:IndexInteger"
                    },
                    "diffServTBParamType": {
                      "type": "string",
                      "description": "The Metering algorithm associated with the Token Bucket\n            parameters.  zeroDotZero indicates this is unknown.\n            \n            Standard values for generic algorithms:\n            diffServTBParamSimpleTokenBucket, diffServTBParamAvgRate,\n            diffServTBParamSrTCMBlind, diffServTBParamSrTCMAware,\n            diffServTBParamTrTCMBlind, diffServTBParamTrTCMAware, and\n            diffServTBParamTswTCM are specified in this MIB as OBJECT-\n            IDENTITYs; additional values may be further specified in other\n            MIBs.",
                      "x-yang-type": "snmpv2-tc:AutonomousType"
                    },
                    "diffServTBParamRate": {
                      "type": "integer",
                      "description": "The token-bucket rate, in kilobits per second (kbps). This\n            attribute is used for:\n            1. CIR in RFC 2697 for srTCM\n            2. CIR and PIR in RFC 2698 for trTCM\n            3. CTR and PTR in RFC 2859 for TSWTCM\n            4. AverageRate in RFC 3290.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "diffServTBParamBurstSize": {
                      "type": "string",
                      "description": "The maximum number of bytes in a single transmission burst. This\n            attribute is used for:\n            1. CBS and EBS in RFC 2697 for srTCM\n            2. CBS and PBS in RFC 2698 for trTCM\n            3. Burst Size in RFC 3290.",
                      "x-yang-type": "integrated-services:BurstSize"
                    },
                    "diffServTBParamInterval": {
                      "type": "integer",
                      "description": "The time interval used with the token bucket.  For:\n            1. Average Rate Meter, the Informal Differentiated Services Model\n               section 5.2.1, - Delta.\n            2. Simple Token Bucket Meter, the Informal Differentiated\n               Services Model section 5.1, - time interval t.\n            3. RFC 2859 TSWTCM, - AVG_INTERVAL.\n            4. RFC 2697 srTCM, RFC 2698 trTCM, - token bucket update time\n               interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "diffServTBParamStorage": {
                      "type": "string",
                      "description": "The storage type for this conceptual row.  Conceptual rows\n            having the value 'permanent' need not allow write-access to any\n            columnar objects in the row.",
                      "x-yang-type": "snmpv2-tc:StorageType"
                    },
                    "diffServTBParamStatus": {
                      "type": "string",
                      "description": "The status of this conceptual row. All writable objects in this\n            row may be modified at any time. Setting this variable to\n            'destroy' when the MIB contains one or more RowPointers pointing\n            to it results in destruction being delayed until the row is no\n            longer used.",
                      "x-yang-type": "snmpv2-tc:RowStatus"
                    }
                  }
                },
                "example": {
                  "DIFFSERV-MIB:diffServTBParamEntry": {
                    "diffServTBParamId": "example-string",
                    "diffServTBParamType": "ethernetCsmacd(6)",
                    "diffServTBParamRate": 0,
                    "diffServTBParamBurstSize": "example-string",
                    "diffServTBParamInterval": 0,
                    "diffServTBParamStorage": "example-string",
                    "diffServTBParamStatus": "up(1)"
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-diffServTBParamEntry-2"
      },
      "x-yang-path": "/diffServTBParamTable/diffServTBParamEntry={diffServTBParamId}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "diffServTBParamId"
      ]
    },
    "/data/DIFFSERV-MIB:diffServActionTable": {
      "get": {
        "summary": "Get diffServActionTable data",
        "description": "Retrieve diffServActionTable operational data from MIB",
        "tags": [
          "DIFFSERV-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "description": "The Action Table enumerates actions that can be performed to a\n        stream of traffic. Multiple actions can be concatenated. For\n        example, traffic exiting from a meter may be counted, marked, and\n        potentially dropped before entering a queue.\n        \n        Specific actions are indicated by diffServActionSpecific which\n        points to an entry of a specific action type parameterizing the\n        action in detail.",
                  "properties": {
                    "diffServActionEntry": {
                      "type": "array",
                      "description": "Each entry in the action table allows description of one\n          specific action to be applied to traffic.",
                      "items": {
                        "type": "object",
                        "properties": {
                          "diffServActionId": {
                            "type": "string",
                            "description": "An index that enumerates the Action entries.  Managers obtain\n            new values for row creation in this table by reading\n            diffServActionNextFree.",
                            "x-yang-type": "DIFFSERV-MIB:IndexInteger"
                          },
                          "diffServActionInterface": {
                            "type": "string",
                            "description": "The interface index (value of ifIndex) that this action occurs\n            on. This may be derived from the diffServDataPathStartEntry's\n            index by extension through the various RowPointers. However, as\n            this may be difficult for a network management station, it is\n            placed here as well.  If this is indeterminate, the value is\n            zero.\n            \n            This is of especial relevance when reporting the counters which\n            may apply to traffic crossing an interface:\n               diffServCountActOctets,\n               diffServCountActPkts,\n               diffServAlgDropOctets,\n               diffServAlgDropPkts,\n               diffServAlgRandomDropOctets, and\n               diffServAlgRandomDropPkts.\n            \n            It is also especially relevant to the queue and scheduler which\n            may be subsequently applied.",
                            "x-yang-type": "if-mib:InterfaceIndexOrZero"
                          },
                          "diffServActionNext": {
                            "type": "string",
                            "description": "This selects the next Differentiated Services Functional Data\n            Path Element to handle traffic for this data path. This\n            RowPointer should point to an instance of one of:\n              diffServClfrEntry\n              diffServMeterEntry\n              diffServActionEntry\n              diffServAlgDropEntry\n              diffServQEntry\n            \n            A value of zeroDotZero in this attribute indicates no further\n            Differentiated Services treatment is performed on traffic of this\n            data path. The use of zeroDotZero is the normal usage for the\n            last functional data path element of the current data path.\n            \n            Setting this to point to a target that does not exist results in\n            an inconsistentValue error.  If the row pointed to is removed or\n            becomes inactive by other means, the treatment is as if this\n            attribute contains a value of zeroDotZero.",
                            "x-yang-type": "snmpv2-tc:RowPointer"
                          },
                          "diffServActionSpecific": {
                            "type": "string",
                            "description": "A pointer to an object instance providing additional information\n            for the type of action indicated by this action table entry.\n            \n            For the standard actions defined by this MIB module, this should\n            point to either a diffServDscpMarkActEntry or a\n            diffServCountActEntry. For other actions, it may point to an\n            object instance defined in some other MIB.\n            \n            Setting this to point to a target that does not exist results in\n            an inconsistentValue error.  If the row pointed to is removed or\n            becomes inactive by other means, the Meter should be treated as\n            if it were not present.  This may lead to incorrect policy\n            behavior.",
                            "x-yang-type": "snmpv2-tc:RowPointer"
                          },
                          "diffServActionStorage": {
                            "type": "string",
                            "description": "The storage type for this conceptual row.  Conceptual rows\n            having the value 'permanent' need not allow write-access to any\n            columnar objects in the row.",
                            "x-yang-type": "snmpv2-tc:StorageType"
                          },
                          "diffServActionStatus": {
                            "type": "string",
                            "description": "The status of this conceptual row. All writable objects in this\n            row may be modified at any time. Setting this variable to\n            'destroy' when the MIB contains one or more RowPointers pointing\n            to it results in destruction being delayed until the row is no\n            longer used.",
                            "x-yang-type": "snmpv2-tc:RowStatus"
                          }
                        }
                      }
                    }
                  }
                },
                "example": {
                  "DIFFSERV-MIB:diffServActionTable": {
                    "diffServActionEntry": [
                      {
                        "diffServActionId": "example-string",
                        "diffServActionInterface": "GigabitEthernet1/0/1",
                        "diffServActionNext": "example-string",
                        "diffServActionSpecific": "example-string",
                        "diffServActionStorage": "example-string",
                        "diffServActionStatus": "up(1)"
                      },
                      {
                        "diffServActionId": "example-string",
                        "diffServActionInterface": "GigabitEthernet1/0/1",
                        "diffServActionNext": "example-string",
                        "diffServActionSpecific": "example-string",
                        "diffServActionStorage": "example-string",
                        "diffServActionStatus": "up(1)"
                      },
                      {
                        "diffServActionId": "example-string",
                        "diffServActionInterface": "GigabitEthernet1/0/1",
                        "diffServActionNext": "example-string",
                        "diffServActionSpecific": "example-string",
                        "diffServActionStorage": "example-string",
                        "diffServActionStatus": "up(1)"
                      }
                    ]
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-diffServActionTable",
        "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": "/diffServActionTable",
      "x-restconf-kind": "container"
    },
    "/data/DIFFSERV-MIB:diffServActionTable/diffServActionEntry": {
      "get": {
        "summary": "Get diffServActionEntry list",
        "description": "Retrieve list of diffServActionEntry entries from MIB",
        "tags": [
          "DIFFSERV-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "Each entry in the action table allows description of one\n          specific action to be applied to traffic.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "diffServActionId": {
                        "type": "string",
                        "description": "An index that enumerates the Action entries.  Managers obtain\n            new values for row creation in this table by reading\n            diffServActionNextFree.",
                        "x-yang-type": "DIFFSERV-MIB:IndexInteger"
                      },
                      "diffServActionInterface": {
                        "type": "string",
                        "description": "The interface index (value of ifIndex) that this action occurs\n            on. This may be derived from the diffServDataPathStartEntry's\n            index by extension through the various RowPointers. However, as\n            this may be difficult for a network management station, it is\n            placed here as well.  If this is indeterminate, the value is\n            zero.\n            \n            This is of especial relevance when reporting the counters which\n            may apply to traffic crossing an interface:\n               diffServCountActOctets,\n               diffServCountActPkts,\n               diffServAlgDropOctets,\n               diffServAlgDropPkts,\n               diffServAlgRandomDropOctets, and\n               diffServAlgRandomDropPkts.\n            \n            It is also especially relevant to the queue and scheduler which\n            may be subsequently applied.",
                        "x-yang-type": "if-mib:InterfaceIndexOrZero"
                      },
                      "diffServActionNext": {
                        "type": "string",
                        "description": "This selects the next Differentiated Services Functional Data\n            Path Element to handle traffic for this data path. This\n            RowPointer should point to an instance of one of:\n              diffServClfrEntry\n              diffServMeterEntry\n              diffServActionEntry\n              diffServAlgDropEntry\n              diffServQEntry\n            \n            A value of zeroDotZero in this attribute indicates no further\n            Differentiated Services treatment is performed on traffic of this\n            data path. The use of zeroDotZero is the normal usage for the\n            last functional data path element of the current data path.\n            \n            Setting this to point to a target that does not exist results in\n            an inconsistentValue error.  If the row pointed to is removed or\n            becomes inactive by other means, the treatment is as if this\n            attribute contains a value of zeroDotZero.",
                        "x-yang-type": "snmpv2-tc:RowPointer"
                      },
                      "diffServActionSpecific": {
                        "type": "string",
                        "description": "A pointer to an object instance providing additional information\n            for the type of action indicated by this action table entry.\n            \n            For the standard actions defined by this MIB module, this should\n            point to either a diffServDscpMarkActEntry or a\n            diffServCountActEntry. For other actions, it may point to an\n            object instance defined in some other MIB.\n            \n            Setting this to point to a target that does not exist results in\n            an inconsistentValue error.  If the row pointed to is removed or\n            becomes inactive by other means, the Meter should be treated as\n            if it were not present.  This may lead to incorrect policy\n            behavior.",
                        "x-yang-type": "snmpv2-tc:RowPointer"
                      },
                      "diffServActionStorage": {
                        "type": "string",
                        "description": "The storage type for this conceptual row.  Conceptual rows\n            having the value 'permanent' need not allow write-access to any\n            columnar objects in the row.",
                        "x-yang-type": "snmpv2-tc:StorageType"
                      },
                      "diffServActionStatus": {
                        "type": "string",
                        "description": "The status of this conceptual row. All writable objects in this\n            row may be modified at any time. Setting this variable to\n            'destroy' when the MIB contains one or more RowPointers pointing\n            to it results in destruction being delayed until the row is no\n            longer used.",
                        "x-yang-type": "snmpv2-tc:RowStatus"
                      }
                    }
                  }
                },
                "example": {
                  "DIFFSERV-MIB:diffServActionEntry": [
                    {
                      "diffServActionId": "example-string",
                      "diffServActionInterface": "GigabitEthernet1/0/1",
                      "diffServActionNext": "example-string",
                      "diffServActionSpecific": "example-string",
                      "diffServActionStorage": "example-string",
                      "diffServActionStatus": "up(1)"
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-diffServActionEntry",
        "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": "/diffServActionTable/diffServActionEntry",
      "x-restconf-kind": "container"
    },
    "/data/DIFFSERV-MIB:diffServActionTable/diffServActionEntry={diffServActionId}": {
      "get": {
        "summary": "Get diffServActionEntry entry",
        "description": "Retrieve specific diffServActionEntry entry by key from MIB",
        "tags": [
          "DIFFSERV-MIB"
        ],
        "parameters": [
          {
            "name": "diffServActionId",
            "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": {
                    "diffServActionId": {
                      "type": "string",
                      "description": "An index that enumerates the Action entries.  Managers obtain\n            new values for row creation in this table by reading\n            diffServActionNextFree.",
                      "x-yang-type": "DIFFSERV-MIB:IndexInteger"
                    },
                    "diffServActionInterface": {
                      "type": "string",
                      "description": "The interface index (value of ifIndex) that this action occurs\n            on. This may be derived from the diffServDataPathStartEntry's\n            index by extension through the various RowPointers. However, as\n            this may be difficult for a network management station, it is\n            placed here as well.  If this is indeterminate, the value is\n            zero.\n            \n            This is of especial relevance when reporting the counters which\n            may apply to traffic crossing an interface:\n               diffServCountActOctets,\n               diffServCountActPkts,\n               diffServAlgDropOctets,\n               diffServAlgDropPkts,\n               diffServAlgRandomDropOctets, and\n               diffServAlgRandomDropPkts.\n            \n            It is also especially relevant to the queue and scheduler which\n            may be subsequently applied.",
                      "x-yang-type": "if-mib:InterfaceIndexOrZero"
                    },
                    "diffServActionNext": {
                      "type": "string",
                      "description": "This selects the next Differentiated Services Functional Data\n            Path Element to handle traffic for this data path. This\n            RowPointer should point to an instance of one of:\n              diffServClfrEntry\n              diffServMeterEntry\n              diffServActionEntry\n              diffServAlgDropEntry\n              diffServQEntry\n            \n            A value of zeroDotZero in this attribute indicates no further\n            Differentiated Services treatment is performed on traffic of this\n            data path. The use of zeroDotZero is the normal usage for the\n            last functional data path element of the current data path.\n            \n            Setting this to point to a target that does not exist results in\n            an inconsistentValue error.  If the row pointed to is removed or\n            becomes inactive by other means, the treatment is as if this\n            attribute contains a value of zeroDotZero.",
                      "x-yang-type": "snmpv2-tc:RowPointer"
                    },
                    "diffServActionSpecific": {
                      "type": "string",
                      "description": "A pointer to an object instance providing additional information\n            for the type of action indicated by this action table entry.\n            \n            For the standard actions defined by this MIB module, this should\n            point to either a diffServDscpMarkActEntry or a\n            diffServCountActEntry. For other actions, it may point to an\n            object instance defined in some other MIB.\n            \n            Setting this to point to a target that does not exist results in\n            an inconsistentValue error.  If the row pointed to is removed or\n            becomes inactive by other means, the Meter should be treated as\n            if it were not present.  This may lead to incorrect policy\n            behavior.",
                      "x-yang-type": "snmpv2-tc:RowPointer"
                    },
                    "diffServActionStorage": {
                      "type": "string",
                      "description": "The storage type for this conceptual row.  Conceptual rows\n            having the value 'permanent' need not allow write-access to any\n            columnar objects in the row.",
                      "x-yang-type": "snmpv2-tc:StorageType"
                    },
                    "diffServActionStatus": {
                      "type": "string",
                      "description": "The status of this conceptual row. All writable objects in this\n            row may be modified at any time. Setting this variable to\n            'destroy' when the MIB contains one or more RowPointers pointing\n            to it results in destruction being delayed until the row is no\n            longer used.",
                      "x-yang-type": "snmpv2-tc:RowStatus"
                    }
                  }
                },
                "example": {
                  "DIFFSERV-MIB:diffServActionEntry": {
                    "diffServActionId": "example-string",
                    "diffServActionInterface": "GigabitEthernet1/0/1",
                    "diffServActionNext": "example-string",
                    "diffServActionSpecific": "example-string",
                    "diffServActionStorage": "example-string",
                    "diffServActionStatus": "up(1)"
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-diffServActionEntry-2"
      },
      "x-yang-path": "/diffServActionTable/diffServActionEntry={diffServActionId}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "diffServActionId"
      ]
    },
    "/data/DIFFSERV-MIB:diffServDscpMarkActTable": {
      "get": {
        "summary": "Get diffServDscpMarkActTable data",
        "description": "Retrieve diffServDscpMarkActTable operational data from MIB",
        "tags": [
          "DIFFSERV-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "description": "This table enumerates specific DSCPs used for marking or\n        remarking the DSCP field of IP packets. The entries of this table\n        may be referenced by a diffServActionSpecific attribute.",
                  "properties": {
                    "diffServDscpMarkActEntry": {
                      "type": "array",
                      "description": "An entry in the DSCP mark action table that describes a single\n          DSCP used for marking.",
                      "items": {
                        "type": "object",
                        "properties": {
                          "diffServDscpMarkActDscp": {
                            "type": "string",
                            "description": "The DSCP that this Action will store into the DSCP field of the\n            subject. It is quite possible that the only packets subject to\n            this Action are already marked with this DSCP. Note also that\n            Differentiated Services processing may result in packet being\n            marked on both ingress to a network and on egress from it, and\n            that ingress and egress can occur in the same router.",
                            "format": "inet:dscp"
                          }
                        }
                      }
                    }
                  }
                },
                "example": {
                  "DIFFSERV-MIB:diffServDscpMarkActTable": {
                    "diffServDscpMarkActEntry": [
                      {
                        "diffServDscpMarkActDscp": "example-string"
                      },
                      {
                        "diffServDscpMarkActDscp": "example-string"
                      },
                      {
                        "diffServDscpMarkActDscp": "example-string"
                      }
                    ]
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-diffServDscpMarkActTable",
        "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": "/diffServDscpMarkActTable",
      "x-restconf-kind": "container"
    },
    "/data/DIFFSERV-MIB:diffServDscpMarkActTable/diffServDscpMarkActEntry": {
      "get": {
        "summary": "Get diffServDscpMarkActEntry list",
        "description": "Retrieve list of diffServDscpMarkActEntry entries from MIB",
        "tags": [
          "DIFFSERV-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "An entry in the DSCP mark action table that describes a single\n          DSCP used for marking.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "diffServDscpMarkActDscp": {
                        "type": "string",
                        "description": "The DSCP that this Action will store into the DSCP field of the\n            subject. It is quite possible that the only packets subject to\n            this Action are already marked with this DSCP. Note also that\n            Differentiated Services processing may result in packet being\n            marked on both ingress to a network and on egress from it, and\n            that ingress and egress can occur in the same router.",
                        "format": "inet:dscp"
                      }
                    }
                  }
                },
                "example": {
                  "DIFFSERV-MIB:diffServDscpMarkActEntry": [
                    {
                      "diffServDscpMarkActDscp": "example-string"
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-diffServDscpMarkActEntry",
        "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": "/diffServDscpMarkActTable/diffServDscpMarkActEntry",
      "x-restconf-kind": "container"
    },
    "/data/DIFFSERV-MIB:diffServDscpMarkActTable/diffServDscpMarkActEntry={diffServDscpMarkActDscp}": {
      "get": {
        "summary": "Get diffServDscpMarkActEntry entry",
        "description": "Retrieve specific diffServDscpMarkActEntry entry by key from MIB",
        "tags": [
          "DIFFSERV-MIB"
        ],
        "parameters": [
          {
            "name": "diffServDscpMarkActDscp",
            "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": {
                    "diffServDscpMarkActDscp": {
                      "type": "string",
                      "description": "The DSCP that this Action will store into the DSCP field of the\n            subject. It is quite possible that the only packets subject to\n            this Action are already marked with this DSCP. Note also that\n            Differentiated Services processing may result in packet being\n            marked on both ingress to a network and on egress from it, and\n            that ingress and egress can occur in the same router.",
                      "format": "inet:dscp"
                    }
                  }
                },
                "example": {
                  "DIFFSERV-MIB:diffServDscpMarkActEntry": {
                    "diffServDscpMarkActDscp": "example-string"
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-diffServDscpMarkActEntry-2"
      },
      "x-yang-path": "/diffServDscpMarkActTable/diffServDscpMarkActEntry={diffServDscpMarkActDscp}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "diffServDscpMarkActDscp"
      ]
    },
    "/data/DIFFSERV-MIB:diffServCountActTable": {
      "get": {
        "summary": "Get diffServCountActTable data",
        "description": "Retrieve diffServCountActTable operational data from MIB",
        "tags": [
          "DIFFSERV-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "description": "This table contains counters for all the traffic passing through\n        an action element.",
                  "properties": {
                    "diffServCountActEntry": {
                      "type": "array",
                      "description": "An entry in the count action table describes a single set of\n          traffic counters.",
                      "items": {
                        "type": "object",
                        "properties": {
                          "diffServCountActId": {
                            "type": "string",
                            "description": "An index that enumerates the Count Action entries.  Managers\n            obtain new values for row creation in this table by reading\n            \n            \n            \n            diffServCountActNextFree.",
                            "x-yang-type": "DIFFSERV-MIB:IndexInteger"
                          },
                          "diffServCountActOctets": {
                            "type": "integer",
                            "description": "The number of octets at the Action data path element.\n            \n            Discontinuities in the value of this counter can occur at re-\n            initialization of the management system and at other times as\n            indicated by the value of ifCounterDiscontinuityTime on the\n            relevant interface.",
                            "minimum": 0
                          },
                          "diffServCountActPkts": {
                            "type": "integer",
                            "description": "The number of packets at the Action data path element.\n            \n            Discontinuities in the value of this counter can occur at re-\n            initialization of the management system and at other times as\n            indicated by the value of ifCounterDiscontinuityTime on the\n            relevant interface.",
                            "minimum": 0
                          },
                          "diffServCountActStorage": {
                            "type": "string",
                            "description": "The storage type for this conceptual row.  Conceptual rows\n            having the value 'permanent' need not allow write-access to any\n            columnar objects in the row.",
                            "x-yang-type": "snmpv2-tc:StorageType"
                          },
                          "diffServCountActStatus": {
                            "type": "string",
                            "description": "The status of this conceptual row. All writable objects in this\n            row may be modified at any time. Setting this variable to\n            'destroy' when the MIB contains one or more RowPointers pointing\n            \n            \n            \n            to it results in destruction being delayed until the row is no\n            longer used.",
                            "x-yang-type": "snmpv2-tc:RowStatus"
                          }
                        }
                      }
                    }
                  }
                },
                "example": {
                  "DIFFSERV-MIB:diffServCountActTable": {
                    "diffServCountActEntry": [
                      {
                        "diffServCountActId": "example-string",
                        "diffServCountActOctets": 1234567890,
                        "diffServCountActPkts": 0,
                        "diffServCountActStorage": "example-string",
                        "diffServCountActStatus": "up(1)"
                      },
                      {
                        "diffServCountActId": "example-string",
                        "diffServCountActOctets": 1234567890,
                        "diffServCountActPkts": 0,
                        "diffServCountActStorage": "example-string",
                        "diffServCountActStatus": "up(1)"
                      },
                      {
                        "diffServCountActId": "example-string",
                        "diffServCountActOctets": 1234567890,
                        "diffServCountActPkts": 0,
                        "diffServCountActStorage": "example-string",
                        "diffServCountActStatus": "up(1)"
                      }
                    ]
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-diffServCountActTable",
        "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": "/diffServCountActTable",
      "x-restconf-kind": "container"
    },
    "/data/DIFFSERV-MIB:diffServCountActTable/diffServCountActEntry": {
      "get": {
        "summary": "Get diffServCountActEntry list",
        "description": "Retrieve list of diffServCountActEntry entries from MIB",
        "tags": [
          "DIFFSERV-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "An entry in the count action table describes a single set of\n          traffic counters.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "diffServCountActId": {
                        "type": "string",
                        "description": "An index that enumerates the Count Action entries.  Managers\n            obtain new values for row creation in this table by reading\n            \n            \n            \n            diffServCountActNextFree.",
                        "x-yang-type": "DIFFSERV-MIB:IndexInteger"
                      },
                      "diffServCountActOctets": {
                        "type": "integer",
                        "description": "The number of octets at the Action data path element.\n            \n            Discontinuities in the value of this counter can occur at re-\n            initialization of the management system and at other times as\n            indicated by the value of ifCounterDiscontinuityTime on the\n            relevant interface.",
                        "minimum": 0
                      },
                      "diffServCountActPkts": {
                        "type": "integer",
                        "description": "The number of packets at the Action data path element.\n            \n            Discontinuities in the value of this counter can occur at re-\n            initialization of the management system and at other times as\n            indicated by the value of ifCounterDiscontinuityTime on the\n            relevant interface.",
                        "minimum": 0
                      },
                      "diffServCountActStorage": {
                        "type": "string",
                        "description": "The storage type for this conceptual row.  Conceptual rows\n            having the value 'permanent' need not allow write-access to any\n            columnar objects in the row.",
                        "x-yang-type": "snmpv2-tc:StorageType"
                      },
                      "diffServCountActStatus": {
                        "type": "string",
                        "description": "The status of this conceptual row. All writable objects in this\n            row may be modified at any time. Setting this variable to\n            'destroy' when the MIB contains one or more RowPointers pointing\n            \n            \n            \n            to it results in destruction being delayed until the row is no\n            longer used.",
                        "x-yang-type": "snmpv2-tc:RowStatus"
                      }
                    }
                  }
                },
                "example": {
                  "DIFFSERV-MIB:diffServCountActEntry": [
                    {
                      "diffServCountActId": "example-string",
                      "diffServCountActOctets": 1234567890,
                      "diffServCountActPkts": 0,
                      "diffServCountActStorage": "example-string",
                      "diffServCountActStatus": "up(1)"
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-diffServCountActEntry",
        "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": "/diffServCountActTable/diffServCountActEntry",
      "x-restconf-kind": "container"
    },
    "/data/DIFFSERV-MIB:diffServCountActTable/diffServCountActEntry={diffServCountActId}": {
      "get": {
        "summary": "Get diffServCountActEntry entry",
        "description": "Retrieve specific diffServCountActEntry entry by key from MIB",
        "tags": [
          "DIFFSERV-MIB"
        ],
        "parameters": [
          {
            "name": "diffServCountActId",
            "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": {
                    "diffServCountActId": {
                      "type": "string",
                      "description": "An index that enumerates the Count Action entries.  Managers\n            obtain new values for row creation in this table by reading\n            \n            \n            \n            diffServCountActNextFree.",
                      "x-yang-type": "DIFFSERV-MIB:IndexInteger"
                    },
                    "diffServCountActOctets": {
                      "type": "integer",
                      "description": "The number of octets at the Action data path element.\n            \n            Discontinuities in the value of this counter can occur at re-\n            initialization of the management system and at other times as\n            indicated by the value of ifCounterDiscontinuityTime on the\n            relevant interface.",
                      "minimum": 0
                    },
                    "diffServCountActPkts": {
                      "type": "integer",
                      "description": "The number of packets at the Action data path element.\n            \n            Discontinuities in the value of this counter can occur at re-\n            initialization of the management system and at other times as\n            indicated by the value of ifCounterDiscontinuityTime on the\n            relevant interface.",
                      "minimum": 0
                    },
                    "diffServCountActStorage": {
                      "type": "string",
                      "description": "The storage type for this conceptual row.  Conceptual rows\n            having the value 'permanent' need not allow write-access to any\n            columnar objects in the row.",
                      "x-yang-type": "snmpv2-tc:StorageType"
                    },
                    "diffServCountActStatus": {
                      "type": "string",
                      "description": "The status of this conceptual row. All writable objects in this\n            row may be modified at any time. Setting this variable to\n            'destroy' when the MIB contains one or more RowPointers pointing\n            \n            \n            \n            to it results in destruction being delayed until the row is no\n            longer used.",
                      "x-yang-type": "snmpv2-tc:RowStatus"
                    }
                  }
                },
                "example": {
                  "DIFFSERV-MIB:diffServCountActEntry": {
                    "diffServCountActId": "example-string",
                    "diffServCountActOctets": 1234567890,
                    "diffServCountActPkts": 0,
                    "diffServCountActStorage": "example-string",
                    "diffServCountActStatus": "up(1)"
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-diffServCountActEntry-2"
      },
      "x-yang-path": "/diffServCountActTable/diffServCountActEntry={diffServCountActId}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "diffServCountActId"
      ]
    },
    "/data/DIFFSERV-MIB:diffServAlgDropTable": {
      "get": {
        "summary": "Get diffServAlgDropTable data",
        "description": "Retrieve diffServAlgDropTable operational data from MIB",
        "tags": [
          "DIFFSERV-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "description": "The algorithmic drop table contains entries describing an\n        element that drops packets according to some algorithm.",
                  "properties": {
                    "diffServAlgDropEntry": {
                      "type": "array",
                      "description": "An entry describes a process that drops packets according to\n          some algorithm. Further details of the algorithm type are to be\n          found in diffServAlgDropType and with more detail parameter entry\n          pointed to by diffServAlgDropSpecific when necessary.",
                      "items": {
                        "type": "object",
                        "properties": {
                          "diffServAlgDropId": {
                            "type": "string",
                            "description": "An index that enumerates the Algorithmic Dropper entries.\n            Managers obtain new values for row creation in this table by\n            reading diffServAlgDropNextFree.",
                            "x-yang-type": "DIFFSERV-MIB:IndexInteger"
                          },
                          "diffServAlgDropType": {
                            "type": "string",
                            "description": "The type of algorithm used by this dropper. The value other(1)\n            requires further specification in some other MIB module.\n            \n            In the tailDrop(2) algorithm, diffServAlgDropQThreshold\n            represents the maximum depth of the queue, pointed to by\n            diffServAlgDropQMeasure, beyond which all newly arriving packets\n            will be dropped.\n            \n            In the headDrop(3) algorithm, if a packet arrives when the\n            current depth of the queue, pointed to by\n            diffServAlgDropQMeasure, is at diffServAlgDropQThreshold, packets\n            currently at the head of the queue are dropped to make room for\n            the new packet to be enqueued at the tail of the queue.\n            \n            In the randomDrop(4) algorithm, on packet arrival, an Active\n            Queue Management algorithm is executed which may randomly drop a\n            packet. This algorithm may be proprietary, and it may drop either\n            the arriving packet or another packet in the queue.\n            diffServAlgDropSpecific points to a diffServRandomDropEntry that\n            describes the algorithm. For this algorithm,\n            \n            \n            \n            diffServAlgDropQThreshold is understood to be the absolute\n            maximum size of the queue and additional parameters are described\n            in diffServRandomDropTable.\n            \n            The alwaysDrop(5) algorithm is as its name specifies; always\n            drop. In this case, the other configuration values in this Entry\n            are not meaningful; There is no useful 'next' processing step,\n            there is no queue, and parameters describing the queue are not\n            useful. Therefore, diffServAlgDropNext, diffServAlgDropMeasure,\n            and diffServAlgDropSpecific are all zeroDotZero."
                          },
                          "diffServAlgDropNext": {
                            "type": "string",
                            "description": "This selects the next Differentiated Services Functional Data\n            Path Element to handle traffic for this data path. This\n            RowPointer should point to an instance of one of:\n              diffServClfrEntry\n              diffServMeterEntry\n              diffServActionEntry\n              diffServQEntry\n            \n            A value of zeroDotZero in this attribute indicates no further\n            Differentiated Services treatment is performed on traffic of this\n            data path. The use of zeroDotZero is the normal usage for the\n            last functional data path element of the current data path.\n            \n            When diffServAlgDropType is alwaysDrop(5), this object is\n            ignored.\n            \n            Setting this to point to a target that does not exist results in\n            an inconsistentValue error.  If the row pointed to is removed or\n            becomes inactive by other means, the treatment is as if this\n            attribute contains a value of zeroDotZero.",
                            "x-yang-type": "snmpv2-tc:RowPointer"
                          },
                          "diffServAlgDropQMeasure": {
                            "type": "string",
                            "description": "Points to an entry in the diffServQTable to indicate the queue\n            that a drop algorithm is to monitor when deciding whether to drop\n            a packet. If the row pointed to does not exist, the algorithmic\n            dropper element is considered inactive.\n            \n            \n            \n            Setting this to point to a target that does not exist results in\n            an inconsistentValue error.  If the row pointed to is removed or\n            becomes inactive by other means, the treatment is as if this\n            attribute contains a value of zeroDotZero.",
                            "x-yang-type": "snmpv2-tc:RowPointer"
                          },
                          "diffServAlgDropQThreshold": {
                            "type": "integer",
                            "description": "A threshold on the depth in bytes of the queue being measured at\n            which a trigger is generated to the dropping algorithm, unless\n            diffServAlgDropType is alwaysDrop(5) where this object is\n            ignored.\n            \n            For the tailDrop(2) or headDrop(3) algorithms, this represents\n            the depth of the queue, pointed to by diffServAlgDropQMeasure, at\n            which the drop action will take place. Other algorithms will need\n            to define their own semantics for this threshold.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "diffServAlgDropSpecific": {
                            "type": "string",
                            "description": "Points to a table entry that provides further detail regarding a\n            drop algorithm.\n            \n            Entries with diffServAlgDropType equal to other(1) may have this\n            point to a table defined in another MIB module.\n            \n            Entries with diffServAlgDropType equal to randomDrop(4) must have\n            this point to an entry in diffServRandomDropTable.\n            \n            For all other algorithms specified in this MIB, this should take\n            the value zeroDotZero.\n            \n            The diffServAlgDropType is authoritative for the type of the drop\n            algorithm and the specific parameters for the drop algorithm\n            needs to be evaluated based on the diffServAlgDropType.\n            \n            Setting this to point to a target that does not exist results in\n            an inconsistentValue error.  If the row pointed to is removed or\n            becomes inactive by other means, the treatment is as if this\n            attribute contains a value of zeroDotZero.",
                            "x-yang-type": "snmpv2-tc:RowPointer"
                          },
                          "diffServAlgDropOctets": {
                            "type": "integer",
                            "description": "The number of octets that have been deterministically dropped by\n            this drop process.\n            \n            Discontinuities in the value of this counter can occur at re-\n            initialization of the management system and at other times as\n            indicated by the value of ifCounterDiscontinuityTime on the\n            relevant interface.",
                            "minimum": 0
                          },
                          "diffServAlgDropPkts": {
                            "type": "integer",
                            "description": "The number of packets that have been deterministically dropped\n            by this drop process.\n            \n            Discontinuities in the value of this counter can occur at re-\n            initialization of the management system and at other times as\n            indicated by the value of ifCounterDiscontinuityTime on the\n            relevant interface.",
                            "minimum": 0
                          },
                          "diffServAlgRandomDropOctets": {
                            "type": "integer",
                            "description": "The number of octets that have been randomly dropped by this\n            drop process.  This counter applies, therefore, only to random\n            droppers.\n            \n            Discontinuities in the value of this counter can occur at re-\n            initialization of the management system and at other times as\n            indicated by the value of ifCounterDiscontinuityTime on the\n            relevant interface.",
                            "minimum": 0
                          },
                          "diffServAlgRandomDropPkts": {
                            "type": "integer",
                            "description": "The number of packets that have been randomly dropped by this\n            drop process. This counter applies, therefore, only to random\n            droppers.\n            \n            Discontinuities in the value of this counter can occur at re-\n            initialization of the management system and at other times as\n            indicated by the value of ifCounterDiscontinuityTime on the\n            relevant interface.",
                            "minimum": 0
                          },
                          "diffServAlgDropStorage": {
                            "type": "string",
                            "description": "The storage type for this conceptual row.  Conceptual rows\n            having the value 'permanent' need not allow write-access to any\n            columnar objects in the row.",
                            "x-yang-type": "snmpv2-tc:StorageType"
                          },
                          "diffServAlgDropStatus": {
                            "type": "string",
                            "description": "The status of this conceptual row. All writable objects in this\n            row may be modified at any time. Setting this variable to\n            'destroy' when the MIB contains one or more RowPointers pointing\n            to it results in destruction being delayed until the row is no\n            longer used.",
                            "x-yang-type": "snmpv2-tc:RowStatus"
                          }
                        }
                      }
                    }
                  }
                },
                "example": {
                  "DIFFSERV-MIB:diffServAlgDropTable": {
                    "diffServAlgDropEntry": [
                      {
                        "diffServAlgDropId": "example-string",
                        "diffServAlgDropType": "ethernetCsmacd(6)",
                        "diffServAlgDropNext": "example-string",
                        "diffServAlgDropQMeasure": "example-string",
                        "diffServAlgDropQThreshold": 0,
                        "diffServAlgDropSpecific": "example-string",
                        "diffServAlgDropOctets": 1234567890,
                        "diffServAlgDropPkts": 0,
                        "diffServAlgRandomDropOctets": 1234567890,
                        "diffServAlgRandomDropPkts": 0,
                        "diffServAlgDropStorage": "example-string",
                        "diffServAlgDropStatus": "up(1)"
                      },
                      {
                        "diffServAlgDropId": "example-string",
                        "diffServAlgDropType": "ethernetCsmacd(6)",
                        "diffServAlgDropNext": "example-string",
                        "diffServAlgDropQMeasure": "example-string",
                        "diffServAlgDropQThreshold": 0,
                        "diffServAlgDropSpecific": "example-string",
                        "diffServAlgDropOctets": 1234567890,
                        "diffServAlgDropPkts": 0,
                        "diffServAlgRandomDropOctets": 1234567890,
                        "diffServAlgRandomDropPkts": 0,
                        "diffServAlgDropStorage": "example-string",
                        "diffServAlgDropStatus": "up(1)"
                      },
                      {
                        "diffServAlgDropId": "example-string",
                        "diffServAlgDropType": "ethernetCsmacd(6)",
                        "diffServAlgDropNext": "example-string",
                        "diffServAlgDropQMeasure": "example-string",
                        "diffServAlgDropQThreshold": 0,
                        "diffServAlgDropSpecific": "example-string",
                        "diffServAlgDropOctets": 1234567890,
                        "diffServAlgDropPkts": 0,
                        "diffServAlgRandomDropOctets": 1234567890,
                        "diffServAlgRandomDropPkts": 0,
                        "diffServAlgDropStorage": "example-string",
                        "diffServAlgDropStatus": "up(1)"
                      }
                    ]
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-diffServAlgDropTable",
        "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": "/diffServAlgDropTable",
      "x-restconf-kind": "container"
    },
    "/data/DIFFSERV-MIB:diffServAlgDropTable/diffServAlgDropEntry": {
      "get": {
        "summary": "Get diffServAlgDropEntry list",
        "description": "Retrieve list of diffServAlgDropEntry entries from MIB",
        "tags": [
          "DIFFSERV-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "An entry describes a process that drops packets according to\n          some algorithm. Further details of the algorithm type are to be\n          found in diffServAlgDropType and with more detail parameter entry\n          pointed to by diffServAlgDropSpecific when necessary.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "diffServAlgDropId": {
                        "type": "string",
                        "description": "An index that enumerates the Algorithmic Dropper entries.\n            Managers obtain new values for row creation in this table by\n            reading diffServAlgDropNextFree.",
                        "x-yang-type": "DIFFSERV-MIB:IndexInteger"
                      },
                      "diffServAlgDropType": {
                        "type": "string",
                        "description": "The type of algorithm used by this dropper. The value other(1)\n            requires further specification in some other MIB module.\n            \n            In the tailDrop(2) algorithm, diffServAlgDropQThreshold\n            represents the maximum depth of the queue, pointed to by\n            diffServAlgDropQMeasure, beyond which all newly arriving packets\n            will be dropped.\n            \n            In the headDrop(3) algorithm, if a packet arrives when the\n            current depth of the queue, pointed to by\n            diffServAlgDropQMeasure, is at diffServAlgDropQThreshold, packets\n            currently at the head of the queue are dropped to make room for\n            the new packet to be enqueued at the tail of the queue.\n            \n            In the randomDrop(4) algorithm, on packet arrival, an Active\n            Queue Management algorithm is executed which may randomly drop a\n            packet. This algorithm may be proprietary, and it may drop either\n            the arriving packet or another packet in the queue.\n            diffServAlgDropSpecific points to a diffServRandomDropEntry that\n            describes the algorithm. For this algorithm,\n            \n            \n            \n            diffServAlgDropQThreshold is understood to be the absolute\n            maximum size of the queue and additional parameters are described\n            in diffServRandomDropTable.\n            \n            The alwaysDrop(5) algorithm is as its name specifies; always\n            drop. In this case, the other configuration values in this Entry\n            are not meaningful; There is no useful 'next' processing step,\n            there is no queue, and parameters describing the queue are not\n            useful. Therefore, diffServAlgDropNext, diffServAlgDropMeasure,\n            and diffServAlgDropSpecific are all zeroDotZero."
                      },
                      "diffServAlgDropNext": {
                        "type": "string",
                        "description": "This selects the next Differentiated Services Functional Data\n            Path Element to handle traffic for this data path. This\n            RowPointer should point to an instance of one of:\n              diffServClfrEntry\n              diffServMeterEntry\n              diffServActionEntry\n              diffServQEntry\n            \n            A value of zeroDotZero in this attribute indicates no further\n            Differentiated Services treatment is performed on traffic of this\n            data path. The use of zeroDotZero is the normal usage for the\n            last functional data path element of the current data path.\n            \n            When diffServAlgDropType is alwaysDrop(5), this object is\n            ignored.\n            \n            Setting this to point to a target that does not exist results in\n            an inconsistentValue error.  If the row pointed to is removed or\n            becomes inactive by other means, the treatment is as if this\n            attribute contains a value of zeroDotZero.",
                        "x-yang-type": "snmpv2-tc:RowPointer"
                      },
                      "diffServAlgDropQMeasure": {
                        "type": "string",
                        "description": "Points to an entry in the diffServQTable to indicate the queue\n            that a drop algorithm is to monitor when deciding whether to drop\n            a packet. If the row pointed to does not exist, the algorithmic\n            dropper element is considered inactive.\n            \n            \n            \n            Setting this to point to a target that does not exist results in\n            an inconsistentValue error.  If the row pointed to is removed or\n            becomes inactive by other means, the treatment is as if this\n            attribute contains a value of zeroDotZero.",
                        "x-yang-type": "snmpv2-tc:RowPointer"
                      },
                      "diffServAlgDropQThreshold": {
                        "type": "integer",
                        "description": "A threshold on the depth in bytes of the queue being measured at\n            which a trigger is generated to the dropping algorithm, unless\n            diffServAlgDropType is alwaysDrop(5) where this object is\n            ignored.\n            \n            For the tailDrop(2) or headDrop(3) algorithms, this represents\n            the depth of the queue, pointed to by diffServAlgDropQMeasure, at\n            which the drop action will take place. Other algorithms will need\n            to define their own semantics for this threshold.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "diffServAlgDropSpecific": {
                        "type": "string",
                        "description": "Points to a table entry that provides further detail regarding a\n            drop algorithm.\n            \n            Entries with diffServAlgDropType equal to other(1) may have this\n            point to a table defined in another MIB module.\n            \n            Entries with diffServAlgDropType equal to randomDrop(4) must have\n            this point to an entry in diffServRandomDropTable.\n            \n            For all other algorithms specified in this MIB, this should take\n            the value zeroDotZero.\n            \n            The diffServAlgDropType is authoritative for the type of the drop\n            algorithm and the specific parameters for the drop algorithm\n            needs to be evaluated based on the diffServAlgDropType.\n            \n            Setting this to point to a target that does not exist results in\n            an inconsistentValue error.  If the row pointed to is removed or\n            becomes inactive by other means, the treatment is as if this\n            attribute contains a value of zeroDotZero.",
                        "x-yang-type": "snmpv2-tc:RowPointer"
                      },
                      "diffServAlgDropOctets": {
                        "type": "integer",
                        "description": "The number of octets that have been deterministically dropped by\n            this drop process.\n            \n            Discontinuities in the value of this counter can occur at re-\n            initialization of the management system and at other times as\n            indicated by the value of ifCounterDiscontinuityTime on the\n            relevant interface.",
                        "minimum": 0
                      },
                      "diffServAlgDropPkts": {
                        "type": "integer",
                        "description": "The number of packets that have been deterministically dropped\n            by this drop process.\n            \n            Discontinuities in the value of this counter can occur at re-\n            initialization of the management system and at other times as\n            indicated by the value of ifCounterDiscontinuityTime on the\n            relevant interface.",
                        "minimum": 0
                      },
                      "diffServAlgRandomDropOctets": {
                        "type": "integer",
                        "description": "The number of octets that have been randomly dropped by this\n            drop process.  This counter applies, therefore, only to random\n            droppers.\n            \n            Discontinuities in the value of this counter can occur at re-\n            initialization of the management system and at other times as\n            indicated by the value of ifCounterDiscontinuityTime on the\n            relevant interface.",
                        "minimum": 0
                      },
                      "diffServAlgRandomDropPkts": {
                        "type": "integer",
                        "description": "The number of packets that have been randomly dropped by this\n            drop process. This counter applies, therefore, only to random\n            droppers.\n            \n            Discontinuities in the value of this counter can occur at re-\n            initialization of the management system and at other times as\n            indicated by the value of ifCounterDiscontinuityTime on the\n            relevant interface.",
                        "minimum": 0
                      },
                      "diffServAlgDropStorage": {
                        "type": "string",
                        "description": "The storage type for this conceptual row.  Conceptual rows\n            having the value 'permanent' need not allow write-access to any\n            columnar objects in the row.",
                        "x-yang-type": "snmpv2-tc:StorageType"
                      },
                      "diffServAlgDropStatus": {
                        "type": "string",
                        "description": "The status of this conceptual row. All writable objects in this\n            row may be modified at any time. Setting this variable to\n            'destroy' when the MIB contains one or more RowPointers pointing\n            to it results in destruction being delayed until the row is no\n            longer used.",
                        "x-yang-type": "snmpv2-tc:RowStatus"
                      }
                    }
                  }
                },
                "example": {
                  "DIFFSERV-MIB:diffServAlgDropEntry": [
                    {
                      "diffServAlgDropId": "example-string",
                      "diffServAlgDropType": "ethernetCsmacd(6)",
                      "diffServAlgDropNext": "example-string",
                      "diffServAlgDropQMeasure": "example-string",
                      "diffServAlgDropQThreshold": 0,
                      "diffServAlgDropSpecific": "example-string",
                      "diffServAlgDropOctets": 1234567890,
                      "diffServAlgDropPkts": 0,
                      "diffServAlgRandomDropOctets": 1234567890,
                      "diffServAlgRandomDropPkts": 0,
                      "diffServAlgDropStorage": "example-string",
                      "diffServAlgDropStatus": "up(1)"
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-diffServAlgDropEntry",
        "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": "/diffServAlgDropTable/diffServAlgDropEntry",
      "x-restconf-kind": "container"
    },
    "/data/DIFFSERV-MIB:diffServAlgDropTable/diffServAlgDropEntry={diffServAlgDropId}": {
      "get": {
        "summary": "Get diffServAlgDropEntry entry",
        "description": "Retrieve specific diffServAlgDropEntry entry by key from MIB",
        "tags": [
          "DIFFSERV-MIB"
        ],
        "parameters": [
          {
            "name": "diffServAlgDropId",
            "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": {
                    "diffServAlgDropId": {
                      "type": "string",
                      "description": "An index that enumerates the Algorithmic Dropper entries.\n            Managers obtain new values for row creation in this table by\n            reading diffServAlgDropNextFree.",
                      "x-yang-type": "DIFFSERV-MIB:IndexInteger"
                    },
                    "diffServAlgDropType": {
                      "type": "string",
                      "description": "The type of algorithm used by this dropper. The value other(1)\n            requires further specification in some other MIB module.\n            \n            In the tailDrop(2) algorithm, diffServAlgDropQThreshold\n            represents the maximum depth of the queue, pointed to by\n            diffServAlgDropQMeasure, beyond which all newly arriving packets\n            will be dropped.\n            \n            In the headDrop(3) algorithm, if a packet arrives when the\n            current depth of the queue, pointed to by\n            diffServAlgDropQMeasure, is at diffServAlgDropQThreshold, packets\n            currently at the head of the queue are dropped to make room for\n            the new packet to be enqueued at the tail of the queue.\n            \n            In the randomDrop(4) algorithm, on packet arrival, an Active\n            Queue Management algorithm is executed which may randomly drop a\n            packet. This algorithm may be proprietary, and it may drop either\n            the arriving packet or another packet in the queue.\n            diffServAlgDropSpecific points to a diffServRandomDropEntry that\n            describes the algorithm. For this algorithm,\n            \n            \n            \n            diffServAlgDropQThreshold is understood to be the absolute\n            maximum size of the queue and additional parameters are described\n            in diffServRandomDropTable.\n            \n            The alwaysDrop(5) algorithm is as its name specifies; always\n            drop. In this case, the other configuration values in this Entry\n            are not meaningful; There is no useful 'next' processing step,\n            there is no queue, and parameters describing the queue are not\n            useful. Therefore, diffServAlgDropNext, diffServAlgDropMeasure,\n            and diffServAlgDropSpecific are all zeroDotZero."
                    },
                    "diffServAlgDropNext": {
                      "type": "string",
                      "description": "This selects the next Differentiated Services Functional Data\n            Path Element to handle traffic for this data path. This\n            RowPointer should point to an instance of one of:\n              diffServClfrEntry\n              diffServMeterEntry\n              diffServActionEntry\n              diffServQEntry\n            \n            A value of zeroDotZero in this attribute indicates no further\n            Differentiated Services treatment is performed on traffic of this\n            data path. The use of zeroDotZero is the normal usage for the\n            last functional data path element of the current data path.\n            \n            When diffServAlgDropType is alwaysDrop(5), this object is\n            ignored.\n            \n            Setting this to point to a target that does not exist results in\n            an inconsistentValue error.  If the row pointed to is removed or\n            becomes inactive by other means, the treatment is as if this\n            attribute contains a value of zeroDotZero.",
                      "x-yang-type": "snmpv2-tc:RowPointer"
                    },
                    "diffServAlgDropQMeasure": {
                      "type": "string",
                      "description": "Points to an entry in the diffServQTable to indicate the queue\n            that a drop algorithm is to monitor when deciding whether to drop\n            a packet. If the row pointed to does not exist, the algorithmic\n            dropper element is considered inactive.\n            \n            \n            \n            Setting this to point to a target that does not exist results in\n            an inconsistentValue error.  If the row pointed to is removed or\n            becomes inactive by other means, the treatment is as if this\n            attribute contains a value of zeroDotZero.",
                      "x-yang-type": "snmpv2-tc:RowPointer"
                    },
                    "diffServAlgDropQThreshold": {
                      "type": "integer",
                      "description": "A threshold on the depth in bytes of the queue being measured at\n            which a trigger is generated to the dropping algorithm, unless\n            diffServAlgDropType is alwaysDrop(5) where this object is\n            ignored.\n            \n            For the tailDrop(2) or headDrop(3) algorithms, this represents\n            the depth of the queue, pointed to by diffServAlgDropQMeasure, at\n            which the drop action will take place. Other algorithms will need\n            to define their own semantics for this threshold.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "diffServAlgDropSpecific": {
                      "type": "string",
                      "description": "Points to a table entry that provides further detail regarding a\n            drop algorithm.\n            \n            Entries with diffServAlgDropType equal to other(1) may have this\n            point to a table defined in another MIB module.\n            \n            Entries with diffServAlgDropType equal to randomDrop(4) must have\n            this point to an entry in diffServRandomDropTable.\n            \n            For all other algorithms specified in this MIB, this should take\n            the value zeroDotZero.\n            \n            The diffServAlgDropType is authoritative for the type of the drop\n            algorithm and the specific parameters for the drop algorithm\n            needs to be evaluated based on the diffServAlgDropType.\n            \n            Setting this to point to a target that does not exist results in\n            an inconsistentValue error.  If the row pointed to is removed or\n            becomes inactive by other means, the treatment is as if this\n            attribute contains a value of zeroDotZero.",
                      "x-yang-type": "snmpv2-tc:RowPointer"
                    },
                    "diffServAlgDropOctets": {
                      "type": "integer",
                      "description": "The number of octets that have been deterministically dropped by\n            this drop process.\n            \n            Discontinuities in the value of this counter can occur at re-\n            initialization of the management system and at other times as\n            indicated by the value of ifCounterDiscontinuityTime on the\n            relevant interface.",
                      "minimum": 0
                    },
                    "diffServAlgDropPkts": {
                      "type": "integer",
                      "description": "The number of packets that have been deterministically dropped\n            by this drop process.\n            \n            Discontinuities in the value of this counter can occur at re-\n            initialization of the management system and at other times as\n            indicated by the value of ifCounterDiscontinuityTime on the\n            relevant interface.",
                      "minimum": 0
                    },
                    "diffServAlgRandomDropOctets": {
                      "type": "integer",
                      "description": "The number of octets that have been randomly dropped by this\n            drop process.  This counter applies, therefore, only to random\n            droppers.\n            \n            Discontinuities in the value of this counter can occur at re-\n            initialization of the management system and at other times as\n            indicated by the value of ifCounterDiscontinuityTime on the\n            relevant interface.",
                      "minimum": 0
                    },
                    "diffServAlgRandomDropPkts": {
                      "type": "integer",
                      "description": "The number of packets that have been randomly dropped by this\n            drop process. This counter applies, therefore, only to random\n            droppers.\n            \n            Discontinuities in the value of this counter can occur at re-\n            initialization of the management system and at other times as\n            indicated by the value of ifCounterDiscontinuityTime on the\n            relevant interface.",
                      "minimum": 0
                    },
                    "diffServAlgDropStorage": {
                      "type": "string",
                      "description": "The storage type for this conceptual row.  Conceptual rows\n            having the value 'permanent' need not allow write-access to any\n            columnar objects in the row.",
                      "x-yang-type": "snmpv2-tc:StorageType"
                    },
                    "diffServAlgDropStatus": {
                      "type": "string",
                      "description": "The status of this conceptual row. All writable objects in this\n            row may be modified at any time. Setting this variable to\n            'destroy' when the MIB contains one or more RowPointers pointing\n            to it results in destruction being delayed until the row is no\n            longer used.",
                      "x-yang-type": "snmpv2-tc:RowStatus"
                    }
                  }
                },
                "example": {
                  "DIFFSERV-MIB:diffServAlgDropEntry": {
                    "diffServAlgDropId": "example-string",
                    "diffServAlgDropType": "ethernetCsmacd(6)",
                    "diffServAlgDropNext": "example-string",
                    "diffServAlgDropQMeasure": "example-string",
                    "diffServAlgDropQThreshold": 0,
                    "diffServAlgDropSpecific": "example-string",
                    "diffServAlgDropOctets": 1234567890,
                    "diffServAlgDropPkts": 0,
                    "diffServAlgRandomDropOctets": 1234567890,
                    "diffServAlgRandomDropPkts": 0,
                    "diffServAlgDropStorage": "example-string",
                    "diffServAlgDropStatus": "up(1)"
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-diffServAlgDropEntry-2"
      },
      "x-yang-path": "/diffServAlgDropTable/diffServAlgDropEntry={diffServAlgDropId}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "diffServAlgDropId"
      ]
    },
    "/data/DIFFSERV-MIB:diffServRandomDropTable": {
      "get": {
        "summary": "Get diffServRandomDropTable data",
        "description": "Retrieve diffServRandomDropTable operational data from MIB",
        "tags": [
          "DIFFSERV-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "description": "The random drop table contains entries describing a process that\n        drops packets randomly. Entries in this table are pointed to by\n        diffServAlgDropSpecific.",
                  "properties": {
                    "diffServRandomDropEntry": {
                      "type": "array",
                      "description": "An entry describes a process that drops packets according to a\n          random algorithm.",
                      "items": {
                        "type": "object",
                        "properties": {
                          "diffServRandomDropId": {
                            "type": "string",
                            "description": "An index that enumerates the Random Drop entries.  Managers\n            obtain new values for row creation in this table by reading\n            diffServRandomDropNextFree.",
                            "x-yang-type": "DIFFSERV-MIB:IndexInteger"
                          },
                          "diffServRandomDropMinThreshBytes": {
                            "type": "integer",
                            "description": "The average queue depth in bytes, beyond which traffic has a\n            non-zero probability of being dropped. Changes in this variable\n            may or may not be reflected in the reported value of\n            diffServRandomDropMinThreshPkts.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "diffServRandomDropMinThreshPkts": {
                            "type": "integer",
                            "description": "The average queue depth in packets, beyond which traffic has a\n            non-zero probability of being dropped. Changes in this variable\n            may or may not be reflected in the reported value of\n            diffServRandomDropMinThreshBytes.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "diffServRandomDropMaxThreshBytes": {
                            "type": "integer",
                            "description": "The average queue depth beyond which traffic has a probability\n            indicated by diffServRandomDropProbMax of being dropped or\n            marked. Note that this differs from the physical queue limit,\n            which is stored in diffServAlgDropQThreshold. Changes in this\n            variable may or may not be reflected in the reported value of\n            diffServRandomDropMaxThreshPkts.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "diffServRandomDropMaxThreshPkts": {
                            "type": "integer",
                            "description": "The average queue depth beyond which traffic has a probability\n            indicated by diffServRandomDropProbMax of being dropped or\n            marked. Note that this differs from the physical queue limit,\n            which is stored in diffServAlgDropQThreshold. Changes in this\n            variable may or may not be reflected in the reported value of\n            diffServRandomDropMaxThreshBytes.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "diffServRandomDropProbMax": {
                            "type": "integer",
                            "description": "The worst case random drop probability, expressed in drops per\n            thousand packets.\n            \n            For example, if in the worst case every arriving packet may be\n            dropped (100%) for a period, this has the value 1000.\n            Alternatively, if in the worst case only one percent (1%) of\n            traffic may be dropped, it has the value 10.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "diffServRandomDropWeight": {
                            "type": "integer",
                            "description": "The weighting of past history in affecting the Exponentially\n            Weighted Moving Average function that calculates the current\n            average queue depth.  The equation uses\n            diffServRandomDropWeight/65536 as the coefficient for the new\n            sample in the equation, and (65536 -\n            diffServRandomDropWeight)/65536 as the coefficient of the old\n            value.\n            \n            Implementations may limit the values of diffServRandomDropWeight\n            to a subset of the possible range of values, such as powers of\n            two. Doing this would facilitate implementation of the\n            Exponentially Weighted Moving Average using shift instructions or\n            registers.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "diffServRandomDropSamplingRate": {
                            "type": "integer",
                            "description": "The number of times per second the queue is sampled for queue\n            average calculation.  A value of zero is used to mean that the\n            queue is sampled approximately each time a packet is enqueued (or\n            dequeued).",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "diffServRandomDropStorage": {
                            "type": "string",
                            "description": "The storage type for this conceptual row.  Conceptual rows\n            having the value 'permanent' need not allow write-access to any\n            columnar objects in the row.",
                            "x-yang-type": "snmpv2-tc:StorageType"
                          },
                          "diffServRandomDropStatus": {
                            "type": "string",
                            "description": "The status of this conceptual row. All writable objects in this\n            row may be modified at any time. Setting this variable to\n            'destroy' when the MIB contains one or more RowPointers pointing\n            to it results in destruction being delayed until the row is no\n            longer used.",
                            "x-yang-type": "snmpv2-tc:RowStatus"
                          }
                        }
                      }
                    }
                  }
                },
                "example": {
                  "DIFFSERV-MIB:diffServRandomDropTable": {
                    "diffServRandomDropEntry": [
                      {
                        "diffServRandomDropId": "example-string",
                        "diffServRandomDropMinThreshBytes": 0,
                        "diffServRandomDropMinThreshPkts": 0,
                        "diffServRandomDropMaxThreshBytes": 0,
                        "diffServRandomDropMaxThreshPkts": 0,
                        "diffServRandomDropProbMax": 0,
                        "diffServRandomDropWeight": 0,
                        "diffServRandomDropSamplingRate": 0,
                        "diffServRandomDropStorage": "example-string",
                        "diffServRandomDropStatus": "up(1)"
                      },
                      {
                        "diffServRandomDropId": "example-string",
                        "diffServRandomDropMinThreshBytes": 0,
                        "diffServRandomDropMinThreshPkts": 0,
                        "diffServRandomDropMaxThreshBytes": 0,
                        "diffServRandomDropMaxThreshPkts": 0,
                        "diffServRandomDropProbMax": 0,
                        "diffServRandomDropWeight": 0,
                        "diffServRandomDropSamplingRate": 0,
                        "diffServRandomDropStorage": "example-string",
                        "diffServRandomDropStatus": "up(1)"
                      },
                      {
                        "diffServRandomDropId": "example-string",
                        "diffServRandomDropMinThreshBytes": 0,
                        "diffServRandomDropMinThreshPkts": 0,
                        "diffServRandomDropMaxThreshBytes": 0,
                        "diffServRandomDropMaxThreshPkts": 0,
                        "diffServRandomDropProbMax": 0,
                        "diffServRandomDropWeight": 0,
                        "diffServRandomDropSamplingRate": 0,
                        "diffServRandomDropStorage": "example-string",
                        "diffServRandomDropStatus": "up(1)"
                      }
                    ]
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-diffServRandomDropTable",
        "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": "/diffServRandomDropTable",
      "x-restconf-kind": "container"
    },
    "/data/DIFFSERV-MIB:diffServRandomDropTable/diffServRandomDropEntry": {
      "get": {
        "summary": "Get diffServRandomDropEntry list",
        "description": "Retrieve list of diffServRandomDropEntry entries from MIB",
        "tags": [
          "DIFFSERV-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "An entry describes a process that drops packets according to a\n          random algorithm.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "diffServRandomDropId": {
                        "type": "string",
                        "description": "An index that enumerates the Random Drop entries.  Managers\n            obtain new values for row creation in this table by reading\n            diffServRandomDropNextFree.",
                        "x-yang-type": "DIFFSERV-MIB:IndexInteger"
                      },
                      "diffServRandomDropMinThreshBytes": {
                        "type": "integer",
                        "description": "The average queue depth in bytes, beyond which traffic has a\n            non-zero probability of being dropped. Changes in this variable\n            may or may not be reflected in the reported value of\n            diffServRandomDropMinThreshPkts.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "diffServRandomDropMinThreshPkts": {
                        "type": "integer",
                        "description": "The average queue depth in packets, beyond which traffic has a\n            non-zero probability of being dropped. Changes in this variable\n            may or may not be reflected in the reported value of\n            diffServRandomDropMinThreshBytes.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "diffServRandomDropMaxThreshBytes": {
                        "type": "integer",
                        "description": "The average queue depth beyond which traffic has a probability\n            indicated by diffServRandomDropProbMax of being dropped or\n            marked. Note that this differs from the physical queue limit,\n            which is stored in diffServAlgDropQThreshold. Changes in this\n            variable may or may not be reflected in the reported value of\n            diffServRandomDropMaxThreshPkts.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "diffServRandomDropMaxThreshPkts": {
                        "type": "integer",
                        "description": "The average queue depth beyond which traffic has a probability\n            indicated by diffServRandomDropProbMax of being dropped or\n            marked. Note that this differs from the physical queue limit,\n            which is stored in diffServAlgDropQThreshold. Changes in this\n            variable may or may not be reflected in the reported value of\n            diffServRandomDropMaxThreshBytes.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "diffServRandomDropProbMax": {
                        "type": "integer",
                        "description": "The worst case random drop probability, expressed in drops per\n            thousand packets.\n            \n            For example, if in the worst case every arriving packet may be\n            dropped (100%) for a period, this has the value 1000.\n            Alternatively, if in the worst case only one percent (1%) of\n            traffic may be dropped, it has the value 10.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "diffServRandomDropWeight": {
                        "type": "integer",
                        "description": "The weighting of past history in affecting the Exponentially\n            Weighted Moving Average function that calculates the current\n            average queue depth.  The equation uses\n            diffServRandomDropWeight/65536 as the coefficient for the new\n            sample in the equation, and (65536 -\n            diffServRandomDropWeight)/65536 as the coefficient of the old\n            value.\n            \n            Implementations may limit the values of diffServRandomDropWeight\n            to a subset of the possible range of values, such as powers of\n            two. Doing this would facilitate implementation of the\n            Exponentially Weighted Moving Average using shift instructions or\n            registers.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "diffServRandomDropSamplingRate": {
                        "type": "integer",
                        "description": "The number of times per second the queue is sampled for queue\n            average calculation.  A value of zero is used to mean that the\n            queue is sampled approximately each time a packet is enqueued (or\n            dequeued).",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "diffServRandomDropStorage": {
                        "type": "string",
                        "description": "The storage type for this conceptual row.  Conceptual rows\n            having the value 'permanent' need not allow write-access to any\n            columnar objects in the row.",
                        "x-yang-type": "snmpv2-tc:StorageType"
                      },
                      "diffServRandomDropStatus": {
                        "type": "string",
                        "description": "The status of this conceptual row. All writable objects in this\n            row may be modified at any time. Setting this variable to\n            'destroy' when the MIB contains one or more RowPointers pointing\n            to it results in destruction being delayed until the row is no\n            longer used.",
                        "x-yang-type": "snmpv2-tc:RowStatus"
                      }
                    }
                  }
                },
                "example": {
                  "DIFFSERV-MIB:diffServRandomDropEntry": [
                    {
                      "diffServRandomDropId": "example-string",
                      "diffServRandomDropMinThreshBytes": 0,
                      "diffServRandomDropMinThreshPkts": 0,
                      "diffServRandomDropMaxThreshBytes": 0,
                      "diffServRandomDropMaxThreshPkts": 0,
                      "diffServRandomDropProbMax": 0,
                      "diffServRandomDropWeight": 0,
                      "diffServRandomDropSamplingRate": 0,
                      "diffServRandomDropStorage": "example-string",
                      "diffServRandomDropStatus": "up(1)"
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-diffServRandomDropEntry",
        "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": "/diffServRandomDropTable/diffServRandomDropEntry",
      "x-restconf-kind": "container"
    },
    "/data/DIFFSERV-MIB:diffServRandomDropTable/diffServRandomDropEntry={diffServRandomDropId}": {
      "get": {
        "summary": "Get diffServRandomDropEntry entry",
        "description": "Retrieve specific diffServRandomDropEntry entry by key from MIB",
        "tags": [
          "DIFFSERV-MIB"
        ],
        "parameters": [
          {
            "name": "diffServRandomDropId",
            "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": {
                    "diffServRandomDropId": {
                      "type": "string",
                      "description": "An index that enumerates the Random Drop entries.  Managers\n            obtain new values for row creation in this table by reading\n            diffServRandomDropNextFree.",
                      "x-yang-type": "DIFFSERV-MIB:IndexInteger"
                    },
                    "diffServRandomDropMinThreshBytes": {
                      "type": "integer",
                      "description": "The average queue depth in bytes, beyond which traffic has a\n            non-zero probability of being dropped. Changes in this variable\n            may or may not be reflected in the reported value of\n            diffServRandomDropMinThreshPkts.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "diffServRandomDropMinThreshPkts": {
                      "type": "integer",
                      "description": "The average queue depth in packets, beyond which traffic has a\n            non-zero probability of being dropped. Changes in this variable\n            may or may not be reflected in the reported value of\n            diffServRandomDropMinThreshBytes.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "diffServRandomDropMaxThreshBytes": {
                      "type": "integer",
                      "description": "The average queue depth beyond which traffic has a probability\n            indicated by diffServRandomDropProbMax of being dropped or\n            marked. Note that this differs from the physical queue limit,\n            which is stored in diffServAlgDropQThreshold. Changes in this\n            variable may or may not be reflected in the reported value of\n            diffServRandomDropMaxThreshPkts.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "diffServRandomDropMaxThreshPkts": {
                      "type": "integer",
                      "description": "The average queue depth beyond which traffic has a probability\n            indicated by diffServRandomDropProbMax of being dropped or\n            marked. Note that this differs from the physical queue limit,\n            which is stored in diffServAlgDropQThreshold. Changes in this\n            variable may or may not be reflected in the reported value of\n            diffServRandomDropMaxThreshBytes.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "diffServRandomDropProbMax": {
                      "type": "integer",
                      "description": "The worst case random drop probability, expressed in drops per\n            thousand packets.\n            \n            For example, if in the worst case every arriving packet may be\n            dropped (100%) for a period, this has the value 1000.\n            Alternatively, if in the worst case only one percent (1%) of\n            traffic may be dropped, it has the value 10.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "diffServRandomDropWeight": {
                      "type": "integer",
                      "description": "The weighting of past history in affecting the Exponentially\n            Weighted Moving Average function that calculates the current\n            average queue depth.  The equation uses\n            diffServRandomDropWeight/65536 as the coefficient for the new\n            sample in the equation, and (65536 -\n            diffServRandomDropWeight)/65536 as the coefficient of the old\n            value.\n            \n            Implementations may limit the values of diffServRandomDropWeight\n            to a subset of the possible range of values, such as powers of\n            two. Doing this would facilitate implementation of the\n            Exponentially Weighted Moving Average using shift instructions or\n            registers.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "diffServRandomDropSamplingRate": {
                      "type": "integer",
                      "description": "The number of times per second the queue is sampled for queue\n            average calculation.  A value of zero is used to mean that the\n            queue is sampled approximately each time a packet is enqueued (or\n            dequeued).",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "diffServRandomDropStorage": {
                      "type": "string",
                      "description": "The storage type for this conceptual row.  Conceptual rows\n            having the value 'permanent' need not allow write-access to any\n            columnar objects in the row.",
                      "x-yang-type": "snmpv2-tc:StorageType"
                    },
                    "diffServRandomDropStatus": {
                      "type": "string",
                      "description": "The status of this conceptual row. All writable objects in this\n            row may be modified at any time. Setting this variable to\n            'destroy' when the MIB contains one or more RowPointers pointing\n            to it results in destruction being delayed until the row is no\n            longer used.",
                      "x-yang-type": "snmpv2-tc:RowStatus"
                    }
                  }
                },
                "example": {
                  "DIFFSERV-MIB:diffServRandomDropEntry": {
                    "diffServRandomDropId": "example-string",
                    "diffServRandomDropMinThreshBytes": 0,
                    "diffServRandomDropMinThreshPkts": 0,
                    "diffServRandomDropMaxThreshBytes": 0,
                    "diffServRandomDropMaxThreshPkts": 0,
                    "diffServRandomDropProbMax": 0,
                    "diffServRandomDropWeight": 0,
                    "diffServRandomDropSamplingRate": 0,
                    "diffServRandomDropStorage": "example-string",
                    "diffServRandomDropStatus": "up(1)"
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-diffServRandomDropEntry-2"
      },
      "x-yang-path": "/diffServRandomDropTable/diffServRandomDropEntry={diffServRandomDropId}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "diffServRandomDropId"
      ]
    },
    "/data/DIFFSERV-MIB:diffServQTable": {
      "get": {
        "summary": "Get diffServQTable data",
        "description": "Retrieve diffServQTable operational data from MIB",
        "tags": [
          "DIFFSERV-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "description": "The Queue Table enumerates the individual queues.  Note that the\n        MIB models queuing systems as composed of individual queues, one\n        per class of traffic, even though they may in fact be structured\n        as classes of traffic scheduled using a common calendar queue, or\n        in other ways.",
                  "properties": {
                    "diffServQEntry": {
                      "type": "array",
                      "description": "An entry in the Queue Table describes a single queue or class of\n          traffic.",
                      "items": {
                        "type": "object",
                        "properties": {
                          "diffServQId": {
                            "type": "string",
                            "description": "An index that enumerates the Queue entries.  Managers obtain new\n            values for row creation in this table by reading\n            diffServQNextFree.",
                            "x-yang-type": "DIFFSERV-MIB:IndexInteger"
                          },
                          "diffServQNext": {
                            "type": "string",
                            "description": "This selects the next Differentiated Services Scheduler.  The\n            RowPointer must point to a diffServSchedulerEntry.\n            \n            A value of zeroDotZero in this attribute indicates an incomplete\n            diffServQEntry instance. In such a case, the entry has no\n            operational effect, since it has no parameters to give it\n            meaning.\n            \n            Setting this to point to a target that does not exist results in\n            an inconsistentValue error.  If the row pointed to is removed or\n            becomes inactive by other means, the treatment is as if this\n            attribute contains a value of zeroDotZero.",
                            "x-yang-type": "snmpv2-tc:RowPointer"
                          },
                          "diffServQMinRate": {
                            "type": "string",
                            "description": "This RowPointer indicates the diffServMinRateEntry that the\n            scheduler, pointed to by diffServQNext, should use to service\n            this queue.\n            \n            If the row pointed to is zeroDotZero, the minimum rate and\n            priority is unspecified.\n            \n            Setting this to point to a target that does not exist results in\n            an inconsistentValue error.  If the row pointed to is removed or\n            becomes inactive by other means, the treatment is as if this\n            attribute contains a value of zeroDotZero.",
                            "x-yang-type": "snmpv2-tc:RowPointer"
                          },
                          "diffServQMaxRate": {
                            "type": "string",
                            "description": "This RowPointer indicates the diffServMaxRateEntry that the\n            scheduler, pointed to by diffServQNext, should use to service\n            this queue.\n            \n            If the row pointed to is zeroDotZero, the maximum rate is the\n            line speed of the interface.\n            \n            \n            \n            \n            Setting this to point to a target that does not exist results in\n            an inconsistentValue error.  If the row pointed to is removed or\n            becomes inactive by other means, the treatment is as if this\n            attribute contains a value of zeroDotZero.",
                            "x-yang-type": "snmpv2-tc:RowPointer"
                          },
                          "diffServQStorage": {
                            "type": "string",
                            "description": "The storage type for this conceptual row.  Conceptual rows\n            having the value 'permanent' need not allow write-access to any\n            columnar objects in the row.",
                            "x-yang-type": "snmpv2-tc:StorageType"
                          },
                          "diffServQStatus": {
                            "type": "string",
                            "description": "The status of this conceptual row. All writable objects in this\n            row may be modified at any time. Setting this variable to\n            'destroy' when the MIB contains one or more RowPointers pointing\n            to it results in destruction being delayed until the row is no\n            longer used.",
                            "x-yang-type": "snmpv2-tc:RowStatus"
                          }
                        }
                      }
                    }
                  }
                },
                "example": {
                  "DIFFSERV-MIB:diffServQTable": {
                    "diffServQEntry": [
                      {
                        "diffServQId": "example-string",
                        "diffServQNext": "example-string",
                        "diffServQMinRate": "example-string",
                        "diffServQMaxRate": "example-string",
                        "diffServQStorage": "example-string",
                        "diffServQStatus": "up(1)"
                      },
                      {
                        "diffServQId": "example-string",
                        "diffServQNext": "example-string",
                        "diffServQMinRate": "example-string",
                        "diffServQMaxRate": "example-string",
                        "diffServQStorage": "example-string",
                        "diffServQStatus": "up(1)"
                      },
                      {
                        "diffServQId": "example-string",
                        "diffServQNext": "example-string",
                        "diffServQMinRate": "example-string",
                        "diffServQMaxRate": "example-string",
                        "diffServQStorage": "example-string",
                        "diffServQStatus": "up(1)"
                      }
                    ]
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-diffServQTable",
        "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": "/diffServQTable",
      "x-restconf-kind": "container"
    },
    "/data/DIFFSERV-MIB:diffServQTable/diffServQEntry": {
      "get": {
        "summary": "Get diffServQEntry list",
        "description": "Retrieve list of diffServQEntry entries from MIB",
        "tags": [
          "DIFFSERV-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "An entry in the Queue Table describes a single queue or class of\n          traffic.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "diffServQId": {
                        "type": "string",
                        "description": "An index that enumerates the Queue entries.  Managers obtain new\n            values for row creation in this table by reading\n            diffServQNextFree.",
                        "x-yang-type": "DIFFSERV-MIB:IndexInteger"
                      },
                      "diffServQNext": {
                        "type": "string",
                        "description": "This selects the next Differentiated Services Scheduler.  The\n            RowPointer must point to a diffServSchedulerEntry.\n            \n            A value of zeroDotZero in this attribute indicates an incomplete\n            diffServQEntry instance. In such a case, the entry has no\n            operational effect, since it has no parameters to give it\n            meaning.\n            \n            Setting this to point to a target that does not exist results in\n            an inconsistentValue error.  If the row pointed to is removed or\n            becomes inactive by other means, the treatment is as if this\n            attribute contains a value of zeroDotZero.",
                        "x-yang-type": "snmpv2-tc:RowPointer"
                      },
                      "diffServQMinRate": {
                        "type": "string",
                        "description": "This RowPointer indicates the diffServMinRateEntry that the\n            scheduler, pointed to by diffServQNext, should use to service\n            this queue.\n            \n            If the row pointed to is zeroDotZero, the minimum rate and\n            priority is unspecified.\n            \n            Setting this to point to a target that does not exist results in\n            an inconsistentValue error.  If the row pointed to is removed or\n            becomes inactive by other means, the treatment is as if this\n            attribute contains a value of zeroDotZero.",
                        "x-yang-type": "snmpv2-tc:RowPointer"
                      },
                      "diffServQMaxRate": {
                        "type": "string",
                        "description": "This RowPointer indicates the diffServMaxRateEntry that the\n            scheduler, pointed to by diffServQNext, should use to service\n            this queue.\n            \n            If the row pointed to is zeroDotZero, the maximum rate is the\n            line speed of the interface.\n            \n            \n            \n            \n            Setting this to point to a target that does not exist results in\n            an inconsistentValue error.  If the row pointed to is removed or\n            becomes inactive by other means, the treatment is as if this\n            attribute contains a value of zeroDotZero.",
                        "x-yang-type": "snmpv2-tc:RowPointer"
                      },
                      "diffServQStorage": {
                        "type": "string",
                        "description": "The storage type for this conceptual row.  Conceptual rows\n            having the value 'permanent' need not allow write-access to any\n            columnar objects in the row.",
                        "x-yang-type": "snmpv2-tc:StorageType"
                      },
                      "diffServQStatus": {
                        "type": "string",
                        "description": "The status of this conceptual row. All writable objects in this\n            row may be modified at any time. Setting this variable to\n            'destroy' when the MIB contains one or more RowPointers pointing\n            to it results in destruction being delayed until the row is no\n            longer used.",
                        "x-yang-type": "snmpv2-tc:RowStatus"
                      }
                    }
                  }
                },
                "example": {
                  "DIFFSERV-MIB:diffServQEntry": [
                    {
                      "diffServQId": "example-string",
                      "diffServQNext": "example-string",
                      "diffServQMinRate": "example-string",
                      "diffServQMaxRate": "example-string",
                      "diffServQStorage": "example-string",
                      "diffServQStatus": "up(1)"
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-diffServQEntry",
        "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": "/diffServQTable/diffServQEntry",
      "x-restconf-kind": "container"
    },
    "/data/DIFFSERV-MIB:diffServQTable/diffServQEntry={diffServQId}": {
      "get": {
        "summary": "Get diffServQEntry entry",
        "description": "Retrieve specific diffServQEntry entry by key from MIB",
        "tags": [
          "DIFFSERV-MIB"
        ],
        "parameters": [
          {
            "name": "diffServQId",
            "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": {
                    "diffServQId": {
                      "type": "string",
                      "description": "An index that enumerates the Queue entries.  Managers obtain new\n            values for row creation in this table by reading\n            diffServQNextFree.",
                      "x-yang-type": "DIFFSERV-MIB:IndexInteger"
                    },
                    "diffServQNext": {
                      "type": "string",
                      "description": "This selects the next Differentiated Services Scheduler.  The\n            RowPointer must point to a diffServSchedulerEntry.\n            \n            A value of zeroDotZero in this attribute indicates an incomplete\n            diffServQEntry instance. In such a case, the entry has no\n            operational effect, since it has no parameters to give it\n            meaning.\n            \n            Setting this to point to a target that does not exist results in\n            an inconsistentValue error.  If the row pointed to is removed or\n            becomes inactive by other means, the treatment is as if this\n            attribute contains a value of zeroDotZero.",
                      "x-yang-type": "snmpv2-tc:RowPointer"
                    },
                    "diffServQMinRate": {
                      "type": "string",
                      "description": "This RowPointer indicates the diffServMinRateEntry that the\n            scheduler, pointed to by diffServQNext, should use to service\n            this queue.\n            \n            If the row pointed to is zeroDotZero, the minimum rate and\n            priority is unspecified.\n            \n            Setting this to point to a target that does not exist results in\n            an inconsistentValue error.  If the row pointed to is removed or\n            becomes inactive by other means, the treatment is as if this\n            attribute contains a value of zeroDotZero.",
                      "x-yang-type": "snmpv2-tc:RowPointer"
                    },
                    "diffServQMaxRate": {
                      "type": "string",
                      "description": "This RowPointer indicates the diffServMaxRateEntry that the\n            scheduler, pointed to by diffServQNext, should use to service\n            this queue.\n            \n            If the row pointed to is zeroDotZero, the maximum rate is the\n            line speed of the interface.\n            \n            \n            \n            \n            Setting this to point to a target that does not exist results in\n            an inconsistentValue error.  If the row pointed to is removed or\n            becomes inactive by other means, the treatment is as if this\n            attribute contains a value of zeroDotZero.",
                      "x-yang-type": "snmpv2-tc:RowPointer"
                    },
                    "diffServQStorage": {
                      "type": "string",
                      "description": "The storage type for this conceptual row.  Conceptual rows\n            having the value 'permanent' need not allow write-access to any\n            columnar objects in the row.",
                      "x-yang-type": "snmpv2-tc:StorageType"
                    },
                    "diffServQStatus": {
                      "type": "string",
                      "description": "The status of this conceptual row. All writable objects in this\n            row may be modified at any time. Setting this variable to\n            'destroy' when the MIB contains one or more RowPointers pointing\n            to it results in destruction being delayed until the row is no\n            longer used.",
                      "x-yang-type": "snmpv2-tc:RowStatus"
                    }
                  }
                },
                "example": {
                  "DIFFSERV-MIB:diffServQEntry": {
                    "diffServQId": "example-string",
                    "diffServQNext": "example-string",
                    "diffServQMinRate": "example-string",
                    "diffServQMaxRate": "example-string",
                    "diffServQStorage": "example-string",
                    "diffServQStatus": "up(1)"
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-diffServQEntry-2"
      },
      "x-yang-path": "/diffServQTable/diffServQEntry={diffServQId}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "diffServQId"
      ]
    },
    "/data/DIFFSERV-MIB:diffServSchedulerTable": {
      "get": {
        "summary": "Get diffServSchedulerTable data",
        "description": "Retrieve diffServSchedulerTable operational data from MIB",
        "tags": [
          "DIFFSERV-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "description": "The Scheduler Table enumerates packet schedulers. Multiple\n        scheduling algorithms can be used on a given data path, with each\n        algorithm described by one diffServSchedulerEntry.",
                  "properties": {
                    "diffServSchedulerEntry": {
                      "type": "array",
                      "description": "An entry in the Scheduler Table describing a single instance of\n          a scheduling algorithm.",
                      "items": {
                        "type": "object",
                        "properties": {
                          "diffServSchedulerId": {
                            "type": "string",
                            "description": "An index that enumerates the Scheduler entries.  Managers obtain\n            new values for row creation in this table by reading\n            diffServSchedulerNextFree.",
                            "x-yang-type": "DIFFSERV-MIB:IndexInteger"
                          },
                          "diffServSchedulerNext": {
                            "type": "string",
                            "description": "This selects the next Differentiated Services Functional Data\n            Path Element to handle traffic for this data path. This normally\n            is null (zeroDotZero), or points to a diffServSchedulerEntry or a\n            diffServQEntry.\n            \n            However, this RowPointer may also point to an instance of:\n              diffServClfrEntry,\n              diffServMeterEntry,\n              diffServActionEntry,\n              diffServAlgDropEntry.\n            \n            It would point another diffServSchedulerEntry when implementing\n            multiple scheduler methods for the same data path, such as having\n            one set of queues scheduled by WRR and that group participating\n            in a priority scheduling system in which other queues compete\n            with it in that way.  It might also point to a second scheduler\n            in a hierarchical scheduling system.\n            \n            If the row pointed to is zeroDotZero, no further Differentiated\n            Services treatment is performed on traffic of this data path.\n            \n            Setting this to point to a target that does not exist results in\n            an inconsistentValue error.  If the row pointed to is removed or\n            becomes inactive by other means, the treatment is as if this\n            attribute contains a value of zeroDotZero.",
                            "x-yang-type": "snmpv2-tc:RowPointer"
                          },
                          "diffServSchedulerMethod": {
                            "type": "string",
                            "description": "The scheduling algorithm used by this Scheduler. zeroDotZero\n            indicates that this is unknown.  Standard values for generic\n            algorithms: diffServSchedulerPriority, diffServSchedulerWRR, and\n            diffServSchedulerWFQ are specified in this MIB; additional values\n            \n            \n            \n            may be further specified in other MIBs.",
                            "x-yang-type": "snmpv2-tc:AutonomousType"
                          },
                          "diffServSchedulerMinRate": {
                            "type": "string",
                            "description": "This RowPointer indicates the entry in diffServMinRateTable\n            which indicates the priority or minimum output rate from this\n            scheduler. This attribute is used only when there is more than\n            one level of scheduler.\n            \n            When it has the value zeroDotZero, it indicates that no minimum\n            rate or priority is imposed.\n            \n            Setting this to point to a target that does not exist results in\n            an inconsistentValue error.  If the row pointed to is removed or\n            becomes inactive by other means, the treatment is as if this\n            attribute contains a value of zeroDotZero.",
                            "x-yang-type": "snmpv2-tc:RowPointer"
                          },
                          "diffServSchedulerMaxRate": {
                            "type": "string",
                            "description": "This RowPointer indicates the entry in diffServMaxRateTable\n            which indicates the maximum output rate from this scheduler.\n            When more than one maximum rate applies (eg, when a multi-rate\n            shaper is in view), it points to the first of those rate entries.\n            This attribute is used only when there is more than one level of\n            scheduler.\n            \n            When it has the value zeroDotZero, it indicates that no maximum\n            rate is imposed.\n            \n            Setting this to point to a target that does not exist results in\n            an inconsistentValue error.  If the row pointed to is removed or\n            becomes inactive by other means, the treatment is as if this\n            attribute contains a value of zeroDotZero.",
                            "x-yang-type": "snmpv2-tc:RowPointer"
                          },
                          "diffServSchedulerStorage": {
                            "type": "string",
                            "description": "The storage type for this conceptual row.  Conceptual rows\n            having the value 'permanent' need not allow write-access to any\n            columnar objects in the row.",
                            "x-yang-type": "snmpv2-tc:StorageType"
                          },
                          "diffServSchedulerStatus": {
                            "type": "string",
                            "description": "The status of this conceptual row. All writable objects in this\n            row may be modified at any time. Setting this variable to\n            'destroy' when the MIB contains one or more RowPointers pointing\n            to it results in destruction being delayed until the row is no\n            longer used.",
                            "x-yang-type": "snmpv2-tc:RowStatus"
                          }
                        }
                      }
                    }
                  }
                },
                "example": {
                  "DIFFSERV-MIB:diffServSchedulerTable": {
                    "diffServSchedulerEntry": [
                      {
                        "diffServSchedulerId": "example-string",
                        "diffServSchedulerNext": "example-string",
                        "diffServSchedulerMethod": "example-string",
                        "diffServSchedulerMinRate": "example-string",
                        "diffServSchedulerMaxRate": "example-string",
                        "diffServSchedulerStorage": "example-string",
                        "diffServSchedulerStatus": "up(1)"
                      },
                      {
                        "diffServSchedulerId": "example-string",
                        "diffServSchedulerNext": "example-string",
                        "diffServSchedulerMethod": "example-string",
                        "diffServSchedulerMinRate": "example-string",
                        "diffServSchedulerMaxRate": "example-string",
                        "diffServSchedulerStorage": "example-string",
                        "diffServSchedulerStatus": "up(1)"
                      },
                      {
                        "diffServSchedulerId": "example-string",
                        "diffServSchedulerNext": "example-string",
                        "diffServSchedulerMethod": "example-string",
                        "diffServSchedulerMinRate": "example-string",
                        "diffServSchedulerMaxRate": "example-string",
                        "diffServSchedulerStorage": "example-string",
                        "diffServSchedulerStatus": "up(1)"
                      }
                    ]
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-diffServSchedulerTable",
        "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": "/diffServSchedulerTable",
      "x-restconf-kind": "container"
    },
    "/data/DIFFSERV-MIB:diffServSchedulerTable/diffServSchedulerEntry": {
      "get": {
        "summary": "Get diffServSchedulerEntry list",
        "description": "Retrieve list of diffServSchedulerEntry entries from MIB",
        "tags": [
          "DIFFSERV-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "An entry in the Scheduler Table describing a single instance of\n          a scheduling algorithm.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "diffServSchedulerId": {
                        "type": "string",
                        "description": "An index that enumerates the Scheduler entries.  Managers obtain\n            new values for row creation in this table by reading\n            diffServSchedulerNextFree.",
                        "x-yang-type": "DIFFSERV-MIB:IndexInteger"
                      },
                      "diffServSchedulerNext": {
                        "type": "string",
                        "description": "This selects the next Differentiated Services Functional Data\n            Path Element to handle traffic for this data path. This normally\n            is null (zeroDotZero), or points to a diffServSchedulerEntry or a\n            diffServQEntry.\n            \n            However, this RowPointer may also point to an instance of:\n              diffServClfrEntry,\n              diffServMeterEntry,\n              diffServActionEntry,\n              diffServAlgDropEntry.\n            \n            It would point another diffServSchedulerEntry when implementing\n            multiple scheduler methods for the same data path, such as having\n            one set of queues scheduled by WRR and that group participating\n            in a priority scheduling system in which other queues compete\n            with it in that way.  It might also point to a second scheduler\n            in a hierarchical scheduling system.\n            \n            If the row pointed to is zeroDotZero, no further Differentiated\n            Services treatment is performed on traffic of this data path.\n            \n            Setting this to point to a target that does not exist results in\n            an inconsistentValue error.  If the row pointed to is removed or\n            becomes inactive by other means, the treatment is as if this\n            attribute contains a value of zeroDotZero.",
                        "x-yang-type": "snmpv2-tc:RowPointer"
                      },
                      "diffServSchedulerMethod": {
                        "type": "string",
                        "description": "The scheduling algorithm used by this Scheduler. zeroDotZero\n            indicates that this is unknown.  Standard values for generic\n            algorithms: diffServSchedulerPriority, diffServSchedulerWRR, and\n            diffServSchedulerWFQ are specified in this MIB; additional values\n            \n            \n            \n            may be further specified in other MIBs.",
                        "x-yang-type": "snmpv2-tc:AutonomousType"
                      },
                      "diffServSchedulerMinRate": {
                        "type": "string",
                        "description": "This RowPointer indicates the entry in diffServMinRateTable\n            which indicates the priority or minimum output rate from this\n            scheduler. This attribute is used only when there is more than\n            one level of scheduler.\n            \n            When it has the value zeroDotZero, it indicates that no minimum\n            rate or priority is imposed.\n            \n            Setting this to point to a target that does not exist results in\n            an inconsistentValue error.  If the row pointed to is removed or\n            becomes inactive by other means, the treatment is as if this\n            attribute contains a value of zeroDotZero.",
                        "x-yang-type": "snmpv2-tc:RowPointer"
                      },
                      "diffServSchedulerMaxRate": {
                        "type": "string",
                        "description": "This RowPointer indicates the entry in diffServMaxRateTable\n            which indicates the maximum output rate from this scheduler.\n            When more than one maximum rate applies (eg, when a multi-rate\n            shaper is in view), it points to the first of those rate entries.\n            This attribute is used only when there is more than one level of\n            scheduler.\n            \n            When it has the value zeroDotZero, it indicates that no maximum\n            rate is imposed.\n            \n            Setting this to point to a target that does not exist results in\n            an inconsistentValue error.  If the row pointed to is removed or\n            becomes inactive by other means, the treatment is as if this\n            attribute contains a value of zeroDotZero.",
                        "x-yang-type": "snmpv2-tc:RowPointer"
                      },
                      "diffServSchedulerStorage": {
                        "type": "string",
                        "description": "The storage type for this conceptual row.  Conceptual rows\n            having the value 'permanent' need not allow write-access to any\n            columnar objects in the row.",
                        "x-yang-type": "snmpv2-tc:StorageType"
                      },
                      "diffServSchedulerStatus": {
                        "type": "string",
                        "description": "The status of this conceptual row. All writable objects in this\n            row may be modified at any time. Setting this variable to\n            'destroy' when the MIB contains one or more RowPointers pointing\n            to it results in destruction being delayed until the row is no\n            longer used.",
                        "x-yang-type": "snmpv2-tc:RowStatus"
                      }
                    }
                  }
                },
                "example": {
                  "DIFFSERV-MIB:diffServSchedulerEntry": [
                    {
                      "diffServSchedulerId": "example-string",
                      "diffServSchedulerNext": "example-string",
                      "diffServSchedulerMethod": "example-string",
                      "diffServSchedulerMinRate": "example-string",
                      "diffServSchedulerMaxRate": "example-string",
                      "diffServSchedulerStorage": "example-string",
                      "diffServSchedulerStatus": "up(1)"
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-diffServSchedulerEntry",
        "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": "/diffServSchedulerTable/diffServSchedulerEntry",
      "x-restconf-kind": "container"
    },
    "/data/DIFFSERV-MIB:diffServSchedulerTable/diffServSchedulerEntry={diffServSchedulerId}": {
      "get": {
        "summary": "Get diffServSchedulerEntry entry",
        "description": "Retrieve specific diffServSchedulerEntry entry by key from MIB",
        "tags": [
          "DIFFSERV-MIB"
        ],
        "parameters": [
          {
            "name": "diffServSchedulerId",
            "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": {
                    "diffServSchedulerId": {
                      "type": "string",
                      "description": "An index that enumerates the Scheduler entries.  Managers obtain\n            new values for row creation in this table by reading\n            diffServSchedulerNextFree.",
                      "x-yang-type": "DIFFSERV-MIB:IndexInteger"
                    },
                    "diffServSchedulerNext": {
                      "type": "string",
                      "description": "This selects the next Differentiated Services Functional Data\n            Path Element to handle traffic for this data path. This normally\n            is null (zeroDotZero), or points to a diffServSchedulerEntry or a\n            diffServQEntry.\n            \n            However, this RowPointer may also point to an instance of:\n              diffServClfrEntry,\n              diffServMeterEntry,\n              diffServActionEntry,\n              diffServAlgDropEntry.\n            \n            It would point another diffServSchedulerEntry when implementing\n            multiple scheduler methods for the same data path, such as having\n            one set of queues scheduled by WRR and that group participating\n            in a priority scheduling system in which other queues compete\n            with it in that way.  It might also point to a second scheduler\n            in a hierarchical scheduling system.\n            \n            If the row pointed to is zeroDotZero, no further Differentiated\n            Services treatment is performed on traffic of this data path.\n            \n            Setting this to point to a target that does not exist results in\n            an inconsistentValue error.  If the row pointed to is removed or\n            becomes inactive by other means, the treatment is as if this\n            attribute contains a value of zeroDotZero.",
                      "x-yang-type": "snmpv2-tc:RowPointer"
                    },
                    "diffServSchedulerMethod": {
                      "type": "string",
                      "description": "The scheduling algorithm used by this Scheduler. zeroDotZero\n            indicates that this is unknown.  Standard values for generic\n            algorithms: diffServSchedulerPriority, diffServSchedulerWRR, and\n            diffServSchedulerWFQ are specified in this MIB; additional values\n            \n            \n            \n            may be further specified in other MIBs.",
                      "x-yang-type": "snmpv2-tc:AutonomousType"
                    },
                    "diffServSchedulerMinRate": {
                      "type": "string",
                      "description": "This RowPointer indicates the entry in diffServMinRateTable\n            which indicates the priority or minimum output rate from this\n            scheduler. This attribute is used only when there is more than\n            one level of scheduler.\n            \n            When it has the value zeroDotZero, it indicates that no minimum\n            rate or priority is imposed.\n            \n            Setting this to point to a target that does not exist results in\n            an inconsistentValue error.  If the row pointed to is removed or\n            becomes inactive by other means, the treatment is as if this\n            attribute contains a value of zeroDotZero.",
                      "x-yang-type": "snmpv2-tc:RowPointer"
                    },
                    "diffServSchedulerMaxRate": {
                      "type": "string",
                      "description": "This RowPointer indicates the entry in diffServMaxRateTable\n            which indicates the maximum output rate from this scheduler.\n            When more than one maximum rate applies (eg, when a multi-rate\n            shaper is in view), it points to the first of those rate entries.\n            This attribute is used only when there is more than one level of\n            scheduler.\n            \n            When it has the value zeroDotZero, it indicates that no maximum\n            rate is imposed.\n            \n            Setting this to point to a target that does not exist results in\n            an inconsistentValue error.  If the row pointed to is removed or\n            becomes inactive by other means, the treatment is as if this\n            attribute contains a value of zeroDotZero.",
                      "x-yang-type": "snmpv2-tc:RowPointer"
                    },
                    "diffServSchedulerStorage": {
                      "type": "string",
                      "description": "The storage type for this conceptual row.  Conceptual rows\n            having the value 'permanent' need not allow write-access to any\n            columnar objects in the row.",
                      "x-yang-type": "snmpv2-tc:StorageType"
                    },
                    "diffServSchedulerStatus": {
                      "type": "string",
                      "description": "The status of this conceptual row. All writable objects in this\n            row may be modified at any time. Setting this variable to\n            'destroy' when the MIB contains one or more RowPointers pointing\n            to it results in destruction being delayed until the row is no\n            longer used.",
                      "x-yang-type": "snmpv2-tc:RowStatus"
                    }
                  }
                },
                "example": {
                  "DIFFSERV-MIB:diffServSchedulerEntry": {
                    "diffServSchedulerId": "example-string",
                    "diffServSchedulerNext": "example-string",
                    "diffServSchedulerMethod": "example-string",
                    "diffServSchedulerMinRate": "example-string",
                    "diffServSchedulerMaxRate": "example-string",
                    "diffServSchedulerStorage": "example-string",
                    "diffServSchedulerStatus": "up(1)"
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-diffServSchedulerEntry-2"
      },
      "x-yang-path": "/diffServSchedulerTable/diffServSchedulerEntry={diffServSchedulerId}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "diffServSchedulerId"
      ]
    },
    "/data/DIFFSERV-MIB:diffServMinRateTable": {
      "get": {
        "summary": "Get diffServMinRateTable data",
        "description": "Retrieve diffServMinRateTable operational data from MIB",
        "tags": [
          "DIFFSERV-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "description": "The Minimum Rate Parameters Table enumerates individual sets of\n        scheduling parameter that can be used/reused by Queues and\n        Schedulers.",
                  "properties": {
                    "diffServMinRateEntry": {
                      "type": "array",
                      "description": "An entry in the Minimum Rate Parameters Table describes a single\n          set of scheduling parameters for use by one or more queues or\n          schedulers.",
                      "items": {
                        "type": "object",
                        "properties": {
                          "diffServMinRateId": {
                            "type": "string",
                            "description": "An index that enumerates the Scheduler Parameter entries.\n            Managers obtain new values for row creation in this table by\n            reading diffServMinRateNextFree.",
                            "x-yang-type": "DIFFSERV-MIB:IndexInteger"
                          },
                          "diffServMinRatePriority": {
                            "type": "integer",
                            "description": "The priority of this input to the associated scheduler, relative\n            \n            \n            \n            to the scheduler's other inputs. A queue or scheduler with a\n            larger numeric value will be served before another with a smaller\n            numeric value.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "diffServMinRateAbsolute": {
                            "type": "integer",
                            "description": "The minimum absolute rate, in kilobits/sec, that a downstream\n            scheduler element should allocate to this queue. If the value is\n            zero, then there is effectively no minimum rate guarantee. If the\n            value is non-zero, the scheduler will assure the servicing of\n            this queue to at least this rate.\n            \n            Note that this attribute value and that of\n            diffServMinRateRelative are coupled: changes to one will affect\n            the value of the other. They are linked by the following\n            equation, in that setting one will change the other:\n            \n              diffServMinRateRelative =\n                      (diffServMinRateAbsolute*1000000)/ifSpeed\n            \n            or, if appropriate:\n            \n              diffServMinRateRelative = diffServMinRateAbsolute/ifHighSpeed",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "diffServMinRateRelative": {
                            "type": "integer",
                            "description": "The minimum rate that a downstream scheduler element should\n            allocate to this queue, relative to the maximum rate of the\n            interface as reported by ifSpeed or ifHighSpeed, in units of\n            1/1000 of 1. If the value is zero, then there is effectively no\n            minimum rate guarantee. If the value is non-zero, the scheduler\n            will assure the servicing of this queue to at least this rate.\n            \n            Note that this attribute value and that of\n            diffServMinRateAbsolute are coupled: changes to one will affect\n            the value of the other. They are linked by the following\n            equation, in that setting one will change the other:\n            \n            \n            \n              diffServMinRateRelative =\n                      (diffServMinRateAbsolute*1000000)/ifSpeed\n            \n            or, if appropriate:\n            \n              diffServMinRateRelative = diffServMinRateAbsolute/ifHighSpeed",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "diffServMinRateStorage": {
                            "type": "string",
                            "description": "The storage type for this conceptual row.  Conceptual rows\n            having the value 'permanent' need not allow write-access to any\n            columnar objects in the row.",
                            "x-yang-type": "snmpv2-tc:StorageType"
                          },
                          "diffServMinRateStatus": {
                            "type": "string",
                            "description": "The status of this conceptual row. All writable objects in this\n            row may be modified at any time. Setting this variable to\n            'destroy' when the MIB contains one or more RowPointers pointing\n            to it results in destruction being delayed until the row is no\n            longer used.",
                            "x-yang-type": "snmpv2-tc:RowStatus"
                          }
                        }
                      }
                    }
                  }
                },
                "example": {
                  "DIFFSERV-MIB:diffServMinRateTable": {
                    "diffServMinRateEntry": [
                      {
                        "diffServMinRateId": "example-string",
                        "diffServMinRatePriority": 0,
                        "diffServMinRateAbsolute": 0,
                        "diffServMinRateRelative": 0,
                        "diffServMinRateStorage": "example-string",
                        "diffServMinRateStatus": "up(1)"
                      },
                      {
                        "diffServMinRateId": "example-string",
                        "diffServMinRatePriority": 0,
                        "diffServMinRateAbsolute": 0,
                        "diffServMinRateRelative": 0,
                        "diffServMinRateStorage": "example-string",
                        "diffServMinRateStatus": "up(1)"
                      },
                      {
                        "diffServMinRateId": "example-string",
                        "diffServMinRatePriority": 0,
                        "diffServMinRateAbsolute": 0,
                        "diffServMinRateRelative": 0,
                        "diffServMinRateStorage": "example-string",
                        "diffServMinRateStatus": "up(1)"
                      }
                    ]
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-diffServMinRateTable",
        "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": "/diffServMinRateTable",
      "x-restconf-kind": "container"
    },
    "/data/DIFFSERV-MIB:diffServMinRateTable/diffServMinRateEntry": {
      "get": {
        "summary": "Get diffServMinRateEntry list",
        "description": "Retrieve list of diffServMinRateEntry entries from MIB",
        "tags": [
          "DIFFSERV-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "An entry in the Minimum Rate Parameters Table describes a single\n          set of scheduling parameters for use by one or more queues or\n          schedulers.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "diffServMinRateId": {
                        "type": "string",
                        "description": "An index that enumerates the Scheduler Parameter entries.\n            Managers obtain new values for row creation in this table by\n            reading diffServMinRateNextFree.",
                        "x-yang-type": "DIFFSERV-MIB:IndexInteger"
                      },
                      "diffServMinRatePriority": {
                        "type": "integer",
                        "description": "The priority of this input to the associated scheduler, relative\n            \n            \n            \n            to the scheduler's other inputs. A queue or scheduler with a\n            larger numeric value will be served before another with a smaller\n            numeric value.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "diffServMinRateAbsolute": {
                        "type": "integer",
                        "description": "The minimum absolute rate, in kilobits/sec, that a downstream\n            scheduler element should allocate to this queue. If the value is\n            zero, then there is effectively no minimum rate guarantee. If the\n            value is non-zero, the scheduler will assure the servicing of\n            this queue to at least this rate.\n            \n            Note that this attribute value and that of\n            diffServMinRateRelative are coupled: changes to one will affect\n            the value of the other. They are linked by the following\n            equation, in that setting one will change the other:\n            \n              diffServMinRateRelative =\n                      (diffServMinRateAbsolute*1000000)/ifSpeed\n            \n            or, if appropriate:\n            \n              diffServMinRateRelative = diffServMinRateAbsolute/ifHighSpeed",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "diffServMinRateRelative": {
                        "type": "integer",
                        "description": "The minimum rate that a downstream scheduler element should\n            allocate to this queue, relative to the maximum rate of the\n            interface as reported by ifSpeed or ifHighSpeed, in units of\n            1/1000 of 1. If the value is zero, then there is effectively no\n            minimum rate guarantee. If the value is non-zero, the scheduler\n            will assure the servicing of this queue to at least this rate.\n            \n            Note that this attribute value and that of\n            diffServMinRateAbsolute are coupled: changes to one will affect\n            the value of the other. They are linked by the following\n            equation, in that setting one will change the other:\n            \n            \n            \n              diffServMinRateRelative =\n                      (diffServMinRateAbsolute*1000000)/ifSpeed\n            \n            or, if appropriate:\n            \n              diffServMinRateRelative = diffServMinRateAbsolute/ifHighSpeed",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "diffServMinRateStorage": {
                        "type": "string",
                        "description": "The storage type for this conceptual row.  Conceptual rows\n            having the value 'permanent' need not allow write-access to any\n            columnar objects in the row.",
                        "x-yang-type": "snmpv2-tc:StorageType"
                      },
                      "diffServMinRateStatus": {
                        "type": "string",
                        "description": "The status of this conceptual row. All writable objects in this\n            row may be modified at any time. Setting this variable to\n            'destroy' when the MIB contains one or more RowPointers pointing\n            to it results in destruction being delayed until the row is no\n            longer used.",
                        "x-yang-type": "snmpv2-tc:RowStatus"
                      }
                    }
                  }
                },
                "example": {
                  "DIFFSERV-MIB:diffServMinRateEntry": [
                    {
                      "diffServMinRateId": "example-string",
                      "diffServMinRatePriority": 0,
                      "diffServMinRateAbsolute": 0,
                      "diffServMinRateRelative": 0,
                      "diffServMinRateStorage": "example-string",
                      "diffServMinRateStatus": "up(1)"
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-diffServMinRateEntry",
        "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": "/diffServMinRateTable/diffServMinRateEntry",
      "x-restconf-kind": "container"
    },
    "/data/DIFFSERV-MIB:diffServMinRateTable/diffServMinRateEntry={diffServMinRateId}": {
      "get": {
        "summary": "Get diffServMinRateEntry entry",
        "description": "Retrieve specific diffServMinRateEntry entry by key from MIB",
        "tags": [
          "DIFFSERV-MIB"
        ],
        "parameters": [
          {
            "name": "diffServMinRateId",
            "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": {
                    "diffServMinRateId": {
                      "type": "string",
                      "description": "An index that enumerates the Scheduler Parameter entries.\n            Managers obtain new values for row creation in this table by\n            reading diffServMinRateNextFree.",
                      "x-yang-type": "DIFFSERV-MIB:IndexInteger"
                    },
                    "diffServMinRatePriority": {
                      "type": "integer",
                      "description": "The priority of this input to the associated scheduler, relative\n            \n            \n            \n            to the scheduler's other inputs. A queue or scheduler with a\n            larger numeric value will be served before another with a smaller\n            numeric value.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "diffServMinRateAbsolute": {
                      "type": "integer",
                      "description": "The minimum absolute rate, in kilobits/sec, that a downstream\n            scheduler element should allocate to this queue. If the value is\n            zero, then there is effectively no minimum rate guarantee. If the\n            value is non-zero, the scheduler will assure the servicing of\n            this queue to at least this rate.\n            \n            Note that this attribute value and that of\n            diffServMinRateRelative are coupled: changes to one will affect\n            the value of the other. They are linked by the following\n            equation, in that setting one will change the other:\n            \n              diffServMinRateRelative =\n                      (diffServMinRateAbsolute*1000000)/ifSpeed\n            \n            or, if appropriate:\n            \n              diffServMinRateRelative = diffServMinRateAbsolute/ifHighSpeed",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "diffServMinRateRelative": {
                      "type": "integer",
                      "description": "The minimum rate that a downstream scheduler element should\n            allocate to this queue, relative to the maximum rate of the\n            interface as reported by ifSpeed or ifHighSpeed, in units of\n            1/1000 of 1. If the value is zero, then there is effectively no\n            minimum rate guarantee. If the value is non-zero, the scheduler\n            will assure the servicing of this queue to at least this rate.\n            \n            Note that this attribute value and that of\n            diffServMinRateAbsolute are coupled: changes to one will affect\n            the value of the other. They are linked by the following\n            equation, in that setting one will change the other:\n            \n            \n            \n              diffServMinRateRelative =\n                      (diffServMinRateAbsolute*1000000)/ifSpeed\n            \n            or, if appropriate:\n            \n              diffServMinRateRelative = diffServMinRateAbsolute/ifHighSpeed",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "diffServMinRateStorage": {
                      "type": "string",
                      "description": "The storage type for this conceptual row.  Conceptual rows\n            having the value 'permanent' need not allow write-access to any\n            columnar objects in the row.",
                      "x-yang-type": "snmpv2-tc:StorageType"
                    },
                    "diffServMinRateStatus": {
                      "type": "string",
                      "description": "The status of this conceptual row. All writable objects in this\n            row may be modified at any time. Setting this variable to\n            'destroy' when the MIB contains one or more RowPointers pointing\n            to it results in destruction being delayed until the row is no\n            longer used.",
                      "x-yang-type": "snmpv2-tc:RowStatus"
                    }
                  }
                },
                "example": {
                  "DIFFSERV-MIB:diffServMinRateEntry": {
                    "diffServMinRateId": "example-string",
                    "diffServMinRatePriority": 0,
                    "diffServMinRateAbsolute": 0,
                    "diffServMinRateRelative": 0,
                    "diffServMinRateStorage": "example-string",
                    "diffServMinRateStatus": "up(1)"
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-diffServMinRateEntry-2"
      },
      "x-yang-path": "/diffServMinRateTable/diffServMinRateEntry={diffServMinRateId}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "diffServMinRateId"
      ]
    },
    "/data/DIFFSERV-MIB:diffServMaxRateTable": {
      "get": {
        "summary": "Get diffServMaxRateTable data",
        "description": "Retrieve diffServMaxRateTable operational data from MIB",
        "tags": [
          "DIFFSERV-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "description": "The Maximum Rate Parameter Table enumerates individual sets of\n        scheduling parameter that can be used/reused by Queues and\n        Schedulers.",
                  "properties": {
                    "diffServMaxRateEntry": {
                      "type": "array",
                      "description": "An entry in the Maximum Rate Parameter Table describes a single\n          set of scheduling parameters for use by one or more queues or\n          schedulers.",
                      "items": {
                        "type": "object",
                        "properties": {
                          "diffServMaxRateId": {
                            "type": "string",
                            "description": "An index that enumerates the Maximum Rate Parameter entries.\n            Managers obtain new values for row creation in this table by\n            reading diffServMaxRateNextFree.",
                            "x-yang-type": "DIFFSERV-MIB:IndexInteger"
                          },
                          "diffServMaxRateLevel": {
                            "type": "integer",
                            "description": "An index that indicates which level of a multi-rate shaper is\n            being given its parameters. A multi-rate shaper has some number\n            of rate levels. Frame Relay's dual rate specification refers to a\n            'committed' and an 'excess' rate; ATM's dual rate specification\n            refers to a 'mean' and a 'peak' rate. This table is generalized\n            to support an arbitrary number of rates. The committed or mean\n            rate is level 1, the peak rate (if any) is the highest level rate\n            configured, and if there are other rates they are distributed in\n            monotonically increasing order between them.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "diffServMaxRateAbsolute": {
                            "type": "integer",
                            "description": "The maximum rate in kilobits/sec that a downstream scheduler\n            element should allocate to this queue. If the value is zero, then\n            there is effectively no maximum rate limit and that the scheduler\n            should attempt to be work conserving for this queue. If the value\n            is non-zero, the scheduler will limit the servicing of this queue\n            to, at most, this rate in a non-work-conserving manner.\n            \n            Note that this attribute value and that of\n            diffServMaxRateRelative are coupled: changes to one will affect\n            the value of the other. They are linked by the following\n            \n            \n            \n            equation, in that setting one will change the other:\n            \n              diffServMaxRateRelative =\n                      (diffServMaxRateAbsolute*1000000)/ifSpeed\n            \n            or, if appropriate:\n            \n              diffServMaxRateRelative = diffServMaxRateAbsolute/ifHighSpeed",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "diffServMaxRateRelative": {
                            "type": "integer",
                            "description": "The maximum rate that a downstream scheduler element should\n            allocate to this queue, relative to the maximum rate of the\n            interface as reported by ifSpeed or ifHighSpeed, in units of\n            1/1000 of 1. If the value is zero, then there is effectively no\n            maximum rate limit and the scheduler should attempt to be work\n            conserving for this queue. If the value is non-zero, the\n            scheduler will limit the servicing of this queue to, at most,\n            this rate in a non-work-conserving manner.\n            \n            Note that this attribute value and that of\n            diffServMaxRateAbsolute are coupled: changes to one will affect\n            the value of the other. They are linked by the following\n            equation, in that setting one will change the other:\n            \n              diffServMaxRateRelative =\n                      (diffServMaxRateAbsolute*1000000)/ifSpeed\n            \n            or, if appropriate:\n            \n              diffServMaxRateRelative = diffServMaxRateAbsolute/ifHighSpeed",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "diffServMaxRateThreshold": {
                            "type": "string",
                            "description": "The number of bytes of queue depth at which the rate of a\n            \n            \n            \n            multi-rate scheduler will increase to the next output rate. In\n            the last conceptual row for such a shaper, this threshold is\n            ignored and by convention is zero.",
                            "x-yang-type": "integrated-services:BurstSize"
                          },
                          "diffServMaxRateStorage": {
                            "type": "string",
                            "description": "The storage type for this conceptual row.  Conceptual rows\n            having the value 'permanent' need not allow write-access to any\n            columnar objects in the row.",
                            "x-yang-type": "snmpv2-tc:StorageType"
                          },
                          "diffServMaxRateStatus": {
                            "type": "string",
                            "description": "The status of this conceptual row. All writable objects in this\n            row may be modified at any time. Setting this variable to\n            'destroy' when the MIB contains one or more RowPointers pointing\n            to it results in destruction being delayed until the row is no\n            longer used.",
                            "x-yang-type": "snmpv2-tc:RowStatus"
                          }
                        }
                      }
                    }
                  }
                },
                "example": {
                  "DIFFSERV-MIB:diffServMaxRateTable": {
                    "diffServMaxRateEntry": [
                      {
                        "diffServMaxRateId": "example-string",
                        "diffServMaxRateLevel": 0,
                        "diffServMaxRateAbsolute": 0,
                        "diffServMaxRateRelative": 0,
                        "diffServMaxRateThreshold": "example-string",
                        "diffServMaxRateStorage": "example-string",
                        "diffServMaxRateStatus": "up(1)"
                      },
                      {
                        "diffServMaxRateId": "example-string",
                        "diffServMaxRateLevel": 0,
                        "diffServMaxRateAbsolute": 0,
                        "diffServMaxRateRelative": 0,
                        "diffServMaxRateThreshold": "example-string",
                        "diffServMaxRateStorage": "example-string",
                        "diffServMaxRateStatus": "up(1)"
                      },
                      {
                        "diffServMaxRateId": "example-string",
                        "diffServMaxRateLevel": 0,
                        "diffServMaxRateAbsolute": 0,
                        "diffServMaxRateRelative": 0,
                        "diffServMaxRateThreshold": "example-string",
                        "diffServMaxRateStorage": "example-string",
                        "diffServMaxRateStatus": "up(1)"
                      }
                    ]
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-diffServMaxRateTable",
        "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": "/diffServMaxRateTable",
      "x-restconf-kind": "container"
    },
    "/data/DIFFSERV-MIB:diffServMaxRateTable/diffServMaxRateEntry": {
      "get": {
        "summary": "Get diffServMaxRateEntry list",
        "description": "Retrieve list of diffServMaxRateEntry entries from MIB",
        "tags": [
          "DIFFSERV-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "An entry in the Maximum Rate Parameter Table describes a single\n          set of scheduling parameters for use by one or more queues or\n          schedulers.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "diffServMaxRateId": {
                        "type": "string",
                        "description": "An index that enumerates the Maximum Rate Parameter entries.\n            Managers obtain new values for row creation in this table by\n            reading diffServMaxRateNextFree.",
                        "x-yang-type": "DIFFSERV-MIB:IndexInteger"
                      },
                      "diffServMaxRateLevel": {
                        "type": "integer",
                        "description": "An index that indicates which level of a multi-rate shaper is\n            being given its parameters. A multi-rate shaper has some number\n            of rate levels. Frame Relay's dual rate specification refers to a\n            'committed' and an 'excess' rate; ATM's dual rate specification\n            refers to a 'mean' and a 'peak' rate. This table is generalized\n            to support an arbitrary number of rates. The committed or mean\n            rate is level 1, the peak rate (if any) is the highest level rate\n            configured, and if there are other rates they are distributed in\n            monotonically increasing order between them.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "diffServMaxRateAbsolute": {
                        "type": "integer",
                        "description": "The maximum rate in kilobits/sec that a downstream scheduler\n            element should allocate to this queue. If the value is zero, then\n            there is effectively no maximum rate limit and that the scheduler\n            should attempt to be work conserving for this queue. If the value\n            is non-zero, the scheduler will limit the servicing of this queue\n            to, at most, this rate in a non-work-conserving manner.\n            \n            Note that this attribute value and that of\n            diffServMaxRateRelative are coupled: changes to one will affect\n            the value of the other. They are linked by the following\n            \n            \n            \n            equation, in that setting one will change the other:\n            \n              diffServMaxRateRelative =\n                      (diffServMaxRateAbsolute*1000000)/ifSpeed\n            \n            or, if appropriate:\n            \n              diffServMaxRateRelative = diffServMaxRateAbsolute/ifHighSpeed",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "diffServMaxRateRelative": {
                        "type": "integer",
                        "description": "The maximum rate that a downstream scheduler element should\n            allocate to this queue, relative to the maximum rate of the\n            interface as reported by ifSpeed or ifHighSpeed, in units of\n            1/1000 of 1. If the value is zero, then there is effectively no\n            maximum rate limit and the scheduler should attempt to be work\n            conserving for this queue. If the value is non-zero, the\n            scheduler will limit the servicing of this queue to, at most,\n            this rate in a non-work-conserving manner.\n            \n            Note that this attribute value and that of\n            diffServMaxRateAbsolute are coupled: changes to one will affect\n            the value of the other. They are linked by the following\n            equation, in that setting one will change the other:\n            \n              diffServMaxRateRelative =\n                      (diffServMaxRateAbsolute*1000000)/ifSpeed\n            \n            or, if appropriate:\n            \n              diffServMaxRateRelative = diffServMaxRateAbsolute/ifHighSpeed",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "diffServMaxRateThreshold": {
                        "type": "string",
                        "description": "The number of bytes of queue depth at which the rate of a\n            \n            \n            \n            multi-rate scheduler will increase to the next output rate. In\n            the last conceptual row for such a shaper, this threshold is\n            ignored and by convention is zero.",
                        "x-yang-type": "integrated-services:BurstSize"
                      },
                      "diffServMaxRateStorage": {
                        "type": "string",
                        "description": "The storage type for this conceptual row.  Conceptual rows\n            having the value 'permanent' need not allow write-access to any\n            columnar objects in the row.",
                        "x-yang-type": "snmpv2-tc:StorageType"
                      },
                      "diffServMaxRateStatus": {
                        "type": "string",
                        "description": "The status of this conceptual row. All writable objects in this\n            row may be modified at any time. Setting this variable to\n            'destroy' when the MIB contains one or more RowPointers pointing\n            to it results in destruction being delayed until the row is no\n            longer used.",
                        "x-yang-type": "snmpv2-tc:RowStatus"
                      }
                    }
                  }
                },
                "example": {
                  "DIFFSERV-MIB:diffServMaxRateEntry": [
                    {
                      "diffServMaxRateId": "example-string",
                      "diffServMaxRateLevel": 0,
                      "diffServMaxRateAbsolute": 0,
                      "diffServMaxRateRelative": 0,
                      "diffServMaxRateThreshold": "example-string",
                      "diffServMaxRateStorage": "example-string",
                      "diffServMaxRateStatus": "up(1)"
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-diffServMaxRateEntry",
        "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": "/diffServMaxRateTable/diffServMaxRateEntry",
      "x-restconf-kind": "container"
    },
    "/data/DIFFSERV-MIB:diffServDataPathEntry": {
      "get": {
        "summary": "Get diffServDataPathEntry list",
        "description": "Retrieve list of diffServDataPathEntry entries from MIB",
        "tags": [
          "DIFFSERV-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "diffServDataPathEntry",
                  "items": {
                    "type": "object",
                    "properties": {
                      "ifIndex": {
                        "type": "string",
                        "description": "ifIndex",
                        "x-yang-type": "leafref"
                      },
                      "diffServDataPathIfDirection": {
                        "type": "string",
                        "description": "IfDirection specifies whether the reception or transmission path\n            for this interface is in view.",
                        "x-yang-type": "DIFFSERV-MIB:IfDirection"
                      },
                      "diffServDataPathStart": {
                        "type": "string",
                        "description": "This selects the first Differentiated Services Functional Data\n            Path Element to handle traffic for this data path. This\n            RowPointer should point to an instance of one of:\n              diffServClfrEntry\n              diffServMeterEntry\n              diffServActionEntry\n              diffServAlgDropEntry\n              diffServQEntry\n            \n            A value of zeroDotZero in this attribute indicates that no\n            Differentiated Services treatment is performed on traffic of this\n            data path. A pointer with the value zeroDotZero normally\n            terminates a functional data path.\n            \n            Setting this to point to a target that does not exist results in\n            an inconsistentValue error.  If the row pointed to is removed or\n            becomes inactive by other means, the treatment is as if this\n            attribute contains a value of zeroDotZero.",
                        "x-yang-type": "snmpv2-tc:RowPointer"
                      },
                      "diffServDataPathStorage": {
                        "type": "string",
                        "description": "The storage type for this conceptual row.  Conceptual rows\n            having the value 'permanent' need not allow write-access to any\n            columnar objects in the row.",
                        "x-yang-type": "snmpv2-tc:StorageType"
                      },
                      "diffServDataPathStatus": {
                        "type": "string",
                        "description": "The status of this conceptual row. All writable objects in this\n            row may be modified at any time.",
                        "x-yang-type": "snmpv2-tc:RowStatus"
                      }
                    }
                  }
                },
                "example": {
                  "DIFFSERV-MIB:diffServDataPathEntry": [
                    {
                      "ifIndex": "example-string",
                      "diffServDataPathIfDirection": "example-string",
                      "diffServDataPathStart": "example-string",
                      "diffServDataPathStorage": "example-string",
                      "diffServDataPathStatus": "up(1)"
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-diffServDataPathEntry-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": "/diffServDataPathEntry",
      "x-restconf-kind": "container"
    },
    "/data/DIFFSERV-MIB:diffServClfrEntry": {
      "get": {
        "summary": "Get diffServClfrEntry list",
        "description": "Retrieve list of diffServClfrEntry entries from MIB",
        "tags": [
          "DIFFSERV-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "An entry in the classifier table describes a single classifier.\n          All classifier elements belonging to the same classifier use the\n          classifier's diffServClfrId as part of their index.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "diffServClfrId": {
                        "type": "string",
                        "description": "An index that enumerates the classifier entries.  Managers\n            should obtain new values for row creation in this table by\n            reading diffServClfrNextFree.",
                        "x-yang-type": "DIFFSERV-MIB:IndexInteger"
                      },
                      "diffServClfrStorage": {
                        "type": "string",
                        "description": "The storage type for this conceptual row.  Conceptual rows\n            having the value 'permanent' need not allow write-access to any\n            columnar objects in the row.",
                        "x-yang-type": "snmpv2-tc:StorageType"
                      },
                      "diffServClfrStatus": {
                        "type": "string",
                        "description": "The status of this conceptual row. All writable objects in this\n            row may be modified at any time. Setting this variable to\n            'destroy' when the MIB contains one or more RowPointers pointing\n            to it results in destruction being delayed until the row is no\n            longer used.",
                        "x-yang-type": "snmpv2-tc:RowStatus"
                      }
                    }
                  }
                },
                "example": {
                  "DIFFSERV-MIB:diffServClfrEntry": [
                    {
                      "diffServClfrId": "example-string",
                      "diffServClfrStorage": "example-string",
                      "diffServClfrStatus": "up(1)"
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-diffServClfrEntry-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": "/diffServClfrEntry",
      "x-restconf-kind": "container"
    },
    "/data/DIFFSERV-MIB:diffServClfrEntry={diffServClfrId}": {
      "get": {
        "summary": "Get diffServClfrEntry entry",
        "description": "Retrieve specific diffServClfrEntry entry by key from MIB",
        "tags": [
          "DIFFSERV-MIB"
        ],
        "parameters": [
          {
            "name": "diffServClfrId",
            "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": {
                    "diffServClfrId": {
                      "type": "string",
                      "description": "An index that enumerates the classifier entries.  Managers\n            should obtain new values for row creation in this table by\n            reading diffServClfrNextFree.",
                      "x-yang-type": "DIFFSERV-MIB:IndexInteger"
                    },
                    "diffServClfrStorage": {
                      "type": "string",
                      "description": "The storage type for this conceptual row.  Conceptual rows\n            having the value 'permanent' need not allow write-access to any\n            columnar objects in the row.",
                      "x-yang-type": "snmpv2-tc:StorageType"
                    },
                    "diffServClfrStatus": {
                      "type": "string",
                      "description": "The status of this conceptual row. All writable objects in this\n            row may be modified at any time. Setting this variable to\n            'destroy' when the MIB contains one or more RowPointers pointing\n            to it results in destruction being delayed until the row is no\n            longer used.",
                      "x-yang-type": "snmpv2-tc:RowStatus"
                    }
                  }
                },
                "example": {
                  "DIFFSERV-MIB:diffServClfrEntry": {
                    "diffServClfrId": "example-string",
                    "diffServClfrStorage": "example-string",
                    "diffServClfrStatus": "up(1)"
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-diffServClfrEntry-4"
      },
      "x-yang-path": "/diffServClfrEntry={diffServClfrId}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "diffServClfrId"
      ]
    },
    "/data/DIFFSERV-MIB:diffServClfrElementEntry": {
      "get": {
        "summary": "Get diffServClfrElementEntry list",
        "description": "Retrieve list of diffServClfrElementEntry entries from MIB",
        "tags": [
          "DIFFSERV-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "An entry in the classifier element table describes a single\n          element of the classifier.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "diffServClfrId": {
                        "type": "string",
                        "description": "diffServClfrId",
                        "x-yang-type": "leafref"
                      },
                      "diffServClfrElementId": {
                        "type": "string",
                        "description": "An index that enumerates the Classifier Element entries.\n            Managers obtain new values for row creation in this table by\n            reading diffServClfrElementNextFree.",
                        "x-yang-type": "DIFFSERV-MIB:IndexInteger"
                      },
                      "diffServClfrElementPrecedence": {
                        "type": "integer",
                        "description": "The relative order in which classifier elements are applied:\n            higher numbers represent classifier element with higher\n            precedence.  Classifier elements with the same order must be\n            unambiguous i.e. they must define non-overlapping patterns, and\n            are considered to be applied simultaneously to the traffic\n            stream. Classifier elements with different order may overlap in\n            their filters:  the classifier element with the highest order\n            that matches is taken.\n            \n            On a given interface, there must be a complete classifier in\n            place at all times in the ingress direction.  This means one or\n            more filters must match any possible pattern. There is no such\n            \n            \n            \n            requirement in the egress direction.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "diffServClfrElementNext": {
                        "type": "string",
                        "description": "This attribute provides one branch of the fan-out functionality\n            of a classifier described in the Informal Differentiated Services\n            Model section 4.1.\n            \n            This selects the next Differentiated Services Functional Data\n            Path Element to handle traffic for this data path. This\n            RowPointer should point to an instance of one of:\n              diffServClfrEntry\n              diffServMeterEntry\n              diffServActionEntry\n              diffServAlgDropEntry\n              diffServQEntry\n            \n            A value of zeroDotZero in this attribute indicates no further\n            Differentiated Services treatment is performed on traffic of this\n            data path. The use of zeroDotZero is the normal usage for the\n            last functional data path element of the current data path.\n            \n            Setting this to point to a target that does not exist results in\n            an inconsistentValue error.  If the row pointed to is removed or\n            becomes inactive by other means, the treatment is as if this\n            attribute contains a value of zeroDotZero.",
                        "x-yang-type": "snmpv2-tc:RowPointer"
                      },
                      "diffServClfrElementSpecific": {
                        "type": "string",
                        "description": "A pointer to a valid entry in another table, filter table, that\n            describes the applicable classification parameters, e.g. an entry\n            in diffServMultiFieldClfrTable.\n            \n            The value zeroDotZero is interpreted to match anything not\n            matched by another classifier element - only one such entry may\n            exist for each classifier.\n            \n            Setting this to point to a target that does not exist results in\n            an inconsistentValue error.  If the row pointed to is removed or\n            \n            \n            \n            becomes inactive by other means, the element is ignored.",
                        "x-yang-type": "snmpv2-tc:RowPointer"
                      },
                      "diffServClfrElementStorage": {
                        "type": "string",
                        "description": "The storage type for this conceptual row.  Conceptual rows\n            having the value 'permanent' need not allow write-access to any\n            columnar objects in the row.",
                        "x-yang-type": "snmpv2-tc:StorageType"
                      },
                      "diffServClfrElementStatus": {
                        "type": "string",
                        "description": "The status of this conceptual row. All writable objects in this\n            row may be modified at any time. Setting this variable to\n            'destroy' when the MIB contains one or more RowPointers pointing\n            to it results in destruction being delayed until the row is no\n            longer used.",
                        "x-yang-type": "snmpv2-tc:RowStatus"
                      }
                    }
                  }
                },
                "example": {
                  "DIFFSERV-MIB:diffServClfrElementEntry": [
                    {
                      "diffServClfrId": "example-string",
                      "diffServClfrElementId": "example-string",
                      "diffServClfrElementPrecedence": 0,
                      "diffServClfrElementNext": "example-string",
                      "diffServClfrElementSpecific": "example-string",
                      "diffServClfrElementStorage": "example-string",
                      "diffServClfrElementStatus": "up(1)"
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-diffServClfrElementEntry-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": "/diffServClfrElementEntry",
      "x-restconf-kind": "container"
    },
    "/data/DIFFSERV-MIB:diffServMultiFieldClfrEntry": {
      "get": {
        "summary": "Get diffServMultiFieldClfrEntry list",
        "description": "Retrieve list of diffServMultiFieldClfrEntry entries from MIB",
        "tags": [
          "DIFFSERV-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "An IP Multi-field Classifier entry describes a single filter.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "diffServMultiFieldClfrId": {
                        "type": "string",
                        "description": "An index that enumerates the MultiField Classifier filter\n            entries.  Managers obtain new values for row creation in this\n            table by reading diffServMultiFieldClfrNextFree.",
                        "x-yang-type": "DIFFSERV-MIB:IndexInteger"
                      },
                      "diffServMultiFieldClfrAddrType": {
                        "type": "string",
                        "description": "The type of IP address used by this classifier entry.  While\n            other types of addresses are defined in the InetAddressType\n            \n            \n            \n            textual convention, and DNS names, a classifier can only look at\n            packets on the wire. Therefore, this object is limited to IPv4\n            and IPv6 addresses.",
                        "x-yang-type": "inet-address:InetAddressType"
                      },
                      "diffServMultiFieldClfrDstAddr": {
                        "type": "string",
                        "description": "The IP address to match against the packet's destination IP\n            address. This may not be a DNS name, but may be an IPv4 or IPv6\n            prefix.  diffServMultiFieldClfrDstPrefixLength indicates the\n            number of bits that are relevant.",
                        "x-yang-type": "inet-address:InetAddress"
                      },
                      "diffServMultiFieldClfrDstPrefixLength": {
                        "type": "string",
                        "description": "The length of the CIDR Prefix carried in\n            diffServMultiFieldClfrDstAddr. In IPv4 addresses, a length of 0\n            indicates a match of any address; a length of 32 indicates a\n            match of a single host address, and a length between 0 and 32\n            indicates the use of a CIDR Prefix. IPv6 is similar, except that\n            prefix lengths range from 0..128.",
                        "x-yang-type": "inet-address:InetAddressPrefixLength"
                      },
                      "diffServMultiFieldClfrSrcAddr": {
                        "type": "string",
                        "description": "The IP address to match against the packet's source IP address.\n            This may not be a DNS name, but may be an IPv4 or IPv6 prefix.\n            diffServMultiFieldClfrSrcPrefixLength indicates the number of\n            bits that are relevant.",
                        "x-yang-type": "inet-address:InetAddress"
                      },
                      "diffServMultiFieldClfrSrcPrefixLength": {
                        "type": "string",
                        "description": "The length of the CIDR Prefix carried in\n            diffServMultiFieldClfrSrcAddr. In IPv4 addresses, a length of 0\n            indicates a match of any address; a length of 32 indicates a\n            match of a single host address, and a length between 0 and 32\n            indicates the use of a CIDR Prefix. IPv6 is similar, except that\n            prefix lengths range from 0..128.",
                        "x-yang-type": "inet-address:InetAddressPrefixLength"
                      },
                      "diffServMultiFieldClfrDscp": {
                        "type": "string",
                        "description": "The value that the DSCP in the packet must have to match this\n            entry. A value of -1 indicates that a specific DSCP value has not\n            been defined and thus all DSCP values are considered a match.",
                        "x-yang-type": "diffserv-dscp:DscpOrAny"
                      },
                      "diffServMultiFieldClfrFlowId": {
                        "type": "integer",
                        "description": "The flow identifier in an IPv6 header.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "diffServMultiFieldClfrProtocol": {
                        "type": "integer",
                        "description": "The IP protocol to match against the IPv4 protocol number or the\n            IPv6 Next- Header number in the packet. A value of 255 means\n            match all.  Note the protocol number of 255 is reserved by IANA,\n            and Next-Header number of 0 is used in IPv6.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "diffServMultiFieldClfrDstL4PortMin": {
                        "type": "string",
                        "description": "The minimum value that the layer-4 destination port number in\n            the packet must have in order to match this classifier entry.",
                        "format": "inet:port-number"
                      },
                      "diffServMultiFieldClfrDstL4PortMax": {
                        "type": "string",
                        "description": "The maximum value that the layer-4 destination port number in\n            the packet must have in order to match this classifier entry.\n            This value must be equal to or greater than the value specified\n            for this entry in diffServMultiFieldClfrDstL4PortMin.",
                        "format": "inet:port-number"
                      },
                      "diffServMultiFieldClfrSrcL4PortMin": {
                        "type": "string",
                        "description": "The minimum value that the layer-4 source port number in the\n            packet must have in order to match this classifier entry.",
                        "format": "inet:port-number"
                      },
                      "diffServMultiFieldClfrSrcL4PortMax": {
                        "type": "string",
                        "description": "The maximum value that the layer-4 source port number in the\n            packet must have in order to match this classifier entry. This\n            value must be equal to or greater than the value specified for\n            this entry in diffServMultiFieldClfrSrcL4PortMin.",
                        "format": "inet:port-number"
                      },
                      "diffServMultiFieldClfrStorage": {
                        "type": "string",
                        "description": "The storage type for this conceptual row.  Conceptual rows\n            having the value 'permanent' need not allow write-access to any\n            columnar objects in the row.",
                        "x-yang-type": "snmpv2-tc:StorageType"
                      },
                      "diffServMultiFieldClfrStatus": {
                        "type": "string",
                        "description": "The status of this conceptual row. All writable objects in this\n            row may be modified at any time. Setting this variable to\n            'destroy' when the MIB contains one or more RowPointers pointing\n            to it results in destruction being delayed until the row is no\n            longer used.",
                        "x-yang-type": "snmpv2-tc:RowStatus"
                      }
                    }
                  }
                },
                "example": {
                  "DIFFSERV-MIB:diffServMultiFieldClfrEntry": [
                    {
                      "diffServMultiFieldClfrId": "example-string",
                      "diffServMultiFieldClfrAddrType": "192.168.1.1",
                      "diffServMultiFieldClfrDstAddr": "192.168.1.1",
                      "diffServMultiFieldClfrDstPrefixLength": "example-string",
                      "diffServMultiFieldClfrSrcAddr": "192.168.1.1",
                      "diffServMultiFieldClfrSrcPrefixLength": "example-string",
                      "diffServMultiFieldClfrDscp": "example-string",
                      "diffServMultiFieldClfrFlowId": 0,
                      "diffServMultiFieldClfrProtocol": 0,
                      "diffServMultiFieldClfrDstL4PortMin": "example-string",
                      "diffServMultiFieldClfrDstL4PortMax": "example-string",
                      "diffServMultiFieldClfrSrcL4PortMin": "example-string",
                      "diffServMultiFieldClfrSrcL4PortMax": "example-string",
                      "diffServMultiFieldClfrStorage": "example-string",
                      "diffServMultiFieldClfrStatus": "up(1)"
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-diffServMultiFieldClfrEntry-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": "/diffServMultiFieldClfrEntry",
      "x-restconf-kind": "container"
    },
    "/data/DIFFSERV-MIB:diffServMultiFieldClfrEntry={diffServMultiFieldClfrId}": {
      "get": {
        "summary": "Get diffServMultiFieldClfrEntry entry",
        "description": "Retrieve specific diffServMultiFieldClfrEntry entry by key from MIB",
        "tags": [
          "DIFFSERV-MIB"
        ],
        "parameters": [
          {
            "name": "diffServMultiFieldClfrId",
            "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": {
                    "diffServMultiFieldClfrId": {
                      "type": "string",
                      "description": "An index that enumerates the MultiField Classifier filter\n            entries.  Managers obtain new values for row creation in this\n            table by reading diffServMultiFieldClfrNextFree.",
                      "x-yang-type": "DIFFSERV-MIB:IndexInteger"
                    },
                    "diffServMultiFieldClfrAddrType": {
                      "type": "string",
                      "description": "The type of IP address used by this classifier entry.  While\n            other types of addresses are defined in the InetAddressType\n            \n            \n            \n            textual convention, and DNS names, a classifier can only look at\n            packets on the wire. Therefore, this object is limited to IPv4\n            and IPv6 addresses.",
                      "x-yang-type": "inet-address:InetAddressType"
                    },
                    "diffServMultiFieldClfrDstAddr": {
                      "type": "string",
                      "description": "The IP address to match against the packet's destination IP\n            address. This may not be a DNS name, but may be an IPv4 or IPv6\n            prefix.  diffServMultiFieldClfrDstPrefixLength indicates the\n            number of bits that are relevant.",
                      "x-yang-type": "inet-address:InetAddress"
                    },
                    "diffServMultiFieldClfrDstPrefixLength": {
                      "type": "string",
                      "description": "The length of the CIDR Prefix carried in\n            diffServMultiFieldClfrDstAddr. In IPv4 addresses, a length of 0\n            indicates a match of any address; a length of 32 indicates a\n            match of a single host address, and a length between 0 and 32\n            indicates the use of a CIDR Prefix. IPv6 is similar, except that\n            prefix lengths range from 0..128.",
                      "x-yang-type": "inet-address:InetAddressPrefixLength"
                    },
                    "diffServMultiFieldClfrSrcAddr": {
                      "type": "string",
                      "description": "The IP address to match against the packet's source IP address.\n            This may not be a DNS name, but may be an IPv4 or IPv6 prefix.\n            diffServMultiFieldClfrSrcPrefixLength indicates the number of\n            bits that are relevant.",
                      "x-yang-type": "inet-address:InetAddress"
                    },
                    "diffServMultiFieldClfrSrcPrefixLength": {
                      "type": "string",
                      "description": "The length of the CIDR Prefix carried in\n            diffServMultiFieldClfrSrcAddr. In IPv4 addresses, a length of 0\n            indicates a match of any address; a length of 32 indicates a\n            match of a single host address, and a length between 0 and 32\n            indicates the use of a CIDR Prefix. IPv6 is similar, except that\n            prefix lengths range from 0..128.",
                      "x-yang-type": "inet-address:InetAddressPrefixLength"
                    },
                    "diffServMultiFieldClfrDscp": {
                      "type": "string",
                      "description": "The value that the DSCP in the packet must have to match this\n            entry. A value of -1 indicates that a specific DSCP value has not\n            been defined and thus all DSCP values are considered a match.",
                      "x-yang-type": "diffserv-dscp:DscpOrAny"
                    },
                    "diffServMultiFieldClfrFlowId": {
                      "type": "integer",
                      "description": "The flow identifier in an IPv6 header.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "diffServMultiFieldClfrProtocol": {
                      "type": "integer",
                      "description": "The IP protocol to match against the IPv4 protocol number or the\n            IPv6 Next- Header number in the packet. A value of 255 means\n            match all.  Note the protocol number of 255 is reserved by IANA,\n            and Next-Header number of 0 is used in IPv6.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "diffServMultiFieldClfrDstL4PortMin": {
                      "type": "string",
                      "description": "The minimum value that the layer-4 destination port number in\n            the packet must have in order to match this classifier entry.",
                      "format": "inet:port-number"
                    },
                    "diffServMultiFieldClfrDstL4PortMax": {
                      "type": "string",
                      "description": "The maximum value that the layer-4 destination port number in\n            the packet must have in order to match this classifier entry.\n            This value must be equal to or greater than the value specified\n            for this entry in diffServMultiFieldClfrDstL4PortMin.",
                      "format": "inet:port-number"
                    },
                    "diffServMultiFieldClfrSrcL4PortMin": {
                      "type": "string",
                      "description": "The minimum value that the layer-4 source port number in the\n            packet must have in order to match this classifier entry.",
                      "format": "inet:port-number"
                    },
                    "diffServMultiFieldClfrSrcL4PortMax": {
                      "type": "string",
                      "description": "The maximum value that the layer-4 source port number in the\n            packet must have in order to match this classifier entry. This\n            value must be equal to or greater than the value specified for\n            this entry in diffServMultiFieldClfrSrcL4PortMin.",
                      "format": "inet:port-number"
                    },
                    "diffServMultiFieldClfrStorage": {
                      "type": "string",
                      "description": "The storage type for this conceptual row.  Conceptual rows\n            having the value 'permanent' need not allow write-access to any\n            columnar objects in the row.",
                      "x-yang-type": "snmpv2-tc:StorageType"
                    },
                    "diffServMultiFieldClfrStatus": {
                      "type": "string",
                      "description": "The status of this conceptual row. All writable objects in this\n            row may be modified at any time. Setting this variable to\n            'destroy' when the MIB contains one or more RowPointers pointing\n            to it results in destruction being delayed until the row is no\n            longer used.",
                      "x-yang-type": "snmpv2-tc:RowStatus"
                    }
                  }
                },
                "example": {
                  "DIFFSERV-MIB:diffServMultiFieldClfrEntry": {
                    "diffServMultiFieldClfrId": "example-string",
                    "diffServMultiFieldClfrAddrType": "192.168.1.1",
                    "diffServMultiFieldClfrDstAddr": "192.168.1.1",
                    "diffServMultiFieldClfrDstPrefixLength": "example-string",
                    "diffServMultiFieldClfrSrcAddr": "192.168.1.1",
                    "diffServMultiFieldClfrSrcPrefixLength": "example-string",
                    "diffServMultiFieldClfrDscp": "example-string",
                    "diffServMultiFieldClfrFlowId": 0,
                    "diffServMultiFieldClfrProtocol": 0,
                    "diffServMultiFieldClfrDstL4PortMin": "example-string",
                    "diffServMultiFieldClfrDstL4PortMax": "example-string",
                    "diffServMultiFieldClfrSrcL4PortMin": "example-string",
                    "diffServMultiFieldClfrSrcL4PortMax": "example-string",
                    "diffServMultiFieldClfrStorage": "example-string",
                    "diffServMultiFieldClfrStatus": "up(1)"
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-diffServMultiFieldClfrEntry-4"
      },
      "x-yang-path": "/diffServMultiFieldClfrEntry={diffServMultiFieldClfrId}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "diffServMultiFieldClfrId"
      ]
    },
    "/data/DIFFSERV-MIB:diffServMeterEntry": {
      "get": {
        "summary": "Get diffServMeterEntry list",
        "description": "Retrieve list of diffServMeterEntry entries from MIB",
        "tags": [
          "DIFFSERV-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "An entry in the meter table describes a single conformance level\n          of a meter.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "diffServMeterId": {
                        "type": "string",
                        "description": "An index that enumerates the Meter entries.  Managers obtain new\n            values for row creation in this table by reading\n            diffServMeterNextFree.",
                        "x-yang-type": "DIFFSERV-MIB:IndexInteger"
                      },
                      "diffServMeterSucceedNext": {
                        "type": "string",
                        "description": "If the traffic does conform, this selects the next\n            Differentiated Services Functional Data Path element to handle\n            traffic for this data path. This RowPointer should point to an\n            instance of one of:\n              diffServClfrEntry\n              diffServMeterEntry\n              diffServActionEntry\n              diffServAlgDropEntry\n              diffServQEntry\n            \n            A value of zeroDotZero in this attribute indicates that no\n            further Differentiated Services treatment is performed on traffic\n            of this data path. The use of zeroDotZero is the normal usage for\n            the last functional data path element of the current data path.\n            \n            Setting this to point to a target that does not exist results in\n            an inconsistentValue error.  If the row pointed to is removed or\n            becomes inactive by other means, the treatment is as if this\n            attribute contains a value of zeroDotZero.",
                        "x-yang-type": "snmpv2-tc:RowPointer"
                      },
                      "diffServMeterFailNext": {
                        "type": "string",
                        "description": "If the traffic does not conform, this selects the next\n            Differentiated Services Functional Data Path element to handle\n            traffic for this data path. This RowPointer should point to an\n            instance of one of:\n              diffServClfrEntry\n              diffServMeterEntry\n            \n            \n            \n              diffServActionEntry\n              diffServAlgDropEntry\n              diffServQEntry\n            \n            A value of zeroDotZero in this attribute indicates no further\n            Differentiated Services treatment is performed on traffic of this\n            data path. The use of zeroDotZero is the normal usage for the\n            last functional data path element of the current data path.\n            \n            Setting this to point to a target that does not exist results in\n            an inconsistentValue error.  If the row pointed to is removed or\n            becomes inactive by other means, the treatment is as if this\n            attribute contains a value of zeroDotZero.",
                        "x-yang-type": "snmpv2-tc:RowPointer"
                      },
                      "diffServMeterSpecific": {
                        "type": "string",
                        "description": "This indicates the behavior of the meter by pointing to an entry\n            containing detailed parameters. Note that entries in that\n            specific table must be managed explicitly.\n            \n            For example, diffServMeterSpecific may point to an entry in\n            diffServTBParamTable, which contains an instance of a single set\n            of Token Bucket parameters.\n            \n            Setting this to point to a target that does not exist results in\n            an inconsistentValue error.  If the row pointed to is removed or\n            becomes inactive by other means, the meter always succeeds.",
                        "x-yang-type": "snmpv2-tc:RowPointer"
                      },
                      "diffServMeterStorage": {
                        "type": "string",
                        "description": "The storage type for this conceptual row.  Conceptual rows\n            having the value 'permanent' need not allow write-access to any\n            columnar objects in the row.",
                        "x-yang-type": "snmpv2-tc:StorageType"
                      },
                      "diffServMeterStatus": {
                        "type": "string",
                        "description": "The status of this conceptual row. All writable objects in this\n            row may be modified at any time. Setting this variable to\n            'destroy' when the MIB contains one or more RowPointers pointing\n            to it results in destruction being delayed until the row is no\n            longer used.",
                        "x-yang-type": "snmpv2-tc:RowStatus"
                      }
                    }
                  }
                },
                "example": {
                  "DIFFSERV-MIB:diffServMeterEntry": [
                    {
                      "diffServMeterId": "example-string",
                      "diffServMeterSucceedNext": "example-string",
                      "diffServMeterFailNext": "example-string",
                      "diffServMeterSpecific": "example-string",
                      "diffServMeterStorage": "example-string",
                      "diffServMeterStatus": "up(1)"
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-diffServMeterEntry-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": "/diffServMeterEntry",
      "x-restconf-kind": "container"
    },
    "/data/DIFFSERV-MIB:diffServMeterEntry={diffServMeterId}": {
      "get": {
        "summary": "Get diffServMeterEntry entry",
        "description": "Retrieve specific diffServMeterEntry entry by key from MIB",
        "tags": [
          "DIFFSERV-MIB"
        ],
        "parameters": [
          {
            "name": "diffServMeterId",
            "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": {
                    "diffServMeterId": {
                      "type": "string",
                      "description": "An index that enumerates the Meter entries.  Managers obtain new\n            values for row creation in this table by reading\n            diffServMeterNextFree.",
                      "x-yang-type": "DIFFSERV-MIB:IndexInteger"
                    },
                    "diffServMeterSucceedNext": {
                      "type": "string",
                      "description": "If the traffic does conform, this selects the next\n            Differentiated Services Functional Data Path element to handle\n            traffic for this data path. This RowPointer should point to an\n            instance of one of:\n              diffServClfrEntry\n              diffServMeterEntry\n              diffServActionEntry\n              diffServAlgDropEntry\n              diffServQEntry\n            \n            A value of zeroDotZero in this attribute indicates that no\n            further Differentiated Services treatment is performed on traffic\n            of this data path. The use of zeroDotZero is the normal usage for\n            the last functional data path element of the current data path.\n            \n            Setting this to point to a target that does not exist results in\n            an inconsistentValue error.  If the row pointed to is removed or\n            becomes inactive by other means, the treatment is as if this\n            attribute contains a value of zeroDotZero.",
                      "x-yang-type": "snmpv2-tc:RowPointer"
                    },
                    "diffServMeterFailNext": {
                      "type": "string",
                      "description": "If the traffic does not conform, this selects the next\n            Differentiated Services Functional Data Path element to handle\n            traffic for this data path. This RowPointer should point to an\n            instance of one of:\n              diffServClfrEntry\n              diffServMeterEntry\n            \n            \n            \n              diffServActionEntry\n              diffServAlgDropEntry\n              diffServQEntry\n            \n            A value of zeroDotZero in this attribute indicates no further\n            Differentiated Services treatment is performed on traffic of this\n            data path. The use of zeroDotZero is the normal usage for the\n            last functional data path element of the current data path.\n            \n            Setting this to point to a target that does not exist results in\n            an inconsistentValue error.  If the row pointed to is removed or\n            becomes inactive by other means, the treatment is as if this\n            attribute contains a value of zeroDotZero.",
                      "x-yang-type": "snmpv2-tc:RowPointer"
                    },
                    "diffServMeterSpecific": {
                      "type": "string",
                      "description": "This indicates the behavior of the meter by pointing to an entry\n            containing detailed parameters. Note that entries in that\n            specific table must be managed explicitly.\n            \n            For example, diffServMeterSpecific may point to an entry in\n            diffServTBParamTable, which contains an instance of a single set\n            of Token Bucket parameters.\n            \n            Setting this to point to a target that does not exist results in\n            an inconsistentValue error.  If the row pointed to is removed or\n            becomes inactive by other means, the meter always succeeds.",
                      "x-yang-type": "snmpv2-tc:RowPointer"
                    },
                    "diffServMeterStorage": {
                      "type": "string",
                      "description": "The storage type for this conceptual row.  Conceptual rows\n            having the value 'permanent' need not allow write-access to any\n            columnar objects in the row.",
                      "x-yang-type": "snmpv2-tc:StorageType"
                    },
                    "diffServMeterStatus": {
                      "type": "string",
                      "description": "The status of this conceptual row. All writable objects in this\n            row may be modified at any time. Setting this variable to\n            'destroy' when the MIB contains one or more RowPointers pointing\n            to it results in destruction being delayed until the row is no\n            longer used.",
                      "x-yang-type": "snmpv2-tc:RowStatus"
                    }
                  }
                },
                "example": {
                  "DIFFSERV-MIB:diffServMeterEntry": {
                    "diffServMeterId": "example-string",
                    "diffServMeterSucceedNext": "example-string",
                    "diffServMeterFailNext": "example-string",
                    "diffServMeterSpecific": "example-string",
                    "diffServMeterStorage": "example-string",
                    "diffServMeterStatus": "up(1)"
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-diffServMeterEntry-4"
      },
      "x-yang-path": "/diffServMeterEntry={diffServMeterId}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "diffServMeterId"
      ]
    },
    "/data/DIFFSERV-MIB:diffServTBParamEntry": {
      "get": {
        "summary": "Get diffServTBParamEntry list",
        "description": "Retrieve list of diffServTBParamEntry entries from MIB",
        "tags": [
          "DIFFSERV-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "An entry that describes a single set of token bucket\n          parameters.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "diffServTBParamId": {
                        "type": "string",
                        "description": "An index that enumerates the Token Bucket Parameter entries.\n            Managers obtain new values for row creation in this table by\n            reading diffServTBParamNextFree.",
                        "x-yang-type": "DIFFSERV-MIB:IndexInteger"
                      },
                      "diffServTBParamType": {
                        "type": "string",
                        "description": "The Metering algorithm associated with the Token Bucket\n            parameters.  zeroDotZero indicates this is unknown.\n            \n            Standard values for generic algorithms:\n            diffServTBParamSimpleTokenBucket, diffServTBParamAvgRate,\n            diffServTBParamSrTCMBlind, diffServTBParamSrTCMAware,\n            diffServTBParamTrTCMBlind, diffServTBParamTrTCMAware, and\n            diffServTBParamTswTCM are specified in this MIB as OBJECT-\n            IDENTITYs; additional values may be further specified in other\n            MIBs.",
                        "x-yang-type": "snmpv2-tc:AutonomousType"
                      },
                      "diffServTBParamRate": {
                        "type": "integer",
                        "description": "The token-bucket rate, in kilobits per second (kbps). This\n            attribute is used for:\n            1. CIR in RFC 2697 for srTCM\n            2. CIR and PIR in RFC 2698 for trTCM\n            3. CTR and PTR in RFC 2859 for TSWTCM\n            4. AverageRate in RFC 3290.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "diffServTBParamBurstSize": {
                        "type": "string",
                        "description": "The maximum number of bytes in a single transmission burst. This\n            attribute is used for:\n            1. CBS and EBS in RFC 2697 for srTCM\n            2. CBS and PBS in RFC 2698 for trTCM\n            3. Burst Size in RFC 3290.",
                        "x-yang-type": "integrated-services:BurstSize"
                      },
                      "diffServTBParamInterval": {
                        "type": "integer",
                        "description": "The time interval used with the token bucket.  For:\n            1. Average Rate Meter, the Informal Differentiated Services Model\n               section 5.2.1, - Delta.\n            2. Simple Token Bucket Meter, the Informal Differentiated\n               Services Model section 5.1, - time interval t.\n            3. RFC 2859 TSWTCM, - AVG_INTERVAL.\n            4. RFC 2697 srTCM, RFC 2698 trTCM, - token bucket update time\n               interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "diffServTBParamStorage": {
                        "type": "string",
                        "description": "The storage type for this conceptual row.  Conceptual rows\n            having the value 'permanent' need not allow write-access to any\n            columnar objects in the row.",
                        "x-yang-type": "snmpv2-tc:StorageType"
                      },
                      "diffServTBParamStatus": {
                        "type": "string",
                        "description": "The status of this conceptual row. All writable objects in this\n            row may be modified at any time. Setting this variable to\n            'destroy' when the MIB contains one or more RowPointers pointing\n            to it results in destruction being delayed until the row is no\n            longer used.",
                        "x-yang-type": "snmpv2-tc:RowStatus"
                      }
                    }
                  }
                },
                "example": {
                  "DIFFSERV-MIB:diffServTBParamEntry": [
                    {
                      "diffServTBParamId": "example-string",
                      "diffServTBParamType": "ethernetCsmacd(6)",
                      "diffServTBParamRate": 0,
                      "diffServTBParamBurstSize": "example-string",
                      "diffServTBParamInterval": 0,
                      "diffServTBParamStorage": "example-string",
                      "diffServTBParamStatus": "up(1)"
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-diffServTBParamEntry-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": "/diffServTBParamEntry",
      "x-restconf-kind": "container"
    },
    "/data/DIFFSERV-MIB:diffServTBParamEntry={diffServTBParamId}": {
      "get": {
        "summary": "Get diffServTBParamEntry entry",
        "description": "Retrieve specific diffServTBParamEntry entry by key from MIB",
        "tags": [
          "DIFFSERV-MIB"
        ],
        "parameters": [
          {
            "name": "diffServTBParamId",
            "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": {
                    "diffServTBParamId": {
                      "type": "string",
                      "description": "An index that enumerates the Token Bucket Parameter entries.\n            Managers obtain new values for row creation in this table by\n            reading diffServTBParamNextFree.",
                      "x-yang-type": "DIFFSERV-MIB:IndexInteger"
                    },
                    "diffServTBParamType": {
                      "type": "string",
                      "description": "The Metering algorithm associated with the Token Bucket\n            parameters.  zeroDotZero indicates this is unknown.\n            \n            Standard values for generic algorithms:\n            diffServTBParamSimpleTokenBucket, diffServTBParamAvgRate,\n            diffServTBParamSrTCMBlind, diffServTBParamSrTCMAware,\n            diffServTBParamTrTCMBlind, diffServTBParamTrTCMAware, and\n            diffServTBParamTswTCM are specified in this MIB as OBJECT-\n            IDENTITYs; additional values may be further specified in other\n            MIBs.",
                      "x-yang-type": "snmpv2-tc:AutonomousType"
                    },
                    "diffServTBParamRate": {
                      "type": "integer",
                      "description": "The token-bucket rate, in kilobits per second (kbps). This\n            attribute is used for:\n            1. CIR in RFC 2697 for srTCM\n            2. CIR and PIR in RFC 2698 for trTCM\n            3. CTR and PTR in RFC 2859 for TSWTCM\n            4. AverageRate in RFC 3290.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "diffServTBParamBurstSize": {
                      "type": "string",
                      "description": "The maximum number of bytes in a single transmission burst. This\n            attribute is used for:\n            1. CBS and EBS in RFC 2697 for srTCM\n            2. CBS and PBS in RFC 2698 for trTCM\n            3. Burst Size in RFC 3290.",
                      "x-yang-type": "integrated-services:BurstSize"
                    },
                    "diffServTBParamInterval": {
                      "type": "integer",
                      "description": "The time interval used with the token bucket.  For:\n            1. Average Rate Meter, the Informal Differentiated Services Model\n               section 5.2.1, - Delta.\n            2. Simple Token Bucket Meter, the Informal Differentiated\n               Services Model section 5.1, - time interval t.\n            3. RFC 2859 TSWTCM, - AVG_INTERVAL.\n            4. RFC 2697 srTCM, RFC 2698 trTCM, - token bucket update time\n               interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "diffServTBParamStorage": {
                      "type": "string",
                      "description": "The storage type for this conceptual row.  Conceptual rows\n            having the value 'permanent' need not allow write-access to any\n            columnar objects in the row.",
                      "x-yang-type": "snmpv2-tc:StorageType"
                    },
                    "diffServTBParamStatus": {
                      "type": "string",
                      "description": "The status of this conceptual row. All writable objects in this\n            row may be modified at any time. Setting this variable to\n            'destroy' when the MIB contains one or more RowPointers pointing\n            to it results in destruction being delayed until the row is no\n            longer used.",
                      "x-yang-type": "snmpv2-tc:RowStatus"
                    }
                  }
                },
                "example": {
                  "DIFFSERV-MIB:diffServTBParamEntry": {
                    "diffServTBParamId": "example-string",
                    "diffServTBParamType": "ethernetCsmacd(6)",
                    "diffServTBParamRate": 0,
                    "diffServTBParamBurstSize": "example-string",
                    "diffServTBParamInterval": 0,
                    "diffServTBParamStorage": "example-string",
                    "diffServTBParamStatus": "up(1)"
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-diffServTBParamEntry-4"
      },
      "x-yang-path": "/diffServTBParamEntry={diffServTBParamId}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "diffServTBParamId"
      ]
    },
    "/data/DIFFSERV-MIB:diffServActionEntry": {
      "get": {
        "summary": "Get diffServActionEntry list",
        "description": "Retrieve list of diffServActionEntry entries from MIB",
        "tags": [
          "DIFFSERV-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "Each entry in the action table allows description of one\n          specific action to be applied to traffic.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "diffServActionId": {
                        "type": "string",
                        "description": "An index that enumerates the Action entries.  Managers obtain\n            new values for row creation in this table by reading\n            diffServActionNextFree.",
                        "x-yang-type": "DIFFSERV-MIB:IndexInteger"
                      },
                      "diffServActionInterface": {
                        "type": "string",
                        "description": "The interface index (value of ifIndex) that this action occurs\n            on. This may be derived from the diffServDataPathStartEntry's\n            index by extension through the various RowPointers. However, as\n            this may be difficult for a network management station, it is\n            placed here as well.  If this is indeterminate, the value is\n            zero.\n            \n            This is of especial relevance when reporting the counters which\n            may apply to traffic crossing an interface:\n               diffServCountActOctets,\n               diffServCountActPkts,\n               diffServAlgDropOctets,\n               diffServAlgDropPkts,\n               diffServAlgRandomDropOctets, and\n               diffServAlgRandomDropPkts.\n            \n            It is also especially relevant to the queue and scheduler which\n            may be subsequently applied.",
                        "x-yang-type": "if-mib:InterfaceIndexOrZero"
                      },
                      "diffServActionNext": {
                        "type": "string",
                        "description": "This selects the next Differentiated Services Functional Data\n            Path Element to handle traffic for this data path. This\n            RowPointer should point to an instance of one of:\n              diffServClfrEntry\n              diffServMeterEntry\n              diffServActionEntry\n              diffServAlgDropEntry\n              diffServQEntry\n            \n            A value of zeroDotZero in this attribute indicates no further\n            Differentiated Services treatment is performed on traffic of this\n            data path. The use of zeroDotZero is the normal usage for the\n            last functional data path element of the current data path.\n            \n            Setting this to point to a target that does not exist results in\n            an inconsistentValue error.  If the row pointed to is removed or\n            becomes inactive by other means, the treatment is as if this\n            attribute contains a value of zeroDotZero.",
                        "x-yang-type": "snmpv2-tc:RowPointer"
                      },
                      "diffServActionSpecific": {
                        "type": "string",
                        "description": "A pointer to an object instance providing additional information\n            for the type of action indicated by this action table entry.\n            \n            For the standard actions defined by this MIB module, this should\n            point to either a diffServDscpMarkActEntry or a\n            diffServCountActEntry. For other actions, it may point to an\n            object instance defined in some other MIB.\n            \n            Setting this to point to a target that does not exist results in\n            an inconsistentValue error.  If the row pointed to is removed or\n            becomes inactive by other means, the Meter should be treated as\n            if it were not present.  This may lead to incorrect policy\n            behavior.",
                        "x-yang-type": "snmpv2-tc:RowPointer"
                      },
                      "diffServActionStorage": {
                        "type": "string",
                        "description": "The storage type for this conceptual row.  Conceptual rows\n            having the value 'permanent' need not allow write-access to any\n            columnar objects in the row.",
                        "x-yang-type": "snmpv2-tc:StorageType"
                      },
                      "diffServActionStatus": {
                        "type": "string",
                        "description": "The status of this conceptual row. All writable objects in this\n            row may be modified at any time. Setting this variable to\n            'destroy' when the MIB contains one or more RowPointers pointing\n            to it results in destruction being delayed until the row is no\n            longer used.",
                        "x-yang-type": "snmpv2-tc:RowStatus"
                      }
                    }
                  }
                },
                "example": {
                  "DIFFSERV-MIB:diffServActionEntry": [
                    {
                      "diffServActionId": "example-string",
                      "diffServActionInterface": "GigabitEthernet1/0/1",
                      "diffServActionNext": "example-string",
                      "diffServActionSpecific": "example-string",
                      "diffServActionStorage": "example-string",
                      "diffServActionStatus": "up(1)"
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-diffServActionEntry-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": "/diffServActionEntry",
      "x-restconf-kind": "container"
    },
    "/data/DIFFSERV-MIB:diffServActionEntry={diffServActionId}": {
      "get": {
        "summary": "Get diffServActionEntry entry",
        "description": "Retrieve specific diffServActionEntry entry by key from MIB",
        "tags": [
          "DIFFSERV-MIB"
        ],
        "parameters": [
          {
            "name": "diffServActionId",
            "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": {
                    "diffServActionId": {
                      "type": "string",
                      "description": "An index that enumerates the Action entries.  Managers obtain\n            new values for row creation in this table by reading\n            diffServActionNextFree.",
                      "x-yang-type": "DIFFSERV-MIB:IndexInteger"
                    },
                    "diffServActionInterface": {
                      "type": "string",
                      "description": "The interface index (value of ifIndex) that this action occurs\n            on. This may be derived from the diffServDataPathStartEntry's\n            index by extension through the various RowPointers. However, as\n            this may be difficult for a network management station, it is\n            placed here as well.  If this is indeterminate, the value is\n            zero.\n            \n            This is of especial relevance when reporting the counters which\n            may apply to traffic crossing an interface:\n               diffServCountActOctets,\n               diffServCountActPkts,\n               diffServAlgDropOctets,\n               diffServAlgDropPkts,\n               diffServAlgRandomDropOctets, and\n               diffServAlgRandomDropPkts.\n            \n            It is also especially relevant to the queue and scheduler which\n            may be subsequently applied.",
                      "x-yang-type": "if-mib:InterfaceIndexOrZero"
                    },
                    "diffServActionNext": {
                      "type": "string",
                      "description": "This selects the next Differentiated Services Functional Data\n            Path Element to handle traffic for this data path. This\n            RowPointer should point to an instance of one of:\n              diffServClfrEntry\n              diffServMeterEntry\n              diffServActionEntry\n              diffServAlgDropEntry\n              diffServQEntry\n            \n            A value of zeroDotZero in this attribute indicates no further\n            Differentiated Services treatment is performed on traffic of this\n            data path. The use of zeroDotZero is the normal usage for the\n            last functional data path element of the current data path.\n            \n            Setting this to point to a target that does not exist results in\n            an inconsistentValue error.  If the row pointed to is removed or\n            becomes inactive by other means, the treatment is as if this\n            attribute contains a value of zeroDotZero.",
                      "x-yang-type": "snmpv2-tc:RowPointer"
                    },
                    "diffServActionSpecific": {
                      "type": "string",
                      "description": "A pointer to an object instance providing additional information\n            for the type of action indicated by this action table entry.\n            \n            For the standard actions defined by this MIB module, this should\n            point to either a diffServDscpMarkActEntry or a\n            diffServCountActEntry. For other actions, it may point to an\n            object instance defined in some other MIB.\n            \n            Setting this to point to a target that does not exist results in\n            an inconsistentValue error.  If the row pointed to is removed or\n            becomes inactive by other means, the Meter should be treated as\n            if it were not present.  This may lead to incorrect policy\n            behavior.",
                      "x-yang-type": "snmpv2-tc:RowPointer"
                    },
                    "diffServActionStorage": {
                      "type": "string",
                      "description": "The storage type for this conceptual row.  Conceptual rows\n            having the value 'permanent' need not allow write-access to any\n            columnar objects in the row.",
                      "x-yang-type": "snmpv2-tc:StorageType"
                    },
                    "diffServActionStatus": {
                      "type": "string",
                      "description": "The status of this conceptual row. All writable objects in this\n            row may be modified at any time. Setting this variable to\n            'destroy' when the MIB contains one or more RowPointers pointing\n            to it results in destruction being delayed until the row is no\n            longer used.",
                      "x-yang-type": "snmpv2-tc:RowStatus"
                    }
                  }
                },
                "example": {
                  "DIFFSERV-MIB:diffServActionEntry": {
                    "diffServActionId": "example-string",
                    "diffServActionInterface": "GigabitEthernet1/0/1",
                    "diffServActionNext": "example-string",
                    "diffServActionSpecific": "example-string",
                    "diffServActionStorage": "example-string",
                    "diffServActionStatus": "up(1)"
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-diffServActionEntry-4"
      },
      "x-yang-path": "/diffServActionEntry={diffServActionId}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "diffServActionId"
      ]
    },
    "/data/DIFFSERV-MIB:diffServDscpMarkActEntry": {
      "get": {
        "summary": "Get diffServDscpMarkActEntry list",
        "description": "Retrieve list of diffServDscpMarkActEntry entries from MIB",
        "tags": [
          "DIFFSERV-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "An entry in the DSCP mark action table that describes a single\n          DSCP used for marking.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "diffServDscpMarkActDscp": {
                        "type": "string",
                        "description": "The DSCP that this Action will store into the DSCP field of the\n            subject. It is quite possible that the only packets subject to\n            this Action are already marked with this DSCP. Note also that\n            Differentiated Services processing may result in packet being\n            marked on both ingress to a network and on egress from it, and\n            that ingress and egress can occur in the same router.",
                        "format": "inet:dscp"
                      }
                    }
                  }
                },
                "example": {
                  "DIFFSERV-MIB:diffServDscpMarkActEntry": [
                    {
                      "diffServDscpMarkActDscp": "example-string"
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-diffServDscpMarkActEntry-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": "/diffServDscpMarkActEntry",
      "x-restconf-kind": "container"
    },
    "/data/DIFFSERV-MIB:diffServDscpMarkActEntry={diffServDscpMarkActDscp}": {
      "get": {
        "summary": "Get diffServDscpMarkActEntry entry",
        "description": "Retrieve specific diffServDscpMarkActEntry entry by key from MIB",
        "tags": [
          "DIFFSERV-MIB"
        ],
        "parameters": [
          {
            "name": "diffServDscpMarkActDscp",
            "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": {
                    "diffServDscpMarkActDscp": {
                      "type": "string",
                      "description": "The DSCP that this Action will store into the DSCP field of the\n            subject. It is quite possible that the only packets subject to\n            this Action are already marked with this DSCP. Note also that\n            Differentiated Services processing may result in packet being\n            marked on both ingress to a network and on egress from it, and\n            that ingress and egress can occur in the same router.",
                      "format": "inet:dscp"
                    }
                  }
                },
                "example": {
                  "DIFFSERV-MIB:diffServDscpMarkActEntry": {
                    "diffServDscpMarkActDscp": "example-string"
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-diffServDscpMarkActEntry-4"
      },
      "x-yang-path": "/diffServDscpMarkActEntry={diffServDscpMarkActDscp}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "diffServDscpMarkActDscp"
      ]
    },
    "/data/DIFFSERV-MIB:diffServCountActEntry": {
      "get": {
        "summary": "Get diffServCountActEntry list",
        "description": "Retrieve list of diffServCountActEntry entries from MIB",
        "tags": [
          "DIFFSERV-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "An entry in the count action table describes a single set of\n          traffic counters.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "diffServCountActId": {
                        "type": "string",
                        "description": "An index that enumerates the Count Action entries.  Managers\n            obtain new values for row creation in this table by reading\n            \n            \n            \n            diffServCountActNextFree.",
                        "x-yang-type": "DIFFSERV-MIB:IndexInteger"
                      },
                      "diffServCountActOctets": {
                        "type": "integer",
                        "description": "The number of octets at the Action data path element.\n            \n            Discontinuities in the value of this counter can occur at re-\n            initialization of the management system and at other times as\n            indicated by the value of ifCounterDiscontinuityTime on the\n            relevant interface.",
                        "minimum": 0
                      },
                      "diffServCountActPkts": {
                        "type": "integer",
                        "description": "The number of packets at the Action data path element.\n            \n            Discontinuities in the value of this counter can occur at re-\n            initialization of the management system and at other times as\n            indicated by the value of ifCounterDiscontinuityTime on the\n            relevant interface.",
                        "minimum": 0
                      },
                      "diffServCountActStorage": {
                        "type": "string",
                        "description": "The storage type for this conceptual row.  Conceptual rows\n            having the value 'permanent' need not allow write-access to any\n            columnar objects in the row.",
                        "x-yang-type": "snmpv2-tc:StorageType"
                      },
                      "diffServCountActStatus": {
                        "type": "string",
                        "description": "The status of this conceptual row. All writable objects in this\n            row may be modified at any time. Setting this variable to\n            'destroy' when the MIB contains one or more RowPointers pointing\n            \n            \n            \n            to it results in destruction being delayed until the row is no\n            longer used.",
                        "x-yang-type": "snmpv2-tc:RowStatus"
                      }
                    }
                  }
                },
                "example": {
                  "DIFFSERV-MIB:diffServCountActEntry": [
                    {
                      "diffServCountActId": "example-string",
                      "diffServCountActOctets": 1234567890,
                      "diffServCountActPkts": 0,
                      "diffServCountActStorage": "example-string",
                      "diffServCountActStatus": "up(1)"
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-diffServCountActEntry-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": "/diffServCountActEntry",
      "x-restconf-kind": "container"
    },
    "/data/DIFFSERV-MIB:diffServCountActEntry={diffServCountActId}": {
      "get": {
        "summary": "Get diffServCountActEntry entry",
        "description": "Retrieve specific diffServCountActEntry entry by key from MIB",
        "tags": [
          "DIFFSERV-MIB"
        ],
        "parameters": [
          {
            "name": "diffServCountActId",
            "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": {
                    "diffServCountActId": {
                      "type": "string",
                      "description": "An index that enumerates the Count Action entries.  Managers\n            obtain new values for row creation in this table by reading\n            \n            \n            \n            diffServCountActNextFree.",
                      "x-yang-type": "DIFFSERV-MIB:IndexInteger"
                    },
                    "diffServCountActOctets": {
                      "type": "integer",
                      "description": "The number of octets at the Action data path element.\n            \n            Discontinuities in the value of this counter can occur at re-\n            initialization of the management system and at other times as\n            indicated by the value of ifCounterDiscontinuityTime on the\n            relevant interface.",
                      "minimum": 0
                    },
                    "diffServCountActPkts": {
                      "type": "integer",
                      "description": "The number of packets at the Action data path element.\n            \n            Discontinuities in the value of this counter can occur at re-\n            initialization of the management system and at other times as\n            indicated by the value of ifCounterDiscontinuityTime on the\n            relevant interface.",
                      "minimum": 0
                    },
                    "diffServCountActStorage": {
                      "type": "string",
                      "description": "The storage type for this conceptual row.  Conceptual rows\n            having the value 'permanent' need not allow write-access to any\n            columnar objects in the row.",
                      "x-yang-type": "snmpv2-tc:StorageType"
                    },
                    "diffServCountActStatus": {
                      "type": "string",
                      "description": "The status of this conceptual row. All writable objects in this\n            row may be modified at any time. Setting this variable to\n            'destroy' when the MIB contains one or more RowPointers pointing\n            \n            \n            \n            to it results in destruction being delayed until the row is no\n            longer used.",
                      "x-yang-type": "snmpv2-tc:RowStatus"
                    }
                  }
                },
                "example": {
                  "DIFFSERV-MIB:diffServCountActEntry": {
                    "diffServCountActId": "example-string",
                    "diffServCountActOctets": 1234567890,
                    "diffServCountActPkts": 0,
                    "diffServCountActStorage": "example-string",
                    "diffServCountActStatus": "up(1)"
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-diffServCountActEntry-4"
      },
      "x-yang-path": "/diffServCountActEntry={diffServCountActId}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "diffServCountActId"
      ]
    },
    "/data/DIFFSERV-MIB:diffServAlgDropEntry": {
      "get": {
        "summary": "Get diffServAlgDropEntry list",
        "description": "Retrieve list of diffServAlgDropEntry entries from MIB",
        "tags": [
          "DIFFSERV-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "An entry describes a process that drops packets according to\n          some algorithm. Further details of the algorithm type are to be\n          found in diffServAlgDropType and with more detail parameter entry\n          pointed to by diffServAlgDropSpecific when necessary.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "diffServAlgDropId": {
                        "type": "string",
                        "description": "An index that enumerates the Algorithmic Dropper entries.\n            Managers obtain new values for row creation in this table by\n            reading diffServAlgDropNextFree.",
                        "x-yang-type": "DIFFSERV-MIB:IndexInteger"
                      },
                      "diffServAlgDropType": {
                        "type": "string",
                        "description": "The type of algorithm used by this dropper. The value other(1)\n            requires further specification in some other MIB module.\n            \n            In the tailDrop(2) algorithm, diffServAlgDropQThreshold\n            represents the maximum depth of the queue, pointed to by\n            diffServAlgDropQMeasure, beyond which all newly arriving packets\n            will be dropped.\n            \n            In the headDrop(3) algorithm, if a packet arrives when the\n            current depth of the queue, pointed to by\n            diffServAlgDropQMeasure, is at diffServAlgDropQThreshold, packets\n            currently at the head of the queue are dropped to make room for\n            the new packet to be enqueued at the tail of the queue.\n            \n            In the randomDrop(4) algorithm, on packet arrival, an Active\n            Queue Management algorithm is executed which may randomly drop a\n            packet. This algorithm may be proprietary, and it may drop either\n            the arriving packet or another packet in the queue.\n            diffServAlgDropSpecific points to a diffServRandomDropEntry that\n            describes the algorithm. For this algorithm,\n            \n            \n            \n            diffServAlgDropQThreshold is understood to be the absolute\n            maximum size of the queue and additional parameters are described\n            in diffServRandomDropTable.\n            \n            The alwaysDrop(5) algorithm is as its name specifies; always\n            drop. In this case, the other configuration values in this Entry\n            are not meaningful; There is no useful 'next' processing step,\n            there is no queue, and parameters describing the queue are not\n            useful. Therefore, diffServAlgDropNext, diffServAlgDropMeasure,\n            and diffServAlgDropSpecific are all zeroDotZero."
                      },
                      "diffServAlgDropNext": {
                        "type": "string",
                        "description": "This selects the next Differentiated Services Functional Data\n            Path Element to handle traffic for this data path. This\n            RowPointer should point to an instance of one of:\n              diffServClfrEntry\n              diffServMeterEntry\n              diffServActionEntry\n              diffServQEntry\n            \n            A value of zeroDotZero in this attribute indicates no further\n            Differentiated Services treatment is performed on traffic of this\n            data path. The use of zeroDotZero is the normal usage for the\n            last functional data path element of the current data path.\n            \n            When diffServAlgDropType is alwaysDrop(5), this object is\n            ignored.\n            \n            Setting this to point to a target that does not exist results in\n            an inconsistentValue error.  If the row pointed to is removed or\n            becomes inactive by other means, the treatment is as if this\n            attribute contains a value of zeroDotZero.",
                        "x-yang-type": "snmpv2-tc:RowPointer"
                      },
                      "diffServAlgDropQMeasure": {
                        "type": "string",
                        "description": "Points to an entry in the diffServQTable to indicate the queue\n            that a drop algorithm is to monitor when deciding whether to drop\n            a packet. If the row pointed to does not exist, the algorithmic\n            dropper element is considered inactive.\n            \n            \n            \n            Setting this to point to a target that does not exist results in\n            an inconsistentValue error.  If the row pointed to is removed or\n            becomes inactive by other means, the treatment is as if this\n            attribute contains a value of zeroDotZero.",
                        "x-yang-type": "snmpv2-tc:RowPointer"
                      },
                      "diffServAlgDropQThreshold": {
                        "type": "integer",
                        "description": "A threshold on the depth in bytes of the queue being measured at\n            which a trigger is generated to the dropping algorithm, unless\n            diffServAlgDropType is alwaysDrop(5) where this object is\n            ignored.\n            \n            For the tailDrop(2) or headDrop(3) algorithms, this represents\n            the depth of the queue, pointed to by diffServAlgDropQMeasure, at\n            which the drop action will take place. Other algorithms will need\n            to define their own semantics for this threshold.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "diffServAlgDropSpecific": {
                        "type": "string",
                        "description": "Points to a table entry that provides further detail regarding a\n            drop algorithm.\n            \n            Entries with diffServAlgDropType equal to other(1) may have this\n            point to a table defined in another MIB module.\n            \n            Entries with diffServAlgDropType equal to randomDrop(4) must have\n            this point to an entry in diffServRandomDropTable.\n            \n            For all other algorithms specified in this MIB, this should take\n            the value zeroDotZero.\n            \n            The diffServAlgDropType is authoritative for the type of the drop\n            algorithm and the specific parameters for the drop algorithm\n            needs to be evaluated based on the diffServAlgDropType.\n            \n            Setting this to point to a target that does not exist results in\n            an inconsistentValue error.  If the row pointed to is removed or\n            becomes inactive by other means, the treatment is as if this\n            attribute contains a value of zeroDotZero.",
                        "x-yang-type": "snmpv2-tc:RowPointer"
                      },
                      "diffServAlgDropOctets": {
                        "type": "integer",
                        "description": "The number of octets that have been deterministically dropped by\n            this drop process.\n            \n            Discontinuities in the value of this counter can occur at re-\n            initialization of the management system and at other times as\n            indicated by the value of ifCounterDiscontinuityTime on the\n            relevant interface.",
                        "minimum": 0
                      },
                      "diffServAlgDropPkts": {
                        "type": "integer",
                        "description": "The number of packets that have been deterministically dropped\n            by this drop process.\n            \n            Discontinuities in the value of this counter can occur at re-\n            initialization of the management system and at other times as\n            indicated by the value of ifCounterDiscontinuityTime on the\n            relevant interface.",
                        "minimum": 0
                      },
                      "diffServAlgRandomDropOctets": {
                        "type": "integer",
                        "description": "The number of octets that have been randomly dropped by this\n            drop process.  This counter applies, therefore, only to random\n            droppers.\n            \n            Discontinuities in the value of this counter can occur at re-\n            initialization of the management system and at other times as\n            indicated by the value of ifCounterDiscontinuityTime on the\n            relevant interface.",
                        "minimum": 0
                      },
                      "diffServAlgRandomDropPkts": {
                        "type": "integer",
                        "description": "The number of packets that have been randomly dropped by this\n            drop process. This counter applies, therefore, only to random\n            droppers.\n            \n            Discontinuities in the value of this counter can occur at re-\n            initialization of the management system and at other times as\n            indicated by the value of ifCounterDiscontinuityTime on the\n            relevant interface.",
                        "minimum": 0
                      },
                      "diffServAlgDropStorage": {
                        "type": "string",
                        "description": "The storage type for this conceptual row.  Conceptual rows\n            having the value 'permanent' need not allow write-access to any\n            columnar objects in the row.",
                        "x-yang-type": "snmpv2-tc:StorageType"
                      },
                      "diffServAlgDropStatus": {
                        "type": "string",
                        "description": "The status of this conceptual row. All writable objects in this\n            row may be modified at any time. Setting this variable to\n            'destroy' when the MIB contains one or more RowPointers pointing\n            to it results in destruction being delayed until the row is no\n            longer used.",
                        "x-yang-type": "snmpv2-tc:RowStatus"
                      }
                    }
                  }
                },
                "example": {
                  "DIFFSERV-MIB:diffServAlgDropEntry": [
                    {
                      "diffServAlgDropId": "example-string",
                      "diffServAlgDropType": "ethernetCsmacd(6)",
                      "diffServAlgDropNext": "example-string",
                      "diffServAlgDropQMeasure": "example-string",
                      "diffServAlgDropQThreshold": 0,
                      "diffServAlgDropSpecific": "example-string",
                      "diffServAlgDropOctets": 1234567890,
                      "diffServAlgDropPkts": 0,
                      "diffServAlgRandomDropOctets": 1234567890,
                      "diffServAlgRandomDropPkts": 0,
                      "diffServAlgDropStorage": "example-string",
                      "diffServAlgDropStatus": "up(1)"
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-diffServAlgDropEntry-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": "/diffServAlgDropEntry",
      "x-restconf-kind": "container"
    },
    "/data/DIFFSERV-MIB:diffServAlgDropEntry={diffServAlgDropId}": {
      "get": {
        "summary": "Get diffServAlgDropEntry entry",
        "description": "Retrieve specific diffServAlgDropEntry entry by key from MIB",
        "tags": [
          "DIFFSERV-MIB"
        ],
        "parameters": [
          {
            "name": "diffServAlgDropId",
            "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": {
                    "diffServAlgDropId": {
                      "type": "string",
                      "description": "An index that enumerates the Algorithmic Dropper entries.\n            Managers obtain new values for row creation in this table by\n            reading diffServAlgDropNextFree.",
                      "x-yang-type": "DIFFSERV-MIB:IndexInteger"
                    },
                    "diffServAlgDropType": {
                      "type": "string",
                      "description": "The type of algorithm used by this dropper. The value other(1)\n            requires further specification in some other MIB module.\n            \n            In the tailDrop(2) algorithm, diffServAlgDropQThreshold\n            represents the maximum depth of the queue, pointed to by\n            diffServAlgDropQMeasure, beyond which all newly arriving packets\n            will be dropped.\n            \n            In the headDrop(3) algorithm, if a packet arrives when the\n            current depth of the queue, pointed to by\n            diffServAlgDropQMeasure, is at diffServAlgDropQThreshold, packets\n            currently at the head of the queue are dropped to make room for\n            the new packet to be enqueued at the tail of the queue.\n            \n            In the randomDrop(4) algorithm, on packet arrival, an Active\n            Queue Management algorithm is executed which may randomly drop a\n            packet. This algorithm may be proprietary, and it may drop either\n            the arriving packet or another packet in the queue.\n            diffServAlgDropSpecific points to a diffServRandomDropEntry that\n            describes the algorithm. For this algorithm,\n            \n            \n            \n            diffServAlgDropQThreshold is understood to be the absolute\n            maximum size of the queue and additional parameters are described\n            in diffServRandomDropTable.\n            \n            The alwaysDrop(5) algorithm is as its name specifies; always\n            drop. In this case, the other configuration values in this Entry\n            are not meaningful; There is no useful 'next' processing step,\n            there is no queue, and parameters describing the queue are not\n            useful. Therefore, diffServAlgDropNext, diffServAlgDropMeasure,\n            and diffServAlgDropSpecific are all zeroDotZero."
                    },
                    "diffServAlgDropNext": {
                      "type": "string",
                      "description": "This selects the next Differentiated Services Functional Data\n            Path Element to handle traffic for this data path. This\n            RowPointer should point to an instance of one of:\n              diffServClfrEntry\n              diffServMeterEntry\n              diffServActionEntry\n              diffServQEntry\n            \n            A value of zeroDotZero in this attribute indicates no further\n            Differentiated Services treatment is performed on traffic of this\n            data path. The use of zeroDotZero is the normal usage for the\n            last functional data path element of the current data path.\n            \n            When diffServAlgDropType is alwaysDrop(5), this object is\n            ignored.\n            \n            Setting this to point to a target that does not exist results in\n            an inconsistentValue error.  If the row pointed to is removed or\n            becomes inactive by other means, the treatment is as if this\n            attribute contains a value of zeroDotZero.",
                      "x-yang-type": "snmpv2-tc:RowPointer"
                    },
                    "diffServAlgDropQMeasure": {
                      "type": "string",
                      "description": "Points to an entry in the diffServQTable to indicate the queue\n            that a drop algorithm is to monitor when deciding whether to drop\n            a packet. If the row pointed to does not exist, the algorithmic\n            dropper element is considered inactive.\n            \n            \n            \n            Setting this to point to a target that does not exist results in\n            an inconsistentValue error.  If the row pointed to is removed or\n            becomes inactive by other means, the treatment is as if this\n            attribute contains a value of zeroDotZero.",
                      "x-yang-type": "snmpv2-tc:RowPointer"
                    },
                    "diffServAlgDropQThreshold": {
                      "type": "integer",
                      "description": "A threshold on the depth in bytes of the queue being measured at\n            which a trigger is generated to the dropping algorithm, unless\n            diffServAlgDropType is alwaysDrop(5) where this object is\n            ignored.\n            \n            For the tailDrop(2) or headDrop(3) algorithms, this represents\n            the depth of the queue, pointed to by diffServAlgDropQMeasure, at\n            which the drop action will take place. Other algorithms will need\n            to define their own semantics for this threshold.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "diffServAlgDropSpecific": {
                      "type": "string",
                      "description": "Points to a table entry that provides further detail regarding a\n            drop algorithm.\n            \n            Entries with diffServAlgDropType equal to other(1) may have this\n            point to a table defined in another MIB module.\n            \n            Entries with diffServAlgDropType equal to randomDrop(4) must have\n            this point to an entry in diffServRandomDropTable.\n            \n            For all other algorithms specified in this MIB, this should take\n            the value zeroDotZero.\n            \n            The diffServAlgDropType is authoritative for the type of the drop\n            algorithm and the specific parameters for the drop algorithm\n            needs to be evaluated based on the diffServAlgDropType.\n            \n            Setting this to point to a target that does not exist results in\n            an inconsistentValue error.  If the row pointed to is removed or\n            becomes inactive by other means, the treatment is as if this\n            attribute contains a value of zeroDotZero.",
                      "x-yang-type": "snmpv2-tc:RowPointer"
                    },
                    "diffServAlgDropOctets": {
                      "type": "integer",
                      "description": "The number of octets that have been deterministically dropped by\n            this drop process.\n            \n            Discontinuities in the value of this counter can occur at re-\n            initialization of the management system and at other times as\n            indicated by the value of ifCounterDiscontinuityTime on the\n            relevant interface.",
                      "minimum": 0
                    },
                    "diffServAlgDropPkts": {
                      "type": "integer",
                      "description": "The number of packets that have been deterministically dropped\n            by this drop process.\n            \n            Discontinuities in the value of this counter can occur at re-\n            initialization of the management system and at other times as\n            indicated by the value of ifCounterDiscontinuityTime on the\n            relevant interface.",
                      "minimum": 0
                    },
                    "diffServAlgRandomDropOctets": {
                      "type": "integer",
                      "description": "The number of octets that have been randomly dropped by this\n            drop process.  This counter applies, therefore, only to random\n            droppers.\n            \n            Discontinuities in the value of this counter can occur at re-\n            initialization of the management system and at other times as\n            indicated by the value of ifCounterDiscontinuityTime on the\n            relevant interface.",
                      "minimum": 0
                    },
                    "diffServAlgRandomDropPkts": {
                      "type": "integer",
                      "description": "The number of packets that have been randomly dropped by this\n            drop process. This counter applies, therefore, only to random\n            droppers.\n            \n            Discontinuities in the value of this counter can occur at re-\n            initialization of the management system and at other times as\n            indicated by the value of ifCounterDiscontinuityTime on the\n            relevant interface.",
                      "minimum": 0
                    },
                    "diffServAlgDropStorage": {
                      "type": "string",
                      "description": "The storage type for this conceptual row.  Conceptual rows\n            having the value 'permanent' need not allow write-access to any\n            columnar objects in the row.",
                      "x-yang-type": "snmpv2-tc:StorageType"
                    },
                    "diffServAlgDropStatus": {
                      "type": "string",
                      "description": "The status of this conceptual row. All writable objects in this\n            row may be modified at any time. Setting this variable to\n            'destroy' when the MIB contains one or more RowPointers pointing\n            to it results in destruction being delayed until the row is no\n            longer used.",
                      "x-yang-type": "snmpv2-tc:RowStatus"
                    }
                  }
                },
                "example": {
                  "DIFFSERV-MIB:diffServAlgDropEntry": {
                    "diffServAlgDropId": "example-string",
                    "diffServAlgDropType": "ethernetCsmacd(6)",
                    "diffServAlgDropNext": "example-string",
                    "diffServAlgDropQMeasure": "example-string",
                    "diffServAlgDropQThreshold": 0,
                    "diffServAlgDropSpecific": "example-string",
                    "diffServAlgDropOctets": 1234567890,
                    "diffServAlgDropPkts": 0,
                    "diffServAlgRandomDropOctets": 1234567890,
                    "diffServAlgRandomDropPkts": 0,
                    "diffServAlgDropStorage": "example-string",
                    "diffServAlgDropStatus": "up(1)"
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-diffServAlgDropEntry-4"
      },
      "x-yang-path": "/diffServAlgDropEntry={diffServAlgDropId}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "diffServAlgDropId"
      ]
    },
    "/data/DIFFSERV-MIB:diffServRandomDropEntry": {
      "get": {
        "summary": "Get diffServRandomDropEntry list",
        "description": "Retrieve list of diffServRandomDropEntry entries from MIB",
        "tags": [
          "DIFFSERV-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "An entry describes a process that drops packets according to a\n          random algorithm.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "diffServRandomDropId": {
                        "type": "string",
                        "description": "An index that enumerates the Random Drop entries.  Managers\n            obtain new values for row creation in this table by reading\n            diffServRandomDropNextFree.",
                        "x-yang-type": "DIFFSERV-MIB:IndexInteger"
                      },
                      "diffServRandomDropMinThreshBytes": {
                        "type": "integer",
                        "description": "The average queue depth in bytes, beyond which traffic has a\n            non-zero probability of being dropped. Changes in this variable\n            may or may not be reflected in the reported value of\n            diffServRandomDropMinThreshPkts.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "diffServRandomDropMinThreshPkts": {
                        "type": "integer",
                        "description": "The average queue depth in packets, beyond which traffic has a\n            non-zero probability of being dropped. Changes in this variable\n            may or may not be reflected in the reported value of\n            diffServRandomDropMinThreshBytes.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "diffServRandomDropMaxThreshBytes": {
                        "type": "integer",
                        "description": "The average queue depth beyond which traffic has a probability\n            indicated by diffServRandomDropProbMax of being dropped or\n            marked. Note that this differs from the physical queue limit,\n            which is stored in diffServAlgDropQThreshold. Changes in this\n            variable may or may not be reflected in the reported value of\n            diffServRandomDropMaxThreshPkts.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "diffServRandomDropMaxThreshPkts": {
                        "type": "integer",
                        "description": "The average queue depth beyond which traffic has a probability\n            indicated by diffServRandomDropProbMax of being dropped or\n            marked. Note that this differs from the physical queue limit,\n            which is stored in diffServAlgDropQThreshold. Changes in this\n            variable may or may not be reflected in the reported value of\n            diffServRandomDropMaxThreshBytes.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "diffServRandomDropProbMax": {
                        "type": "integer",
                        "description": "The worst case random drop probability, expressed in drops per\n            thousand packets.\n            \n            For example, if in the worst case every arriving packet may be\n            dropped (100%) for a period, this has the value 1000.\n            Alternatively, if in the worst case only one percent (1%) of\n            traffic may be dropped, it has the value 10.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "diffServRandomDropWeight": {
                        "type": "integer",
                        "description": "The weighting of past history in affecting the Exponentially\n            Weighted Moving Average function that calculates the current\n            average queue depth.  The equation uses\n            diffServRandomDropWeight/65536 as the coefficient for the new\n            sample in the equation, and (65536 -\n            diffServRandomDropWeight)/65536 as the coefficient of the old\n            value.\n            \n            Implementations may limit the values of diffServRandomDropWeight\n            to a subset of the possible range of values, such as powers of\n            two. Doing this would facilitate implementation of the\n            Exponentially Weighted Moving Average using shift instructions or\n            registers.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "diffServRandomDropSamplingRate": {
                        "type": "integer",
                        "description": "The number of times per second the queue is sampled for queue\n            average calculation.  A value of zero is used to mean that the\n            queue is sampled approximately each time a packet is enqueued (or\n            dequeued).",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "diffServRandomDropStorage": {
                        "type": "string",
                        "description": "The storage type for this conceptual row.  Conceptual rows\n            having the value 'permanent' need not allow write-access to any\n            columnar objects in the row.",
                        "x-yang-type": "snmpv2-tc:StorageType"
                      },
                      "diffServRandomDropStatus": {
                        "type": "string",
                        "description": "The status of this conceptual row. All writable objects in this\n            row may be modified at any time. Setting this variable to\n            'destroy' when the MIB contains one or more RowPointers pointing\n            to it results in destruction being delayed until the row is no\n            longer used.",
                        "x-yang-type": "snmpv2-tc:RowStatus"
                      }
                    }
                  }
                },
                "example": {
                  "DIFFSERV-MIB:diffServRandomDropEntry": [
                    {
                      "diffServRandomDropId": "example-string",
                      "diffServRandomDropMinThreshBytes": 0,
                      "diffServRandomDropMinThreshPkts": 0,
                      "diffServRandomDropMaxThreshBytes": 0,
                      "diffServRandomDropMaxThreshPkts": 0,
                      "diffServRandomDropProbMax": 0,
                      "diffServRandomDropWeight": 0,
                      "diffServRandomDropSamplingRate": 0,
                      "diffServRandomDropStorage": "example-string",
                      "diffServRandomDropStatus": "up(1)"
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-diffServRandomDropEntry-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": "/diffServRandomDropEntry",
      "x-restconf-kind": "container"
    },
    "/data/DIFFSERV-MIB:diffServRandomDropEntry={diffServRandomDropId}": {
      "get": {
        "summary": "Get diffServRandomDropEntry entry",
        "description": "Retrieve specific diffServRandomDropEntry entry by key from MIB",
        "tags": [
          "DIFFSERV-MIB"
        ],
        "parameters": [
          {
            "name": "diffServRandomDropId",
            "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": {
                    "diffServRandomDropId": {
                      "type": "string",
                      "description": "An index that enumerates the Random Drop entries.  Managers\n            obtain new values for row creation in this table by reading\n            diffServRandomDropNextFree.",
                      "x-yang-type": "DIFFSERV-MIB:IndexInteger"
                    },
                    "diffServRandomDropMinThreshBytes": {
                      "type": "integer",
                      "description": "The average queue depth in bytes, beyond which traffic has a\n            non-zero probability of being dropped. Changes in this variable\n            may or may not be reflected in the reported value of\n            diffServRandomDropMinThreshPkts.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "diffServRandomDropMinThreshPkts": {
                      "type": "integer",
                      "description": "The average queue depth in packets, beyond which traffic has a\n            non-zero probability of being dropped. Changes in this variable\n            may or may not be reflected in the reported value of\n            diffServRandomDropMinThreshBytes.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "diffServRandomDropMaxThreshBytes": {
                      "type": "integer",
                      "description": "The average queue depth beyond which traffic has a probability\n            indicated by diffServRandomDropProbMax of being dropped or\n            marked. Note that this differs from the physical queue limit,\n            which is stored in diffServAlgDropQThreshold. Changes in this\n            variable may or may not be reflected in the reported value of\n            diffServRandomDropMaxThreshPkts.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "diffServRandomDropMaxThreshPkts": {
                      "type": "integer",
                      "description": "The average queue depth beyond which traffic has a probability\n            indicated by diffServRandomDropProbMax of being dropped or\n            marked. Note that this differs from the physical queue limit,\n            which is stored in diffServAlgDropQThreshold. Changes in this\n            variable may or may not be reflected in the reported value of\n            diffServRandomDropMaxThreshBytes.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "diffServRandomDropProbMax": {
                      "type": "integer",
                      "description": "The worst case random drop probability, expressed in drops per\n            thousand packets.\n            \n            For example, if in the worst case every arriving packet may be\n            dropped (100%) for a period, this has the value 1000.\n            Alternatively, if in the worst case only one percent (1%) of\n            traffic may be dropped, it has the value 10.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "diffServRandomDropWeight": {
                      "type": "integer",
                      "description": "The weighting of past history in affecting the Exponentially\n            Weighted Moving Average function that calculates the current\n            average queue depth.  The equation uses\n            diffServRandomDropWeight/65536 as the coefficient for the new\n            sample in the equation, and (65536 -\n            diffServRandomDropWeight)/65536 as the coefficient of the old\n            value.\n            \n            Implementations may limit the values of diffServRandomDropWeight\n            to a subset of the possible range of values, such as powers of\n            two. Doing this would facilitate implementation of the\n            Exponentially Weighted Moving Average using shift instructions or\n            registers.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "diffServRandomDropSamplingRate": {
                      "type": "integer",
                      "description": "The number of times per second the queue is sampled for queue\n            average calculation.  A value of zero is used to mean that the\n            queue is sampled approximately each time a packet is enqueued (or\n            dequeued).",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "diffServRandomDropStorage": {
                      "type": "string",
                      "description": "The storage type for this conceptual row.  Conceptual rows\n            having the value 'permanent' need not allow write-access to any\n            columnar objects in the row.",
                      "x-yang-type": "snmpv2-tc:StorageType"
                    },
                    "diffServRandomDropStatus": {
                      "type": "string",
                      "description": "The status of this conceptual row. All writable objects in this\n            row may be modified at any time. Setting this variable to\n            'destroy' when the MIB contains one or more RowPointers pointing\n            to it results in destruction being delayed until the row is no\n            longer used.",
                      "x-yang-type": "snmpv2-tc:RowStatus"
                    }
                  }
                },
                "example": {
                  "DIFFSERV-MIB:diffServRandomDropEntry": {
                    "diffServRandomDropId": "example-string",
                    "diffServRandomDropMinThreshBytes": 0,
                    "diffServRandomDropMinThreshPkts": 0,
                    "diffServRandomDropMaxThreshBytes": 0,
                    "diffServRandomDropMaxThreshPkts": 0,
                    "diffServRandomDropProbMax": 0,
                    "diffServRandomDropWeight": 0,
                    "diffServRandomDropSamplingRate": 0,
                    "diffServRandomDropStorage": "example-string",
                    "diffServRandomDropStatus": "up(1)"
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-diffServRandomDropEntry-4"
      },
      "x-yang-path": "/diffServRandomDropEntry={diffServRandomDropId}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "diffServRandomDropId"
      ]
    },
    "/data/DIFFSERV-MIB:diffServQEntry": {
      "get": {
        "summary": "Get diffServQEntry list",
        "description": "Retrieve list of diffServQEntry entries from MIB",
        "tags": [
          "DIFFSERV-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "An entry in the Queue Table describes a single queue or class of\n          traffic.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "diffServQId": {
                        "type": "string",
                        "description": "An index that enumerates the Queue entries.  Managers obtain new\n            values for row creation in this table by reading\n            diffServQNextFree.",
                        "x-yang-type": "DIFFSERV-MIB:IndexInteger"
                      },
                      "diffServQNext": {
                        "type": "string",
                        "description": "This selects the next Differentiated Services Scheduler.  The\n            RowPointer must point to a diffServSchedulerEntry.\n            \n            A value of zeroDotZero in this attribute indicates an incomplete\n            diffServQEntry instance. In such a case, the entry has no\n            operational effect, since it has no parameters to give it\n            meaning.\n            \n            Setting this to point to a target that does not exist results in\n            an inconsistentValue error.  If the row pointed to is removed or\n            becomes inactive by other means, the treatment is as if this\n            attribute contains a value of zeroDotZero.",
                        "x-yang-type": "snmpv2-tc:RowPointer"
                      },
                      "diffServQMinRate": {
                        "type": "string",
                        "description": "This RowPointer indicates the diffServMinRateEntry that the\n            scheduler, pointed to by diffServQNext, should use to service\n            this queue.\n            \n            If the row pointed to is zeroDotZero, the minimum rate and\n            priority is unspecified.\n            \n            Setting this to point to a target that does not exist results in\n            an inconsistentValue error.  If the row pointed to is removed or\n            becomes inactive by other means, the treatment is as if this\n            attribute contains a value of zeroDotZero.",
                        "x-yang-type": "snmpv2-tc:RowPointer"
                      },
                      "diffServQMaxRate": {
                        "type": "string",
                        "description": "This RowPointer indicates the diffServMaxRateEntry that the\n            scheduler, pointed to by diffServQNext, should use to service\n            this queue.\n            \n            If the row pointed to is zeroDotZero, the maximum rate is the\n            line speed of the interface.\n            \n            \n            \n            \n            Setting this to point to a target that does not exist results in\n            an inconsistentValue error.  If the row pointed to is removed or\n            becomes inactive by other means, the treatment is as if this\n            attribute contains a value of zeroDotZero.",
                        "x-yang-type": "snmpv2-tc:RowPointer"
                      },
                      "diffServQStorage": {
                        "type": "string",
                        "description": "The storage type for this conceptual row.  Conceptual rows\n            having the value 'permanent' need not allow write-access to any\n            columnar objects in the row.",
                        "x-yang-type": "snmpv2-tc:StorageType"
                      },
                      "diffServQStatus": {
                        "type": "string",
                        "description": "The status of this conceptual row. All writable objects in this\n            row may be modified at any time. Setting this variable to\n            'destroy' when the MIB contains one or more RowPointers pointing\n            to it results in destruction being delayed until the row is no\n            longer used.",
                        "x-yang-type": "snmpv2-tc:RowStatus"
                      }
                    }
                  }
                },
                "example": {
                  "DIFFSERV-MIB:diffServQEntry": [
                    {
                      "diffServQId": "example-string",
                      "diffServQNext": "example-string",
                      "diffServQMinRate": "example-string",
                      "diffServQMaxRate": "example-string",
                      "diffServQStorage": "example-string",
                      "diffServQStatus": "up(1)"
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-diffServQEntry-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": "/diffServQEntry",
      "x-restconf-kind": "container"
    },
    "/data/DIFFSERV-MIB:diffServQEntry={diffServQId}": {
      "get": {
        "summary": "Get diffServQEntry entry",
        "description": "Retrieve specific diffServQEntry entry by key from MIB",
        "tags": [
          "DIFFSERV-MIB"
        ],
        "parameters": [
          {
            "name": "diffServQId",
            "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": {
                    "diffServQId": {
                      "type": "string",
                      "description": "An index that enumerates the Queue entries.  Managers obtain new\n            values for row creation in this table by reading\n            diffServQNextFree.",
                      "x-yang-type": "DIFFSERV-MIB:IndexInteger"
                    },
                    "diffServQNext": {
                      "type": "string",
                      "description": "This selects the next Differentiated Services Scheduler.  The\n            RowPointer must point to a diffServSchedulerEntry.\n            \n            A value of zeroDotZero in this attribute indicates an incomplete\n            diffServQEntry instance. In such a case, the entry has no\n            operational effect, since it has no parameters to give it\n            meaning.\n            \n            Setting this to point to a target that does not exist results in\n            an inconsistentValue error.  If the row pointed to is removed or\n            becomes inactive by other means, the treatment is as if this\n            attribute contains a value of zeroDotZero.",
                      "x-yang-type": "snmpv2-tc:RowPointer"
                    },
                    "diffServQMinRate": {
                      "type": "string",
                      "description": "This RowPointer indicates the diffServMinRateEntry that the\n            scheduler, pointed to by diffServQNext, should use to service\n            this queue.\n            \n            If the row pointed to is zeroDotZero, the minimum rate and\n            priority is unspecified.\n            \n            Setting this to point to a target that does not exist results in\n            an inconsistentValue error.  If the row pointed to is removed or\n            becomes inactive by other means, the treatment is as if this\n            attribute contains a value of zeroDotZero.",
                      "x-yang-type": "snmpv2-tc:RowPointer"
                    },
                    "diffServQMaxRate": {
                      "type": "string",
                      "description": "This RowPointer indicates the diffServMaxRateEntry that the\n            scheduler, pointed to by diffServQNext, should use to service\n            this queue.\n            \n            If the row pointed to is zeroDotZero, the maximum rate is the\n            line speed of the interface.\n            \n            \n            \n            \n            Setting this to point to a target that does not exist results in\n            an inconsistentValue error.  If the row pointed to is removed or\n            becomes inactive by other means, the treatment is as if this\n            attribute contains a value of zeroDotZero.",
                      "x-yang-type": "snmpv2-tc:RowPointer"
                    },
                    "diffServQStorage": {
                      "type": "string",
                      "description": "The storage type for this conceptual row.  Conceptual rows\n            having the value 'permanent' need not allow write-access to any\n            columnar objects in the row.",
                      "x-yang-type": "snmpv2-tc:StorageType"
                    },
                    "diffServQStatus": {
                      "type": "string",
                      "description": "The status of this conceptual row. All writable objects in this\n            row may be modified at any time. Setting this variable to\n            'destroy' when the MIB contains one or more RowPointers pointing\n            to it results in destruction being delayed until the row is no\n            longer used.",
                      "x-yang-type": "snmpv2-tc:RowStatus"
                    }
                  }
                },
                "example": {
                  "DIFFSERV-MIB:diffServQEntry": {
                    "diffServQId": "example-string",
                    "diffServQNext": "example-string",
                    "diffServQMinRate": "example-string",
                    "diffServQMaxRate": "example-string",
                    "diffServQStorage": "example-string",
                    "diffServQStatus": "up(1)"
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-diffServQEntry-4"
      },
      "x-yang-path": "/diffServQEntry={diffServQId}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "diffServQId"
      ]
    },
    "/data/DIFFSERV-MIB:diffServSchedulerEntry": {
      "get": {
        "summary": "Get diffServSchedulerEntry list",
        "description": "Retrieve list of diffServSchedulerEntry entries from MIB",
        "tags": [
          "DIFFSERV-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "An entry in the Scheduler Table describing a single instance of\n          a scheduling algorithm.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "diffServSchedulerId": {
                        "type": "string",
                        "description": "An index that enumerates the Scheduler entries.  Managers obtain\n            new values for row creation in this table by reading\n            diffServSchedulerNextFree.",
                        "x-yang-type": "DIFFSERV-MIB:IndexInteger"
                      },
                      "diffServSchedulerNext": {
                        "type": "string",
                        "description": "This selects the next Differentiated Services Functional Data\n            Path Element to handle traffic for this data path. This normally\n            is null (zeroDotZero), or points to a diffServSchedulerEntry or a\n            diffServQEntry.\n            \n            However, this RowPointer may also point to an instance of:\n              diffServClfrEntry,\n              diffServMeterEntry,\n              diffServActionEntry,\n              diffServAlgDropEntry.\n            \n            It would point another diffServSchedulerEntry when implementing\n            multiple scheduler methods for the same data path, such as having\n            one set of queues scheduled by WRR and that group participating\n            in a priority scheduling system in which other queues compete\n            with it in that way.  It might also point to a second scheduler\n            in a hierarchical scheduling system.\n            \n            If the row pointed to is zeroDotZero, no further Differentiated\n            Services treatment is performed on traffic of this data path.\n            \n            Setting this to point to a target that does not exist results in\n            an inconsistentValue error.  If the row pointed to is removed or\n            becomes inactive by other means, the treatment is as if this\n            attribute contains a value of zeroDotZero.",
                        "x-yang-type": "snmpv2-tc:RowPointer"
                      },
                      "diffServSchedulerMethod": {
                        "type": "string",
                        "description": "The scheduling algorithm used by this Scheduler. zeroDotZero\n            indicates that this is unknown.  Standard values for generic\n            algorithms: diffServSchedulerPriority, diffServSchedulerWRR, and\n            diffServSchedulerWFQ are specified in this MIB; additional values\n            \n            \n            \n            may be further specified in other MIBs.",
                        "x-yang-type": "snmpv2-tc:AutonomousType"
                      },
                      "diffServSchedulerMinRate": {
                        "type": "string",
                        "description": "This RowPointer indicates the entry in diffServMinRateTable\n            which indicates the priority or minimum output rate from this\n            scheduler. This attribute is used only when there is more than\n            one level of scheduler.\n            \n            When it has the value zeroDotZero, it indicates that no minimum\n            rate or priority is imposed.\n            \n            Setting this to point to a target that does not exist results in\n            an inconsistentValue error.  If the row pointed to is removed or\n            becomes inactive by other means, the treatment is as if this\n            attribute contains a value of zeroDotZero.",
                        "x-yang-type": "snmpv2-tc:RowPointer"
                      },
                      "diffServSchedulerMaxRate": {
                        "type": "string",
                        "description": "This RowPointer indicates the entry in diffServMaxRateTable\n            which indicates the maximum output rate from this scheduler.\n            When more than one maximum rate applies (eg, when a multi-rate\n            shaper is in view), it points to the first of those rate entries.\n            This attribute is used only when there is more than one level of\n            scheduler.\n            \n            When it has the value zeroDotZero, it indicates that no maximum\n            rate is imposed.\n            \n            Setting this to point to a target that does not exist results in\n            an inconsistentValue error.  If the row pointed to is removed or\n            becomes inactive by other means, the treatment is as if this\n            attribute contains a value of zeroDotZero.",
                        "x-yang-type": "snmpv2-tc:RowPointer"
                      },
                      "diffServSchedulerStorage": {
                        "type": "string",
                        "description": "The storage type for this conceptual row.  Conceptual rows\n            having the value 'permanent' need not allow write-access to any\n            columnar objects in the row.",
                        "x-yang-type": "snmpv2-tc:StorageType"
                      },
                      "diffServSchedulerStatus": {
                        "type": "string",
                        "description": "The status of this conceptual row. All writable objects in this\n            row may be modified at any time. Setting this variable to\n            'destroy' when the MIB contains one or more RowPointers pointing\n            to it results in destruction being delayed until the row is no\n            longer used.",
                        "x-yang-type": "snmpv2-tc:RowStatus"
                      }
                    }
                  }
                },
                "example": {
                  "DIFFSERV-MIB:diffServSchedulerEntry": [
                    {
                      "diffServSchedulerId": "example-string",
                      "diffServSchedulerNext": "example-string",
                      "diffServSchedulerMethod": "example-string",
                      "diffServSchedulerMinRate": "example-string",
                      "diffServSchedulerMaxRate": "example-string",
                      "diffServSchedulerStorage": "example-string",
                      "diffServSchedulerStatus": "up(1)"
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-diffServSchedulerEntry-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": "/diffServSchedulerEntry",
      "x-restconf-kind": "container"
    },
    "/data/DIFFSERV-MIB:diffServSchedulerEntry={diffServSchedulerId}": {
      "get": {
        "summary": "Get diffServSchedulerEntry entry",
        "description": "Retrieve specific diffServSchedulerEntry entry by key from MIB",
        "tags": [
          "DIFFSERV-MIB"
        ],
        "parameters": [
          {
            "name": "diffServSchedulerId",
            "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": {
                    "diffServSchedulerId": {
                      "type": "string",
                      "description": "An index that enumerates the Scheduler entries.  Managers obtain\n            new values for row creation in this table by reading\n            diffServSchedulerNextFree.",
                      "x-yang-type": "DIFFSERV-MIB:IndexInteger"
                    },
                    "diffServSchedulerNext": {
                      "type": "string",
                      "description": "This selects the next Differentiated Services Functional Data\n            Path Element to handle traffic for this data path. This normally\n            is null (zeroDotZero), or points to a diffServSchedulerEntry or a\n            diffServQEntry.\n            \n            However, this RowPointer may also point to an instance of:\n              diffServClfrEntry,\n              diffServMeterEntry,\n              diffServActionEntry,\n              diffServAlgDropEntry.\n            \n            It would point another diffServSchedulerEntry when implementing\n            multiple scheduler methods for the same data path, such as having\n            one set of queues scheduled by WRR and that group participating\n            in a priority scheduling system in which other queues compete\n            with it in that way.  It might also point to a second scheduler\n            in a hierarchical scheduling system.\n            \n            If the row pointed to is zeroDotZero, no further Differentiated\n            Services treatment is performed on traffic of this data path.\n            \n            Setting this to point to a target that does not exist results in\n            an inconsistentValue error.  If the row pointed to is removed or\n            becomes inactive by other means, the treatment is as if this\n            attribute contains a value of zeroDotZero.",
                      "x-yang-type": "snmpv2-tc:RowPointer"
                    },
                    "diffServSchedulerMethod": {
                      "type": "string",
                      "description": "The scheduling algorithm used by this Scheduler. zeroDotZero\n            indicates that this is unknown.  Standard values for generic\n            algorithms: diffServSchedulerPriority, diffServSchedulerWRR, and\n            diffServSchedulerWFQ are specified in this MIB; additional values\n            \n            \n            \n            may be further specified in other MIBs.",
                      "x-yang-type": "snmpv2-tc:AutonomousType"
                    },
                    "diffServSchedulerMinRate": {
                      "type": "string",
                      "description": "This RowPointer indicates the entry in diffServMinRateTable\n            which indicates the priority or minimum output rate from this\n            scheduler. This attribute is used only when there is more than\n            one level of scheduler.\n            \n            When it has the value zeroDotZero, it indicates that no minimum\n            rate or priority is imposed.\n            \n            Setting this to point to a target that does not exist results in\n            an inconsistentValue error.  If the row pointed to is removed or\n            becomes inactive by other means, the treatment is as if this\n            attribute contains a value of zeroDotZero.",
                      "x-yang-type": "snmpv2-tc:RowPointer"
                    },
                    "diffServSchedulerMaxRate": {
                      "type": "string",
                      "description": "This RowPointer indicates the entry in diffServMaxRateTable\n            which indicates the maximum output rate from this scheduler.\n            When more than one maximum rate applies (eg, when a multi-rate\n            shaper is in view), it points to the first of those rate entries.\n            This attribute is used only when there is more than one level of\n            scheduler.\n            \n            When it has the value zeroDotZero, it indicates that no maximum\n            rate is imposed.\n            \n            Setting this to point to a target that does not exist results in\n            an inconsistentValue error.  If the row pointed to is removed or\n            becomes inactive by other means, the treatment is as if this\n            attribute contains a value of zeroDotZero.",
                      "x-yang-type": "snmpv2-tc:RowPointer"
                    },
                    "diffServSchedulerStorage": {
                      "type": "string",
                      "description": "The storage type for this conceptual row.  Conceptual rows\n            having the value 'permanent' need not allow write-access to any\n            columnar objects in the row.",
                      "x-yang-type": "snmpv2-tc:StorageType"
                    },
                    "diffServSchedulerStatus": {
                      "type": "string",
                      "description": "The status of this conceptual row. All writable objects in this\n            row may be modified at any time. Setting this variable to\n            'destroy' when the MIB contains one or more RowPointers pointing\n            to it results in destruction being delayed until the row is no\n            longer used.",
                      "x-yang-type": "snmpv2-tc:RowStatus"
                    }
                  }
                },
                "example": {
                  "DIFFSERV-MIB:diffServSchedulerEntry": {
                    "diffServSchedulerId": "example-string",
                    "diffServSchedulerNext": "example-string",
                    "diffServSchedulerMethod": "example-string",
                    "diffServSchedulerMinRate": "example-string",
                    "diffServSchedulerMaxRate": "example-string",
                    "diffServSchedulerStorage": "example-string",
                    "diffServSchedulerStatus": "up(1)"
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-diffServSchedulerEntry-4"
      },
      "x-yang-path": "/diffServSchedulerEntry={diffServSchedulerId}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "diffServSchedulerId"
      ]
    },
    "/data/DIFFSERV-MIB:diffServMinRateEntry": {
      "get": {
        "summary": "Get diffServMinRateEntry list",
        "description": "Retrieve list of diffServMinRateEntry entries from MIB",
        "tags": [
          "DIFFSERV-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "An entry in the Minimum Rate Parameters Table describes a single\n          set of scheduling parameters for use by one or more queues or\n          schedulers.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "diffServMinRateId": {
                        "type": "string",
                        "description": "An index that enumerates the Scheduler Parameter entries.\n            Managers obtain new values for row creation in this table by\n            reading diffServMinRateNextFree.",
                        "x-yang-type": "DIFFSERV-MIB:IndexInteger"
                      },
                      "diffServMinRatePriority": {
                        "type": "integer",
                        "description": "The priority of this input to the associated scheduler, relative\n            \n            \n            \n            to the scheduler's other inputs. A queue or scheduler with a\n            larger numeric value will be served before another with a smaller\n            numeric value.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "diffServMinRateAbsolute": {
                        "type": "integer",
                        "description": "The minimum absolute rate, in kilobits/sec, that a downstream\n            scheduler element should allocate to this queue. If the value is\n            zero, then there is effectively no minimum rate guarantee. If the\n            value is non-zero, the scheduler will assure the servicing of\n            this queue to at least this rate.\n            \n            Note that this attribute value and that of\n            diffServMinRateRelative are coupled: changes to one will affect\n            the value of the other. They are linked by the following\n            equation, in that setting one will change the other:\n            \n              diffServMinRateRelative =\n                      (diffServMinRateAbsolute*1000000)/ifSpeed\n            \n            or, if appropriate:\n            \n              diffServMinRateRelative = diffServMinRateAbsolute/ifHighSpeed",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "diffServMinRateRelative": {
                        "type": "integer",
                        "description": "The minimum rate that a downstream scheduler element should\n            allocate to this queue, relative to the maximum rate of the\n            interface as reported by ifSpeed or ifHighSpeed, in units of\n            1/1000 of 1. If the value is zero, then there is effectively no\n            minimum rate guarantee. If the value is non-zero, the scheduler\n            will assure the servicing of this queue to at least this rate.\n            \n            Note that this attribute value and that of\n            diffServMinRateAbsolute are coupled: changes to one will affect\n            the value of the other. They are linked by the following\n            equation, in that setting one will change the other:\n            \n            \n            \n              diffServMinRateRelative =\n                      (diffServMinRateAbsolute*1000000)/ifSpeed\n            \n            or, if appropriate:\n            \n              diffServMinRateRelative = diffServMinRateAbsolute/ifHighSpeed",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "diffServMinRateStorage": {
                        "type": "string",
                        "description": "The storage type for this conceptual row.  Conceptual rows\n            having the value 'permanent' need not allow write-access to any\n            columnar objects in the row.",
                        "x-yang-type": "snmpv2-tc:StorageType"
                      },
                      "diffServMinRateStatus": {
                        "type": "string",
                        "description": "The status of this conceptual row. All writable objects in this\n            row may be modified at any time. Setting this variable to\n            'destroy' when the MIB contains one or more RowPointers pointing\n            to it results in destruction being delayed until the row is no\n            longer used.",
                        "x-yang-type": "snmpv2-tc:RowStatus"
                      }
                    }
                  }
                },
                "example": {
                  "DIFFSERV-MIB:diffServMinRateEntry": [
                    {
                      "diffServMinRateId": "example-string",
                      "diffServMinRatePriority": 0,
                      "diffServMinRateAbsolute": 0,
                      "diffServMinRateRelative": 0,
                      "diffServMinRateStorage": "example-string",
                      "diffServMinRateStatus": "up(1)"
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-diffServMinRateEntry-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": "/diffServMinRateEntry",
      "x-restconf-kind": "container"
    },
    "/data/DIFFSERV-MIB:diffServMinRateEntry={diffServMinRateId}": {
      "get": {
        "summary": "Get diffServMinRateEntry entry",
        "description": "Retrieve specific diffServMinRateEntry entry by key from MIB",
        "tags": [
          "DIFFSERV-MIB"
        ],
        "parameters": [
          {
            "name": "diffServMinRateId",
            "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": {
                    "diffServMinRateId": {
                      "type": "string",
                      "description": "An index that enumerates the Scheduler Parameter entries.\n            Managers obtain new values for row creation in this table by\n            reading diffServMinRateNextFree.",
                      "x-yang-type": "DIFFSERV-MIB:IndexInteger"
                    },
                    "diffServMinRatePriority": {
                      "type": "integer",
                      "description": "The priority of this input to the associated scheduler, relative\n            \n            \n            \n            to the scheduler's other inputs. A queue or scheduler with a\n            larger numeric value will be served before another with a smaller\n            numeric value.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "diffServMinRateAbsolute": {
                      "type": "integer",
                      "description": "The minimum absolute rate, in kilobits/sec, that a downstream\n            scheduler element should allocate to this queue. If the value is\n            zero, then there is effectively no minimum rate guarantee. If the\n            value is non-zero, the scheduler will assure the servicing of\n            this queue to at least this rate.\n            \n            Note that this attribute value and that of\n            diffServMinRateRelative are coupled: changes to one will affect\n            the value of the other. They are linked by the following\n            equation, in that setting one will change the other:\n            \n              diffServMinRateRelative =\n                      (diffServMinRateAbsolute*1000000)/ifSpeed\n            \n            or, if appropriate:\n            \n              diffServMinRateRelative = diffServMinRateAbsolute/ifHighSpeed",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "diffServMinRateRelative": {
                      "type": "integer",
                      "description": "The minimum rate that a downstream scheduler element should\n            allocate to this queue, relative to the maximum rate of the\n            interface as reported by ifSpeed or ifHighSpeed, in units of\n            1/1000 of 1. If the value is zero, then there is effectively no\n            minimum rate guarantee. If the value is non-zero, the scheduler\n            will assure the servicing of this queue to at least this rate.\n            \n            Note that this attribute value and that of\n            diffServMinRateAbsolute are coupled: changes to one will affect\n            the value of the other. They are linked by the following\n            equation, in that setting one will change the other:\n            \n            \n            \n              diffServMinRateRelative =\n                      (diffServMinRateAbsolute*1000000)/ifSpeed\n            \n            or, if appropriate:\n            \n              diffServMinRateRelative = diffServMinRateAbsolute/ifHighSpeed",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "diffServMinRateStorage": {
                      "type": "string",
                      "description": "The storage type for this conceptual row.  Conceptual rows\n            having the value 'permanent' need not allow write-access to any\n            columnar objects in the row.",
                      "x-yang-type": "snmpv2-tc:StorageType"
                    },
                    "diffServMinRateStatus": {
                      "type": "string",
                      "description": "The status of this conceptual row. All writable objects in this\n            row may be modified at any time. Setting this variable to\n            'destroy' when the MIB contains one or more RowPointers pointing\n            to it results in destruction being delayed until the row is no\n            longer used.",
                      "x-yang-type": "snmpv2-tc:RowStatus"
                    }
                  }
                },
                "example": {
                  "DIFFSERV-MIB:diffServMinRateEntry": {
                    "diffServMinRateId": "example-string",
                    "diffServMinRatePriority": 0,
                    "diffServMinRateAbsolute": 0,
                    "diffServMinRateRelative": 0,
                    "diffServMinRateStorage": "example-string",
                    "diffServMinRateStatus": "up(1)"
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-diffServMinRateEntry-4"
      },
      "x-yang-path": "/diffServMinRateEntry={diffServMinRateId}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "diffServMinRateId"
      ]
    },
    "/data/DIFFSERV-MIB:diffServMaxRateEntry": {
      "get": {
        "summary": "Get diffServMaxRateEntry list",
        "description": "Retrieve list of diffServMaxRateEntry entries from MIB",
        "tags": [
          "DIFFSERV-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "An entry in the Maximum Rate Parameter Table describes a single\n          set of scheduling parameters for use by one or more queues or\n          schedulers.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "diffServMaxRateId": {
                        "type": "string",
                        "description": "An index that enumerates the Maximum Rate Parameter entries.\n            Managers obtain new values for row creation in this table by\n            reading diffServMaxRateNextFree.",
                        "x-yang-type": "DIFFSERV-MIB:IndexInteger"
                      },
                      "diffServMaxRateLevel": {
                        "type": "integer",
                        "description": "An index that indicates which level of a multi-rate shaper is\n            being given its parameters. A multi-rate shaper has some number\n            of rate levels. Frame Relay's dual rate specification refers to a\n            'committed' and an 'excess' rate; ATM's dual rate specification\n            refers to a 'mean' and a 'peak' rate. This table is generalized\n            to support an arbitrary number of rates. The committed or mean\n            rate is level 1, the peak rate (if any) is the highest level rate\n            configured, and if there are other rates they are distributed in\n            monotonically increasing order between them.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "diffServMaxRateAbsolute": {
                        "type": "integer",
                        "description": "The maximum rate in kilobits/sec that a downstream scheduler\n            element should allocate to this queue. If the value is zero, then\n            there is effectively no maximum rate limit and that the scheduler\n            should attempt to be work conserving for this queue. If the value\n            is non-zero, the scheduler will limit the servicing of this queue\n            to, at most, this rate in a non-work-conserving manner.\n            \n            Note that this attribute value and that of\n            diffServMaxRateRelative are coupled: changes to one will affect\n            the value of the other. They are linked by the following\n            \n            \n            \n            equation, in that setting one will change the other:\n            \n              diffServMaxRateRelative =\n                      (diffServMaxRateAbsolute*1000000)/ifSpeed\n            \n            or, if appropriate:\n            \n              diffServMaxRateRelative = diffServMaxRateAbsolute/ifHighSpeed",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "diffServMaxRateRelative": {
                        "type": "integer",
                        "description": "The maximum rate that a downstream scheduler element should\n            allocate to this queue, relative to the maximum rate of the\n            interface as reported by ifSpeed or ifHighSpeed, in units of\n            1/1000 of 1. If the value is zero, then there is effectively no\n            maximum rate limit and the scheduler should attempt to be work\n            conserving for this queue. If the value is non-zero, the\n            scheduler will limit the servicing of this queue to, at most,\n            this rate in a non-work-conserving manner.\n            \n            Note that this attribute value and that of\n            diffServMaxRateAbsolute are coupled: changes to one will affect\n            the value of the other. They are linked by the following\n            equation, in that setting one will change the other:\n            \n              diffServMaxRateRelative =\n                      (diffServMaxRateAbsolute*1000000)/ifSpeed\n            \n            or, if appropriate:\n            \n              diffServMaxRateRelative = diffServMaxRateAbsolute/ifHighSpeed",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "diffServMaxRateThreshold": {
                        "type": "string",
                        "description": "The number of bytes of queue depth at which the rate of a\n            \n            \n            \n            multi-rate scheduler will increase to the next output rate. In\n            the last conceptual row for such a shaper, this threshold is\n            ignored and by convention is zero.",
                        "x-yang-type": "integrated-services:BurstSize"
                      },
                      "diffServMaxRateStorage": {
                        "type": "string",
                        "description": "The storage type for this conceptual row.  Conceptual rows\n            having the value 'permanent' need not allow write-access to any\n            columnar objects in the row.",
                        "x-yang-type": "snmpv2-tc:StorageType"
                      },
                      "diffServMaxRateStatus": {
                        "type": "string",
                        "description": "The status of this conceptual row. All writable objects in this\n            row may be modified at any time. Setting this variable to\n            'destroy' when the MIB contains one or more RowPointers pointing\n            to it results in destruction being delayed until the row is no\n            longer used.",
                        "x-yang-type": "snmpv2-tc:RowStatus"
                      }
                    }
                  }
                },
                "example": {
                  "DIFFSERV-MIB:diffServMaxRateEntry": [
                    {
                      "diffServMaxRateId": "example-string",
                      "diffServMaxRateLevel": 0,
                      "diffServMaxRateAbsolute": 0,
                      "diffServMaxRateRelative": 0,
                      "diffServMaxRateThreshold": "example-string",
                      "diffServMaxRateStorage": "example-string",
                      "diffServMaxRateStatus": "up(1)"
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-diffServMaxRateEntry-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": "/diffServMaxRateEntry",
      "x-restconf-kind": "container"
    },
    "/data/DIFFSERV-MIB:diffServDataPathTable/diffServDataPathEntry={ifIndex},{diffServDataPathIfDirection}": {
      "get": {
        "summary": "Get diffServDataPathEntry entry",
        "description": "Retrieve specific diffServDataPathEntry entry by key from MIB",
        "tags": [
          "DIFFSERV-MIB"
        ],
        "parameters": [
          {
            "name": "ifIndex",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "diffServDataPathIfDirection",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "Accept",
            "in": "header",
            "required": false,
            "description": "RESTCONF response media type (RFC 8040)",
            "schema": {
              "type": "string",
              "default": "application/yang-data+json",
              "enum": [
                "application/yang-data+json",
                "application/yang-data+xml"
              ]
            }
          },
          {
            "name": "depth",
            "in": "query",
            "required": false,
            "description": "Limit the depth of returned sub-tree data (RFC 8040 Section 4.8.2). Use 'unbounded' for full depth.",
            "schema": {
              "type": "string",
              "default": "unbounded"
            }
          },
          {
            "name": "fields",
            "in": "query",
            "required": false,
            "description": "Select specific fields to return (RFC 8040 Section 4.8.3). Example: fields=name;status",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "content",
            "in": "query",
            "required": false,
            "description": "Filter by config state: 'config' (config true only), 'nonconfig' (config false only), or 'all'.",
            "schema": {
              "type": "string",
              "enum": [
                "config",
                "nonconfig",
                "all"
              ],
              "default": "all"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "ifIndex": {
                      "type": "string",
                      "description": "ifIndex",
                      "x-yang-type": "leafref"
                    },
                    "diffServDataPathIfDirection": {
                      "type": "string",
                      "description": "IfDirection specifies whether the reception or transmission path\n            for this interface is in view.",
                      "x-yang-type": "DIFFSERV-MIB:IfDirection"
                    },
                    "diffServDataPathStart": {
                      "type": "string",
                      "description": "This selects the first Differentiated Services Functional Data\n            Path Element to handle traffic for this data path. This\n            RowPointer should point to an instance of one of:\n              diffServClfrEntry\n              diffServMeterEntry\n              diffServActionEntry\n              diffServAlgDropEntry\n              diffServQEntry\n            \n            A value of zeroDotZero in this attribute indicates that no\n            Differentiated Services treatment is performed on traffic of this\n            data path. A pointer with the value zeroDotZero normally\n            terminates a functional data path.\n            \n            Setting this to point to a target that does not exist results in\n            an inconsistentValue error.  If the row pointed to is removed or\n            becomes inactive by other means, the treatment is as if this\n            attribute contains a value of zeroDotZero.",
                      "x-yang-type": "snmpv2-tc:RowPointer"
                    },
                    "diffServDataPathStorage": {
                      "type": "string",
                      "description": "The storage type for this conceptual row.  Conceptual rows\n            having the value 'permanent' need not allow write-access to any\n            columnar objects in the row.",
                      "x-yang-type": "snmpv2-tc:StorageType"
                    },
                    "diffServDataPathStatus": {
                      "type": "string",
                      "description": "The status of this conceptual row. All writable objects in this\n            row may be modified at any time.",
                      "x-yang-type": "snmpv2-tc:RowStatus"
                    }
                  }
                },
                "example": {
                  "DIFFSERV-MIB:diffServDataPathEntry": {
                    "ifIndex": "example-string",
                    "diffServDataPathIfDirection": "example-string",
                    "diffServDataPathStart": "example-string",
                    "diffServDataPathStorage": "example-string",
                    "diffServDataPathStatus": "up(1)"
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-diffServDataPathEntry-2"
      },
      "x-yang-path": "/diffServDataPathTable/diffServDataPathEntry={ifIndex diffServDataPathIfDirection}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "ifIndex diffServDataPathIfDirection"
      ]
    },
    "/data/DIFFSERV-MIB:diffServClfrElementTable/diffServClfrElementEntry={diffServClfrId},{diffServClfrElementId}": {
      "get": {
        "summary": "Get diffServClfrElementEntry entry",
        "description": "Retrieve specific diffServClfrElementEntry entry by key from MIB",
        "tags": [
          "DIFFSERV-MIB"
        ],
        "parameters": [
          {
            "name": "diffServClfrId",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "diffServClfrElementId",
            "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": {
                    "diffServClfrId": {
                      "type": "string",
                      "description": "diffServClfrId",
                      "x-yang-type": "leafref"
                    },
                    "diffServClfrElementId": {
                      "type": "string",
                      "description": "An index that enumerates the Classifier Element entries.\n            Managers obtain new values for row creation in this table by\n            reading diffServClfrElementNextFree.",
                      "x-yang-type": "DIFFSERV-MIB:IndexInteger"
                    },
                    "diffServClfrElementPrecedence": {
                      "type": "integer",
                      "description": "The relative order in which classifier elements are applied:\n            higher numbers represent classifier element with higher\n            precedence.  Classifier elements with the same order must be\n            unambiguous i.e. they must define non-overlapping patterns, and\n            are considered to be applied simultaneously to the traffic\n            stream. Classifier elements with different order may overlap in\n            their filters:  the classifier element with the highest order\n            that matches is taken.\n            \n            On a given interface, there must be a complete classifier in\n            place at all times in the ingress direction.  This means one or\n            more filters must match any possible pattern. There is no such\n            \n            \n            \n            requirement in the egress direction.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "diffServClfrElementNext": {
                      "type": "string",
                      "description": "This attribute provides one branch of the fan-out functionality\n            of a classifier described in the Informal Differentiated Services\n            Model section 4.1.\n            \n            This selects the next Differentiated Services Functional Data\n            Path Element to handle traffic for this data path. This\n            RowPointer should point to an instance of one of:\n              diffServClfrEntry\n              diffServMeterEntry\n              diffServActionEntry\n              diffServAlgDropEntry\n              diffServQEntry\n            \n            A value of zeroDotZero in this attribute indicates no further\n            Differentiated Services treatment is performed on traffic of this\n            data path. The use of zeroDotZero is the normal usage for the\n            last functional data path element of the current data path.\n            \n            Setting this to point to a target that does not exist results in\n            an inconsistentValue error.  If the row pointed to is removed or\n            becomes inactive by other means, the treatment is as if this\n            attribute contains a value of zeroDotZero.",
                      "x-yang-type": "snmpv2-tc:RowPointer"
                    },
                    "diffServClfrElementSpecific": {
                      "type": "string",
                      "description": "A pointer to a valid entry in another table, filter table, that\n            describes the applicable classification parameters, e.g. an entry\n            in diffServMultiFieldClfrTable.\n            \n            The value zeroDotZero is interpreted to match anything not\n            matched by another classifier element - only one such entry may\n            exist for each classifier.\n            \n            Setting this to point to a target that does not exist results in\n            an inconsistentValue error.  If the row pointed to is removed or\n            \n            \n            \n            becomes inactive by other means, the element is ignored.",
                      "x-yang-type": "snmpv2-tc:RowPointer"
                    },
                    "diffServClfrElementStorage": {
                      "type": "string",
                      "description": "The storage type for this conceptual row.  Conceptual rows\n            having the value 'permanent' need not allow write-access to any\n            columnar objects in the row.",
                      "x-yang-type": "snmpv2-tc:StorageType"
                    },
                    "diffServClfrElementStatus": {
                      "type": "string",
                      "description": "The status of this conceptual row. All writable objects in this\n            row may be modified at any time. Setting this variable to\n            'destroy' when the MIB contains one or more RowPointers pointing\n            to it results in destruction being delayed until the row is no\n            longer used.",
                      "x-yang-type": "snmpv2-tc:RowStatus"
                    }
                  }
                },
                "example": {
                  "DIFFSERV-MIB:diffServClfrElementEntry": {
                    "diffServClfrId": "example-string",
                    "diffServClfrElementId": "example-string",
                    "diffServClfrElementPrecedence": 0,
                    "diffServClfrElementNext": "example-string",
                    "diffServClfrElementSpecific": "example-string",
                    "diffServClfrElementStorage": "example-string",
                    "diffServClfrElementStatus": "up(1)"
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-diffServClfrElementEntry-2"
      },
      "x-yang-path": "/diffServClfrElementTable/diffServClfrElementEntry={diffServClfrId diffServClfrElementId}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "diffServClfrId diffServClfrElementId"
      ]
    },
    "/data/DIFFSERV-MIB:diffServMaxRateTable/diffServMaxRateEntry={diffServMaxRateId},{diffServMaxRateLevel}": {
      "get": {
        "summary": "Get diffServMaxRateEntry entry",
        "description": "Retrieve specific diffServMaxRateEntry entry by key from MIB",
        "tags": [
          "DIFFSERV-MIB"
        ],
        "parameters": [
          {
            "name": "diffServMaxRateId",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "diffServMaxRateLevel",
            "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": {
                    "diffServMaxRateId": {
                      "type": "string",
                      "description": "An index that enumerates the Maximum Rate Parameter entries.\n            Managers obtain new values for row creation in this table by\n            reading diffServMaxRateNextFree.",
                      "x-yang-type": "DIFFSERV-MIB:IndexInteger"
                    },
                    "diffServMaxRateLevel": {
                      "type": "integer",
                      "description": "An index that indicates which level of a multi-rate shaper is\n            being given its parameters. A multi-rate shaper has some number\n            of rate levels. Frame Relay's dual rate specification refers to a\n            'committed' and an 'excess' rate; ATM's dual rate specification\n            refers to a 'mean' and a 'peak' rate. This table is generalized\n            to support an arbitrary number of rates. The committed or mean\n            rate is level 1, the peak rate (if any) is the highest level rate\n            configured, and if there are other rates they are distributed in\n            monotonically increasing order between them.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "diffServMaxRateAbsolute": {
                      "type": "integer",
                      "description": "The maximum rate in kilobits/sec that a downstream scheduler\n            element should allocate to this queue. If the value is zero, then\n            there is effectively no maximum rate limit and that the scheduler\n            should attempt to be work conserving for this queue. If the value\n            is non-zero, the scheduler will limit the servicing of this queue\n            to, at most, this rate in a non-work-conserving manner.\n            \n            Note that this attribute value and that of\n            diffServMaxRateRelative are coupled: changes to one will affect\n            the value of the other. They are linked by the following\n            \n            \n            \n            equation, in that setting one will change the other:\n            \n              diffServMaxRateRelative =\n                      (diffServMaxRateAbsolute*1000000)/ifSpeed\n            \n            or, if appropriate:\n            \n              diffServMaxRateRelative = diffServMaxRateAbsolute/ifHighSpeed",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "diffServMaxRateRelative": {
                      "type": "integer",
                      "description": "The maximum rate that a downstream scheduler element should\n            allocate to this queue, relative to the maximum rate of the\n            interface as reported by ifSpeed or ifHighSpeed, in units of\n            1/1000 of 1. If the value is zero, then there is effectively no\n            maximum rate limit and the scheduler should attempt to be work\n            conserving for this queue. If the value is non-zero, the\n            scheduler will limit the servicing of this queue to, at most,\n            this rate in a non-work-conserving manner.\n            \n            Note that this attribute value and that of\n            diffServMaxRateAbsolute are coupled: changes to one will affect\n            the value of the other. They are linked by the following\n            equation, in that setting one will change the other:\n            \n              diffServMaxRateRelative =\n                      (diffServMaxRateAbsolute*1000000)/ifSpeed\n            \n            or, if appropriate:\n            \n              diffServMaxRateRelative = diffServMaxRateAbsolute/ifHighSpeed",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "diffServMaxRateThreshold": {
                      "type": "string",
                      "description": "The number of bytes of queue depth at which the rate of a\n            \n            \n            \n            multi-rate scheduler will increase to the next output rate. In\n            the last conceptual row for such a shaper, this threshold is\n            ignored and by convention is zero.",
                      "x-yang-type": "integrated-services:BurstSize"
                    },
                    "diffServMaxRateStorage": {
                      "type": "string",
                      "description": "The storage type for this conceptual row.  Conceptual rows\n            having the value 'permanent' need not allow write-access to any\n            columnar objects in the row.",
                      "x-yang-type": "snmpv2-tc:StorageType"
                    },
                    "diffServMaxRateStatus": {
                      "type": "string",
                      "description": "The status of this conceptual row. All writable objects in this\n            row may be modified at any time. Setting this variable to\n            'destroy' when the MIB contains one or more RowPointers pointing\n            to it results in destruction being delayed until the row is no\n            longer used.",
                      "x-yang-type": "snmpv2-tc:RowStatus"
                    }
                  }
                },
                "example": {
                  "DIFFSERV-MIB:diffServMaxRateEntry": {
                    "diffServMaxRateId": "example-string",
                    "diffServMaxRateLevel": 0,
                    "diffServMaxRateAbsolute": 0,
                    "diffServMaxRateRelative": 0,
                    "diffServMaxRateThreshold": "example-string",
                    "diffServMaxRateStorage": "example-string",
                    "diffServMaxRateStatus": "up(1)"
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-diffServMaxRateEntry-2"
      },
      "x-yang-path": "/diffServMaxRateTable/diffServMaxRateEntry={diffServMaxRateId diffServMaxRateLevel}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "diffServMaxRateId diffServMaxRateLevel"
      ]
    },
    "/data/DIFFSERV-MIB:diffServDataPathEntry={ifIndex},{diffServDataPathIfDirection}": {
      "get": {
        "summary": "Get diffServDataPathEntry entry",
        "description": "Retrieve specific diffServDataPathEntry entry by key from MIB",
        "tags": [
          "DIFFSERV-MIB"
        ],
        "parameters": [
          {
            "name": "ifIndex",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "diffServDataPathIfDirection",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "Accept",
            "in": "header",
            "required": false,
            "description": "RESTCONF response media type (RFC 8040)",
            "schema": {
              "type": "string",
              "default": "application/yang-data+json",
              "enum": [
                "application/yang-data+json",
                "application/yang-data+xml"
              ]
            }
          },
          {
            "name": "depth",
            "in": "query",
            "required": false,
            "description": "Limit the depth of returned sub-tree data (RFC 8040 Section 4.8.2). Use 'unbounded' for full depth.",
            "schema": {
              "type": "string",
              "default": "unbounded"
            }
          },
          {
            "name": "fields",
            "in": "query",
            "required": false,
            "description": "Select specific fields to return (RFC 8040 Section 4.8.3). Example: fields=name;status",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "content",
            "in": "query",
            "required": false,
            "description": "Filter by config state: 'config' (config true only), 'nonconfig' (config false only), or 'all'.",
            "schema": {
              "type": "string",
              "enum": [
                "config",
                "nonconfig",
                "all"
              ],
              "default": "all"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "ifIndex": {
                      "type": "string",
                      "description": "ifIndex",
                      "x-yang-type": "leafref"
                    },
                    "diffServDataPathIfDirection": {
                      "type": "string",
                      "description": "IfDirection specifies whether the reception or transmission path\n            for this interface is in view.",
                      "x-yang-type": "DIFFSERV-MIB:IfDirection"
                    },
                    "diffServDataPathStart": {
                      "type": "string",
                      "description": "This selects the first Differentiated Services Functional Data\n            Path Element to handle traffic for this data path. This\n            RowPointer should point to an instance of one of:\n              diffServClfrEntry\n              diffServMeterEntry\n              diffServActionEntry\n              diffServAlgDropEntry\n              diffServQEntry\n            \n            A value of zeroDotZero in this attribute indicates that no\n            Differentiated Services treatment is performed on traffic of this\n            data path. A pointer with the value zeroDotZero normally\n            terminates a functional data path.\n            \n            Setting this to point to a target that does not exist results in\n            an inconsistentValue error.  If the row pointed to is removed or\n            becomes inactive by other means, the treatment is as if this\n            attribute contains a value of zeroDotZero.",
                      "x-yang-type": "snmpv2-tc:RowPointer"
                    },
                    "diffServDataPathStorage": {
                      "type": "string",
                      "description": "The storage type for this conceptual row.  Conceptual rows\n            having the value 'permanent' need not allow write-access to any\n            columnar objects in the row.",
                      "x-yang-type": "snmpv2-tc:StorageType"
                    },
                    "diffServDataPathStatus": {
                      "type": "string",
                      "description": "The status of this conceptual row. All writable objects in this\n            row may be modified at any time.",
                      "x-yang-type": "snmpv2-tc:RowStatus"
                    }
                  }
                },
                "example": {
                  "DIFFSERV-MIB:diffServDataPathEntry": {
                    "ifIndex": "example-string",
                    "diffServDataPathIfDirection": "example-string",
                    "diffServDataPathStart": "example-string",
                    "diffServDataPathStorage": "example-string",
                    "diffServDataPathStatus": "up(1)"
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-diffServDataPathEntry-4"
      },
      "x-yang-path": "/diffServDataPathEntry={ifIndex diffServDataPathIfDirection}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "ifIndex diffServDataPathIfDirection"
      ]
    },
    "/data/DIFFSERV-MIB:diffServClfrElementEntry={diffServClfrId},{diffServClfrElementId}": {
      "get": {
        "summary": "Get diffServClfrElementEntry entry",
        "description": "Retrieve specific diffServClfrElementEntry entry by key from MIB",
        "tags": [
          "DIFFSERV-MIB"
        ],
        "parameters": [
          {
            "name": "diffServClfrId",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "diffServClfrElementId",
            "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": {
                    "diffServClfrId": {
                      "type": "string",
                      "description": "diffServClfrId",
                      "x-yang-type": "leafref"
                    },
                    "diffServClfrElementId": {
                      "type": "string",
                      "description": "An index that enumerates the Classifier Element entries.\n            Managers obtain new values for row creation in this table by\n            reading diffServClfrElementNextFree.",
                      "x-yang-type": "DIFFSERV-MIB:IndexInteger"
                    },
                    "diffServClfrElementPrecedence": {
                      "type": "integer",
                      "description": "The relative order in which classifier elements are applied:\n            higher numbers represent classifier element with higher\n            precedence.  Classifier elements with the same order must be\n            unambiguous i.e. they must define non-overlapping patterns, and\n            are considered to be applied simultaneously to the traffic\n            stream. Classifier elements with different order may overlap in\n            their filters:  the classifier element with the highest order\n            that matches is taken.\n            \n            On a given interface, there must be a complete classifier in\n            place at all times in the ingress direction.  This means one or\n            more filters must match any possible pattern. There is no such\n            \n            \n            \n            requirement in the egress direction.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "diffServClfrElementNext": {
                      "type": "string",
                      "description": "This attribute provides one branch of the fan-out functionality\n            of a classifier described in the Informal Differentiated Services\n            Model section 4.1.\n            \n            This selects the next Differentiated Services Functional Data\n            Path Element to handle traffic for this data path. This\n            RowPointer should point to an instance of one of:\n              diffServClfrEntry\n              diffServMeterEntry\n              diffServActionEntry\n              diffServAlgDropEntry\n              diffServQEntry\n            \n            A value of zeroDotZero in this attribute indicates no further\n            Differentiated Services treatment is performed on traffic of this\n            data path. The use of zeroDotZero is the normal usage for the\n            last functional data path element of the current data path.\n            \n            Setting this to point to a target that does not exist results in\n            an inconsistentValue error.  If the row pointed to is removed or\n            becomes inactive by other means, the treatment is as if this\n            attribute contains a value of zeroDotZero.",
                      "x-yang-type": "snmpv2-tc:RowPointer"
                    },
                    "diffServClfrElementSpecific": {
                      "type": "string",
                      "description": "A pointer to a valid entry in another table, filter table, that\n            describes the applicable classification parameters, e.g. an entry\n            in diffServMultiFieldClfrTable.\n            \n            The value zeroDotZero is interpreted to match anything not\n            matched by another classifier element - only one such entry may\n            exist for each classifier.\n            \n            Setting this to point to a target that does not exist results in\n            an inconsistentValue error.  If the row pointed to is removed or\n            \n            \n            \n            becomes inactive by other means, the element is ignored.",
                      "x-yang-type": "snmpv2-tc:RowPointer"
                    },
                    "diffServClfrElementStorage": {
                      "type": "string",
                      "description": "The storage type for this conceptual row.  Conceptual rows\n            having the value 'permanent' need not allow write-access to any\n            columnar objects in the row.",
                      "x-yang-type": "snmpv2-tc:StorageType"
                    },
                    "diffServClfrElementStatus": {
                      "type": "string",
                      "description": "The status of this conceptual row. All writable objects in this\n            row may be modified at any time. Setting this variable to\n            'destroy' when the MIB contains one or more RowPointers pointing\n            to it results in destruction being delayed until the row is no\n            longer used.",
                      "x-yang-type": "snmpv2-tc:RowStatus"
                    }
                  }
                },
                "example": {
                  "DIFFSERV-MIB:diffServClfrElementEntry": {
                    "diffServClfrId": "example-string",
                    "diffServClfrElementId": "example-string",
                    "diffServClfrElementPrecedence": 0,
                    "diffServClfrElementNext": "example-string",
                    "diffServClfrElementSpecific": "example-string",
                    "diffServClfrElementStorage": "example-string",
                    "diffServClfrElementStatus": "up(1)"
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-diffServClfrElementEntry-4"
      },
      "x-yang-path": "/diffServClfrElementEntry={diffServClfrId diffServClfrElementId}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "diffServClfrId diffServClfrElementId"
      ]
    },
    "/data/DIFFSERV-MIB:diffServMaxRateEntry={diffServMaxRateId},{diffServMaxRateLevel}": {
      "get": {
        "summary": "Get diffServMaxRateEntry entry",
        "description": "Retrieve specific diffServMaxRateEntry entry by key from MIB",
        "tags": [
          "DIFFSERV-MIB"
        ],
        "parameters": [
          {
            "name": "diffServMaxRateId",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "diffServMaxRateLevel",
            "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": {
                    "diffServMaxRateId": {
                      "type": "string",
                      "description": "An index that enumerates the Maximum Rate Parameter entries.\n            Managers obtain new values for row creation in this table by\n            reading diffServMaxRateNextFree.",
                      "x-yang-type": "DIFFSERV-MIB:IndexInteger"
                    },
                    "diffServMaxRateLevel": {
                      "type": "integer",
                      "description": "An index that indicates which level of a multi-rate shaper is\n            being given its parameters. A multi-rate shaper has some number\n            of rate levels. Frame Relay's dual rate specification refers to a\n            'committed' and an 'excess' rate; ATM's dual rate specification\n            refers to a 'mean' and a 'peak' rate. This table is generalized\n            to support an arbitrary number of rates. The committed or mean\n            rate is level 1, the peak rate (if any) is the highest level rate\n            configured, and if there are other rates they are distributed in\n            monotonically increasing order between them.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "diffServMaxRateAbsolute": {
                      "type": "integer",
                      "description": "The maximum rate in kilobits/sec that a downstream scheduler\n            element should allocate to this queue. If the value is zero, then\n            there is effectively no maximum rate limit and that the scheduler\n            should attempt to be work conserving for this queue. If the value\n            is non-zero, the scheduler will limit the servicing of this queue\n            to, at most, this rate in a non-work-conserving manner.\n            \n            Note that this attribute value and that of\n            diffServMaxRateRelative are coupled: changes to one will affect\n            the value of the other. They are linked by the following\n            \n            \n            \n            equation, in that setting one will change the other:\n            \n              diffServMaxRateRelative =\n                      (diffServMaxRateAbsolute*1000000)/ifSpeed\n            \n            or, if appropriate:\n            \n              diffServMaxRateRelative = diffServMaxRateAbsolute/ifHighSpeed",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "diffServMaxRateRelative": {
                      "type": "integer",
                      "description": "The maximum rate that a downstream scheduler element should\n            allocate to this queue, relative to the maximum rate of the\n            interface as reported by ifSpeed or ifHighSpeed, in units of\n            1/1000 of 1. If the value is zero, then there is effectively no\n            maximum rate limit and the scheduler should attempt to be work\n            conserving for this queue. If the value is non-zero, the\n            scheduler will limit the servicing of this queue to, at most,\n            this rate in a non-work-conserving manner.\n            \n            Note that this attribute value and that of\n            diffServMaxRateAbsolute are coupled: changes to one will affect\n            the value of the other. They are linked by the following\n            equation, in that setting one will change the other:\n            \n              diffServMaxRateRelative =\n                      (diffServMaxRateAbsolute*1000000)/ifSpeed\n            \n            or, if appropriate:\n            \n              diffServMaxRateRelative = diffServMaxRateAbsolute/ifHighSpeed",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "diffServMaxRateThreshold": {
                      "type": "string",
                      "description": "The number of bytes of queue depth at which the rate of a\n            \n            \n            \n            multi-rate scheduler will increase to the next output rate. In\n            the last conceptual row for such a shaper, this threshold is\n            ignored and by convention is zero.",
                      "x-yang-type": "integrated-services:BurstSize"
                    },
                    "diffServMaxRateStorage": {
                      "type": "string",
                      "description": "The storage type for this conceptual row.  Conceptual rows\n            having the value 'permanent' need not allow write-access to any\n            columnar objects in the row.",
                      "x-yang-type": "snmpv2-tc:StorageType"
                    },
                    "diffServMaxRateStatus": {
                      "type": "string",
                      "description": "The status of this conceptual row. All writable objects in this\n            row may be modified at any time. Setting this variable to\n            'destroy' when the MIB contains one or more RowPointers pointing\n            to it results in destruction being delayed until the row is no\n            longer used.",
                      "x-yang-type": "snmpv2-tc:RowStatus"
                    }
                  }
                },
                "example": {
                  "DIFFSERV-MIB:diffServMaxRateEntry": {
                    "diffServMaxRateId": "example-string",
                    "diffServMaxRateLevel": 0,
                    "diffServMaxRateAbsolute": 0,
                    "diffServMaxRateRelative": 0,
                    "diffServMaxRateThreshold": "example-string",
                    "diffServMaxRateStorage": "example-string",
                    "diffServMaxRateStatus": "up(1)"
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-diffServMaxRateEntry-4"
      },
      "x-yang-path": "/diffServMaxRateEntry={diffServMaxRateId diffServMaxRateLevel}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "diffServMaxRateId diffServMaxRateLevel"
      ]
    }
  },
  "components": {
    "schemas": {
      "DIFFSERV-MIB_DIFFSERV-MIB": {
        "type": "object",
        "description": "This object contains an unused value for diffServClfrId, or a\n          zero to indicate that none exist.",
        "properties": {
          "diffServDataPathEntry": {
            "type": "array",
            "description": "diffServDataPathEntry",
            "items": {
              "type": "object",
              "properties": {
                "ifIndex": {
                  "type": "string",
                  "description": "ifIndex",
                  "x-yang-type": "leafref",
                  "readOnly": true
                },
                "diffServDataPathIfDirection": {
                  "type": "string",
                  "description": "IfDirection specifies whether the reception or transmission path\n            for this interface is in view.",
                  "x-yang-type": "DIFFSERV-MIB:IfDirection",
                  "readOnly": true
                },
                "diffServDataPathStart": {
                  "type": "string",
                  "description": "This selects the first Differentiated Services Functional Data\n            Path Element to handle traffic for this data path. This\n            RowPointer should point to an instance of one of:\n              diffServClfrEntry\n              diffServMeterEntry\n              diffServActionEntry\n              diffServAlgDropEntry\n              diffServQEntry\n            \n            A value of zeroDotZero in this attribute indicates that no\n            Differentiated Services treatment is performed on traffic of this\n            data path. A pointer with the value zeroDotZero normally\n            terminates a functional data path.\n            \n            Setting this to point to a target that does not exist results in\n            an inconsistentValue error.  If the row pointed to is removed or\n            becomes inactive by other means, the treatment is as if this\n            attribute contains a value of zeroDotZero.",
                  "x-yang-type": "snmpv2-tc:RowPointer",
                  "readOnly": true
                },
                "diffServDataPathStorage": {
                  "type": "string",
                  "description": "The storage type for this conceptual row.  Conceptual rows\n            having the value 'permanent' need not allow write-access to any\n            columnar objects in the row.",
                  "x-yang-type": "snmpv2-tc:StorageType",
                  "readOnly": true
                },
                "diffServDataPathStatus": {
                  "type": "string",
                  "description": "The status of this conceptual row. All writable objects in this\n            row may be modified at any time.",
                  "x-yang-type": "snmpv2-tc:RowStatus",
                  "readOnly": true
                }
              }
            },
            "readOnly": true
          },
          "diffServClfrEntry": {
            "type": "array",
            "description": "An entry in the classifier table describes a single classifier.\n          All classifier elements belonging to the same classifier use the\n          classifier's diffServClfrId as part of their index.",
            "items": {
              "type": "object",
              "properties": {
                "diffServClfrId": {
                  "type": "string",
                  "description": "An index that enumerates the classifier entries.  Managers\n            should obtain new values for row creation in this table by\n            reading diffServClfrNextFree.",
                  "x-yang-type": "DIFFSERV-MIB:IndexInteger",
                  "readOnly": true
                },
                "diffServClfrStorage": {
                  "type": "string",
                  "description": "The storage type for this conceptual row.  Conceptual rows\n            having the value 'permanent' need not allow write-access to any\n            columnar objects in the row.",
                  "x-yang-type": "snmpv2-tc:StorageType",
                  "readOnly": true
                },
                "diffServClfrStatus": {
                  "type": "string",
                  "description": "The status of this conceptual row. All writable objects in this\n            row may be modified at any time. Setting this variable to\n            'destroy' when the MIB contains one or more RowPointers pointing\n            to it results in destruction being delayed until the row is no\n            longer used.",
                  "x-yang-type": "snmpv2-tc:RowStatus",
                  "readOnly": true
                }
              }
            },
            "readOnly": true
          },
          "diffServClfrElementEntry": {
            "type": "array",
            "description": "An entry in the classifier element table describes a single\n          element of the classifier.",
            "items": {
              "type": "object",
              "properties": {
                "diffServClfrId": {
                  "type": "string",
                  "description": "diffServClfrId",
                  "x-yang-type": "leafref",
                  "readOnly": true
                },
                "diffServClfrElementId": {
                  "type": "string",
                  "description": "An index that enumerates the Classifier Element entries.\n            Managers obtain new values for row creation in this table by\n            reading diffServClfrElementNextFree.",
                  "x-yang-type": "DIFFSERV-MIB:IndexInteger",
                  "readOnly": true
                },
                "diffServClfrElementPrecedence": {
                  "type": "integer",
                  "description": "The relative order in which classifier elements are applied:\n            higher numbers represent classifier element with higher\n            precedence.  Classifier elements with the same order must be\n            unambiguous i.e. they must define non-overlapping patterns, and\n            are considered to be applied simultaneously to the traffic\n            stream. Classifier elements with different order may overlap in\n            their filters:  the classifier element with the highest order\n            that matches is taken.\n            \n            On a given interface, there must be a complete classifier in\n            place at all times in the ingress direction.  This means one or\n            more filters must match any possible pattern. There is no such\n            \n            \n            \n            requirement in the egress direction.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "diffServClfrElementNext": {
                  "type": "string",
                  "description": "This attribute provides one branch of the fan-out functionality\n            of a classifier described in the Informal Differentiated Services\n            Model section 4.1.\n            \n            This selects the next Differentiated Services Functional Data\n            Path Element to handle traffic for this data path. This\n            RowPointer should point to an instance of one of:\n              diffServClfrEntry\n              diffServMeterEntry\n              diffServActionEntry\n              diffServAlgDropEntry\n              diffServQEntry\n            \n            A value of zeroDotZero in this attribute indicates no further\n            Differentiated Services treatment is performed on traffic of this\n            data path. The use of zeroDotZero is the normal usage for the\n            last functional data path element of the current data path.\n            \n            Setting this to point to a target that does not exist results in\n            an inconsistentValue error.  If the row pointed to is removed or\n            becomes inactive by other means, the treatment is as if this\n            attribute contains a value of zeroDotZero.",
                  "x-yang-type": "snmpv2-tc:RowPointer",
                  "readOnly": true
                },
                "diffServClfrElementSpecific": {
                  "type": "string",
                  "description": "A pointer to a valid entry in another table, filter table, that\n            describes the applicable classification parameters, e.g. an entry\n            in diffServMultiFieldClfrTable.\n            \n            The value zeroDotZero is interpreted to match anything not\n            matched by another classifier element - only one such entry may\n            exist for each classifier.\n            \n            Setting this to point to a target that does not exist results in\n            an inconsistentValue error.  If the row pointed to is removed or\n            \n            \n            \n            becomes inactive by other means, the element is ignored.",
                  "x-yang-type": "snmpv2-tc:RowPointer",
                  "readOnly": true
                },
                "diffServClfrElementStorage": {
                  "type": "string",
                  "description": "The storage type for this conceptual row.  Conceptual rows\n            having the value 'permanent' need not allow write-access to any\n            columnar objects in the row.",
                  "x-yang-type": "snmpv2-tc:StorageType",
                  "readOnly": true
                },
                "diffServClfrElementStatus": {
                  "type": "string",
                  "description": "The status of this conceptual row. All writable objects in this\n            row may be modified at any time. Setting this variable to\n            'destroy' when the MIB contains one or more RowPointers pointing\n            to it results in destruction being delayed until the row is no\n            longer used.",
                  "x-yang-type": "snmpv2-tc:RowStatus",
                  "readOnly": true
                }
              }
            },
            "readOnly": true
          },
          "diffServMultiFieldClfrEntry": {
            "type": "array",
            "description": "An IP Multi-field Classifier entry describes a single filter.",
            "items": {
              "type": "object",
              "properties": {
                "diffServMultiFieldClfrId": {
                  "type": "string",
                  "description": "An index that enumerates the MultiField Classifier filter\n            entries.  Managers obtain new values for row creation in this\n            table by reading diffServMultiFieldClfrNextFree.",
                  "x-yang-type": "DIFFSERV-MIB:IndexInteger",
                  "readOnly": true
                },
                "diffServMultiFieldClfrAddrType": {
                  "type": "string",
                  "description": "The type of IP address used by this classifier entry.  While\n            other types of addresses are defined in the InetAddressType\n            \n            \n            \n            textual convention, and DNS names, a classifier can only look at\n            packets on the wire. Therefore, this object is limited to IPv4\n            and IPv6 addresses.",
                  "x-yang-type": "inet-address:InetAddressType",
                  "readOnly": true
                },
                "diffServMultiFieldClfrDstAddr": {
                  "type": "string",
                  "description": "The IP address to match against the packet's destination IP\n            address. This may not be a DNS name, but may be an IPv4 or IPv6\n            prefix.  diffServMultiFieldClfrDstPrefixLength indicates the\n            number of bits that are relevant.",
                  "x-yang-type": "inet-address:InetAddress",
                  "readOnly": true
                },
                "diffServMultiFieldClfrDstPrefixLength": {
                  "type": "string",
                  "description": "The length of the CIDR Prefix carried in\n            diffServMultiFieldClfrDstAddr. In IPv4 addresses, a length of 0\n            indicates a match of any address; a length of 32 indicates a\n            match of a single host address, and a length between 0 and 32\n            indicates the use of a CIDR Prefix. IPv6 is similar, except that\n            prefix lengths range from 0..128.",
                  "x-yang-type": "inet-address:InetAddressPrefixLength",
                  "readOnly": true
                },
                "diffServMultiFieldClfrSrcAddr": {
                  "type": "string",
                  "description": "The IP address to match against the packet's source IP address.\n            This may not be a DNS name, but may be an IPv4 or IPv6 prefix.\n            diffServMultiFieldClfrSrcPrefixLength indicates the number of\n            bits that are relevant.",
                  "x-yang-type": "inet-address:InetAddress",
                  "readOnly": true
                },
                "diffServMultiFieldClfrSrcPrefixLength": {
                  "type": "string",
                  "description": "The length of the CIDR Prefix carried in\n            diffServMultiFieldClfrSrcAddr. In IPv4 addresses, a length of 0\n            indicates a match of any address; a length of 32 indicates a\n            match of a single host address, and a length between 0 and 32\n            indicates the use of a CIDR Prefix. IPv6 is similar, except that\n            prefix lengths range from 0..128.",
                  "x-yang-type": "inet-address:InetAddressPrefixLength",
                  "readOnly": true
                },
                "diffServMultiFieldClfrDscp": {
                  "type": "string",
                  "description": "The value that the DSCP in the packet must have to match this\n            entry. A value of -1 indicates that a specific DSCP value has not\n            been defined and thus all DSCP values are considered a match.",
                  "x-yang-type": "diffserv-dscp:DscpOrAny",
                  "readOnly": true
                },
                "diffServMultiFieldClfrFlowId": {
                  "type": "integer",
                  "description": "The flow identifier in an IPv6 header.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "diffServMultiFieldClfrProtocol": {
                  "type": "integer",
                  "description": "The IP protocol to match against the IPv4 protocol number or the\n            IPv6 Next- Header number in the packet. A value of 255 means\n            match all.  Note the protocol number of 255 is reserved by IANA,\n            and Next-Header number of 0 is used in IPv6.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "diffServMultiFieldClfrDstL4PortMin": {
                  "type": "string",
                  "description": "The minimum value that the layer-4 destination port number in\n            the packet must have in order to match this classifier entry.",
                  "format": "inet:port-number",
                  "readOnly": true
                },
                "diffServMultiFieldClfrDstL4PortMax": {
                  "type": "string",
                  "description": "The maximum value that the layer-4 destination port number in\n            the packet must have in order to match this classifier entry.\n            This value must be equal to or greater than the value specified\n            for this entry in diffServMultiFieldClfrDstL4PortMin.",
                  "format": "inet:port-number",
                  "readOnly": true
                },
                "diffServMultiFieldClfrSrcL4PortMin": {
                  "type": "string",
                  "description": "The minimum value that the layer-4 source port number in the\n            packet must have in order to match this classifier entry.",
                  "format": "inet:port-number",
                  "readOnly": true
                },
                "diffServMultiFieldClfrSrcL4PortMax": {
                  "type": "string",
                  "description": "The maximum value that the layer-4 source port number in the\n            packet must have in order to match this classifier entry. This\n            value must be equal to or greater than the value specified for\n            this entry in diffServMultiFieldClfrSrcL4PortMin.",
                  "format": "inet:port-number",
                  "readOnly": true
                },
                "diffServMultiFieldClfrStorage": {
                  "type": "string",
                  "description": "The storage type for this conceptual row.  Conceptual rows\n            having the value 'permanent' need not allow write-access to any\n            columnar objects in the row.",
                  "x-yang-type": "snmpv2-tc:StorageType",
                  "readOnly": true
                },
                "diffServMultiFieldClfrStatus": {
                  "type": "string",
                  "description": "The status of this conceptual row. All writable objects in this\n            row may be modified at any time. Setting this variable to\n            'destroy' when the MIB contains one or more RowPointers pointing\n            to it results in destruction being delayed until the row is no\n            longer used.",
                  "x-yang-type": "snmpv2-tc:RowStatus",
                  "readOnly": true
                }
              }
            },
            "readOnly": true
          },
          "diffServMeterEntry": {
            "type": "array",
            "description": "An entry in the meter table describes a single conformance level\n          of a meter.",
            "items": {
              "type": "object",
              "properties": {
                "diffServMeterId": {
                  "type": "string",
                  "description": "An index that enumerates the Meter entries.  Managers obtain new\n            values for row creation in this table by reading\n            diffServMeterNextFree.",
                  "x-yang-type": "DIFFSERV-MIB:IndexInteger",
                  "readOnly": true
                },
                "diffServMeterSucceedNext": {
                  "type": "string",
                  "description": "If the traffic does conform, this selects the next\n            Differentiated Services Functional Data Path element to handle\n            traffic for this data path. This RowPointer should point to an\n            instance of one of:\n              diffServClfrEntry\n              diffServMeterEntry\n              diffServActionEntry\n              diffServAlgDropEntry\n              diffServQEntry\n            \n            A value of zeroDotZero in this attribute indicates that no\n            further Differentiated Services treatment is performed on traffic\n            of this data path. The use of zeroDotZero is the normal usage for\n            the last functional data path element of the current data path.\n            \n            Setting this to point to a target that does not exist results in\n            an inconsistentValue error.  If the row pointed to is removed or\n            becomes inactive by other means, the treatment is as if this\n            attribute contains a value of zeroDotZero.",
                  "x-yang-type": "snmpv2-tc:RowPointer",
                  "readOnly": true
                },
                "diffServMeterFailNext": {
                  "type": "string",
                  "description": "If the traffic does not conform, this selects the next\n            Differentiated Services Functional Data Path element to handle\n            traffic for this data path. This RowPointer should point to an\n            instance of one of:\n              diffServClfrEntry\n              diffServMeterEntry\n            \n            \n            \n              diffServActionEntry\n              diffServAlgDropEntry\n              diffServQEntry\n            \n            A value of zeroDotZero in this attribute indicates no further\n            Differentiated Services treatment is performed on traffic of this\n            data path. The use of zeroDotZero is the normal usage for the\n            last functional data path element of the current data path.\n            \n            Setting this to point to a target that does not exist results in\n            an inconsistentValue error.  If the row pointed to is removed or\n            becomes inactive by other means, the treatment is as if this\n            attribute contains a value of zeroDotZero.",
                  "x-yang-type": "snmpv2-tc:RowPointer",
                  "readOnly": true
                },
                "diffServMeterSpecific": {
                  "type": "string",
                  "description": "This indicates the behavior of the meter by pointing to an entry\n            containing detailed parameters. Note that entries in that\n            specific table must be managed explicitly.\n            \n            For example, diffServMeterSpecific may point to an entry in\n            diffServTBParamTable, which contains an instance of a single set\n            of Token Bucket parameters.\n            \n            Setting this to point to a target that does not exist results in\n            an inconsistentValue error.  If the row pointed to is removed or\n            becomes inactive by other means, the meter always succeeds.",
                  "x-yang-type": "snmpv2-tc:RowPointer",
                  "readOnly": true
                },
                "diffServMeterStorage": {
                  "type": "string",
                  "description": "The storage type for this conceptual row.  Conceptual rows\n            having the value 'permanent' need not allow write-access to any\n            columnar objects in the row.",
                  "x-yang-type": "snmpv2-tc:StorageType",
                  "readOnly": true
                },
                "diffServMeterStatus": {
                  "type": "string",
                  "description": "The status of this conceptual row. All writable objects in this\n            row may be modified at any time. Setting this variable to\n            'destroy' when the MIB contains one or more RowPointers pointing\n            to it results in destruction being delayed until the row is no\n            longer used.",
                  "x-yang-type": "snmpv2-tc:RowStatus",
                  "readOnly": true
                }
              }
            },
            "readOnly": true
          },
          "diffServTBParamEntry": {
            "type": "array",
            "description": "An entry that describes a single set of token bucket\n          parameters.",
            "items": {
              "type": "object",
              "properties": {
                "diffServTBParamId": {
                  "type": "string",
                  "description": "An index that enumerates the Token Bucket Parameter entries.\n            Managers obtain new values for row creation in this table by\n            reading diffServTBParamNextFree.",
                  "x-yang-type": "DIFFSERV-MIB:IndexInteger",
                  "readOnly": true
                },
                "diffServTBParamType": {
                  "type": "string",
                  "description": "The Metering algorithm associated with the Token Bucket\n            parameters.  zeroDotZero indicates this is unknown.\n            \n            Standard values for generic algorithms:\n            diffServTBParamSimpleTokenBucket, diffServTBParamAvgRate,\n            diffServTBParamSrTCMBlind, diffServTBParamSrTCMAware,\n            diffServTBParamTrTCMBlind, diffServTBParamTrTCMAware, and\n            diffServTBParamTswTCM are specified in this MIB as OBJECT-\n            IDENTITYs; additional values may be further specified in other\n            MIBs.",
                  "x-yang-type": "snmpv2-tc:AutonomousType",
                  "readOnly": true
                },
                "diffServTBParamRate": {
                  "type": "integer",
                  "description": "The token-bucket rate, in kilobits per second (kbps). This\n            attribute is used for:\n            1. CIR in RFC 2697 for srTCM\n            2. CIR and PIR in RFC 2698 for trTCM\n            3. CTR and PTR in RFC 2859 for TSWTCM\n            4. AverageRate in RFC 3290.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "diffServTBParamBurstSize": {
                  "type": "string",
                  "description": "The maximum number of bytes in a single transmission burst. This\n            attribute is used for:\n            1. CBS and EBS in RFC 2697 for srTCM\n            2. CBS and PBS in RFC 2698 for trTCM\n            3. Burst Size in RFC 3290.",
                  "x-yang-type": "integrated-services:BurstSize",
                  "readOnly": true
                },
                "diffServTBParamInterval": {
                  "type": "integer",
                  "description": "The time interval used with the token bucket.  For:\n            1. Average Rate Meter, the Informal Differentiated Services Model\n               section 5.2.1, - Delta.\n            2. Simple Token Bucket Meter, the Informal Differentiated\n               Services Model section 5.1, - time interval t.\n            3. RFC 2859 TSWTCM, - AVG_INTERVAL.\n            4. RFC 2697 srTCM, RFC 2698 trTCM, - token bucket update time\n               interval.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "diffServTBParamStorage": {
                  "type": "string",
                  "description": "The storage type for this conceptual row.  Conceptual rows\n            having the value 'permanent' need not allow write-access to any\n            columnar objects in the row.",
                  "x-yang-type": "snmpv2-tc:StorageType",
                  "readOnly": true
                },
                "diffServTBParamStatus": {
                  "type": "string",
                  "description": "The status of this conceptual row. All writable objects in this\n            row may be modified at any time. Setting this variable to\n            'destroy' when the MIB contains one or more RowPointers pointing\n            to it results in destruction being delayed until the row is no\n            longer used.",
                  "x-yang-type": "snmpv2-tc:RowStatus",
                  "readOnly": true
                }
              }
            },
            "readOnly": true
          },
          "diffServActionEntry": {
            "type": "array",
            "description": "Each entry in the action table allows description of one\n          specific action to be applied to traffic.",
            "items": {
              "type": "object",
              "properties": {
                "diffServActionId": {
                  "type": "string",
                  "description": "An index that enumerates the Action entries.  Managers obtain\n            new values for row creation in this table by reading\n            diffServActionNextFree.",
                  "x-yang-type": "DIFFSERV-MIB:IndexInteger",
                  "readOnly": true
                },
                "diffServActionInterface": {
                  "type": "string",
                  "description": "The interface index (value of ifIndex) that this action occurs\n            on. This may be derived from the diffServDataPathStartEntry's\n            index by extension through the various RowPointers. However, as\n            this may be difficult for a network management station, it is\n            placed here as well.  If this is indeterminate, the value is\n            zero.\n            \n            This is of especial relevance when reporting the counters which\n            may apply to traffic crossing an interface:\n               diffServCountActOctets,\n               diffServCountActPkts,\n               diffServAlgDropOctets,\n               diffServAlgDropPkts,\n               diffServAlgRandomDropOctets, and\n               diffServAlgRandomDropPkts.\n            \n            It is also especially relevant to the queue and scheduler which\n            may be subsequently applied.",
                  "x-yang-type": "if-mib:InterfaceIndexOrZero",
                  "readOnly": true
                },
                "diffServActionNext": {
                  "type": "string",
                  "description": "This selects the next Differentiated Services Functional Data\n            Path Element to handle traffic for this data path. This\n            RowPointer should point to an instance of one of:\n              diffServClfrEntry\n              diffServMeterEntry\n              diffServActionEntry\n              diffServAlgDropEntry\n              diffServQEntry\n            \n            A value of zeroDotZero in this attribute indicates no further\n            Differentiated Services treatment is performed on traffic of this\n            data path. The use of zeroDotZero is the normal usage for the\n            last functional data path element of the current data path.\n            \n            Setting this to point to a target that does not exist results in\n            an inconsistentValue error.  If the row pointed to is removed or\n            becomes inactive by other means, the treatment is as if this\n            attribute contains a value of zeroDotZero.",
                  "x-yang-type": "snmpv2-tc:RowPointer",
                  "readOnly": true
                },
                "diffServActionSpecific": {
                  "type": "string",
                  "description": "A pointer to an object instance providing additional information\n            for the type of action indicated by this action table entry.\n            \n            For the standard actions defined by this MIB module, this should\n            point to either a diffServDscpMarkActEntry or a\n            diffServCountActEntry. For other actions, it may point to an\n            object instance defined in some other MIB.\n            \n            Setting this to point to a target that does not exist results in\n            an inconsistentValue error.  If the row pointed to is removed or\n            becomes inactive by other means, the Meter should be treated as\n            if it were not present.  This may lead to incorrect policy\n            behavior.",
                  "x-yang-type": "snmpv2-tc:RowPointer",
                  "readOnly": true
                },
                "diffServActionStorage": {
                  "type": "string",
                  "description": "The storage type for this conceptual row.  Conceptual rows\n            having the value 'permanent' need not allow write-access to any\n            columnar objects in the row.",
                  "x-yang-type": "snmpv2-tc:StorageType",
                  "readOnly": true
                },
                "diffServActionStatus": {
                  "type": "string",
                  "description": "The status of this conceptual row. All writable objects in this\n            row may be modified at any time. Setting this variable to\n            'destroy' when the MIB contains one or more RowPointers pointing\n            to it results in destruction being delayed until the row is no\n            longer used.",
                  "x-yang-type": "snmpv2-tc:RowStatus",
                  "readOnly": true
                }
              }
            },
            "readOnly": true
          },
          "diffServDscpMarkActEntry": {
            "type": "array",
            "description": "An entry in the DSCP mark action table that describes a single\n          DSCP used for marking.",
            "items": {
              "type": "object",
              "properties": {
                "diffServDscpMarkActDscp": {
                  "type": "string",
                  "description": "The DSCP that this Action will store into the DSCP field of the\n            subject. It is quite possible that the only packets subject to\n            this Action are already marked with this DSCP. Note also that\n            Differentiated Services processing may result in packet being\n            marked on both ingress to a network and on egress from it, and\n            that ingress and egress can occur in the same router.",
                  "format": "inet:dscp",
                  "readOnly": true
                }
              }
            },
            "readOnly": true
          },
          "diffServCountActEntry": {
            "type": "array",
            "description": "An entry in the count action table describes a single set of\n          traffic counters.",
            "items": {
              "type": "object",
              "properties": {
                "diffServCountActId": {
                  "type": "string",
                  "description": "An index that enumerates the Count Action entries.  Managers\n            obtain new values for row creation in this table by reading\n            \n            \n            \n            diffServCountActNextFree.",
                  "x-yang-type": "DIFFSERV-MIB:IndexInteger",
                  "readOnly": true
                },
                "diffServCountActOctets": {
                  "type": "integer",
                  "description": "The number of octets at the Action data path element.\n            \n            Discontinuities in the value of this counter can occur at re-\n            initialization of the management system and at other times as\n            indicated by the value of ifCounterDiscontinuityTime on the\n            relevant interface.",
                  "minimum": 0,
                  "readOnly": true
                },
                "diffServCountActPkts": {
                  "type": "integer",
                  "description": "The number of packets at the Action data path element.\n            \n            Discontinuities in the value of this counter can occur at re-\n            initialization of the management system and at other times as\n            indicated by the value of ifCounterDiscontinuityTime on the\n            relevant interface.",
                  "minimum": 0,
                  "readOnly": true
                },
                "diffServCountActStorage": {
                  "type": "string",
                  "description": "The storage type for this conceptual row.  Conceptual rows\n            having the value 'permanent' need not allow write-access to any\n            columnar objects in the row.",
                  "x-yang-type": "snmpv2-tc:StorageType",
                  "readOnly": true
                },
                "diffServCountActStatus": {
                  "type": "string",
                  "description": "The status of this conceptual row. All writable objects in this\n            row may be modified at any time. Setting this variable to\n            'destroy' when the MIB contains one or more RowPointers pointing\n            \n            \n            \n            to it results in destruction being delayed until the row is no\n            longer used.",
                  "x-yang-type": "snmpv2-tc:RowStatus",
                  "readOnly": true
                }
              }
            },
            "readOnly": true
          },
          "diffServAlgDropEntry": {
            "type": "array",
            "description": "An entry describes a process that drops packets according to\n          some algorithm. Further details of the algorithm type are to be\n          found in diffServAlgDropType and with more detail parameter entry\n          pointed to by diffServAlgDropSpecific when necessary.",
            "items": {
              "type": "object",
              "properties": {
                "diffServAlgDropId": {
                  "type": "string",
                  "description": "An index that enumerates the Algorithmic Dropper entries.\n            Managers obtain new values for row creation in this table by\n            reading diffServAlgDropNextFree.",
                  "x-yang-type": "DIFFSERV-MIB:IndexInteger",
                  "readOnly": true
                },
                "diffServAlgDropType": {
                  "type": "string",
                  "description": "The type of algorithm used by this dropper. The value other(1)\n            requires further specification in some other MIB module.\n            \n            In the tailDrop(2) algorithm, diffServAlgDropQThreshold\n            represents the maximum depth of the queue, pointed to by\n            diffServAlgDropQMeasure, beyond which all newly arriving packets\n            will be dropped.\n            \n            In the headDrop(3) algorithm, if a packet arrives when the\n            current depth of the queue, pointed to by\n            diffServAlgDropQMeasure, is at diffServAlgDropQThreshold, packets\n            currently at the head of the queue are dropped to make room for\n            the new packet to be enqueued at the tail of the queue.\n            \n            In the randomDrop(4) algorithm, on packet arrival, an Active\n            Queue Management algorithm is executed which may randomly drop a\n            packet. This algorithm may be proprietary, and it may drop either\n            the arriving packet or another packet in the queue.\n            diffServAlgDropSpecific points to a diffServRandomDropEntry that\n            describes the algorithm. For this algorithm,\n            \n            \n            \n            diffServAlgDropQThreshold is understood to be the absolute\n            maximum size of the queue and additional parameters are described\n            in diffServRandomDropTable.\n            \n            The alwaysDrop(5) algorithm is as its name specifies; always\n            drop. In this case, the other configuration values in this Entry\n            are not meaningful; There is no useful 'next' processing step,\n            there is no queue, and parameters describing the queue are not\n            useful. Therefore, diffServAlgDropNext, diffServAlgDropMeasure,\n            and diffServAlgDropSpecific are all zeroDotZero.",
                  "readOnly": true
                },
                "diffServAlgDropNext": {
                  "type": "string",
                  "description": "This selects the next Differentiated Services Functional Data\n            Path Element to handle traffic for this data path. This\n            RowPointer should point to an instance of one of:\n              diffServClfrEntry\n              diffServMeterEntry\n              diffServActionEntry\n              diffServQEntry\n            \n            A value of zeroDotZero in this attribute indicates no further\n            Differentiated Services treatment is performed on traffic of this\n            data path. The use of zeroDotZero is the normal usage for the\n            last functional data path element of the current data path.\n            \n            When diffServAlgDropType is alwaysDrop(5), this object is\n            ignored.\n            \n            Setting this to point to a target that does not exist results in\n            an inconsistentValue error.  If the row pointed to is removed or\n            becomes inactive by other means, the treatment is as if this\n            attribute contains a value of zeroDotZero.",
                  "x-yang-type": "snmpv2-tc:RowPointer",
                  "readOnly": true
                },
                "diffServAlgDropQMeasure": {
                  "type": "string",
                  "description": "Points to an entry in the diffServQTable to indicate the queue\n            that a drop algorithm is to monitor when deciding whether to drop\n            a packet. If the row pointed to does not exist, the algorithmic\n            dropper element is considered inactive.\n            \n            \n            \n            Setting this to point to a target that does not exist results in\n            an inconsistentValue error.  If the row pointed to is removed or\n            becomes inactive by other means, the treatment is as if this\n            attribute contains a value of zeroDotZero.",
                  "x-yang-type": "snmpv2-tc:RowPointer",
                  "readOnly": true
                },
                "diffServAlgDropQThreshold": {
                  "type": "integer",
                  "description": "A threshold on the depth in bytes of the queue being measured at\n            which a trigger is generated to the dropping algorithm, unless\n            diffServAlgDropType is alwaysDrop(5) where this object is\n            ignored.\n            \n            For the tailDrop(2) or headDrop(3) algorithms, this represents\n            the depth of the queue, pointed to by diffServAlgDropQMeasure, at\n            which the drop action will take place. Other algorithms will need\n            to define their own semantics for this threshold.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "diffServAlgDropSpecific": {
                  "type": "string",
                  "description": "Points to a table entry that provides further detail regarding a\n            drop algorithm.\n            \n            Entries with diffServAlgDropType equal to other(1) may have this\n            point to a table defined in another MIB module.\n            \n            Entries with diffServAlgDropType equal to randomDrop(4) must have\n            this point to an entry in diffServRandomDropTable.\n            \n            For all other algorithms specified in this MIB, this should take\n            the value zeroDotZero.\n            \n            The diffServAlgDropType is authoritative for the type of the drop\n            algorithm and the specific parameters for the drop algorithm\n            needs to be evaluated based on the diffServAlgDropType.\n            \n            Setting this to point to a target that does not exist results in\n            an inconsistentValue error.  If the row pointed to is removed or\n            becomes inactive by other means, the treatment is as if this\n            attribute contains a value of zeroDotZero.",
                  "x-yang-type": "snmpv2-tc:RowPointer",
                  "readOnly": true
                },
                "diffServAlgDropOctets": {
                  "type": "integer",
                  "description": "The number of octets that have been deterministically dropped by\n            this drop process.\n            \n            Discontinuities in the value of this counter can occur at re-\n            initialization of the management system and at other times as\n            indicated by the value of ifCounterDiscontinuityTime on the\n            relevant interface.",
                  "minimum": 0,
                  "readOnly": true
                },
                "diffServAlgDropPkts": {
                  "type": "integer",
                  "description": "The number of packets that have been deterministically dropped\n            by this drop process.\n            \n            Discontinuities in the value of this counter can occur at re-\n            initialization of the management system and at other times as\n            indicated by the value of ifCounterDiscontinuityTime on the\n            relevant interface.",
                  "minimum": 0,
                  "readOnly": true
                },
                "diffServAlgRandomDropOctets": {
                  "type": "integer",
                  "description": "The number of octets that have been randomly dropped by this\n            drop process.  This counter applies, therefore, only to random\n            droppers.\n            \n            Discontinuities in the value of this counter can occur at re-\n            initialization of the management system and at other times as\n            indicated by the value of ifCounterDiscontinuityTime on the\n            relevant interface.",
                  "minimum": 0,
                  "readOnly": true
                },
                "diffServAlgRandomDropPkts": {
                  "type": "integer",
                  "description": "The number of packets that have been randomly dropped by this\n            drop process. This counter applies, therefore, only to random\n            droppers.\n            \n            Discontinuities in the value of this counter can occur at re-\n            initialization of the management system and at other times as\n            indicated by the value of ifCounterDiscontinuityTime on the\n            relevant interface.",
                  "minimum": 0,
                  "readOnly": true
                },
                "diffServAlgDropStorage": {
                  "type": "string",
                  "description": "The storage type for this conceptual row.  Conceptual rows\n            having the value 'permanent' need not allow write-access to any\n            columnar objects in the row.",
                  "x-yang-type": "snmpv2-tc:StorageType",
                  "readOnly": true
                },
                "diffServAlgDropStatus": {
                  "type": "string",
                  "description": "The status of this conceptual row. All writable objects in this\n            row may be modified at any time. Setting this variable to\n            'destroy' when the MIB contains one or more RowPointers pointing\n            to it results in destruction being delayed until the row is no\n            longer used.",
                  "x-yang-type": "snmpv2-tc:RowStatus",
                  "readOnly": true
                }
              }
            },
            "readOnly": true
          },
          "diffServRandomDropEntry": {
            "type": "array",
            "description": "An entry describes a process that drops packets according to a\n          random algorithm.",
            "items": {
              "type": "object",
              "properties": {
                "diffServRandomDropId": {
                  "type": "string",
                  "description": "An index that enumerates the Random Drop entries.  Managers\n            obtain new values for row creation in this table by reading\n            diffServRandomDropNextFree.",
                  "x-yang-type": "DIFFSERV-MIB:IndexInteger",
                  "readOnly": true
                },
                "diffServRandomDropMinThreshBytes": {
                  "type": "integer",
                  "description": "The average queue depth in bytes, beyond which traffic has a\n            non-zero probability of being dropped. Changes in this variable\n            may or may not be reflected in the reported value of\n            diffServRandomDropMinThreshPkts.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "diffServRandomDropMinThreshPkts": {
                  "type": "integer",
                  "description": "The average queue depth in packets, beyond which traffic has a\n            non-zero probability of being dropped. Changes in this variable\n            may or may not be reflected in the reported value of\n            diffServRandomDropMinThreshBytes.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "diffServRandomDropMaxThreshBytes": {
                  "type": "integer",
                  "description": "The average queue depth beyond which traffic has a probability\n            indicated by diffServRandomDropProbMax of being dropped or\n            marked. Note that this differs from the physical queue limit,\n            which is stored in diffServAlgDropQThreshold. Changes in this\n            variable may or may not be reflected in the reported value of\n            diffServRandomDropMaxThreshPkts.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "diffServRandomDropMaxThreshPkts": {
                  "type": "integer",
                  "description": "The average queue depth beyond which traffic has a probability\n            indicated by diffServRandomDropProbMax of being dropped or\n            marked. Note that this differs from the physical queue limit,\n            which is stored in diffServAlgDropQThreshold. Changes in this\n            variable may or may not be reflected in the reported value of\n            diffServRandomDropMaxThreshBytes.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "diffServRandomDropProbMax": {
                  "type": "integer",
                  "description": "The worst case random drop probability, expressed in drops per\n            thousand packets.\n            \n            For example, if in the worst case every arriving packet may be\n            dropped (100%) for a period, this has the value 1000.\n            Alternatively, if in the worst case only one percent (1%) of\n            traffic may be dropped, it has the value 10.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "diffServRandomDropWeight": {
                  "type": "integer",
                  "description": "The weighting of past history in affecting the Exponentially\n            Weighted Moving Average function that calculates the current\n            average queue depth.  The equation uses\n            diffServRandomDropWeight/65536 as the coefficient for the new\n            sample in the equation, and (65536 -\n            diffServRandomDropWeight)/65536 as the coefficient of the old\n            value.\n            \n            Implementations may limit the values of diffServRandomDropWeight\n            to a subset of the possible range of values, such as powers of\n            two. Doing this would facilitate implementation of the\n            Exponentially Weighted Moving Average using shift instructions or\n            registers.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "diffServRandomDropSamplingRate": {
                  "type": "integer",
                  "description": "The number of times per second the queue is sampled for queue\n            average calculation.  A value of zero is used to mean that the\n            queue is sampled approximately each time a packet is enqueued (or\n            dequeued).",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "diffServRandomDropStorage": {
                  "type": "string",
                  "description": "The storage type for this conceptual row.  Conceptual rows\n            having the value 'permanent' need not allow write-access to any\n            columnar objects in the row.",
                  "x-yang-type": "snmpv2-tc:StorageType",
                  "readOnly": true
                },
                "diffServRandomDropStatus": {
                  "type": "string",
                  "description": "The status of this conceptual row. All writable objects in this\n            row may be modified at any time. Setting this variable to\n            'destroy' when the MIB contains one or more RowPointers pointing\n            to it results in destruction being delayed until the row is no\n            longer used.",
                  "x-yang-type": "snmpv2-tc:RowStatus",
                  "readOnly": true
                }
              }
            },
            "readOnly": true
          },
          "diffServQEntry": {
            "type": "array",
            "description": "An entry in the Queue Table describes a single queue or class of\n          traffic.",
            "items": {
              "type": "object",
              "properties": {
                "diffServQId": {
                  "type": "string",
                  "description": "An index that enumerates the Queue entries.  Managers obtain new\n            values for row creation in this table by reading\n            diffServQNextFree.",
                  "x-yang-type": "DIFFSERV-MIB:IndexInteger",
                  "readOnly": true
                },
                "diffServQNext": {
                  "type": "string",
                  "description": "This selects the next Differentiated Services Scheduler.  The\n            RowPointer must point to a diffServSchedulerEntry.\n            \n            A value of zeroDotZero in this attribute indicates an incomplete\n            diffServQEntry instance. In such a case, the entry has no\n            operational effect, since it has no parameters to give it\n            meaning.\n            \n            Setting this to point to a target that does not exist results in\n            an inconsistentValue error.  If the row pointed to is removed or\n            becomes inactive by other means, the treatment is as if this\n            attribute contains a value of zeroDotZero.",
                  "x-yang-type": "snmpv2-tc:RowPointer",
                  "readOnly": true
                },
                "diffServQMinRate": {
                  "type": "string",
                  "description": "This RowPointer indicates the diffServMinRateEntry that the\n            scheduler, pointed to by diffServQNext, should use to service\n            this queue.\n            \n            If the row pointed to is zeroDotZero, the minimum rate and\n            priority is unspecified.\n            \n            Setting this to point to a target that does not exist results in\n            an inconsistentValue error.  If the row pointed to is removed or\n            becomes inactive by other means, the treatment is as if this\n            attribute contains a value of zeroDotZero.",
                  "x-yang-type": "snmpv2-tc:RowPointer",
                  "readOnly": true
                },
                "diffServQMaxRate": {
                  "type": "string",
                  "description": "This RowPointer indicates the diffServMaxRateEntry that the\n            scheduler, pointed to by diffServQNext, should use to service\n            this queue.\n            \n            If the row pointed to is zeroDotZero, the maximum rate is the\n            line speed of the interface.\n            \n            \n            \n            \n            Setting this to point to a target that does not exist results in\n            an inconsistentValue error.  If the row pointed to is removed or\n            becomes inactive by other means, the treatment is as if this\n            attribute contains a value of zeroDotZero.",
                  "x-yang-type": "snmpv2-tc:RowPointer",
                  "readOnly": true
                },
                "diffServQStorage": {
                  "type": "string",
                  "description": "The storage type for this conceptual row.  Conceptual rows\n            having the value 'permanent' need not allow write-access to any\n            columnar objects in the row.",
                  "x-yang-type": "snmpv2-tc:StorageType",
                  "readOnly": true
                },
                "diffServQStatus": {
                  "type": "string",
                  "description": "The status of this conceptual row. All writable objects in this\n            row may be modified at any time. Setting this variable to\n            'destroy' when the MIB contains one or more RowPointers pointing\n            to it results in destruction being delayed until the row is no\n            longer used.",
                  "x-yang-type": "snmpv2-tc:RowStatus",
                  "readOnly": true
                }
              }
            },
            "readOnly": true
          },
          "diffServSchedulerEntry": {
            "type": "array",
            "description": "An entry in the Scheduler Table describing a single instance of\n          a scheduling algorithm.",
            "items": {
              "type": "object",
              "properties": {
                "diffServSchedulerId": {
                  "type": "string",
                  "description": "An index that enumerates the Scheduler entries.  Managers obtain\n            new values for row creation in this table by reading\n            diffServSchedulerNextFree.",
                  "x-yang-type": "DIFFSERV-MIB:IndexInteger",
                  "readOnly": true
                },
                "diffServSchedulerNext": {
                  "type": "string",
                  "description": "This selects the next Differentiated Services Functional Data\n            Path Element to handle traffic for this data path. This normally\n            is null (zeroDotZero), or points to a diffServSchedulerEntry or a\n            diffServQEntry.\n            \n            However, this RowPointer may also point to an instance of:\n              diffServClfrEntry,\n              diffServMeterEntry,\n              diffServActionEntry,\n              diffServAlgDropEntry.\n            \n            It would point another diffServSchedulerEntry when implementing\n            multiple scheduler methods for the same data path, such as having\n            one set of queues scheduled by WRR and that group participating\n            in a priority scheduling system in which other queues compete\n            with it in that way.  It might also point to a second scheduler\n            in a hierarchical scheduling system.\n            \n            If the row pointed to is zeroDotZero, no further Differentiated\n            Services treatment is performed on traffic of this data path.\n            \n            Setting this to point to a target that does not exist results in\n            an inconsistentValue error.  If the row pointed to is removed or\n            becomes inactive by other means, the treatment is as if this\n            attribute contains a value of zeroDotZero.",
                  "x-yang-type": "snmpv2-tc:RowPointer",
                  "readOnly": true
                },
                "diffServSchedulerMethod": {
                  "type": "string",
                  "description": "The scheduling algorithm used by this Scheduler. zeroDotZero\n            indicates that this is unknown.  Standard values for generic\n            algorithms: diffServSchedulerPriority, diffServSchedulerWRR, and\n            diffServSchedulerWFQ are specified in this MIB; additional values\n            \n            \n            \n            may be further specified in other MIBs.",
                  "x-yang-type": "snmpv2-tc:AutonomousType",
                  "readOnly": true
                },
                "diffServSchedulerMinRate": {
                  "type": "string",
                  "description": "This RowPointer indicates the entry in diffServMinRateTable\n            which indicates the priority or minimum output rate from this\n            scheduler. This attribute is used only when there is more than\n            one level of scheduler.\n            \n            When it has the value zeroDotZero, it indicates that no minimum\n            rate or priority is imposed.\n            \n            Setting this to point to a target that does not exist results in\n            an inconsistentValue error.  If the row pointed to is removed or\n            becomes inactive by other means, the treatment is as if this\n            attribute contains a value of zeroDotZero.",
                  "x-yang-type": "snmpv2-tc:RowPointer",
                  "readOnly": true
                },
                "diffServSchedulerMaxRate": {
                  "type": "string",
                  "description": "This RowPointer indicates the entry in diffServMaxRateTable\n            which indicates the maximum output rate from this scheduler.\n            When more than one maximum rate applies (eg, when a multi-rate\n            shaper is in view), it points to the first of those rate entries.\n            This attribute is used only when there is more than one level of\n            scheduler.\n            \n            When it has the value zeroDotZero, it indicates that no maximum\n            rate is imposed.\n            \n            Setting this to point to a target that does not exist results in\n            an inconsistentValue error.  If the row pointed to is removed or\n            becomes inactive by other means, the treatment is as if this\n            attribute contains a value of zeroDotZero.",
                  "x-yang-type": "snmpv2-tc:RowPointer",
                  "readOnly": true
                },
                "diffServSchedulerStorage": {
                  "type": "string",
                  "description": "The storage type for this conceptual row.  Conceptual rows\n            having the value 'permanent' need not allow write-access to any\n            columnar objects in the row.",
                  "x-yang-type": "snmpv2-tc:StorageType",
                  "readOnly": true
                },
                "diffServSchedulerStatus": {
                  "type": "string",
                  "description": "The status of this conceptual row. All writable objects in this\n            row may be modified at any time. Setting this variable to\n            'destroy' when the MIB contains one or more RowPointers pointing\n            to it results in destruction being delayed until the row is no\n            longer used.",
                  "x-yang-type": "snmpv2-tc:RowStatus",
                  "readOnly": true
                }
              }
            },
            "readOnly": true
          },
          "diffServMinRateEntry": {
            "type": "array",
            "description": "An entry in the Minimum Rate Parameters Table describes a single\n          set of scheduling parameters for use by one or more queues or\n          schedulers.",
            "items": {
              "type": "object",
              "properties": {
                "diffServMinRateId": {
                  "type": "string",
                  "description": "An index that enumerates the Scheduler Parameter entries.\n            Managers obtain new values for row creation in this table by\n            reading diffServMinRateNextFree.",
                  "x-yang-type": "DIFFSERV-MIB:IndexInteger",
                  "readOnly": true
                },
                "diffServMinRatePriority": {
                  "type": "integer",
                  "description": "The priority of this input to the associated scheduler, relative\n            \n            \n            \n            to the scheduler's other inputs. A queue or scheduler with a\n            larger numeric value will be served before another with a smaller\n            numeric value.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "diffServMinRateAbsolute": {
                  "type": "integer",
                  "description": "The minimum absolute rate, in kilobits/sec, that a downstream\n            scheduler element should allocate to this queue. If the value is\n            zero, then there is effectively no minimum rate guarantee. If the\n            value is non-zero, the scheduler will assure the servicing of\n            this queue to at least this rate.\n            \n            Note that this attribute value and that of\n            diffServMinRateRelative are coupled: changes to one will affect\n            the value of the other. They are linked by the following\n            equation, in that setting one will change the other:\n            \n              diffServMinRateRelative =\n                      (diffServMinRateAbsolute*1000000)/ifSpeed\n            \n            or, if appropriate:\n            \n              diffServMinRateRelative = diffServMinRateAbsolute/ifHighSpeed",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "diffServMinRateRelative": {
                  "type": "integer",
                  "description": "The minimum rate that a downstream scheduler element should\n            allocate to this queue, relative to the maximum rate of the\n            interface as reported by ifSpeed or ifHighSpeed, in units of\n            1/1000 of 1. If the value is zero, then there is effectively no\n            minimum rate guarantee. If the value is non-zero, the scheduler\n            will assure the servicing of this queue to at least this rate.\n            \n            Note that this attribute value and that of\n            diffServMinRateAbsolute are coupled: changes to one will affect\n            the value of the other. They are linked by the following\n            equation, in that setting one will change the other:\n            \n            \n            \n              diffServMinRateRelative =\n                      (diffServMinRateAbsolute*1000000)/ifSpeed\n            \n            or, if appropriate:\n            \n              diffServMinRateRelative = diffServMinRateAbsolute/ifHighSpeed",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "diffServMinRateStorage": {
                  "type": "string",
                  "description": "The storage type for this conceptual row.  Conceptual rows\n            having the value 'permanent' need not allow write-access to any\n            columnar objects in the row.",
                  "x-yang-type": "snmpv2-tc:StorageType",
                  "readOnly": true
                },
                "diffServMinRateStatus": {
                  "type": "string",
                  "description": "The status of this conceptual row. All writable objects in this\n            row may be modified at any time. Setting this variable to\n            'destroy' when the MIB contains one or more RowPointers pointing\n            to it results in destruction being delayed until the row is no\n            longer used.",
                  "x-yang-type": "snmpv2-tc:RowStatus",
                  "readOnly": true
                }
              }
            },
            "readOnly": true
          },
          "diffServMaxRateEntry": {
            "type": "array",
            "description": "An entry in the Maximum Rate Parameter Table describes a single\n          set of scheduling parameters for use by one or more queues or\n          schedulers.",
            "items": {
              "type": "object",
              "properties": {
                "diffServMaxRateId": {
                  "type": "string",
                  "description": "An index that enumerates the Maximum Rate Parameter entries.\n            Managers obtain new values for row creation in this table by\n            reading diffServMaxRateNextFree.",
                  "x-yang-type": "DIFFSERV-MIB:IndexInteger",
                  "readOnly": true
                },
                "diffServMaxRateLevel": {
                  "type": "integer",
                  "description": "An index that indicates which level of a multi-rate shaper is\n            being given its parameters. A multi-rate shaper has some number\n            of rate levels. Frame Relay's dual rate specification refers to a\n            'committed' and an 'excess' rate; ATM's dual rate specification\n            refers to a 'mean' and a 'peak' rate. This table is generalized\n            to support an arbitrary number of rates. The committed or mean\n            rate is level 1, the peak rate (if any) is the highest level rate\n            configured, and if there are other rates they are distributed in\n            monotonically increasing order between them.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "diffServMaxRateAbsolute": {
                  "type": "integer",
                  "description": "The maximum rate in kilobits/sec that a downstream scheduler\n            element should allocate to this queue. If the value is zero, then\n            there is effectively no maximum rate limit and that the scheduler\n            should attempt to be work conserving for this queue. If the value\n            is non-zero, the scheduler will limit the servicing of this queue\n            to, at most, this rate in a non-work-conserving manner.\n            \n            Note that this attribute value and that of\n            diffServMaxRateRelative are coupled: changes to one will affect\n            the value of the other. They are linked by the following\n            \n            \n            \n            equation, in that setting one will change the other:\n            \n              diffServMaxRateRelative =\n                      (diffServMaxRateAbsolute*1000000)/ifSpeed\n            \n            or, if appropriate:\n            \n              diffServMaxRateRelative = diffServMaxRateAbsolute/ifHighSpeed",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "diffServMaxRateRelative": {
                  "type": "integer",
                  "description": "The maximum rate that a downstream scheduler element should\n            allocate to this queue, relative to the maximum rate of the\n            interface as reported by ifSpeed or ifHighSpeed, in units of\n            1/1000 of 1. If the value is zero, then there is effectively no\n            maximum rate limit and the scheduler should attempt to be work\n            conserving for this queue. If the value is non-zero, the\n            scheduler will limit the servicing of this queue to, at most,\n            this rate in a non-work-conserving manner.\n            \n            Note that this attribute value and that of\n            diffServMaxRateAbsolute are coupled: changes to one will affect\n            the value of the other. They are linked by the following\n            equation, in that setting one will change the other:\n            \n              diffServMaxRateRelative =\n                      (diffServMaxRateAbsolute*1000000)/ifSpeed\n            \n            or, if appropriate:\n            \n              diffServMaxRateRelative = diffServMaxRateAbsolute/ifHighSpeed",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "diffServMaxRateThreshold": {
                  "type": "string",
                  "description": "The number of bytes of queue depth at which the rate of a\n            \n            \n            \n            multi-rate scheduler will increase to the next output rate. In\n            the last conceptual row for such a shaper, this threshold is\n            ignored and by convention is zero.",
                  "x-yang-type": "integrated-services:BurstSize",
                  "readOnly": true
                },
                "diffServMaxRateStorage": {
                  "type": "string",
                  "description": "The storage type for this conceptual row.  Conceptual rows\n            having the value 'permanent' need not allow write-access to any\n            columnar objects in the row.",
                  "x-yang-type": "snmpv2-tc:StorageType",
                  "readOnly": true
                },
                "diffServMaxRateStatus": {
                  "type": "string",
                  "description": "The status of this conceptual row. All writable objects in this\n            row may be modified at any time. Setting this variable to\n            'destroy' when the MIB contains one or more RowPointers pointing\n            to it results in destruction being delayed until the row is no\n            longer used.",
                  "x-yang-type": "snmpv2-tc:RowStatus",
                  "readOnly": true
                }
              }
            },
            "readOnly": true
          },
          "diffServClassifier": {
            "type": "object",
            "description": "This object contains an unused value for diffServClfrId, or a\n          zero to indicate that none exist.",
            "properties": {
              "diffServClfrNextFree": {
                "type": "string",
                "description": "This object contains an unused value for diffServClfrId, or a\n          zero to indicate that none exist.",
                "x-yang-type": "DIFFSERV-MIB:IndexIntegerNextFree",
                "readOnly": true
              },
              "diffServClfrElementNextFree": {
                "type": "string",
                "description": "This object contains an unused value for diffServClfrElementId,\n          or a zero to indicate that none exist.",
                "x-yang-type": "DIFFSERV-MIB:IndexIntegerNextFree",
                "readOnly": true
              },
              "diffServMultiFieldClfrNextFree": {
                "type": "string",
                "description": "This object contains an unused value for\n          diffServMultiFieldClfrId, or a zero to indicate that none exist.",
                "x-yang-type": "DIFFSERV-MIB:IndexIntegerNextFree",
                "readOnly": true
              }
            },
            "readOnly": true
          },
          "diffServMeter": {
            "type": "object",
            "description": "This object contains an unused value for diffServMeterId, or a\n          zero to indicate that none exist.",
            "properties": {
              "diffServMeterNextFree": {
                "type": "string",
                "description": "This object contains an unused value for diffServMeterId, or a\n          zero to indicate that none exist.",
                "x-yang-type": "DIFFSERV-MIB:IndexIntegerNextFree",
                "readOnly": true
              }
            },
            "readOnly": true
          },
          "diffServTBParam": {
            "type": "object",
            "description": "This object contains an unused value for diffServTBParamId, or a\n          zero to indicate that none exist.",
            "properties": {
              "diffServTBParamNextFree": {
                "type": "string",
                "description": "This object contains an unused value for diffServTBParamId, or a\n          zero to indicate that none exist.",
                "x-yang-type": "DIFFSERV-MIB:IndexIntegerNextFree",
                "readOnly": true
              }
            },
            "readOnly": true
          },
          "diffServAction": {
            "type": "object",
            "description": "This object contains an unused value for diffServActionId, or a\n          zero to indicate that none exist.",
            "properties": {
              "diffServActionNextFree": {
                "type": "string",
                "description": "This object contains an unused value for diffServActionId, or a\n          zero to indicate that none exist.",
                "x-yang-type": "DIFFSERV-MIB:IndexIntegerNextFree",
                "readOnly": true
              },
              "diffServCountActNextFree": {
                "type": "string",
                "description": "This object contains an unused value for\n          diffServCountActId, or a zero to indicate that none exist.",
                "x-yang-type": "DIFFSERV-MIB:IndexIntegerNextFree",
                "readOnly": true
              }
            },
            "readOnly": true
          },
          "diffServAlgDrop": {
            "type": "object",
            "description": "This object contains an unused value for diffServAlgDropId, or a\n          zero to indicate that none exist.",
            "properties": {
              "diffServAlgDropNextFree": {
                "type": "string",
                "description": "This object contains an unused value for diffServAlgDropId, or a\n          zero to indicate that none exist.",
                "x-yang-type": "DIFFSERV-MIB:IndexIntegerNextFree",
                "readOnly": true
              },
              "diffServRandomDropNextFree": {
                "type": "string",
                "description": "This object contains an unused value for diffServRandomDropId,\n          or a zero to indicate that none exist.",
                "x-yang-type": "DIFFSERV-MIB:IndexIntegerNextFree",
                "readOnly": true
              }
            },
            "readOnly": true
          },
          "diffServQueue": {
            "type": "object",
            "description": "This object contains an unused value for diffServQId, or a zero\n          to indicate that none exist.",
            "properties": {
              "diffServQNextFree": {
                "type": "string",
                "description": "This object contains an unused value for diffServQId, or a zero\n          to indicate that none exist.",
                "x-yang-type": "DIFFSERV-MIB:IndexIntegerNextFree",
                "readOnly": true
              }
            },
            "readOnly": true
          },
          "diffServScheduler": {
            "type": "object",
            "description": "This object contains an unused value for diffServSchedulerId, or\n          a zero to indicate that none exist.",
            "properties": {
              "diffServSchedulerNextFree": {
                "type": "string",
                "description": "This object contains an unused value for diffServSchedulerId, or\n          a zero to indicate that none exist.",
                "x-yang-type": "DIFFSERV-MIB:IndexIntegerNextFree",
                "readOnly": true
              },
              "diffServMinRateNextFree": {
                "type": "string",
                "description": "This object contains an unused value for diffServMinRateId, or a\n          zero to indicate that none exist.",
                "x-yang-type": "DIFFSERV-MIB:IndexIntegerNextFree",
                "readOnly": true
              },
              "diffServMaxRateNextFree": {
                "type": "string",
                "description": "This object contains an unused value for diffServMaxRateId, or a\n          zero to indicate that none exist.",
                "x-yang-type": "DIFFSERV-MIB:IndexIntegerNextFree",
                "readOnly": true
              }
            },
            "readOnly": true
          },
          "diffServDataPathTable": {
            "type": "object",
            "description": "The data path table contains RowPointers indicating the start of\n        the functional data path for each interface and traffic direction\n        in this device. These may merge, or be separated into parallel\n        data paths.",
            "properties": {
              "diffServDataPathEntry": {
                "type": "array",
                "description": "diffServDataPathEntry",
                "items": {
                  "type": "object",
                  "properties": {
                    "ifIndex": {
                      "type": "string",
                      "description": "ifIndex",
                      "x-yang-type": "leafref",
                      "readOnly": true
                    },
                    "diffServDataPathIfDirection": {
                      "type": "string",
                      "description": "IfDirection specifies whether the reception or transmission path\n            for this interface is in view.",
                      "x-yang-type": "DIFFSERV-MIB:IfDirection",
                      "readOnly": true
                    },
                    "diffServDataPathStart": {
                      "type": "string",
                      "description": "This selects the first Differentiated Services Functional Data\n            Path Element to handle traffic for this data path. This\n            RowPointer should point to an instance of one of:\n              diffServClfrEntry\n              diffServMeterEntry\n              diffServActionEntry\n              diffServAlgDropEntry\n              diffServQEntry\n            \n            A value of zeroDotZero in this attribute indicates that no\n            Differentiated Services treatment is performed on traffic of this\n            data path. A pointer with the value zeroDotZero normally\n            terminates a functional data path.\n            \n            Setting this to point to a target that does not exist results in\n            an inconsistentValue error.  If the row pointed to is removed or\n            becomes inactive by other means, the treatment is as if this\n            attribute contains a value of zeroDotZero.",
                      "x-yang-type": "snmpv2-tc:RowPointer",
                      "readOnly": true
                    },
                    "diffServDataPathStorage": {
                      "type": "string",
                      "description": "The storage type for this conceptual row.  Conceptual rows\n            having the value 'permanent' need not allow write-access to any\n            columnar objects in the row.",
                      "x-yang-type": "snmpv2-tc:StorageType",
                      "readOnly": true
                    },
                    "diffServDataPathStatus": {
                      "type": "string",
                      "description": "The status of this conceptual row. All writable objects in this\n            row may be modified at any time.",
                      "x-yang-type": "snmpv2-tc:RowStatus",
                      "readOnly": true
                    }
                  }
                },
                "readOnly": true
              }
            },
            "readOnly": true
          },
          "diffServClfrTable": {
            "type": "object",
            "description": "diffServClfrTable",
            "properties": {
              "diffServClfrEntry": {
                "type": "array",
                "description": "An entry in the classifier table describes a single classifier.\n          All classifier elements belonging to the same classifier use the\n          classifier's diffServClfrId as part of their index.",
                "items": {
                  "type": "object",
                  "properties": {
                    "diffServClfrId": {
                      "type": "string",
                      "description": "An index that enumerates the classifier entries.  Managers\n            should obtain new values for row creation in this table by\n            reading diffServClfrNextFree.",
                      "x-yang-type": "DIFFSERV-MIB:IndexInteger",
                      "readOnly": true
                    },
                    "diffServClfrStorage": {
                      "type": "string",
                      "description": "The storage type for this conceptual row.  Conceptual rows\n            having the value 'permanent' need not allow write-access to any\n            columnar objects in the row.",
                      "x-yang-type": "snmpv2-tc:StorageType",
                      "readOnly": true
                    },
                    "diffServClfrStatus": {
                      "type": "string",
                      "description": "The status of this conceptual row. All writable objects in this\n            row may be modified at any time. Setting this variable to\n            'destroy' when the MIB contains one or more RowPointers pointing\n            to it results in destruction being delayed until the row is no\n            longer used.",
                      "x-yang-type": "snmpv2-tc:RowStatus",
                      "readOnly": true
                    }
                  }
                },
                "readOnly": true
              }
            },
            "readOnly": true
          },
          "diffServClfrElementTable": {
            "type": "object",
            "description": "diffServClfrElementTable",
            "properties": {
              "diffServClfrElementEntry": {
                "type": "array",
                "description": "An entry in the classifier element table describes a single\n          element of the classifier.",
                "items": {
                  "type": "object",
                  "properties": {
                    "diffServClfrId": {
                      "type": "string",
                      "description": "diffServClfrId",
                      "x-yang-type": "leafref",
                      "readOnly": true
                    },
                    "diffServClfrElementId": {
                      "type": "string",
                      "description": "An index that enumerates the Classifier Element entries.\n            Managers obtain new values for row creation in this table by\n            reading diffServClfrElementNextFree.",
                      "x-yang-type": "DIFFSERV-MIB:IndexInteger",
                      "readOnly": true
                    },
                    "diffServClfrElementPrecedence": {
                      "type": "integer",
                      "description": "The relative order in which classifier elements are applied:\n            higher numbers represent classifier element with higher\n            precedence.  Classifier elements with the same order must be\n            unambiguous i.e. they must define non-overlapping patterns, and\n            are considered to be applied simultaneously to the traffic\n            stream. Classifier elements with different order may overlap in\n            their filters:  the classifier element with the highest order\n            that matches is taken.\n            \n            On a given interface, there must be a complete classifier in\n            place at all times in the ingress direction.  This means one or\n            more filters must match any possible pattern. There is no such\n            \n            \n            \n            requirement in the egress direction.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "diffServClfrElementNext": {
                      "type": "string",
                      "description": "This attribute provides one branch of the fan-out functionality\n            of a classifier described in the Informal Differentiated Services\n            Model section 4.1.\n            \n            This selects the next Differentiated Services Functional Data\n            Path Element to handle traffic for this data path. This\n            RowPointer should point to an instance of one of:\n              diffServClfrEntry\n              diffServMeterEntry\n              diffServActionEntry\n              diffServAlgDropEntry\n              diffServQEntry\n            \n            A value of zeroDotZero in this attribute indicates no further\n            Differentiated Services treatment is performed on traffic of this\n            data path. The use of zeroDotZero is the normal usage for the\n            last functional data path element of the current data path.\n            \n            Setting this to point to a target that does not exist results in\n            an inconsistentValue error.  If the row pointed to is removed or\n            becomes inactive by other means, the treatment is as if this\n            attribute contains a value of zeroDotZero.",
                      "x-yang-type": "snmpv2-tc:RowPointer",
                      "readOnly": true
                    },
                    "diffServClfrElementSpecific": {
                      "type": "string",
                      "description": "A pointer to a valid entry in another table, filter table, that\n            describes the applicable classification parameters, e.g. an entry\n            in diffServMultiFieldClfrTable.\n            \n            The value zeroDotZero is interpreted to match anything not\n            matched by another classifier element - only one such entry may\n            exist for each classifier.\n            \n            Setting this to point to a target that does not exist results in\n            an inconsistentValue error.  If the row pointed to is removed or\n            \n            \n            \n            becomes inactive by other means, the element is ignored.",
                      "x-yang-type": "snmpv2-tc:RowPointer",
                      "readOnly": true
                    },
                    "diffServClfrElementStorage": {
                      "type": "string",
                      "description": "The storage type for this conceptual row.  Conceptual rows\n            having the value 'permanent' need not allow write-access to any\n            columnar objects in the row.",
                      "x-yang-type": "snmpv2-tc:StorageType",
                      "readOnly": true
                    },
                    "diffServClfrElementStatus": {
                      "type": "string",
                      "description": "The status of this conceptual row. All writable objects in this\n            row may be modified at any time. Setting this variable to\n            'destroy' when the MIB contains one or more RowPointers pointing\n            to it results in destruction being delayed until the row is no\n            longer used.",
                      "x-yang-type": "snmpv2-tc:RowStatus",
                      "readOnly": true
                    }
                  }
                },
                "readOnly": true
              }
            },
            "readOnly": true
          },
          "diffServMultiFieldClfrTable": {
            "type": "object",
            "description": "A table of IP Multi-field Classifier filter entries that a\n        \n        \n        \n        system may use to identify IP traffic.",
            "properties": {
              "diffServMultiFieldClfrEntry": {
                "type": "array",
                "description": "An IP Multi-field Classifier entry describes a single filter.",
                "items": {
                  "type": "object",
                  "properties": {
                    "diffServMultiFieldClfrId": {
                      "type": "string",
                      "description": "An index that enumerates the MultiField Classifier filter\n            entries.  Managers obtain new values for row creation in this\n            table by reading diffServMultiFieldClfrNextFree.",
                      "x-yang-type": "DIFFSERV-MIB:IndexInteger",
                      "readOnly": true
                    },
                    "diffServMultiFieldClfrAddrType": {
                      "type": "string",
                      "description": "The type of IP address used by this classifier entry.  While\n            other types of addresses are defined in the InetAddressType\n            \n            \n            \n            textual convention, and DNS names, a classifier can only look at\n            packets on the wire. Therefore, this object is limited to IPv4\n            and IPv6 addresses.",
                      "x-yang-type": "inet-address:InetAddressType",
                      "readOnly": true
                    },
                    "diffServMultiFieldClfrDstAddr": {
                      "type": "string",
                      "description": "The IP address to match against the packet's destination IP\n            address. This may not be a DNS name, but may be an IPv4 or IPv6\n            prefix.  diffServMultiFieldClfrDstPrefixLength indicates the\n            number of bits that are relevant.",
                      "x-yang-type": "inet-address:InetAddress",
                      "readOnly": true
                    },
                    "diffServMultiFieldClfrDstPrefixLength": {
                      "type": "string",
                      "description": "The length of the CIDR Prefix carried in\n            diffServMultiFieldClfrDstAddr. In IPv4 addresses, a length of 0\n            indicates a match of any address; a length of 32 indicates a\n            match of a single host address, and a length between 0 and 32\n            indicates the use of a CIDR Prefix. IPv6 is similar, except that\n            prefix lengths range from 0..128.",
                      "x-yang-type": "inet-address:InetAddressPrefixLength",
                      "readOnly": true
                    },
                    "diffServMultiFieldClfrSrcAddr": {
                      "type": "string",
                      "description": "The IP address to match against the packet's source IP address.\n            This may not be a DNS name, but may be an IPv4 or IPv6 prefix.\n            diffServMultiFieldClfrSrcPrefixLength indicates the number of\n            bits that are relevant.",
                      "x-yang-type": "inet-address:InetAddress",
                      "readOnly": true
                    },
                    "diffServMultiFieldClfrSrcPrefixLength": {
                      "type": "string",
                      "description": "The length of the CIDR Prefix carried in\n            diffServMultiFieldClfrSrcAddr. In IPv4 addresses, a length of 0\n            indicates a match of any address; a length of 32 indicates a\n            match of a single host address, and a length between 0 and 32\n            indicates the use of a CIDR Prefix. IPv6 is similar, except that\n            prefix lengths range from 0..128.",
                      "x-yang-type": "inet-address:InetAddressPrefixLength",
                      "readOnly": true
                    },
                    "diffServMultiFieldClfrDscp": {
                      "type": "string",
                      "description": "The value that the DSCP in the packet must have to match this\n            entry. A value of -1 indicates that a specific DSCP value has not\n            been defined and thus all DSCP values are considered a match.",
                      "x-yang-type": "diffserv-dscp:DscpOrAny",
                      "readOnly": true
                    },
                    "diffServMultiFieldClfrFlowId": {
                      "type": "integer",
                      "description": "The flow identifier in an IPv6 header.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "diffServMultiFieldClfrProtocol": {
                      "type": "integer",
                      "description": "The IP protocol to match against the IPv4 protocol number or the\n            IPv6 Next- Header number in the packet. A value of 255 means\n            match all.  Note the protocol number of 255 is reserved by IANA,\n            and Next-Header number of 0 is used in IPv6.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "diffServMultiFieldClfrDstL4PortMin": {
                      "type": "string",
                      "description": "The minimum value that the layer-4 destination port number in\n            the packet must have in order to match this classifier entry.",
                      "format": "inet:port-number",
                      "readOnly": true
                    },
                    "diffServMultiFieldClfrDstL4PortMax": {
                      "type": "string",
                      "description": "The maximum value that the layer-4 destination port number in\n            the packet must have in order to match this classifier entry.\n            This value must be equal to or greater than the value specified\n            for this entry in diffServMultiFieldClfrDstL4PortMin.",
                      "format": "inet:port-number",
                      "readOnly": true
                    },
                    "diffServMultiFieldClfrSrcL4PortMin": {
                      "type": "string",
                      "description": "The minimum value that the layer-4 source port number in the\n            packet must have in order to match this classifier entry.",
                      "format": "inet:port-number",
                      "readOnly": true
                    },
                    "diffServMultiFieldClfrSrcL4PortMax": {
                      "type": "string",
                      "description": "The maximum value that the layer-4 source port number in the\n            packet must have in order to match this classifier entry. This\n            value must be equal to or greater than the value specified for\n            this entry in diffServMultiFieldClfrSrcL4PortMin.",
                      "format": "inet:port-number",
                      "readOnly": true
                    },
                    "diffServMultiFieldClfrStorage": {
                      "type": "string",
                      "description": "The storage type for this conceptual row.  Conceptual rows\n            having the value 'permanent' need not allow write-access to any\n            columnar objects in the row.",
                      "x-yang-type": "snmpv2-tc:StorageType",
                      "readOnly": true
                    },
                    "diffServMultiFieldClfrStatus": {
                      "type": "string",
                      "description": "The status of this conceptual row. All writable objects in this\n            row may be modified at any time. Setting this variable to\n            'destroy' when the MIB contains one or more RowPointers pointing\n            to it results in destruction being delayed until the row is no\n            longer used.",
                      "x-yang-type": "snmpv2-tc:RowStatus",
                      "readOnly": true
                    }
                  }
                },
                "readOnly": true
              }
            },
            "readOnly": true
          },
          "diffServMeterTable": {
            "type": "object",
            "description": "diffServMeterTable",
            "properties": {
              "diffServMeterEntry": {
                "type": "array",
                "description": "An entry in the meter table describes a single conformance level\n          of a meter.",
                "items": {
                  "type": "object",
                  "properties": {
                    "diffServMeterId": {
                      "type": "string",
                      "description": "An index that enumerates the Meter entries.  Managers obtain new\n            values for row creation in this table by reading\n            diffServMeterNextFree.",
                      "x-yang-type": "DIFFSERV-MIB:IndexInteger",
                      "readOnly": true
                    },
                    "diffServMeterSucceedNext": {
                      "type": "string",
                      "description": "If the traffic does conform, this selects the next\n            Differentiated Services Functional Data Path element to handle\n            traffic for this data path. This RowPointer should point to an\n            instance of one of:\n              diffServClfrEntry\n              diffServMeterEntry\n              diffServActionEntry\n              diffServAlgDropEntry\n              diffServQEntry\n            \n            A value of zeroDotZero in this attribute indicates that no\n            further Differentiated Services treatment is performed on traffic\n            of this data path. The use of zeroDotZero is the normal usage for\n            the last functional data path element of the current data path.\n            \n            Setting this to point to a target that does not exist results in\n            an inconsistentValue error.  If the row pointed to is removed or\n            becomes inactive by other means, the treatment is as if this\n            attribute contains a value of zeroDotZero.",
                      "x-yang-type": "snmpv2-tc:RowPointer",
                      "readOnly": true
                    },
                    "diffServMeterFailNext": {
                      "type": "string",
                      "description": "If the traffic does not conform, this selects the next\n            Differentiated Services Functional Data Path element to handle\n            traffic for this data path. This RowPointer should point to an\n            instance of one of:\n              diffServClfrEntry\n              diffServMeterEntry\n            \n            \n            \n              diffServActionEntry\n              diffServAlgDropEntry\n              diffServQEntry\n            \n            A value of zeroDotZero in this attribute indicates no further\n            Differentiated Services treatment is performed on traffic of this\n            data path. The use of zeroDotZero is the normal usage for the\n            last functional data path element of the current data path.\n            \n            Setting this to point to a target that does not exist results in\n            an inconsistentValue error.  If the row pointed to is removed or\n            becomes inactive by other means, the treatment is as if this\n            attribute contains a value of zeroDotZero.",
                      "x-yang-type": "snmpv2-tc:RowPointer",
                      "readOnly": true
                    },
                    "diffServMeterSpecific": {
                      "type": "string",
                      "description": "This indicates the behavior of the meter by pointing to an entry\n            containing detailed parameters. Note that entries in that\n            specific table must be managed explicitly.\n            \n            For example, diffServMeterSpecific may point to an entry in\n            diffServTBParamTable, which contains an instance of a single set\n            of Token Bucket parameters.\n            \n            Setting this to point to a target that does not exist results in\n            an inconsistentValue error.  If the row pointed to is removed or\n            becomes inactive by other means, the meter always succeeds.",
                      "x-yang-type": "snmpv2-tc:RowPointer",
                      "readOnly": true
                    },
                    "diffServMeterStorage": {
                      "type": "string",
                      "description": "The storage type for this conceptual row.  Conceptual rows\n            having the value 'permanent' need not allow write-access to any\n            columnar objects in the row.",
                      "x-yang-type": "snmpv2-tc:StorageType",
                      "readOnly": true
                    },
                    "diffServMeterStatus": {
                      "type": "string",
                      "description": "The status of this conceptual row. All writable objects in this\n            row may be modified at any time. Setting this variable to\n            'destroy' when the MIB contains one or more RowPointers pointing\n            to it results in destruction being delayed until the row is no\n            longer used.",
                      "x-yang-type": "snmpv2-tc:RowStatus",
                      "readOnly": true
                    }
                  }
                },
                "readOnly": true
              }
            },
            "readOnly": true
          },
          "diffServTBParamTable": {
            "type": "object",
            "description": "This table enumerates a single set of token bucket meter\n        parameters that a system may use to police a stream of traffic.\n        Such meters are modeled here as having a single rate and a single\n        burst size. Multiple entries are used when multiple rates/burst\n        sizes are needed.",
            "properties": {
              "diffServTBParamEntry": {
                "type": "array",
                "description": "An entry that describes a single set of token bucket\n          parameters.",
                "items": {
                  "type": "object",
                  "properties": {
                    "diffServTBParamId": {
                      "type": "string",
                      "description": "An index that enumerates the Token Bucket Parameter entries.\n            Managers obtain new values for row creation in this table by\n            reading diffServTBParamNextFree.",
                      "x-yang-type": "DIFFSERV-MIB:IndexInteger",
                      "readOnly": true
                    },
                    "diffServTBParamType": {
                      "type": "string",
                      "description": "The Metering algorithm associated with the Token Bucket\n            parameters.  zeroDotZero indicates this is unknown.\n            \n            Standard values for generic algorithms:\n            diffServTBParamSimpleTokenBucket, diffServTBParamAvgRate,\n            diffServTBParamSrTCMBlind, diffServTBParamSrTCMAware,\n            diffServTBParamTrTCMBlind, diffServTBParamTrTCMAware, and\n            diffServTBParamTswTCM are specified in this MIB as OBJECT-\n            IDENTITYs; additional values may be further specified in other\n            MIBs.",
                      "x-yang-type": "snmpv2-tc:AutonomousType",
                      "readOnly": true
                    },
                    "diffServTBParamRate": {
                      "type": "integer",
                      "description": "The token-bucket rate, in kilobits per second (kbps). This\n            attribute is used for:\n            1. CIR in RFC 2697 for srTCM\n            2. CIR and PIR in RFC 2698 for trTCM\n            3. CTR and PTR in RFC 2859 for TSWTCM\n            4. AverageRate in RFC 3290.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "diffServTBParamBurstSize": {
                      "type": "string",
                      "description": "The maximum number of bytes in a single transmission burst. This\n            attribute is used for:\n            1. CBS and EBS in RFC 2697 for srTCM\n            2. CBS and PBS in RFC 2698 for trTCM\n            3. Burst Size in RFC 3290.",
                      "x-yang-type": "integrated-services:BurstSize",
                      "readOnly": true
                    },
                    "diffServTBParamInterval": {
                      "type": "integer",
                      "description": "The time interval used with the token bucket.  For:\n            1. Average Rate Meter, the Informal Differentiated Services Model\n               section 5.2.1, - Delta.\n            2. Simple Token Bucket Meter, the Informal Differentiated\n               Services Model section 5.1, - time interval t.\n            3. RFC 2859 TSWTCM, - AVG_INTERVAL.\n            4. RFC 2697 srTCM, RFC 2698 trTCM, - token bucket update time\n               interval.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "diffServTBParamStorage": {
                      "type": "string",
                      "description": "The storage type for this conceptual row.  Conceptual rows\n            having the value 'permanent' need not allow write-access to any\n            columnar objects in the row.",
                      "x-yang-type": "snmpv2-tc:StorageType",
                      "readOnly": true
                    },
                    "diffServTBParamStatus": {
                      "type": "string",
                      "description": "The status of this conceptual row. All writable objects in this\n            row may be modified at any time. Setting this variable to\n            'destroy' when the MIB contains one or more RowPointers pointing\n            to it results in destruction being delayed until the row is no\n            longer used.",
                      "x-yang-type": "snmpv2-tc:RowStatus",
                      "readOnly": true
                    }
                  }
                },
                "readOnly": true
              }
            },
            "readOnly": true
          },
          "diffServActionTable": {
            "type": "object",
            "description": "The Action Table enumerates actions that can be performed to a\n        stream of traffic. Multiple actions can be concatenated. For\n        example, traffic exiting from a meter may be counted, marked, and\n        potentially dropped before entering a queue.\n        \n        Specific actions are indicated by diffServActionSpecific which\n        points to an entry of a specific action type parameterizing the\n        action in detail.",
            "properties": {
              "diffServActionEntry": {
                "type": "array",
                "description": "Each entry in the action table allows description of one\n          specific action to be applied to traffic.",
                "items": {
                  "type": "object",
                  "properties": {
                    "diffServActionId": {
                      "type": "string",
                      "description": "An index that enumerates the Action entries.  Managers obtain\n            new values for row creation in this table by reading\n            diffServActionNextFree.",
                      "x-yang-type": "DIFFSERV-MIB:IndexInteger",
                      "readOnly": true
                    },
                    "diffServActionInterface": {
                      "type": "string",
                      "description": "The interface index (value of ifIndex) that this action occurs\n            on. This may be derived from the diffServDataPathStartEntry's\n            index by extension through the various RowPointers. However, as\n            this may be difficult for a network management station, it is\n            placed here as well.  If this is indeterminate, the value is\n            zero.\n            \n            This is of especial relevance when reporting the counters which\n            may apply to traffic crossing an interface:\n               diffServCountActOctets,\n               diffServCountActPkts,\n               diffServAlgDropOctets,\n               diffServAlgDropPkts,\n               diffServAlgRandomDropOctets, and\n               diffServAlgRandomDropPkts.\n            \n            It is also especially relevant to the queue and scheduler which\n            may be subsequently applied.",
                      "x-yang-type": "if-mib:InterfaceIndexOrZero",
                      "readOnly": true
                    },
                    "diffServActionNext": {
                      "type": "string",
                      "description": "This selects the next Differentiated Services Functional Data\n            Path Element to handle traffic for this data path. This\n            RowPointer should point to an instance of one of:\n              diffServClfrEntry\n              diffServMeterEntry\n              diffServActionEntry\n              diffServAlgDropEntry\n              diffServQEntry\n            \n            A value of zeroDotZero in this attribute indicates no further\n            Differentiated Services treatment is performed on traffic of this\n            data path. The use of zeroDotZero is the normal usage for the\n            last functional data path element of the current data path.\n            \n            Setting this to point to a target that does not exist results in\n            an inconsistentValue error.  If the row pointed to is removed or\n            becomes inactive by other means, the treatment is as if this\n            attribute contains a value of zeroDotZero.",
                      "x-yang-type": "snmpv2-tc:RowPointer",
                      "readOnly": true
                    },
                    "diffServActionSpecific": {
                      "type": "string",
                      "description": "A pointer to an object instance providing additional information\n            for the type of action indicated by this action table entry.\n            \n            For the standard actions defined by this MIB module, this should\n            point to either a diffServDscpMarkActEntry or a\n            diffServCountActEntry. For other actions, it may point to an\n            object instance defined in some other MIB.\n            \n            Setting this to point to a target that does not exist results in\n            an inconsistentValue error.  If the row pointed to is removed or\n            becomes inactive by other means, the Meter should be treated as\n            if it were not present.  This may lead to incorrect policy\n            behavior.",
                      "x-yang-type": "snmpv2-tc:RowPointer",
                      "readOnly": true
                    },
                    "diffServActionStorage": {
                      "type": "string",
                      "description": "The storage type for this conceptual row.  Conceptual rows\n            having the value 'permanent' need not allow write-access to any\n            columnar objects in the row.",
                      "x-yang-type": "snmpv2-tc:StorageType",
                      "readOnly": true
                    },
                    "diffServActionStatus": {
                      "type": "string",
                      "description": "The status of this conceptual row. All writable objects in this\n            row may be modified at any time. Setting this variable to\n            'destroy' when the MIB contains one or more RowPointers pointing\n            to it results in destruction being delayed until the row is no\n            longer used.",
                      "x-yang-type": "snmpv2-tc:RowStatus",
                      "readOnly": true
                    }
                  }
                },
                "readOnly": true
              }
            },
            "readOnly": true
          },
          "diffServDscpMarkActTable": {
            "type": "object",
            "description": "This table enumerates specific DSCPs used for marking or\n        remarking the DSCP field of IP packets. The entries of this table\n        may be referenced by a diffServActionSpecific attribute.",
            "properties": {
              "diffServDscpMarkActEntry": {
                "type": "array",
                "description": "An entry in the DSCP mark action table that describes a single\n          DSCP used for marking.",
                "items": {
                  "type": "object",
                  "properties": {
                    "diffServDscpMarkActDscp": {
                      "type": "string",
                      "description": "The DSCP that this Action will store into the DSCP field of the\n            subject. It is quite possible that the only packets subject to\n            this Action are already marked with this DSCP. Note also that\n            Differentiated Services processing may result in packet being\n            marked on both ingress to a network and on egress from it, and\n            that ingress and egress can occur in the same router.",
                      "format": "inet:dscp",
                      "readOnly": true
                    }
                  }
                },
                "readOnly": true
              }
            },
            "readOnly": true
          },
          "diffServCountActTable": {
            "type": "object",
            "description": "This table contains counters for all the traffic passing through\n        an action element.",
            "properties": {
              "diffServCountActEntry": {
                "type": "array",
                "description": "An entry in the count action table describes a single set of\n          traffic counters.",
                "items": {
                  "type": "object",
                  "properties": {
                    "diffServCountActId": {
                      "type": "string",
                      "description": "An index that enumerates the Count Action entries.  Managers\n            obtain new values for row creation in this table by reading\n            \n            \n            \n            diffServCountActNextFree.",
                      "x-yang-type": "DIFFSERV-MIB:IndexInteger",
                      "readOnly": true
                    },
                    "diffServCountActOctets": {
                      "type": "integer",
                      "description": "The number of octets at the Action data path element.\n            \n            Discontinuities in the value of this counter can occur at re-\n            initialization of the management system and at other times as\n            indicated by the value of ifCounterDiscontinuityTime on the\n            relevant interface.",
                      "minimum": 0,
                      "readOnly": true
                    },
                    "diffServCountActPkts": {
                      "type": "integer",
                      "description": "The number of packets at the Action data path element.\n            \n            Discontinuities in the value of this counter can occur at re-\n            initialization of the management system and at other times as\n            indicated by the value of ifCounterDiscontinuityTime on the\n            relevant interface.",
                      "minimum": 0,
                      "readOnly": true
                    },
                    "diffServCountActStorage": {
                      "type": "string",
                      "description": "The storage type for this conceptual row.  Conceptual rows\n            having the value 'permanent' need not allow write-access to any\n            columnar objects in the row.",
                      "x-yang-type": "snmpv2-tc:StorageType",
                      "readOnly": true
                    },
                    "diffServCountActStatus": {
                      "type": "string",
                      "description": "The status of this conceptual row. All writable objects in this\n            row may be modified at any time. Setting this variable to\n            'destroy' when the MIB contains one or more RowPointers pointing\n            \n            \n            \n            to it results in destruction being delayed until the row is no\n            longer used.",
                      "x-yang-type": "snmpv2-tc:RowStatus",
                      "readOnly": true
                    }
                  }
                },
                "readOnly": true
              }
            },
            "readOnly": true
          },
          "diffServAlgDropTable": {
            "type": "object",
            "description": "The algorithmic drop table contains entries describing an\n        element that drops packets according to some algorithm.",
            "properties": {
              "diffServAlgDropEntry": {
                "type": "array",
                "description": "An entry describes a process that drops packets according to\n          some algorithm. Further details of the algorithm type are to be\n          found in diffServAlgDropType and with more detail parameter entry\n          pointed to by diffServAlgDropSpecific when necessary.",
                "items": {
                  "type": "object",
                  "properties": {
                    "diffServAlgDropId": {
                      "type": "string",
                      "description": "An index that enumerates the Algorithmic Dropper entries.\n            Managers obtain new values for row creation in this table by\n            reading diffServAlgDropNextFree.",
                      "x-yang-type": "DIFFSERV-MIB:IndexInteger",
                      "readOnly": true
                    },
                    "diffServAlgDropType": {
                      "type": "string",
                      "description": "The type of algorithm used by this dropper. The value other(1)\n            requires further specification in some other MIB module.\n            \n            In the tailDrop(2) algorithm, diffServAlgDropQThreshold\n            represents the maximum depth of the queue, pointed to by\n            diffServAlgDropQMeasure, beyond which all newly arriving packets\n            will be dropped.\n            \n            In the headDrop(3) algorithm, if a packet arrives when the\n            current depth of the queue, pointed to by\n            diffServAlgDropQMeasure, is at diffServAlgDropQThreshold, packets\n            currently at the head of the queue are dropped to make room for\n            the new packet to be enqueued at the tail of the queue.\n            \n            In the randomDrop(4) algorithm, on packet arrival, an Active\n            Queue Management algorithm is executed which may randomly drop a\n            packet. This algorithm may be proprietary, and it may drop either\n            the arriving packet or another packet in the queue.\n            diffServAlgDropSpecific points to a diffServRandomDropEntry that\n            describes the algorithm. For this algorithm,\n            \n            \n            \n            diffServAlgDropQThreshold is understood to be the absolute\n            maximum size of the queue and additional parameters are described\n            in diffServRandomDropTable.\n            \n            The alwaysDrop(5) algorithm is as its name specifies; always\n            drop. In this case, the other configuration values in this Entry\n            are not meaningful; There is no useful 'next' processing step,\n            there is no queue, and parameters describing the queue are not\n            useful. Therefore, diffServAlgDropNext, diffServAlgDropMeasure,\n            and diffServAlgDropSpecific are all zeroDotZero.",
                      "readOnly": true
                    },
                    "diffServAlgDropNext": {
                      "type": "string",
                      "description": "This selects the next Differentiated Services Functional Data\n            Path Element to handle traffic for this data path. This\n            RowPointer should point to an instance of one of:\n              diffServClfrEntry\n              diffServMeterEntry\n              diffServActionEntry\n              diffServQEntry\n            \n            A value of zeroDotZero in this attribute indicates no further\n            Differentiated Services treatment is performed on traffic of this\n            data path. The use of zeroDotZero is the normal usage for the\n            last functional data path element of the current data path.\n            \n            When diffServAlgDropType is alwaysDrop(5), this object is\n            ignored.\n            \n            Setting this to point to a target that does not exist results in\n            an inconsistentValue error.  If the row pointed to is removed or\n            becomes inactive by other means, the treatment is as if this\n            attribute contains a value of zeroDotZero.",
                      "x-yang-type": "snmpv2-tc:RowPointer",
                      "readOnly": true
                    },
                    "diffServAlgDropQMeasure": {
                      "type": "string",
                      "description": "Points to an entry in the diffServQTable to indicate the queue\n            that a drop algorithm is to monitor when deciding whether to drop\n            a packet. If the row pointed to does not exist, the algorithmic\n            dropper element is considered inactive.\n            \n            \n            \n            Setting this to point to a target that does not exist results in\n            an inconsistentValue error.  If the row pointed to is removed or\n            becomes inactive by other means, the treatment is as if this\n            attribute contains a value of zeroDotZero.",
                      "x-yang-type": "snmpv2-tc:RowPointer",
                      "readOnly": true
                    },
                    "diffServAlgDropQThreshold": {
                      "type": "integer",
                      "description": "A threshold on the depth in bytes of the queue being measured at\n            which a trigger is generated to the dropping algorithm, unless\n            diffServAlgDropType is alwaysDrop(5) where this object is\n            ignored.\n            \n            For the tailDrop(2) or headDrop(3) algorithms, this represents\n            the depth of the queue, pointed to by diffServAlgDropQMeasure, at\n            which the drop action will take place. Other algorithms will need\n            to define their own semantics for this threshold.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "diffServAlgDropSpecific": {
                      "type": "string",
                      "description": "Points to a table entry that provides further detail regarding a\n            drop algorithm.\n            \n            Entries with diffServAlgDropType equal to other(1) may have this\n            point to a table defined in another MIB module.\n            \n            Entries with diffServAlgDropType equal to randomDrop(4) must have\n            this point to an entry in diffServRandomDropTable.\n            \n            For all other algorithms specified in this MIB, this should take\n            the value zeroDotZero.\n            \n            The diffServAlgDropType is authoritative for the type of the drop\n            algorithm and the specific parameters for the drop algorithm\n            needs to be evaluated based on the diffServAlgDropType.\n            \n            Setting this to point to a target that does not exist results in\n            an inconsistentValue error.  If the row pointed to is removed or\n            becomes inactive by other means, the treatment is as if this\n            attribute contains a value of zeroDotZero.",
                      "x-yang-type": "snmpv2-tc:RowPointer",
                      "readOnly": true
                    },
                    "diffServAlgDropOctets": {
                      "type": "integer",
                      "description": "The number of octets that have been deterministically dropped by\n            this drop process.\n            \n            Discontinuities in the value of this counter can occur at re-\n            initialization of the management system and at other times as\n            indicated by the value of ifCounterDiscontinuityTime on the\n            relevant interface.",
                      "minimum": 0,
                      "readOnly": true
                    },
                    "diffServAlgDropPkts": {
                      "type": "integer",
                      "description": "The number of packets that have been deterministically dropped\n            by this drop process.\n            \n            Discontinuities in the value of this counter can occur at re-\n            initialization of the management system and at other times as\n            indicated by the value of ifCounterDiscontinuityTime on the\n            relevant interface.",
                      "minimum": 0,
                      "readOnly": true
                    },
                    "diffServAlgRandomDropOctets": {
                      "type": "integer",
                      "description": "The number of octets that have been randomly dropped by this\n            drop process.  This counter applies, therefore, only to random\n            droppers.\n            \n            Discontinuities in the value of this counter can occur at re-\n            initialization of the management system and at other times as\n            indicated by the value of ifCounterDiscontinuityTime on the\n            relevant interface.",
                      "minimum": 0,
                      "readOnly": true
                    },
                    "diffServAlgRandomDropPkts": {
                      "type": "integer",
                      "description": "The number of packets that have been randomly dropped by this\n            drop process. This counter applies, therefore, only to random\n            droppers.\n            \n            Discontinuities in the value of this counter can occur at re-\n            initialization of the management system and at other times as\n            indicated by the value of ifCounterDiscontinuityTime on the\n            relevant interface.",
                      "minimum": 0,
                      "readOnly": true
                    },
                    "diffServAlgDropStorage": {
                      "type": "string",
                      "description": "The storage type for this conceptual row.  Conceptual rows\n            having the value 'permanent' need not allow write-access to any\n            columnar objects in the row.",
                      "x-yang-type": "snmpv2-tc:StorageType",
                      "readOnly": true
                    },
                    "diffServAlgDropStatus": {
                      "type": "string",
                      "description": "The status of this conceptual row. All writable objects in this\n            row may be modified at any time. Setting this variable to\n            'destroy' when the MIB contains one or more RowPointers pointing\n            to it results in destruction being delayed until the row is no\n            longer used.",
                      "x-yang-type": "snmpv2-tc:RowStatus",
                      "readOnly": true
                    }
                  }
                },
                "readOnly": true
              }
            },
            "readOnly": true
          },
          "diffServRandomDropTable": {
            "type": "object",
            "description": "The random drop table contains entries describing a process that\n        drops packets randomly. Entries in this table are pointed to by\n        diffServAlgDropSpecific.",
            "properties": {
              "diffServRandomDropEntry": {
                "type": "array",
                "description": "An entry describes a process that drops packets according to a\n          random algorithm.",
                "items": {
                  "type": "object",
                  "properties": {
                    "diffServRandomDropId": {
                      "type": "string",
                      "description": "An index that enumerates the Random Drop entries.  Managers\n            obtain new values for row creation in this table by reading\n            diffServRandomDropNextFree.",
                      "x-yang-type": "DIFFSERV-MIB:IndexInteger",
                      "readOnly": true
                    },
                    "diffServRandomDropMinThreshBytes": {
                      "type": "integer",
                      "description": "The average queue depth in bytes, beyond which traffic has a\n            non-zero probability of being dropped. Changes in this variable\n            may or may not be reflected in the reported value of\n            diffServRandomDropMinThreshPkts.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "diffServRandomDropMinThreshPkts": {
                      "type": "integer",
                      "description": "The average queue depth in packets, beyond which traffic has a\n            non-zero probability of being dropped. Changes in this variable\n            may or may not be reflected in the reported value of\n            diffServRandomDropMinThreshBytes.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "diffServRandomDropMaxThreshBytes": {
                      "type": "integer",
                      "description": "The average queue depth beyond which traffic has a probability\n            indicated by diffServRandomDropProbMax of being dropped or\n            marked. Note that this differs from the physical queue limit,\n            which is stored in diffServAlgDropQThreshold. Changes in this\n            variable may or may not be reflected in the reported value of\n            diffServRandomDropMaxThreshPkts.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "diffServRandomDropMaxThreshPkts": {
                      "type": "integer",
                      "description": "The average queue depth beyond which traffic has a probability\n            indicated by diffServRandomDropProbMax of being dropped or\n            marked. Note that this differs from the physical queue limit,\n            which is stored in diffServAlgDropQThreshold. Changes in this\n            variable may or may not be reflected in the reported value of\n            diffServRandomDropMaxThreshBytes.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "diffServRandomDropProbMax": {
                      "type": "integer",
                      "description": "The worst case random drop probability, expressed in drops per\n            thousand packets.\n            \n            For example, if in the worst case every arriving packet may be\n            dropped (100%) for a period, this has the value 1000.\n            Alternatively, if in the worst case only one percent (1%) of\n            traffic may be dropped, it has the value 10.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "diffServRandomDropWeight": {
                      "type": "integer",
                      "description": "The weighting of past history in affecting the Exponentially\n            Weighted Moving Average function that calculates the current\n            average queue depth.  The equation uses\n            diffServRandomDropWeight/65536 as the coefficient for the new\n            sample in the equation, and (65536 -\n            diffServRandomDropWeight)/65536 as the coefficient of the old\n            value.\n            \n            Implementations may limit the values of diffServRandomDropWeight\n            to a subset of the possible range of values, such as powers of\n            two. Doing this would facilitate implementation of the\n            Exponentially Weighted Moving Average using shift instructions or\n            registers.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "diffServRandomDropSamplingRate": {
                      "type": "integer",
                      "description": "The number of times per second the queue is sampled for queue\n            average calculation.  A value of zero is used to mean that the\n            queue is sampled approximately each time a packet is enqueued (or\n            dequeued).",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "diffServRandomDropStorage": {
                      "type": "string",
                      "description": "The storage type for this conceptual row.  Conceptual rows\n            having the value 'permanent' need not allow write-access to any\n            columnar objects in the row.",
                      "x-yang-type": "snmpv2-tc:StorageType",
                      "readOnly": true
                    },
                    "diffServRandomDropStatus": {
                      "type": "string",
                      "description": "The status of this conceptual row. All writable objects in this\n            row may be modified at any time. Setting this variable to\n            'destroy' when the MIB contains one or more RowPointers pointing\n            to it results in destruction being delayed until the row is no\n            longer used.",
                      "x-yang-type": "snmpv2-tc:RowStatus",
                      "readOnly": true
                    }
                  }
                },
                "readOnly": true
              }
            },
            "readOnly": true
          },
          "diffServQTable": {
            "type": "object",
            "description": "The Queue Table enumerates the individual queues.  Note that the\n        MIB models queuing systems as composed of individual queues, one\n        per class of traffic, even though they may in fact be structured\n        as classes of traffic scheduled using a common calendar queue, or\n        in other ways.",
            "properties": {
              "diffServQEntry": {
                "type": "array",
                "description": "An entry in the Queue Table describes a single queue or class of\n          traffic.",
                "items": {
                  "type": "object",
                  "properties": {
                    "diffServQId": {
                      "type": "string",
                      "description": "An index that enumerates the Queue entries.  Managers obtain new\n            values for row creation in this table by reading\n            diffServQNextFree.",
                      "x-yang-type": "DIFFSERV-MIB:IndexInteger",
                      "readOnly": true
                    },
                    "diffServQNext": {
                      "type": "string",
                      "description": "This selects the next Differentiated Services Scheduler.  The\n            RowPointer must point to a diffServSchedulerEntry.\n            \n            A value of zeroDotZero in this attribute indicates an incomplete\n            diffServQEntry instance. In such a case, the entry has no\n            operational effect, since it has no parameters to give it\n            meaning.\n            \n            Setting this to point to a target that does not exist results in\n            an inconsistentValue error.  If the row pointed to is removed or\n            becomes inactive by other means, the treatment is as if this\n            attribute contains a value of zeroDotZero.",
                      "x-yang-type": "snmpv2-tc:RowPointer",
                      "readOnly": true
                    },
                    "diffServQMinRate": {
                      "type": "string",
                      "description": "This RowPointer indicates the diffServMinRateEntry that the\n            scheduler, pointed to by diffServQNext, should use to service\n            this queue.\n            \n            If the row pointed to is zeroDotZero, the minimum rate and\n            priority is unspecified.\n            \n            Setting this to point to a target that does not exist results in\n            an inconsistentValue error.  If the row pointed to is removed or\n            becomes inactive by other means, the treatment is as if this\n            attribute contains a value of zeroDotZero.",
                      "x-yang-type": "snmpv2-tc:RowPointer",
                      "readOnly": true
                    },
                    "diffServQMaxRate": {
                      "type": "string",
                      "description": "This RowPointer indicates the diffServMaxRateEntry that the\n            scheduler, pointed to by diffServQNext, should use to service\n            this queue.\n            \n            If the row pointed to is zeroDotZero, the maximum rate is the\n            line speed of the interface.\n            \n            \n            \n            \n            Setting this to point to a target that does not exist results in\n            an inconsistentValue error.  If the row pointed to is removed or\n            becomes inactive by other means, the treatment is as if this\n            attribute contains a value of zeroDotZero.",
                      "x-yang-type": "snmpv2-tc:RowPointer",
                      "readOnly": true
                    },
                    "diffServQStorage": {
                      "type": "string",
                      "description": "The storage type for this conceptual row.  Conceptual rows\n            having the value 'permanent' need not allow write-access to any\n            columnar objects in the row.",
                      "x-yang-type": "snmpv2-tc:StorageType",
                      "readOnly": true
                    },
                    "diffServQStatus": {
                      "type": "string",
                      "description": "The status of this conceptual row. All writable objects in this\n            row may be modified at any time. Setting this variable to\n            'destroy' when the MIB contains one or more RowPointers pointing\n            to it results in destruction being delayed until the row is no\n            longer used.",
                      "x-yang-type": "snmpv2-tc:RowStatus",
                      "readOnly": true
                    }
                  }
                },
                "readOnly": true
              }
            },
            "readOnly": true
          },
          "diffServSchedulerTable": {
            "type": "object",
            "description": "The Scheduler Table enumerates packet schedulers. Multiple\n        scheduling algorithms can be used on a given data path, with each\n        algorithm described by one diffServSchedulerEntry.",
            "properties": {
              "diffServSchedulerEntry": {
                "type": "array",
                "description": "An entry in the Scheduler Table describing a single instance of\n          a scheduling algorithm.",
                "items": {
                  "type": "object",
                  "properties": {
                    "diffServSchedulerId": {
                      "type": "string",
                      "description": "An index that enumerates the Scheduler entries.  Managers obtain\n            new values for row creation in this table by reading\n            diffServSchedulerNextFree.",
                      "x-yang-type": "DIFFSERV-MIB:IndexInteger",
                      "readOnly": true
                    },
                    "diffServSchedulerNext": {
                      "type": "string",
                      "description": "This selects the next Differentiated Services Functional Data\n            Path Element to handle traffic for this data path. This normally\n            is null (zeroDotZero), or points to a diffServSchedulerEntry or a\n            diffServQEntry.\n            \n            However, this RowPointer may also point to an instance of:\n              diffServClfrEntry,\n              diffServMeterEntry,\n              diffServActionEntry,\n              diffServAlgDropEntry.\n            \n            It would point another diffServSchedulerEntry when implementing\n            multiple scheduler methods for the same data path, such as having\n            one set of queues scheduled by WRR and that group participating\n            in a priority scheduling system in which other queues compete\n            with it in that way.  It might also point to a second scheduler\n            in a hierarchical scheduling system.\n            \n            If the row pointed to is zeroDotZero, no further Differentiated\n            Services treatment is performed on traffic of this data path.\n            \n            Setting this to point to a target that does not exist results in\n            an inconsistentValue error.  If the row pointed to is removed or\n            becomes inactive by other means, the treatment is as if this\n            attribute contains a value of zeroDotZero.",
                      "x-yang-type": "snmpv2-tc:RowPointer",
                      "readOnly": true
                    },
                    "diffServSchedulerMethod": {
                      "type": "string",
                      "description": "The scheduling algorithm used by this Scheduler. zeroDotZero\n            indicates that this is unknown.  Standard values for generic\n            algorithms: diffServSchedulerPriority, diffServSchedulerWRR, and\n            diffServSchedulerWFQ are specified in this MIB; additional values\n            \n            \n            \n            may be further specified in other MIBs.",
                      "x-yang-type": "snmpv2-tc:AutonomousType",
                      "readOnly": true
                    },
                    "diffServSchedulerMinRate": {
                      "type": "string",
                      "description": "This RowPointer indicates the entry in diffServMinRateTable\n            which indicates the priority or minimum output rate from this\n            scheduler. This attribute is used only when there is more than\n            one level of scheduler.\n            \n            When it has the value zeroDotZero, it indicates that no minimum\n            rate or priority is imposed.\n            \n            Setting this to point to a target that does not exist results in\n            an inconsistentValue error.  If the row pointed to is removed or\n            becomes inactive by other means, the treatment is as if this\n            attribute contains a value of zeroDotZero.",
                      "x-yang-type": "snmpv2-tc:RowPointer",
                      "readOnly": true
                    },
                    "diffServSchedulerMaxRate": {
                      "type": "string",
                      "description": "This RowPointer indicates the entry in diffServMaxRateTable\n            which indicates the maximum output rate from this scheduler.\n            When more than one maximum rate applies (eg, when a multi-rate\n            shaper is in view), it points to the first of those rate entries.\n            This attribute is used only when there is more than one level of\n            scheduler.\n            \n            When it has the value zeroDotZero, it indicates that no maximum\n            rate is imposed.\n            \n            Setting this to point to a target that does not exist results in\n            an inconsistentValue error.  If the row pointed to is removed or\n            becomes inactive by other means, the treatment is as if this\n            attribute contains a value of zeroDotZero.",
                      "x-yang-type": "snmpv2-tc:RowPointer",
                      "readOnly": true
                    },
                    "diffServSchedulerStorage": {
                      "type": "string",
                      "description": "The storage type for this conceptual row.  Conceptual rows\n            having the value 'permanent' need not allow write-access to any\n            columnar objects in the row.",
                      "x-yang-type": "snmpv2-tc:StorageType",
                      "readOnly": true
                    },
                    "diffServSchedulerStatus": {
                      "type": "string",
                      "description": "The status of this conceptual row. All writable objects in this\n            row may be modified at any time. Setting this variable to\n            'destroy' when the MIB contains one or more RowPointers pointing\n            to it results in destruction being delayed until the row is no\n            longer used.",
                      "x-yang-type": "snmpv2-tc:RowStatus",
                      "readOnly": true
                    }
                  }
                },
                "readOnly": true
              }
            },
            "readOnly": true
          },
          "diffServMinRateTable": {
            "type": "object",
            "description": "The Minimum Rate Parameters Table enumerates individual sets of\n        scheduling parameter that can be used/reused by Queues and\n        Schedulers.",
            "properties": {
              "diffServMinRateEntry": {
                "type": "array",
                "description": "An entry in the Minimum Rate Parameters Table describes a single\n          set of scheduling parameters for use by one or more queues or\n          schedulers.",
                "items": {
                  "type": "object",
                  "properties": {
                    "diffServMinRateId": {
                      "type": "string",
                      "description": "An index that enumerates the Scheduler Parameter entries.\n            Managers obtain new values for row creation in this table by\n            reading diffServMinRateNextFree.",
                      "x-yang-type": "DIFFSERV-MIB:IndexInteger",
                      "readOnly": true
                    },
                    "diffServMinRatePriority": {
                      "type": "integer",
                      "description": "The priority of this input to the associated scheduler, relative\n            \n            \n            \n            to the scheduler's other inputs. A queue or scheduler with a\n            larger numeric value will be served before another with a smaller\n            numeric value.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "diffServMinRateAbsolute": {
                      "type": "integer",
                      "description": "The minimum absolute rate, in kilobits/sec, that a downstream\n            scheduler element should allocate to this queue. If the value is\n            zero, then there is effectively no minimum rate guarantee. If the\n            value is non-zero, the scheduler will assure the servicing of\n            this queue to at least this rate.\n            \n            Note that this attribute value and that of\n            diffServMinRateRelative are coupled: changes to one will affect\n            the value of the other. They are linked by the following\n            equation, in that setting one will change the other:\n            \n              diffServMinRateRelative =\n                      (diffServMinRateAbsolute*1000000)/ifSpeed\n            \n            or, if appropriate:\n            \n              diffServMinRateRelative = diffServMinRateAbsolute/ifHighSpeed",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "diffServMinRateRelative": {
                      "type": "integer",
                      "description": "The minimum rate that a downstream scheduler element should\n            allocate to this queue, relative to the maximum rate of the\n            interface as reported by ifSpeed or ifHighSpeed, in units of\n            1/1000 of 1. If the value is zero, then there is effectively no\n            minimum rate guarantee. If the value is non-zero, the scheduler\n            will assure the servicing of this queue to at least this rate.\n            \n            Note that this attribute value and that of\n            diffServMinRateAbsolute are coupled: changes to one will affect\n            the value of the other. They are linked by the following\n            equation, in that setting one will change the other:\n            \n            \n            \n              diffServMinRateRelative =\n                      (diffServMinRateAbsolute*1000000)/ifSpeed\n            \n            or, if appropriate:\n            \n              diffServMinRateRelative = diffServMinRateAbsolute/ifHighSpeed",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "diffServMinRateStorage": {
                      "type": "string",
                      "description": "The storage type for this conceptual row.  Conceptual rows\n            having the value 'permanent' need not allow write-access to any\n            columnar objects in the row.",
                      "x-yang-type": "snmpv2-tc:StorageType",
                      "readOnly": true
                    },
                    "diffServMinRateStatus": {
                      "type": "string",
                      "description": "The status of this conceptual row. All writable objects in this\n            row may be modified at any time. Setting this variable to\n            'destroy' when the MIB contains one or more RowPointers pointing\n            to it results in destruction being delayed until the row is no\n            longer used.",
                      "x-yang-type": "snmpv2-tc:RowStatus",
                      "readOnly": true
                    }
                  }
                },
                "readOnly": true
              }
            },
            "readOnly": true
          },
          "diffServMaxRateTable": {
            "type": "object",
            "description": "The Maximum Rate Parameter Table enumerates individual sets of\n        scheduling parameter that can be used/reused by Queues and\n        Schedulers.",
            "properties": {
              "diffServMaxRateEntry": {
                "type": "array",
                "description": "An entry in the Maximum Rate Parameter Table describes a single\n          set of scheduling parameters for use by one or more queues or\n          schedulers.",
                "items": {
                  "type": "object",
                  "properties": {
                    "diffServMaxRateId": {
                      "type": "string",
                      "description": "An index that enumerates the Maximum Rate Parameter entries.\n            Managers obtain new values for row creation in this table by\n            reading diffServMaxRateNextFree.",
                      "x-yang-type": "DIFFSERV-MIB:IndexInteger",
                      "readOnly": true
                    },
                    "diffServMaxRateLevel": {
                      "type": "integer",
                      "description": "An index that indicates which level of a multi-rate shaper is\n            being given its parameters. A multi-rate shaper has some number\n            of rate levels. Frame Relay's dual rate specification refers to a\n            'committed' and an 'excess' rate; ATM's dual rate specification\n            refers to a 'mean' and a 'peak' rate. This table is generalized\n            to support an arbitrary number of rates. The committed or mean\n            rate is level 1, the peak rate (if any) is the highest level rate\n            configured, and if there are other rates they are distributed in\n            monotonically increasing order between them.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "diffServMaxRateAbsolute": {
                      "type": "integer",
                      "description": "The maximum rate in kilobits/sec that a downstream scheduler\n            element should allocate to this queue. If the value is zero, then\n            there is effectively no maximum rate limit and that the scheduler\n            should attempt to be work conserving for this queue. If the value\n            is non-zero, the scheduler will limit the servicing of this queue\n            to, at most, this rate in a non-work-conserving manner.\n            \n            Note that this attribute value and that of\n            diffServMaxRateRelative are coupled: changes to one will affect\n            the value of the other. They are linked by the following\n            \n            \n            \n            equation, in that setting one will change the other:\n            \n              diffServMaxRateRelative =\n                      (diffServMaxRateAbsolute*1000000)/ifSpeed\n            \n            or, if appropriate:\n            \n              diffServMaxRateRelative = diffServMaxRateAbsolute/ifHighSpeed",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "diffServMaxRateRelative": {
                      "type": "integer",
                      "description": "The maximum rate that a downstream scheduler element should\n            allocate to this queue, relative to the maximum rate of the\n            interface as reported by ifSpeed or ifHighSpeed, in units of\n            1/1000 of 1. If the value is zero, then there is effectively no\n            maximum rate limit and the scheduler should attempt to be work\n            conserving for this queue. If the value is non-zero, the\n            scheduler will limit the servicing of this queue to, at most,\n            this rate in a non-work-conserving manner.\n            \n            Note that this attribute value and that of\n            diffServMaxRateAbsolute are coupled: changes to one will affect\n            the value of the other. They are linked by the following\n            equation, in that setting one will change the other:\n            \n              diffServMaxRateRelative =\n                      (diffServMaxRateAbsolute*1000000)/ifSpeed\n            \n            or, if appropriate:\n            \n              diffServMaxRateRelative = diffServMaxRateAbsolute/ifHighSpeed",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "diffServMaxRateThreshold": {
                      "type": "string",
                      "description": "The number of bytes of queue depth at which the rate of a\n            \n            \n            \n            multi-rate scheduler will increase to the next output rate. In\n            the last conceptual row for such a shaper, this threshold is\n            ignored and by convention is zero.",
                      "x-yang-type": "integrated-services:BurstSize",
                      "readOnly": true
                    },
                    "diffServMaxRateStorage": {
                      "type": "string",
                      "description": "The storage type for this conceptual row.  Conceptual rows\n            having the value 'permanent' need not allow write-access to any\n            columnar objects in the row.",
                      "x-yang-type": "snmpv2-tc:StorageType",
                      "readOnly": true
                    },
                    "diffServMaxRateStatus": {
                      "type": "string",
                      "description": "The status of this conceptual row. All writable objects in this\n            row may be modified at any time. Setting this variable to\n            'destroy' when the MIB contains one or more RowPointers pointing\n            to it results in destruction being delayed until the row is no\n            longer used.",
                      "x-yang-type": "snmpv2-tc:RowStatus",
                      "readOnly": true
                    }
                  }
                },
                "readOnly": true
              }
            },
            "readOnly": true
          }
        }
      },
      "DIFFSERV-MIB_diffServDataPathEntry": {
        "type": "array",
        "description": "diffServDataPathEntry",
        "items": {
          "type": "object",
          "properties": {
            "ifIndex": {
              "type": "string",
              "description": "ifIndex",
              "x-yang-type": "leafref",
              "readOnly": true
            },
            "diffServDataPathIfDirection": {
              "type": "string",
              "description": "IfDirection specifies whether the reception or transmission path\n            for this interface is in view.",
              "x-yang-type": "DIFFSERV-MIB:IfDirection",
              "readOnly": true
            },
            "diffServDataPathStart": {
              "type": "string",
              "description": "This selects the first Differentiated Services Functional Data\n            Path Element to handle traffic for this data path. This\n            RowPointer should point to an instance of one of:\n              diffServClfrEntry\n              diffServMeterEntry\n              diffServActionEntry\n              diffServAlgDropEntry\n              diffServQEntry\n            \n            A value of zeroDotZero in this attribute indicates that no\n            Differentiated Services treatment is performed on traffic of this\n            data path. A pointer with the value zeroDotZero normally\n            terminates a functional data path.\n            \n            Setting this to point to a target that does not exist results in\n            an inconsistentValue error.  If the row pointed to is removed or\n            becomes inactive by other means, the treatment is as if this\n            attribute contains a value of zeroDotZero.",
              "x-yang-type": "snmpv2-tc:RowPointer",
              "readOnly": true
            },
            "diffServDataPathStorage": {
              "type": "string",
              "description": "The storage type for this conceptual row.  Conceptual rows\n            having the value 'permanent' need not allow write-access to any\n            columnar objects in the row.",
              "x-yang-type": "snmpv2-tc:StorageType",
              "readOnly": true
            },
            "diffServDataPathStatus": {
              "type": "string",
              "description": "The status of this conceptual row. All writable objects in this\n            row may be modified at any time.",
              "x-yang-type": "snmpv2-tc:RowStatus",
              "readOnly": true
            }
          }
        }
      },
      "DIFFSERV-MIB_diffServClfrEntry": {
        "type": "array",
        "description": "An entry in the classifier table describes a single classifier.\n          All classifier elements belonging to the same classifier use the\n          classifier's diffServClfrId as part of their index.",
        "items": {
          "type": "object",
          "properties": {
            "diffServClfrId": {
              "type": "string",
              "description": "An index that enumerates the classifier entries.  Managers\n            should obtain new values for row creation in this table by\n            reading diffServClfrNextFree.",
              "x-yang-type": "DIFFSERV-MIB:IndexInteger",
              "readOnly": true
            },
            "diffServClfrStorage": {
              "type": "string",
              "description": "The storage type for this conceptual row.  Conceptual rows\n            having the value 'permanent' need not allow write-access to any\n            columnar objects in the row.",
              "x-yang-type": "snmpv2-tc:StorageType",
              "readOnly": true
            },
            "diffServClfrStatus": {
              "type": "string",
              "description": "The status of this conceptual row. All writable objects in this\n            row may be modified at any time. Setting this variable to\n            'destroy' when the MIB contains one or more RowPointers pointing\n            to it results in destruction being delayed until the row is no\n            longer used.",
              "x-yang-type": "snmpv2-tc:RowStatus",
              "readOnly": true
            }
          }
        }
      },
      "DIFFSERV-MIB_diffServClfrElementEntry": {
        "type": "array",
        "description": "An entry in the classifier element table describes a single\n          element of the classifier.",
        "items": {
          "type": "object",
          "properties": {
            "diffServClfrId": {
              "type": "string",
              "description": "diffServClfrId",
              "x-yang-type": "leafref",
              "readOnly": true
            },
            "diffServClfrElementId": {
              "type": "string",
              "description": "An index that enumerates the Classifier Element entries.\n            Managers obtain new values for row creation in this table by\n            reading diffServClfrElementNextFree.",
              "x-yang-type": "DIFFSERV-MIB:IndexInteger",
              "readOnly": true
            },
            "diffServClfrElementPrecedence": {
              "type": "integer",
              "description": "The relative order in which classifier elements are applied:\n            higher numbers represent classifier element with higher\n            precedence.  Classifier elements with the same order must be\n            unambiguous i.e. they must define non-overlapping patterns, and\n            are considered to be applied simultaneously to the traffic\n            stream. Classifier elements with different order may overlap in\n            their filters:  the classifier element with the highest order\n            that matches is taken.\n            \n            On a given interface, there must be a complete classifier in\n            place at all times in the ingress direction.  This means one or\n            more filters must match any possible pattern. There is no such\n            \n            \n            \n            requirement in the egress direction.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "diffServClfrElementNext": {
              "type": "string",
              "description": "This attribute provides one branch of the fan-out functionality\n            of a classifier described in the Informal Differentiated Services\n            Model section 4.1.\n            \n            This selects the next Differentiated Services Functional Data\n            Path Element to handle traffic for this data path. This\n            RowPointer should point to an instance of one of:\n              diffServClfrEntry\n              diffServMeterEntry\n              diffServActionEntry\n              diffServAlgDropEntry\n              diffServQEntry\n            \n            A value of zeroDotZero in this attribute indicates no further\n            Differentiated Services treatment is performed on traffic of this\n            data path. The use of zeroDotZero is the normal usage for the\n            last functional data path element of the current data path.\n            \n            Setting this to point to a target that does not exist results in\n            an inconsistentValue error.  If the row pointed to is removed or\n            becomes inactive by other means, the treatment is as if this\n            attribute contains a value of zeroDotZero.",
              "x-yang-type": "snmpv2-tc:RowPointer",
              "readOnly": true
            },
            "diffServClfrElementSpecific": {
              "type": "string",
              "description": "A pointer to a valid entry in another table, filter table, that\n            describes the applicable classification parameters, e.g. an entry\n            in diffServMultiFieldClfrTable.\n            \n            The value zeroDotZero is interpreted to match anything not\n            matched by another classifier element - only one such entry may\n            exist for each classifier.\n            \n            Setting this to point to a target that does not exist results in\n            an inconsistentValue error.  If the row pointed to is removed or\n            \n            \n            \n            becomes inactive by other means, the element is ignored.",
              "x-yang-type": "snmpv2-tc:RowPointer",
              "readOnly": true
            },
            "diffServClfrElementStorage": {
              "type": "string",
              "description": "The storage type for this conceptual row.  Conceptual rows\n            having the value 'permanent' need not allow write-access to any\n            columnar objects in the row.",
              "x-yang-type": "snmpv2-tc:StorageType",
              "readOnly": true
            },
            "diffServClfrElementStatus": {
              "type": "string",
              "description": "The status of this conceptual row. All writable objects in this\n            row may be modified at any time. Setting this variable to\n            'destroy' when the MIB contains one or more RowPointers pointing\n            to it results in destruction being delayed until the row is no\n            longer used.",
              "x-yang-type": "snmpv2-tc:RowStatus",
              "readOnly": true
            }
          }
        }
      },
      "DIFFSERV-MIB_diffServMultiFieldClfrEntry": {
        "type": "array",
        "description": "An IP Multi-field Classifier entry describes a single filter.",
        "items": {
          "type": "object",
          "properties": {
            "diffServMultiFieldClfrId": {
              "type": "string",
              "description": "An index that enumerates the MultiField Classifier filter\n            entries.  Managers obtain new values for row creation in this\n            table by reading diffServMultiFieldClfrNextFree.",
              "x-yang-type": "DIFFSERV-MIB:IndexInteger",
              "readOnly": true
            },
            "diffServMultiFieldClfrAddrType": {
              "type": "string",
              "description": "The type of IP address used by this classifier entry.  While\n            other types of addresses are defined in the InetAddressType\n            \n            \n            \n            textual convention, and DNS names, a classifier can only look at\n            packets on the wire. Therefore, this object is limited to IPv4\n            and IPv6 addresses.",
              "x-yang-type": "inet-address:InetAddressType",
              "readOnly": true
            },
            "diffServMultiFieldClfrDstAddr": {
              "type": "string",
              "description": "The IP address to match against the packet's destination IP\n            address. This may not be a DNS name, but may be an IPv4 or IPv6\n            prefix.  diffServMultiFieldClfrDstPrefixLength indicates the\n            number of bits that are relevant.",
              "x-yang-type": "inet-address:InetAddress",
              "readOnly": true
            },
            "diffServMultiFieldClfrDstPrefixLength": {
              "type": "string",
              "description": "The length of the CIDR Prefix carried in\n            diffServMultiFieldClfrDstAddr. In IPv4 addresses, a length of 0\n            indicates a match of any address; a length of 32 indicates a\n            match of a single host address, and a length between 0 and 32\n            indicates the use of a CIDR Prefix. IPv6 is similar, except that\n            prefix lengths range from 0..128.",
              "x-yang-type": "inet-address:InetAddressPrefixLength",
              "readOnly": true
            },
            "diffServMultiFieldClfrSrcAddr": {
              "type": "string",
              "description": "The IP address to match against the packet's source IP address.\n            This may not be a DNS name, but may be an IPv4 or IPv6 prefix.\n            diffServMultiFieldClfrSrcPrefixLength indicates the number of\n            bits that are relevant.",
              "x-yang-type": "inet-address:InetAddress",
              "readOnly": true
            },
            "diffServMultiFieldClfrSrcPrefixLength": {
              "type": "string",
              "description": "The length of the CIDR Prefix carried in\n            diffServMultiFieldClfrSrcAddr. In IPv4 addresses, a length of 0\n            indicates a match of any address; a length of 32 indicates a\n            match of a single host address, and a length between 0 and 32\n            indicates the use of a CIDR Prefix. IPv6 is similar, except that\n            prefix lengths range from 0..128.",
              "x-yang-type": "inet-address:InetAddressPrefixLength",
              "readOnly": true
            },
            "diffServMultiFieldClfrDscp": {
              "type": "string",
              "description": "The value that the DSCP in the packet must have to match this\n            entry. A value of -1 indicates that a specific DSCP value has not\n            been defined and thus all DSCP values are considered a match.",
              "x-yang-type": "diffserv-dscp:DscpOrAny",
              "readOnly": true
            },
            "diffServMultiFieldClfrFlowId": {
              "type": "integer",
              "description": "The flow identifier in an IPv6 header.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "diffServMultiFieldClfrProtocol": {
              "type": "integer",
              "description": "The IP protocol to match against the IPv4 protocol number or the\n            IPv6 Next- Header number in the packet. A value of 255 means\n            match all.  Note the protocol number of 255 is reserved by IANA,\n            and Next-Header number of 0 is used in IPv6.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "diffServMultiFieldClfrDstL4PortMin": {
              "type": "string",
              "description": "The minimum value that the layer-4 destination port number in\n            the packet must have in order to match this classifier entry.",
              "format": "inet:port-number",
              "readOnly": true
            },
            "diffServMultiFieldClfrDstL4PortMax": {
              "type": "string",
              "description": "The maximum value that the layer-4 destination port number in\n            the packet must have in order to match this classifier entry.\n            This value must be equal to or greater than the value specified\n            for this entry in diffServMultiFieldClfrDstL4PortMin.",
              "format": "inet:port-number",
              "readOnly": true
            },
            "diffServMultiFieldClfrSrcL4PortMin": {
              "type": "string",
              "description": "The minimum value that the layer-4 source port number in the\n            packet must have in order to match this classifier entry.",
              "format": "inet:port-number",
              "readOnly": true
            },
            "diffServMultiFieldClfrSrcL4PortMax": {
              "type": "string",
              "description": "The maximum value that the layer-4 source port number in the\n            packet must have in order to match this classifier entry. This\n            value must be equal to or greater than the value specified for\n            this entry in diffServMultiFieldClfrSrcL4PortMin.",
              "format": "inet:port-number",
              "readOnly": true
            },
            "diffServMultiFieldClfrStorage": {
              "type": "string",
              "description": "The storage type for this conceptual row.  Conceptual rows\n            having the value 'permanent' need not allow write-access to any\n            columnar objects in the row.",
              "x-yang-type": "snmpv2-tc:StorageType",
              "readOnly": true
            },
            "diffServMultiFieldClfrStatus": {
              "type": "string",
              "description": "The status of this conceptual row. All writable objects in this\n            row may be modified at any time. Setting this variable to\n            'destroy' when the MIB contains one or more RowPointers pointing\n            to it results in destruction being delayed until the row is no\n            longer used.",
              "x-yang-type": "snmpv2-tc:RowStatus",
              "readOnly": true
            }
          }
        }
      },
      "DIFFSERV-MIB_diffServMeterEntry": {
        "type": "array",
        "description": "An entry in the meter table describes a single conformance level\n          of a meter.",
        "items": {
          "type": "object",
          "properties": {
            "diffServMeterId": {
              "type": "string",
              "description": "An index that enumerates the Meter entries.  Managers obtain new\n            values for row creation in this table by reading\n            diffServMeterNextFree.",
              "x-yang-type": "DIFFSERV-MIB:IndexInteger",
              "readOnly": true
            },
            "diffServMeterSucceedNext": {
              "type": "string",
              "description": "If the traffic does conform, this selects the next\n            Differentiated Services Functional Data Path element to handle\n            traffic for this data path. This RowPointer should point to an\n            instance of one of:\n              diffServClfrEntry\n              diffServMeterEntry\n              diffServActionEntry\n              diffServAlgDropEntry\n              diffServQEntry\n            \n            A value of zeroDotZero in this attribute indicates that no\n            further Differentiated Services treatment is performed on traffic\n            of this data path. The use of zeroDotZero is the normal usage for\n            the last functional data path element of the current data path.\n            \n            Setting this to point to a target that does not exist results in\n            an inconsistentValue error.  If the row pointed to is removed or\n            becomes inactive by other means, the treatment is as if this\n            attribute contains a value of zeroDotZero.",
              "x-yang-type": "snmpv2-tc:RowPointer",
              "readOnly": true
            },
            "diffServMeterFailNext": {
              "type": "string",
              "description": "If the traffic does not conform, this selects the next\n            Differentiated Services Functional Data Path element to handle\n            traffic for this data path. This RowPointer should point to an\n            instance of one of:\n              diffServClfrEntry\n              diffServMeterEntry\n            \n            \n            \n              diffServActionEntry\n              diffServAlgDropEntry\n              diffServQEntry\n            \n            A value of zeroDotZero in this attribute indicates no further\n            Differentiated Services treatment is performed on traffic of this\n            data path. The use of zeroDotZero is the normal usage for the\n            last functional data path element of the current data path.\n            \n            Setting this to point to a target that does not exist results in\n            an inconsistentValue error.  If the row pointed to is removed or\n            becomes inactive by other means, the treatment is as if this\n            attribute contains a value of zeroDotZero.",
              "x-yang-type": "snmpv2-tc:RowPointer",
              "readOnly": true
            },
            "diffServMeterSpecific": {
              "type": "string",
              "description": "This indicates the behavior of the meter by pointing to an entry\n            containing detailed parameters. Note that entries in that\n            specific table must be managed explicitly.\n            \n            For example, diffServMeterSpecific may point to an entry in\n            diffServTBParamTable, which contains an instance of a single set\n            of Token Bucket parameters.\n            \n            Setting this to point to a target that does not exist results in\n            an inconsistentValue error.  If the row pointed to is removed or\n            becomes inactive by other means, the meter always succeeds.",
              "x-yang-type": "snmpv2-tc:RowPointer",
              "readOnly": true
            },
            "diffServMeterStorage": {
              "type": "string",
              "description": "The storage type for this conceptual row.  Conceptual rows\n            having the value 'permanent' need not allow write-access to any\n            columnar objects in the row.",
              "x-yang-type": "snmpv2-tc:StorageType",
              "readOnly": true
            },
            "diffServMeterStatus": {
              "type": "string",
              "description": "The status of this conceptual row. All writable objects in this\n            row may be modified at any time. Setting this variable to\n            'destroy' when the MIB contains one or more RowPointers pointing\n            to it results in destruction being delayed until the row is no\n            longer used.",
              "x-yang-type": "snmpv2-tc:RowStatus",
              "readOnly": true
            }
          }
        }
      },
      "DIFFSERV-MIB_diffServTBParamEntry": {
        "type": "array",
        "description": "An entry that describes a single set of token bucket\n          parameters.",
        "items": {
          "type": "object",
          "properties": {
            "diffServTBParamId": {
              "type": "string",
              "description": "An index that enumerates the Token Bucket Parameter entries.\n            Managers obtain new values for row creation in this table by\n            reading diffServTBParamNextFree.",
              "x-yang-type": "DIFFSERV-MIB:IndexInteger",
              "readOnly": true
            },
            "diffServTBParamType": {
              "type": "string",
              "description": "The Metering algorithm associated with the Token Bucket\n            parameters.  zeroDotZero indicates this is unknown.\n            \n            Standard values for generic algorithms:\n            diffServTBParamSimpleTokenBucket, diffServTBParamAvgRate,\n            diffServTBParamSrTCMBlind, diffServTBParamSrTCMAware,\n            diffServTBParamTrTCMBlind, diffServTBParamTrTCMAware, and\n            diffServTBParamTswTCM are specified in this MIB as OBJECT-\n            IDENTITYs; additional values may be further specified in other\n            MIBs.",
              "x-yang-type": "snmpv2-tc:AutonomousType",
              "readOnly": true
            },
            "diffServTBParamRate": {
              "type": "integer",
              "description": "The token-bucket rate, in kilobits per second (kbps). This\n            attribute is used for:\n            1. CIR in RFC 2697 for srTCM\n            2. CIR and PIR in RFC 2698 for trTCM\n            3. CTR and PTR in RFC 2859 for TSWTCM\n            4. AverageRate in RFC 3290.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "diffServTBParamBurstSize": {
              "type": "string",
              "description": "The maximum number of bytes in a single transmission burst. This\n            attribute is used for:\n            1. CBS and EBS in RFC 2697 for srTCM\n            2. CBS and PBS in RFC 2698 for trTCM\n            3. Burst Size in RFC 3290.",
              "x-yang-type": "integrated-services:BurstSize",
              "readOnly": true
            },
            "diffServTBParamInterval": {
              "type": "integer",
              "description": "The time interval used with the token bucket.  For:\n            1. Average Rate Meter, the Informal Differentiated Services Model\n               section 5.2.1, - Delta.\n            2. Simple Token Bucket Meter, the Informal Differentiated\n               Services Model section 5.1, - time interval t.\n            3. RFC 2859 TSWTCM, - AVG_INTERVAL.\n            4. RFC 2697 srTCM, RFC 2698 trTCM, - token bucket update time\n               interval.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "diffServTBParamStorage": {
              "type": "string",
              "description": "The storage type for this conceptual row.  Conceptual rows\n            having the value 'permanent' need not allow write-access to any\n            columnar objects in the row.",
              "x-yang-type": "snmpv2-tc:StorageType",
              "readOnly": true
            },
            "diffServTBParamStatus": {
              "type": "string",
              "description": "The status of this conceptual row. All writable objects in this\n            row may be modified at any time. Setting this variable to\n            'destroy' when the MIB contains one or more RowPointers pointing\n            to it results in destruction being delayed until the row is no\n            longer used.",
              "x-yang-type": "snmpv2-tc:RowStatus",
              "readOnly": true
            }
          }
        }
      },
      "DIFFSERV-MIB_diffServActionEntry": {
        "type": "array",
        "description": "Each entry in the action table allows description of one\n          specific action to be applied to traffic.",
        "items": {
          "type": "object",
          "properties": {
            "diffServActionId": {
              "type": "string",
              "description": "An index that enumerates the Action entries.  Managers obtain\n            new values for row creation in this table by reading\n            diffServActionNextFree.",
              "x-yang-type": "DIFFSERV-MIB:IndexInteger",
              "readOnly": true
            },
            "diffServActionInterface": {
              "type": "string",
              "description": "The interface index (value of ifIndex) that this action occurs\n            on. This may be derived from the diffServDataPathStartEntry's\n            index by extension through the various RowPointers. However, as\n            this may be difficult for a network management station, it is\n            placed here as well.  If this is indeterminate, the value is\n            zero.\n            \n            This is of especial relevance when reporting the counters which\n            may apply to traffic crossing an interface:\n               diffServCountActOctets,\n               diffServCountActPkts,\n               diffServAlgDropOctets,\n               diffServAlgDropPkts,\n               diffServAlgRandomDropOctets, and\n               diffServAlgRandomDropPkts.\n            \n            It is also especially relevant to the queue and scheduler which\n            may be subsequently applied.",
              "x-yang-type": "if-mib:InterfaceIndexOrZero",
              "readOnly": true
            },
            "diffServActionNext": {
              "type": "string",
              "description": "This selects the next Differentiated Services Functional Data\n            Path Element to handle traffic for this data path. This\n            RowPointer should point to an instance of one of:\n              diffServClfrEntry\n              diffServMeterEntry\n              diffServActionEntry\n              diffServAlgDropEntry\n              diffServQEntry\n            \n            A value of zeroDotZero in this attribute indicates no further\n            Differentiated Services treatment is performed on traffic of this\n            data path. The use of zeroDotZero is the normal usage for the\n            last functional data path element of the current data path.\n            \n            Setting this to point to a target that does not exist results in\n            an inconsistentValue error.  If the row pointed to is removed or\n            becomes inactive by other means, the treatment is as if this\n            attribute contains a value of zeroDotZero.",
              "x-yang-type": "snmpv2-tc:RowPointer",
              "readOnly": true
            },
            "diffServActionSpecific": {
              "type": "string",
              "description": "A pointer to an object instance providing additional information\n            for the type of action indicated by this action table entry.\n            \n            For the standard actions defined by this MIB module, this should\n            point to either a diffServDscpMarkActEntry or a\n            diffServCountActEntry. For other actions, it may point to an\n            object instance defined in some other MIB.\n            \n            Setting this to point to a target that does not exist results in\n            an inconsistentValue error.  If the row pointed to is removed or\n            becomes inactive by other means, the Meter should be treated as\n            if it were not present.  This may lead to incorrect policy\n            behavior.",
              "x-yang-type": "snmpv2-tc:RowPointer",
              "readOnly": true
            },
            "diffServActionStorage": {
              "type": "string",
              "description": "The storage type for this conceptual row.  Conceptual rows\n            having the value 'permanent' need not allow write-access to any\n            columnar objects in the row.",
              "x-yang-type": "snmpv2-tc:StorageType",
              "readOnly": true
            },
            "diffServActionStatus": {
              "type": "string",
              "description": "The status of this conceptual row. All writable objects in this\n            row may be modified at any time. Setting this variable to\n            'destroy' when the MIB contains one or more RowPointers pointing\n            to it results in destruction being delayed until the row is no\n            longer used.",
              "x-yang-type": "snmpv2-tc:RowStatus",
              "readOnly": true
            }
          }
        }
      },
      "DIFFSERV-MIB_diffServDscpMarkActEntry": {
        "type": "array",
        "description": "An entry in the DSCP mark action table that describes a single\n          DSCP used for marking.",
        "items": {
          "type": "object",
          "properties": {
            "diffServDscpMarkActDscp": {
              "type": "string",
              "description": "The DSCP that this Action will store into the DSCP field of the\n            subject. It is quite possible that the only packets subject to\n            this Action are already marked with this DSCP. Note also that\n            Differentiated Services processing may result in packet being\n            marked on both ingress to a network and on egress from it, and\n            that ingress and egress can occur in the same router.",
              "format": "inet:dscp",
              "readOnly": true
            }
          }
        }
      },
      "DIFFSERV-MIB_diffServCountActEntry": {
        "type": "array",
        "description": "An entry in the count action table describes a single set of\n          traffic counters.",
        "items": {
          "type": "object",
          "properties": {
            "diffServCountActId": {
              "type": "string",
              "description": "An index that enumerates the Count Action entries.  Managers\n            obtain new values for row creation in this table by reading\n            \n            \n            \n            diffServCountActNextFree.",
              "x-yang-type": "DIFFSERV-MIB:IndexInteger",
              "readOnly": true
            },
            "diffServCountActOctets": {
              "type": "integer",
              "description": "The number of octets at the Action data path element.\n            \n            Discontinuities in the value of this counter can occur at re-\n            initialization of the management system and at other times as\n            indicated by the value of ifCounterDiscontinuityTime on the\n            relevant interface.",
              "minimum": 0,
              "readOnly": true
            },
            "diffServCountActPkts": {
              "type": "integer",
              "description": "The number of packets at the Action data path element.\n            \n            Discontinuities in the value of this counter can occur at re-\n            initialization of the management system and at other times as\n            indicated by the value of ifCounterDiscontinuityTime on the\n            relevant interface.",
              "minimum": 0,
              "readOnly": true
            },
            "diffServCountActStorage": {
              "type": "string",
              "description": "The storage type for this conceptual row.  Conceptual rows\n            having the value 'permanent' need not allow write-access to any\n            columnar objects in the row.",
              "x-yang-type": "snmpv2-tc:StorageType",
              "readOnly": true
            },
            "diffServCountActStatus": {
              "type": "string",
              "description": "The status of this conceptual row. All writable objects in this\n            row may be modified at any time. Setting this variable to\n            'destroy' when the MIB contains one or more RowPointers pointing\n            \n            \n            \n            to it results in destruction being delayed until the row is no\n            longer used.",
              "x-yang-type": "snmpv2-tc:RowStatus",
              "readOnly": true
            }
          }
        }
      },
      "DIFFSERV-MIB_diffServAlgDropEntry": {
        "type": "array",
        "description": "An entry describes a process that drops packets according to\n          some algorithm. Further details of the algorithm type are to be\n          found in diffServAlgDropType and with more detail parameter entry\n          pointed to by diffServAlgDropSpecific when necessary.",
        "items": {
          "type": "object",
          "properties": {
            "diffServAlgDropId": {
              "type": "string",
              "description": "An index that enumerates the Algorithmic Dropper entries.\n            Managers obtain new values for row creation in this table by\n            reading diffServAlgDropNextFree.",
              "x-yang-type": "DIFFSERV-MIB:IndexInteger",
              "readOnly": true
            },
            "diffServAlgDropType": {
              "type": "string",
              "description": "The type of algorithm used by this dropper. The value other(1)\n            requires further specification in some other MIB module.\n            \n            In the tailDrop(2) algorithm, diffServAlgDropQThreshold\n            represents the maximum depth of the queue, pointed to by\n            diffServAlgDropQMeasure, beyond which all newly arriving packets\n            will be dropped.\n            \n            In the headDrop(3) algorithm, if a packet arrives when the\n            current depth of the queue, pointed to by\n            diffServAlgDropQMeasure, is at diffServAlgDropQThreshold, packets\n            currently at the head of the queue are dropped to make room for\n            the new packet to be enqueued at the tail of the queue.\n            \n            In the randomDrop(4) algorithm, on packet arrival, an Active\n            Queue Management algorithm is executed which may randomly drop a\n            packet. This algorithm may be proprietary, and it may drop either\n            the arriving packet or another packet in the queue.\n            diffServAlgDropSpecific points to a diffServRandomDropEntry that\n            describes the algorithm. For this algorithm,\n            \n            \n            \n            diffServAlgDropQThreshold is understood to be the absolute\n            maximum size of the queue and additional parameters are described\n            in diffServRandomDropTable.\n            \n            The alwaysDrop(5) algorithm is as its name specifies; always\n            drop. In this case, the other configuration values in this Entry\n            are not meaningful; There is no useful 'next' processing step,\n            there is no queue, and parameters describing the queue are not\n            useful. Therefore, diffServAlgDropNext, diffServAlgDropMeasure,\n            and diffServAlgDropSpecific are all zeroDotZero.",
              "readOnly": true
            },
            "diffServAlgDropNext": {
              "type": "string",
              "description": "This selects the next Differentiated Services Functional Data\n            Path Element to handle traffic for this data path. This\n            RowPointer should point to an instance of one of:\n              diffServClfrEntry\n              diffServMeterEntry\n              diffServActionEntry\n              diffServQEntry\n            \n            A value of zeroDotZero in this attribute indicates no further\n            Differentiated Services treatment is performed on traffic of this\n            data path. The use of zeroDotZero is the normal usage for the\n            last functional data path element of the current data path.\n            \n            When diffServAlgDropType is alwaysDrop(5), this object is\n            ignored.\n            \n            Setting this to point to a target that does not exist results in\n            an inconsistentValue error.  If the row pointed to is removed or\n            becomes inactive by other means, the treatment is as if this\n            attribute contains a value of zeroDotZero.",
              "x-yang-type": "snmpv2-tc:RowPointer",
              "readOnly": true
            },
            "diffServAlgDropQMeasure": {
              "type": "string",
              "description": "Points to an entry in the diffServQTable to indicate the queue\n            that a drop algorithm is to monitor when deciding whether to drop\n            a packet. If the row pointed to does not exist, the algorithmic\n            dropper element is considered inactive.\n            \n            \n            \n            Setting this to point to a target that does not exist results in\n            an inconsistentValue error.  If the row pointed to is removed or\n            becomes inactive by other means, the treatment is as if this\n            attribute contains a value of zeroDotZero.",
              "x-yang-type": "snmpv2-tc:RowPointer",
              "readOnly": true
            },
            "diffServAlgDropQThreshold": {
              "type": "integer",
              "description": "A threshold on the depth in bytes of the queue being measured at\n            which a trigger is generated to the dropping algorithm, unless\n            diffServAlgDropType is alwaysDrop(5) where this object is\n            ignored.\n            \n            For the tailDrop(2) or headDrop(3) algorithms, this represents\n            the depth of the queue, pointed to by diffServAlgDropQMeasure, at\n            which the drop action will take place. Other algorithms will need\n            to define their own semantics for this threshold.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "diffServAlgDropSpecific": {
              "type": "string",
              "description": "Points to a table entry that provides further detail regarding a\n            drop algorithm.\n            \n            Entries with diffServAlgDropType equal to other(1) may have this\n            point to a table defined in another MIB module.\n            \n            Entries with diffServAlgDropType equal to randomDrop(4) must have\n            this point to an entry in diffServRandomDropTable.\n            \n            For all other algorithms specified in this MIB, this should take\n            the value zeroDotZero.\n            \n            The diffServAlgDropType is authoritative for the type of the drop\n            algorithm and the specific parameters for the drop algorithm\n            needs to be evaluated based on the diffServAlgDropType.\n            \n            Setting this to point to a target that does not exist results in\n            an inconsistentValue error.  If the row pointed to is removed or\n            becomes inactive by other means, the treatment is as if this\n            attribute contains a value of zeroDotZero.",
              "x-yang-type": "snmpv2-tc:RowPointer",
              "readOnly": true
            },
            "diffServAlgDropOctets": {
              "type": "integer",
              "description": "The number of octets that have been deterministically dropped by\n            this drop process.\n            \n            Discontinuities in the value of this counter can occur at re-\n            initialization of the management system and at other times as\n            indicated by the value of ifCounterDiscontinuityTime on the\n            relevant interface.",
              "minimum": 0,
              "readOnly": true
            },
            "diffServAlgDropPkts": {
              "type": "integer",
              "description": "The number of packets that have been deterministically dropped\n            by this drop process.\n            \n            Discontinuities in the value of this counter can occur at re-\n            initialization of the management system and at other times as\n            indicated by the value of ifCounterDiscontinuityTime on the\n            relevant interface.",
              "minimum": 0,
              "readOnly": true
            },
            "diffServAlgRandomDropOctets": {
              "type": "integer",
              "description": "The number of octets that have been randomly dropped by this\n            drop process.  This counter applies, therefore, only to random\n            droppers.\n            \n            Discontinuities in the value of this counter can occur at re-\n            initialization of the management system and at other times as\n            indicated by the value of ifCounterDiscontinuityTime on the\n            relevant interface.",
              "minimum": 0,
              "readOnly": true
            },
            "diffServAlgRandomDropPkts": {
              "type": "integer",
              "description": "The number of packets that have been randomly dropped by this\n            drop process. This counter applies, therefore, only to random\n            droppers.\n            \n            Discontinuities in the value of this counter can occur at re-\n            initialization of the management system and at other times as\n            indicated by the value of ifCounterDiscontinuityTime on the\n            relevant interface.",
              "minimum": 0,
              "readOnly": true
            },
            "diffServAlgDropStorage": {
              "type": "string",
              "description": "The storage type for this conceptual row.  Conceptual rows\n            having the value 'permanent' need not allow write-access to any\n            columnar objects in the row.",
              "x-yang-type": "snmpv2-tc:StorageType",
              "readOnly": true
            },
            "diffServAlgDropStatus": {
              "type": "string",
              "description": "The status of this conceptual row. All writable objects in this\n            row may be modified at any time. Setting this variable to\n            'destroy' when the MIB contains one or more RowPointers pointing\n            to it results in destruction being delayed until the row is no\n            longer used.",
              "x-yang-type": "snmpv2-tc:RowStatus",
              "readOnly": true
            }
          }
        }
      },
      "DIFFSERV-MIB_diffServRandomDropEntry": {
        "type": "array",
        "description": "An entry describes a process that drops packets according to a\n          random algorithm.",
        "items": {
          "type": "object",
          "properties": {
            "diffServRandomDropId": {
              "type": "string",
              "description": "An index that enumerates the Random Drop entries.  Managers\n            obtain new values for row creation in this table by reading\n            diffServRandomDropNextFree.",
              "x-yang-type": "DIFFSERV-MIB:IndexInteger",
              "readOnly": true
            },
            "diffServRandomDropMinThreshBytes": {
              "type": "integer",
              "description": "The average queue depth in bytes, beyond which traffic has a\n            non-zero probability of being dropped. Changes in this variable\n            may or may not be reflected in the reported value of\n            diffServRandomDropMinThreshPkts.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "diffServRandomDropMinThreshPkts": {
              "type": "integer",
              "description": "The average queue depth in packets, beyond which traffic has a\n            non-zero probability of being dropped. Changes in this variable\n            may or may not be reflected in the reported value of\n            diffServRandomDropMinThreshBytes.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "diffServRandomDropMaxThreshBytes": {
              "type": "integer",
              "description": "The average queue depth beyond which traffic has a probability\n            indicated by diffServRandomDropProbMax of being dropped or\n            marked. Note that this differs from the physical queue limit,\n            which is stored in diffServAlgDropQThreshold. Changes in this\n            variable may or may not be reflected in the reported value of\n            diffServRandomDropMaxThreshPkts.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "diffServRandomDropMaxThreshPkts": {
              "type": "integer",
              "description": "The average queue depth beyond which traffic has a probability\n            indicated by diffServRandomDropProbMax of being dropped or\n            marked. Note that this differs from the physical queue limit,\n            which is stored in diffServAlgDropQThreshold. Changes in this\n            variable may or may not be reflected in the reported value of\n            diffServRandomDropMaxThreshBytes.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "diffServRandomDropProbMax": {
              "type": "integer",
              "description": "The worst case random drop probability, expressed in drops per\n            thousand packets.\n            \n            For example, if in the worst case every arriving packet may be\n            dropped (100%) for a period, this has the value 1000.\n            Alternatively, if in the worst case only one percent (1%) of\n            traffic may be dropped, it has the value 10.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "diffServRandomDropWeight": {
              "type": "integer",
              "description": "The weighting of past history in affecting the Exponentially\n            Weighted Moving Average function that calculates the current\n            average queue depth.  The equation uses\n            diffServRandomDropWeight/65536 as the coefficient for the new\n            sample in the equation, and (65536 -\n            diffServRandomDropWeight)/65536 as the coefficient of the old\n            value.\n            \n            Implementations may limit the values of diffServRandomDropWeight\n            to a subset of the possible range of values, such as powers of\n            two. Doing this would facilitate implementation of the\n            Exponentially Weighted Moving Average using shift instructions or\n            registers.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "diffServRandomDropSamplingRate": {
              "type": "integer",
              "description": "The number of times per second the queue is sampled for queue\n            average calculation.  A value of zero is used to mean that the\n            queue is sampled approximately each time a packet is enqueued (or\n            dequeued).",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "diffServRandomDropStorage": {
              "type": "string",
              "description": "The storage type for this conceptual row.  Conceptual rows\n            having the value 'permanent' need not allow write-access to any\n            columnar objects in the row.",
              "x-yang-type": "snmpv2-tc:StorageType",
              "readOnly": true
            },
            "diffServRandomDropStatus": {
              "type": "string",
              "description": "The status of this conceptual row. All writable objects in this\n            row may be modified at any time. Setting this variable to\n            'destroy' when the MIB contains one or more RowPointers pointing\n            to it results in destruction being delayed until the row is no\n            longer used.",
              "x-yang-type": "snmpv2-tc:RowStatus",
              "readOnly": true
            }
          }
        }
      },
      "DIFFSERV-MIB_diffServQEntry": {
        "type": "array",
        "description": "An entry in the Queue Table describes a single queue or class of\n          traffic.",
        "items": {
          "type": "object",
          "properties": {
            "diffServQId": {
              "type": "string",
              "description": "An index that enumerates the Queue entries.  Managers obtain new\n            values for row creation in this table by reading\n            diffServQNextFree.",
              "x-yang-type": "DIFFSERV-MIB:IndexInteger",
              "readOnly": true
            },
            "diffServQNext": {
              "type": "string",
              "description": "This selects the next Differentiated Services Scheduler.  The\n            RowPointer must point to a diffServSchedulerEntry.\n            \n            A value of zeroDotZero in this attribute indicates an incomplete\n            diffServQEntry instance. In such a case, the entry has no\n            operational effect, since it has no parameters to give it\n            meaning.\n            \n            Setting this to point to a target that does not exist results in\n            an inconsistentValue error.  If the row pointed to is removed or\n            becomes inactive by other means, the treatment is as if this\n            attribute contains a value of zeroDotZero.",
              "x-yang-type": "snmpv2-tc:RowPointer",
              "readOnly": true
            },
            "diffServQMinRate": {
              "type": "string",
              "description": "This RowPointer indicates the diffServMinRateEntry that the\n            scheduler, pointed to by diffServQNext, should use to service\n            this queue.\n            \n            If the row pointed to is zeroDotZero, the minimum rate and\n            priority is unspecified.\n            \n            Setting this to point to a target that does not exist results in\n            an inconsistentValue error.  If the row pointed to is removed or\n            becomes inactive by other means, the treatment is as if this\n            attribute contains a value of zeroDotZero.",
              "x-yang-type": "snmpv2-tc:RowPointer",
              "readOnly": true
            },
            "diffServQMaxRate": {
              "type": "string",
              "description": "This RowPointer indicates the diffServMaxRateEntry that the\n            scheduler, pointed to by diffServQNext, should use to service\n            this queue.\n            \n            If the row pointed to is zeroDotZero, the maximum rate is the\n            line speed of the interface.\n            \n            \n            \n            \n            Setting this to point to a target that does not exist results in\n            an inconsistentValue error.  If the row pointed to is removed or\n            becomes inactive by other means, the treatment is as if this\n            attribute contains a value of zeroDotZero.",
              "x-yang-type": "snmpv2-tc:RowPointer",
              "readOnly": true
            },
            "diffServQStorage": {
              "type": "string",
              "description": "The storage type for this conceptual row.  Conceptual rows\n            having the value 'permanent' need not allow write-access to any\n            columnar objects in the row.",
              "x-yang-type": "snmpv2-tc:StorageType",
              "readOnly": true
            },
            "diffServQStatus": {
              "type": "string",
              "description": "The status of this conceptual row. All writable objects in this\n            row may be modified at any time. Setting this variable to\n            'destroy' when the MIB contains one or more RowPointers pointing\n            to it results in destruction being delayed until the row is no\n            longer used.",
              "x-yang-type": "snmpv2-tc:RowStatus",
              "readOnly": true
            }
          }
        }
      },
      "DIFFSERV-MIB_diffServSchedulerEntry": {
        "type": "array",
        "description": "An entry in the Scheduler Table describing a single instance of\n          a scheduling algorithm.",
        "items": {
          "type": "object",
          "properties": {
            "diffServSchedulerId": {
              "type": "string",
              "description": "An index that enumerates the Scheduler entries.  Managers obtain\n            new values for row creation in this table by reading\n            diffServSchedulerNextFree.",
              "x-yang-type": "DIFFSERV-MIB:IndexInteger",
              "readOnly": true
            },
            "diffServSchedulerNext": {
              "type": "string",
              "description": "This selects the next Differentiated Services Functional Data\n            Path Element to handle traffic for this data path. This normally\n            is null (zeroDotZero), or points to a diffServSchedulerEntry or a\n            diffServQEntry.\n            \n            However, this RowPointer may also point to an instance of:\n              diffServClfrEntry,\n              diffServMeterEntry,\n              diffServActionEntry,\n              diffServAlgDropEntry.\n            \n            It would point another diffServSchedulerEntry when implementing\n            multiple scheduler methods for the same data path, such as having\n            one set of queues scheduled by WRR and that group participating\n            in a priority scheduling system in which other queues compete\n            with it in that way.  It might also point to a second scheduler\n            in a hierarchical scheduling system.\n            \n            If the row pointed to is zeroDotZero, no further Differentiated\n            Services treatment is performed on traffic of this data path.\n            \n            Setting this to point to a target that does not exist results in\n            an inconsistentValue error.  If the row pointed to is removed or\n            becomes inactive by other means, the treatment is as if this\n            attribute contains a value of zeroDotZero.",
              "x-yang-type": "snmpv2-tc:RowPointer",
              "readOnly": true
            },
            "diffServSchedulerMethod": {
              "type": "string",
              "description": "The scheduling algorithm used by this Scheduler. zeroDotZero\n            indicates that this is unknown.  Standard values for generic\n            algorithms: diffServSchedulerPriority, diffServSchedulerWRR, and\n            diffServSchedulerWFQ are specified in this MIB; additional values\n            \n            \n            \n            may be further specified in other MIBs.",
              "x-yang-type": "snmpv2-tc:AutonomousType",
              "readOnly": true
            },
            "diffServSchedulerMinRate": {
              "type": "string",
              "description": "This RowPointer indicates the entry in diffServMinRateTable\n            which indicates the priority or minimum output rate from this\n            scheduler. This attribute is used only when there is more than\n            one level of scheduler.\n            \n            When it has the value zeroDotZero, it indicates that no minimum\n            rate or priority is imposed.\n            \n            Setting this to point to a target that does not exist results in\n            an inconsistentValue error.  If the row pointed to is removed or\n            becomes inactive by other means, the treatment is as if this\n            attribute contains a value of zeroDotZero.",
              "x-yang-type": "snmpv2-tc:RowPointer",
              "readOnly": true
            },
            "diffServSchedulerMaxRate": {
              "type": "string",
              "description": "This RowPointer indicates the entry in diffServMaxRateTable\n            which indicates the maximum output rate from this scheduler.\n            When more than one maximum rate applies (eg, when a multi-rate\n            shaper is in view), it points to the first of those rate entries.\n            This attribute is used only when there is more than one level of\n            scheduler.\n            \n            When it has the value zeroDotZero, it indicates that no maximum\n            rate is imposed.\n            \n            Setting this to point to a target that does not exist results in\n            an inconsistentValue error.  If the row pointed to is removed or\n            becomes inactive by other means, the treatment is as if this\n            attribute contains a value of zeroDotZero.",
              "x-yang-type": "snmpv2-tc:RowPointer",
              "readOnly": true
            },
            "diffServSchedulerStorage": {
              "type": "string",
              "description": "The storage type for this conceptual row.  Conceptual rows\n            having the value 'permanent' need not allow write-access to any\n            columnar objects in the row.",
              "x-yang-type": "snmpv2-tc:StorageType",
              "readOnly": true
            },
            "diffServSchedulerStatus": {
              "type": "string",
              "description": "The status of this conceptual row. All writable objects in this\n            row may be modified at any time. Setting this variable to\n            'destroy' when the MIB contains one or more RowPointers pointing\n            to it results in destruction being delayed until the row is no\n            longer used.",
              "x-yang-type": "snmpv2-tc:RowStatus",
              "readOnly": true
            }
          }
        }
      },
      "DIFFSERV-MIB_diffServMinRateEntry": {
        "type": "array",
        "description": "An entry in the Minimum Rate Parameters Table describes a single\n          set of scheduling parameters for use by one or more queues or\n          schedulers.",
        "items": {
          "type": "object",
          "properties": {
            "diffServMinRateId": {
              "type": "string",
              "description": "An index that enumerates the Scheduler Parameter entries.\n            Managers obtain new values for row creation in this table by\n            reading diffServMinRateNextFree.",
              "x-yang-type": "DIFFSERV-MIB:IndexInteger",
              "readOnly": true
            },
            "diffServMinRatePriority": {
              "type": "integer",
              "description": "The priority of this input to the associated scheduler, relative\n            \n            \n            \n            to the scheduler's other inputs. A queue or scheduler with a\n            larger numeric value will be served before another with a smaller\n            numeric value.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "diffServMinRateAbsolute": {
              "type": "integer",
              "description": "The minimum absolute rate, in kilobits/sec, that a downstream\n            scheduler element should allocate to this queue. If the value is\n            zero, then there is effectively no minimum rate guarantee. If the\n            value is non-zero, the scheduler will assure the servicing of\n            this queue to at least this rate.\n            \n            Note that this attribute value and that of\n            diffServMinRateRelative are coupled: changes to one will affect\n            the value of the other. They are linked by the following\n            equation, in that setting one will change the other:\n            \n              diffServMinRateRelative =\n                      (diffServMinRateAbsolute*1000000)/ifSpeed\n            \n            or, if appropriate:\n            \n              diffServMinRateRelative = diffServMinRateAbsolute/ifHighSpeed",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "diffServMinRateRelative": {
              "type": "integer",
              "description": "The minimum rate that a downstream scheduler element should\n            allocate to this queue, relative to the maximum rate of the\n            interface as reported by ifSpeed or ifHighSpeed, in units of\n            1/1000 of 1. If the value is zero, then there is effectively no\n            minimum rate guarantee. If the value is non-zero, the scheduler\n            will assure the servicing of this queue to at least this rate.\n            \n            Note that this attribute value and that of\n            diffServMinRateAbsolute are coupled: changes to one will affect\n            the value of the other. They are linked by the following\n            equation, in that setting one will change the other:\n            \n            \n            \n              diffServMinRateRelative =\n                      (diffServMinRateAbsolute*1000000)/ifSpeed\n            \n            or, if appropriate:\n            \n              diffServMinRateRelative = diffServMinRateAbsolute/ifHighSpeed",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "diffServMinRateStorage": {
              "type": "string",
              "description": "The storage type for this conceptual row.  Conceptual rows\n            having the value 'permanent' need not allow write-access to any\n            columnar objects in the row.",
              "x-yang-type": "snmpv2-tc:StorageType",
              "readOnly": true
            },
            "diffServMinRateStatus": {
              "type": "string",
              "description": "The status of this conceptual row. All writable objects in this\n            row may be modified at any time. Setting this variable to\n            'destroy' when the MIB contains one or more RowPointers pointing\n            to it results in destruction being delayed until the row is no\n            longer used.",
              "x-yang-type": "snmpv2-tc:RowStatus",
              "readOnly": true
            }
          }
        }
      },
      "DIFFSERV-MIB_diffServMaxRateEntry": {
        "type": "array",
        "description": "An entry in the Maximum Rate Parameter Table describes a single\n          set of scheduling parameters for use by one or more queues or\n          schedulers.",
        "items": {
          "type": "object",
          "properties": {
            "diffServMaxRateId": {
              "type": "string",
              "description": "An index that enumerates the Maximum Rate Parameter entries.\n            Managers obtain new values for row creation in this table by\n            reading diffServMaxRateNextFree.",
              "x-yang-type": "DIFFSERV-MIB:IndexInteger",
              "readOnly": true
            },
            "diffServMaxRateLevel": {
              "type": "integer",
              "description": "An index that indicates which level of a multi-rate shaper is\n            being given its parameters. A multi-rate shaper has some number\n            of rate levels. Frame Relay's dual rate specification refers to a\n            'committed' and an 'excess' rate; ATM's dual rate specification\n            refers to a 'mean' and a 'peak' rate. This table is generalized\n            to support an arbitrary number of rates. The committed or mean\n            rate is level 1, the peak rate (if any) is the highest level rate\n            configured, and if there are other rates they are distributed in\n            monotonically increasing order between them.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "diffServMaxRateAbsolute": {
              "type": "integer",
              "description": "The maximum rate in kilobits/sec that a downstream scheduler\n            element should allocate to this queue. If the value is zero, then\n            there is effectively no maximum rate limit and that the scheduler\n            should attempt to be work conserving for this queue. If the value\n            is non-zero, the scheduler will limit the servicing of this queue\n            to, at most, this rate in a non-work-conserving manner.\n            \n            Note that this attribute value and that of\n            diffServMaxRateRelative are coupled: changes to one will affect\n            the value of the other. They are linked by the following\n            \n            \n            \n            equation, in that setting one will change the other:\n            \n              diffServMaxRateRelative =\n                      (diffServMaxRateAbsolute*1000000)/ifSpeed\n            \n            or, if appropriate:\n            \n              diffServMaxRateRelative = diffServMaxRateAbsolute/ifHighSpeed",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "diffServMaxRateRelative": {
              "type": "integer",
              "description": "The maximum rate that a downstream scheduler element should\n            allocate to this queue, relative to the maximum rate of the\n            interface as reported by ifSpeed or ifHighSpeed, in units of\n            1/1000 of 1. If the value is zero, then there is effectively no\n            maximum rate limit and the scheduler should attempt to be work\n            conserving for this queue. If the value is non-zero, the\n            scheduler will limit the servicing of this queue to, at most,\n            this rate in a non-work-conserving manner.\n            \n            Note that this attribute value and that of\n            diffServMaxRateAbsolute are coupled: changes to one will affect\n            the value of the other. They are linked by the following\n            equation, in that setting one will change the other:\n            \n              diffServMaxRateRelative =\n                      (diffServMaxRateAbsolute*1000000)/ifSpeed\n            \n            or, if appropriate:\n            \n              diffServMaxRateRelative = diffServMaxRateAbsolute/ifHighSpeed",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "diffServMaxRateThreshold": {
              "type": "string",
              "description": "The number of bytes of queue depth at which the rate of a\n            \n            \n            \n            multi-rate scheduler will increase to the next output rate. In\n            the last conceptual row for such a shaper, this threshold is\n            ignored and by convention is zero.",
              "x-yang-type": "integrated-services:BurstSize",
              "readOnly": true
            },
            "diffServMaxRateStorage": {
              "type": "string",
              "description": "The storage type for this conceptual row.  Conceptual rows\n            having the value 'permanent' need not allow write-access to any\n            columnar objects in the row.",
              "x-yang-type": "snmpv2-tc:StorageType",
              "readOnly": true
            },
            "diffServMaxRateStatus": {
              "type": "string",
              "description": "The status of this conceptual row. All writable objects in this\n            row may be modified at any time. Setting this variable to\n            'destroy' when the MIB contains one or more RowPointers pointing\n            to it results in destruction being delayed until the row is no\n            longer used.",
              "x-yang-type": "snmpv2-tc:RowStatus",
              "readOnly": true
            }
          }
        }
      },
      "restconf-error": {
        "type": "object",
        "description": "Standard RESTCONF error response (RFC 8040 Section 7.1)",
        "properties": {
          "ietf-restconf:errors": {
            "type": "object",
            "properties": {
              "error": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {
                    "error-type": {
                      "type": "string",
                      "enum": [
                        "transport",
                        "rpc",
                        "protocol",
                        "application"
                      ],
                      "description": "Layer where the error occurred"
                    },
                    "error-tag": {
                      "type": "string",
                      "description": "Enumerated error tag (e.g. invalid-value, data-missing, access-denied)"
                    },
                    "error-severity": {
                      "type": "string",
                      "enum": [
                        "error",
                        "warning"
                      ],
                      "description": "Error severity"
                    },
                    "error-app-tag": {
                      "type": "string",
                      "description": "Application-specific error tag"
                    },
                    "error-path": {
                      "type": "string",
                      "description": "YANG instance-identifier of the error node"
                    },
                    "error-message": {
                      "type": "string",
                      "description": "Human-readable error description"
                    }
                  },
                  "required": [
                    "error-type",
                    "error-tag"
                  ]
                }
              }
            }
          }
        },
        "example": {
          "ietf-restconf:errors": {
            "error": [
              {
                "error-type": "protocol",
                "error-tag": "invalid-value",
                "error-severity": "error",
                "error-message": "Invalid input parameter"
              }
            ]
          }
        }
      }
    },
    "securitySchemes": {
      "basicAuth": {
        "type": "http",
        "scheme": "basic"
      }
    }
  },
  "security": [
    {
      "basicAuth": []
    }
  ],
  "tags": [
    {
      "name": "DIFFSERV-MIB",
      "description": "MIB operations for DIFFSERV-MIB"
    }
  ],
  "externalDocs": {
    "description": "Cisco SNMP Object Navigator",
    "url": "https://snmp.cloudapps.cisco.com/Support/IOS/do/BrowseMIB.do"
  }
}
