{
  "openapi": "3.0.0",
  "info": {
    "title": "CISCO-QOS-PIB-MIB MIB API",
    "version": "1.0.0",
    "description": "The Cisco QOS Policy PIB for provisioning QOS policy.\n\n⚠️ **IMPORTANT - MIB DATA ACCESS**:\nThis YANG model exists for SMIv2-to-YANG translation purposes, but MIB data on IOS-XE devices is primarily accessed via **SNMP protocol**, not RESTCONF.\n\n**RESTCONF Limitation**: Many MIB paths may return 404 errors via RESTCONF `/data` endpoints because the device exposes MIB data through SNMP, not the YANG datastore.\n\n**Recommended Access Methods**:\n- Use SNMP (v2c/v3) to query MIB data directly\n- Use NETCONF `<get>` operations for devices supporting YANG-modeled MIB access\n- Check device capabilities: some newer IOS-XE versions may support limited RESTCONF access to specific MIBs\n\n**YANG Model Purpose**: These YANG models define the structure of SNMP MIBs in YANG format for tooling compatibility, but do not guarantee RESTCONF data availability.\n\n\n**📊 YANG Tree:** [View CISCO-QOS-PIB-MIB structure](https://jeremycohoe.github.io/cisco-ios-xe-openapi-swagger/yang-trees/CISCO-QOS-PIB-MIB.html)",
    "contact": {
      "name": "Cisco DevNet",
      "url": "https://developer.cisco.com"
    },
    "x-yang-module": "CISCO-QOS-PIB-MIB",
    "x-model-type": "mib"
  },
  "servers": [
    {
      "url": "https://{device}/restconf",
      "description": "RESTCONF server",
      "variables": {
        "device": {
          "default": "10.1.1.1",
          "description": "Device hostname or IP address"
        }
      }
    }
  ],
  "paths": {
    "/data/CISCO-QOS-PIB-MIB:qosDevicePibIncarnationTable": {
      "get": {
        "summary": "Get qosDevicePibIncarnationTable data",
        "description": "Retrieve qosDevicePibIncarnationTable operational data from MIB",
        "tags": [
          "CISCO-QOS-PIB-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "description": "This class contains a single policy instance that identifies\n        the current incarnation of the PIB and the PDP that installed\n        this incarnation.  The instance of this class is reported to\n        the PDP at client connect time so that the PDP can (attempt\n        to) ascertain the current state of the PIB.",
                  "properties": {
                    "qosDevicePibIncarnationEntry": {
                      "type": "array",
                      "description": "The single policy instance of this class identifies the\n          current incarnation of the PIB and the PDP that installed\n          this incarnation.",
                      "items": {
                        "type": "object",
                        "properties": {
                          "qosDeviceIncarnationId": {
                            "type": "string",
                            "description": "An integer index to identify the instance of the policy class.",
                            "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId"
                          },
                          "qosDevicePdpName": {
                            "type": "string",
                            "description": "The name of the PDP that installed the current incarnation of\n            the PIB into the device.  By default it is the zero length\n            string.",
                            "x-yang-type": "snmpv2-tc:DisplayString"
                          },
                          "qosDevicePibIncarnation": {
                            "type": "string",
                            "description": "An octet string to identify the current incarnation.  It has\n            meaning to the PDP that installed the PIB and perhaps its\n            standby PDPs. By default the empty string.",
                            "format": "binary"
                          },
                          "qosDevicePibTtl": {
                            "type": "integer",
                            "description": "The number of seconds after a client close or TCP timeout for\n            which the PEP continues to enforce the policy in the PIB.\n            After this interval, the PIB is consired expired and the\n            device no longer enforces the policy installed in the PIB.",
                            "minimum": 0,
                            "maximum": 4294967295
                          }
                        }
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-QOS-PIB-MIB:qosDevicePibIncarnationTable": {
                    "qosDevicePibIncarnationEntry": [
                      {
                        "qosDeviceIncarnationId": "example-string",
                        "qosDevicePdpName": "interface-1",
                        "qosDevicePibIncarnation": "example-string",
                        "qosDevicePibTtl": 0
                      },
                      {
                        "qosDeviceIncarnationId": "example-string",
                        "qosDevicePdpName": "interface-1",
                        "qosDevicePibIncarnation": "example-string",
                        "qosDevicePibTtl": 0
                      },
                      {
                        "qosDeviceIncarnationId": "example-string",
                        "qosDevicePdpName": "interface-1",
                        "qosDevicePibIncarnation": "example-string",
                        "qosDevicePibTtl": 0
                      }
                    ]
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-qosDevicePibIncarnationTable",
        "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": "/qosDevicePibIncarnationTable",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-QOS-PIB-MIB:qosDevicePibIncarnationTable/qosDevicePibIncarnationEntry": {
      "get": {
        "summary": "Get qosDevicePibIncarnationEntry list",
        "description": "Retrieve list of qosDevicePibIncarnationEntry entries from MIB",
        "tags": [
          "CISCO-QOS-PIB-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "The single policy instance of this class identifies the\n          current incarnation of the PIB and the PDP that installed\n          this incarnation.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "qosDeviceIncarnationId": {
                        "type": "string",
                        "description": "An integer index to identify the instance of the policy class.",
                        "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId"
                      },
                      "qosDevicePdpName": {
                        "type": "string",
                        "description": "The name of the PDP that installed the current incarnation of\n            the PIB into the device.  By default it is the zero length\n            string.",
                        "x-yang-type": "snmpv2-tc:DisplayString"
                      },
                      "qosDevicePibIncarnation": {
                        "type": "string",
                        "description": "An octet string to identify the current incarnation.  It has\n            meaning to the PDP that installed the PIB and perhaps its\n            standby PDPs. By default the empty string.",
                        "format": "binary"
                      },
                      "qosDevicePibTtl": {
                        "type": "integer",
                        "description": "The number of seconds after a client close or TCP timeout for\n            which the PEP continues to enforce the policy in the PIB.\n            After this interval, the PIB is consired expired and the\n            device no longer enforces the policy installed in the PIB.",
                        "minimum": 0,
                        "maximum": 4294967295
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-QOS-PIB-MIB:qosDevicePibIncarnationEntry": [
                    {
                      "qosDeviceIncarnationId": "example-string",
                      "qosDevicePdpName": "interface-1",
                      "qosDevicePibIncarnation": "example-string",
                      "qosDevicePibTtl": 0
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-qosDevicePibIncarnationEntry",
        "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": "/qosDevicePibIncarnationTable/qosDevicePibIncarnationEntry",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-QOS-PIB-MIB:qosDevicePibIncarnationTable/qosDevicePibIncarnationEntry={qosDeviceIncarnationId}": {
      "get": {
        "summary": "Get qosDevicePibIncarnationEntry entry",
        "description": "Retrieve specific qosDevicePibIncarnationEntry entry by key from MIB",
        "tags": [
          "CISCO-QOS-PIB-MIB"
        ],
        "parameters": [
          {
            "name": "qosDeviceIncarnationId",
            "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": {
                    "qosDeviceIncarnationId": {
                      "type": "string",
                      "description": "An integer index to identify the instance of the policy class.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId"
                    },
                    "qosDevicePdpName": {
                      "type": "string",
                      "description": "The name of the PDP that installed the current incarnation of\n            the PIB into the device.  By default it is the zero length\n            string.",
                      "x-yang-type": "snmpv2-tc:DisplayString"
                    },
                    "qosDevicePibIncarnation": {
                      "type": "string",
                      "description": "An octet string to identify the current incarnation.  It has\n            meaning to the PDP that installed the PIB and perhaps its\n            standby PDPs. By default the empty string.",
                      "format": "binary"
                    },
                    "qosDevicePibTtl": {
                      "type": "integer",
                      "description": "The number of seconds after a client close or TCP timeout for\n            which the PEP continues to enforce the policy in the PIB.\n            After this interval, the PIB is consired expired and the\n            device no longer enforces the policy installed in the PIB.",
                      "minimum": 0,
                      "maximum": 4294967295
                    }
                  }
                },
                "example": {
                  "CISCO-QOS-PIB-MIB:qosDevicePibIncarnationEntry": {
                    "qosDeviceIncarnationId": "example-string",
                    "qosDevicePdpName": "interface-1",
                    "qosDevicePibIncarnation": "example-string",
                    "qosDevicePibTtl": 0
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-qosDevicePibIncarnationEntry-2"
      },
      "x-yang-path": "/qosDevicePibIncarnationTable/qosDevicePibIncarnationEntry={qosDeviceIncarnationId}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "qosDeviceIncarnationId"
      ]
    },
    "/data/CISCO-QOS-PIB-MIB:qosDeviceAttributeTable": {
      "get": {
        "summary": "Get qosDeviceAttributeTable data",
        "description": "Retrieve qosDeviceAttributeTable operational data from MIB",
        "tags": [
          "CISCO-QOS-PIB-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "description": "The single instance of this class indicates specific\n        attributes of the device.  These include configuration values\n        such as the configured PDP addresses, the maximum message\n        size, and specific device capabilities.  The latter include\n        input port-based and output port-based classification and/or\n        policing, support for flow based policing, aggregate based\n        policing, traffic shaping capabilities, etc.",
                  "properties": {
                    "qosDeviceAttributeEntry": {
                      "type": "array",
                      "description": "The single instance of this class indicates specific\n          attributes of the device.",
                      "items": {
                        "type": "object",
                        "properties": {
                          "qosDeviceAttributeId": {
                            "type": "string",
                            "description": "An integer index to identify the instance of the policy class.",
                            "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId"
                          },
                          "qosDevicePepDomain": {
                            "type": "string",
                            "description": "The QoS domain that this device belongs to.  This is\n            configured locally on the device (perhaps by some management\n            protocol such as SNMP).  By default, it is the zero-length\n            string.",
                            "x-yang-type": "snmpv2-tc:DisplayString"
                          },
                          "qosDevicePrimaryPdp": {
                            "type": "string",
                            "description": "The address of the PDP configured to be the primary PDP for\n            the device.",
                            "format": "inet:ipv4-address"
                          },
                          "qosDeviceSecondaryPdp": {
                            "type": "string",
                            "description": "The address of the PDP configured to be the secondary PDP for\n            the device.  An address of zero indicates no secondary is\n            configured.",
                            "format": "inet:ipv4-address"
                          },
                          "qosDeviceMaxMessageSize": {
                            "type": "integer",
                            "description": "The maximum size message that this PEP is capable of\n            receiving in bytes.  A value of zero means that the maximum\n            message size is unspecified (but does not mean it is\n            unlimited).  A message greater than this maximum results in a\n            MessageTooBig error on a 'no commit' REP.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "qosDeviceCapabilities": {
                            "type": "string",
                            "description": "An enumeration of device capabilities.  Used by the PDP to\n            select policies and configuration to push to the PEP."
                          }
                        }
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-QOS-PIB-MIB:qosDeviceAttributeTable": {
                    "qosDeviceAttributeEntry": [
                      {
                        "qosDeviceAttributeId": "example-string",
                        "qosDevicePepDomain": "example-string",
                        "qosDevicePrimaryPdp": "example-string",
                        "qosDeviceSecondaryPdp": "example-string",
                        "qosDeviceMaxMessageSize": 0,
                        "qosDeviceCapabilities": "example-string"
                      },
                      {
                        "qosDeviceAttributeId": "example-string",
                        "qosDevicePepDomain": "example-string",
                        "qosDevicePrimaryPdp": "example-string",
                        "qosDeviceSecondaryPdp": "example-string",
                        "qosDeviceMaxMessageSize": 0,
                        "qosDeviceCapabilities": "example-string"
                      },
                      {
                        "qosDeviceAttributeId": "example-string",
                        "qosDevicePepDomain": "example-string",
                        "qosDevicePrimaryPdp": "example-string",
                        "qosDeviceSecondaryPdp": "example-string",
                        "qosDeviceMaxMessageSize": 0,
                        "qosDeviceCapabilities": "example-string"
                      }
                    ]
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-qosDeviceAttributeTable",
        "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": "/qosDeviceAttributeTable",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-QOS-PIB-MIB:qosDeviceAttributeTable/qosDeviceAttributeEntry": {
      "get": {
        "summary": "Get qosDeviceAttributeEntry list",
        "description": "Retrieve list of qosDeviceAttributeEntry entries from MIB",
        "tags": [
          "CISCO-QOS-PIB-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "The single instance of this class indicates specific\n          attributes of the device.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "qosDeviceAttributeId": {
                        "type": "string",
                        "description": "An integer index to identify the instance of the policy class.",
                        "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId"
                      },
                      "qosDevicePepDomain": {
                        "type": "string",
                        "description": "The QoS domain that this device belongs to.  This is\n            configured locally on the device (perhaps by some management\n            protocol such as SNMP).  By default, it is the zero-length\n            string.",
                        "x-yang-type": "snmpv2-tc:DisplayString"
                      },
                      "qosDevicePrimaryPdp": {
                        "type": "string",
                        "description": "The address of the PDP configured to be the primary PDP for\n            the device.",
                        "format": "inet:ipv4-address"
                      },
                      "qosDeviceSecondaryPdp": {
                        "type": "string",
                        "description": "The address of the PDP configured to be the secondary PDP for\n            the device.  An address of zero indicates no secondary is\n            configured.",
                        "format": "inet:ipv4-address"
                      },
                      "qosDeviceMaxMessageSize": {
                        "type": "integer",
                        "description": "The maximum size message that this PEP is capable of\n            receiving in bytes.  A value of zero means that the maximum\n            message size is unspecified (but does not mean it is\n            unlimited).  A message greater than this maximum results in a\n            MessageTooBig error on a 'no commit' REP.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "qosDeviceCapabilities": {
                        "type": "string",
                        "description": "An enumeration of device capabilities.  Used by the PDP to\n            select policies and configuration to push to the PEP."
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-QOS-PIB-MIB:qosDeviceAttributeEntry": [
                    {
                      "qosDeviceAttributeId": "example-string",
                      "qosDevicePepDomain": "example-string",
                      "qosDevicePrimaryPdp": "example-string",
                      "qosDeviceSecondaryPdp": "example-string",
                      "qosDeviceMaxMessageSize": 0,
                      "qosDeviceCapabilities": "example-string"
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-qosDeviceAttributeEntry",
        "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": "/qosDeviceAttributeTable/qosDeviceAttributeEntry",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-QOS-PIB-MIB:qosDeviceAttributeTable/qosDeviceAttributeEntry={qosDeviceAttributeId}": {
      "get": {
        "summary": "Get qosDeviceAttributeEntry entry",
        "description": "Retrieve specific qosDeviceAttributeEntry entry by key from MIB",
        "tags": [
          "CISCO-QOS-PIB-MIB"
        ],
        "parameters": [
          {
            "name": "qosDeviceAttributeId",
            "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": {
                    "qosDeviceAttributeId": {
                      "type": "string",
                      "description": "An integer index to identify the instance of the policy class.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId"
                    },
                    "qosDevicePepDomain": {
                      "type": "string",
                      "description": "The QoS domain that this device belongs to.  This is\n            configured locally on the device (perhaps by some management\n            protocol such as SNMP).  By default, it is the zero-length\n            string.",
                      "x-yang-type": "snmpv2-tc:DisplayString"
                    },
                    "qosDevicePrimaryPdp": {
                      "type": "string",
                      "description": "The address of the PDP configured to be the primary PDP for\n            the device.",
                      "format": "inet:ipv4-address"
                    },
                    "qosDeviceSecondaryPdp": {
                      "type": "string",
                      "description": "The address of the PDP configured to be the secondary PDP for\n            the device.  An address of zero indicates no secondary is\n            configured.",
                      "format": "inet:ipv4-address"
                    },
                    "qosDeviceMaxMessageSize": {
                      "type": "integer",
                      "description": "The maximum size message that this PEP is capable of\n            receiving in bytes.  A value of zero means that the maximum\n            message size is unspecified (but does not mean it is\n            unlimited).  A message greater than this maximum results in a\n            MessageTooBig error on a 'no commit' REP.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "qosDeviceCapabilities": {
                      "type": "string",
                      "description": "An enumeration of device capabilities.  Used by the PDP to\n            select policies and configuration to push to the PEP."
                    }
                  }
                },
                "example": {
                  "CISCO-QOS-PIB-MIB:qosDeviceAttributeEntry": {
                    "qosDeviceAttributeId": "example-string",
                    "qosDevicePepDomain": "example-string",
                    "qosDevicePrimaryPdp": "example-string",
                    "qosDeviceSecondaryPdp": "example-string",
                    "qosDeviceMaxMessageSize": 0,
                    "qosDeviceCapabilities": "example-string"
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-qosDeviceAttributeEntry-2"
      },
      "x-yang-path": "/qosDeviceAttributeTable/qosDeviceAttributeEntry={qosDeviceAttributeId}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "qosDeviceAttributeId"
      ]
    },
    "/data/CISCO-QOS-PIB-MIB:qosInterfaceTypeTable": {
      "get": {
        "summary": "Get qosInterfaceTypeTable data",
        "description": "Retrieve qosInterfaceTypeTable operational data from MIB",
        "tags": [
          "CISCO-QOS-PIB-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "description": "This class describes the interface types of the interfaces\n        that exist on the device.  It includes the queue type, role\n        combination and capabilities of interfaces.  The PEP does not\n        report which specific interfaces have which characteristics.",
                  "properties": {
                    "qosInterfaceTypeEntry": {
                      "type": "array",
                      "description": "An instance of this class describes a role combination for\n          an interface type of an interface that exists on the device.",
                      "items": {
                        "type": "object",
                        "properties": {
                          "qosInterfaceTypeId": {
                            "type": "string",
                            "description": "An integer index to identify the instance of the policy class.",
                            "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId"
                          },
                          "qosInterfaceQueueType": {
                            "type": "string",
                            "description": "The interface type in terms of number of queues and\n            thresholds.",
                            "x-yang-type": "CISCO-QOS-PIB-MIB:QosInterfaceQueueType"
                          },
                          "qosInterfaceTypeRoles": {
                            "type": "string",
                            "description": "A combination of roles on at least one interface of type\n            qosInterfaceType.",
                            "x-yang-type": "CISCO-QOS-PIB-MIB:RoleCombination"
                          },
                          "qosInterfaceTypeCapabilities": {
                            "type": "string",
                            "description": "An enumeration of interface capabilities.  Used by the PDP to\n            select policies and configuration to push to the PEP.",
                            "x-yang-type": "CISCO-QOS-PIB-MIB:QosInterfaceTypeCapabilities"
                          }
                        }
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-QOS-PIB-MIB:qosInterfaceTypeTable": {
                    "qosInterfaceTypeEntry": [
                      {
                        "qosInterfaceTypeId": "GigabitEthernet1/0/1",
                        "qosInterfaceQueueType": "GigabitEthernet1/0/1",
                        "qosInterfaceTypeRoles": "GigabitEthernet1/0/1",
                        "qosInterfaceTypeCapabilities": "GigabitEthernet1/0/1"
                      },
                      {
                        "qosInterfaceTypeId": "GigabitEthernet1/0/1",
                        "qosInterfaceQueueType": "GigabitEthernet1/0/1",
                        "qosInterfaceTypeRoles": "GigabitEthernet1/0/1",
                        "qosInterfaceTypeCapabilities": "GigabitEthernet1/0/1"
                      },
                      {
                        "qosInterfaceTypeId": "GigabitEthernet1/0/1",
                        "qosInterfaceQueueType": "GigabitEthernet1/0/1",
                        "qosInterfaceTypeRoles": "GigabitEthernet1/0/1",
                        "qosInterfaceTypeCapabilities": "GigabitEthernet1/0/1"
                      }
                    ]
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-qosInterfaceTypeTable",
        "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": "/qosInterfaceTypeTable",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-QOS-PIB-MIB:qosInterfaceTypeTable/qosInterfaceTypeEntry": {
      "get": {
        "summary": "Get qosInterfaceTypeEntry list",
        "description": "Retrieve list of qosInterfaceTypeEntry entries from MIB",
        "tags": [
          "CISCO-QOS-PIB-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "An instance of this class describes a role combination for\n          an interface type of an interface that exists on the device.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "qosInterfaceTypeId": {
                        "type": "string",
                        "description": "An integer index to identify the instance of the policy class.",
                        "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId"
                      },
                      "qosInterfaceQueueType": {
                        "type": "string",
                        "description": "The interface type in terms of number of queues and\n            thresholds.",
                        "x-yang-type": "CISCO-QOS-PIB-MIB:QosInterfaceQueueType"
                      },
                      "qosInterfaceTypeRoles": {
                        "type": "string",
                        "description": "A combination of roles on at least one interface of type\n            qosInterfaceType.",
                        "x-yang-type": "CISCO-QOS-PIB-MIB:RoleCombination"
                      },
                      "qosInterfaceTypeCapabilities": {
                        "type": "string",
                        "description": "An enumeration of interface capabilities.  Used by the PDP to\n            select policies and configuration to push to the PEP.",
                        "x-yang-type": "CISCO-QOS-PIB-MIB:QosInterfaceTypeCapabilities"
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-QOS-PIB-MIB:qosInterfaceTypeEntry": [
                    {
                      "qosInterfaceTypeId": "GigabitEthernet1/0/1",
                      "qosInterfaceQueueType": "GigabitEthernet1/0/1",
                      "qosInterfaceTypeRoles": "GigabitEthernet1/0/1",
                      "qosInterfaceTypeCapabilities": "GigabitEthernet1/0/1"
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-qosInterfaceTypeEntry",
        "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": "/qosInterfaceTypeTable/qosInterfaceTypeEntry",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-QOS-PIB-MIB:qosInterfaceTypeTable/qosInterfaceTypeEntry={qosInterfaceTypeId}": {
      "get": {
        "summary": "Get qosInterfaceTypeEntry entry",
        "description": "Retrieve specific qosInterfaceTypeEntry entry by key from MIB",
        "tags": [
          "CISCO-QOS-PIB-MIB"
        ],
        "parameters": [
          {
            "name": "qosInterfaceTypeId",
            "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": {
                    "qosInterfaceTypeId": {
                      "type": "string",
                      "description": "An integer index to identify the instance of the policy class.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId"
                    },
                    "qosInterfaceQueueType": {
                      "type": "string",
                      "description": "The interface type in terms of number of queues and\n            thresholds.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:QosInterfaceQueueType"
                    },
                    "qosInterfaceTypeRoles": {
                      "type": "string",
                      "description": "A combination of roles on at least one interface of type\n            qosInterfaceType.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:RoleCombination"
                    },
                    "qosInterfaceTypeCapabilities": {
                      "type": "string",
                      "description": "An enumeration of interface capabilities.  Used by the PDP to\n            select policies and configuration to push to the PEP.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:QosInterfaceTypeCapabilities"
                    }
                  }
                },
                "example": {
                  "CISCO-QOS-PIB-MIB:qosInterfaceTypeEntry": {
                    "qosInterfaceTypeId": "GigabitEthernet1/0/1",
                    "qosInterfaceQueueType": "GigabitEthernet1/0/1",
                    "qosInterfaceTypeRoles": "GigabitEthernet1/0/1",
                    "qosInterfaceTypeCapabilities": "GigabitEthernet1/0/1"
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-qosInterfaceTypeEntry-2"
      },
      "x-yang-path": "/qosInterfaceTypeTable/qosInterfaceTypeEntry={qosInterfaceTypeId}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "qosInterfaceTypeId"
      ]
    },
    "/data/CISCO-QOS-PIB-MIB:qosDiffServMappingTable": {
      "get": {
        "summary": "Get qosDiffServMappingTable data",
        "description": "Retrieve qosDiffServMappingTable operational data from MIB",
        "tags": [
          "CISCO-QOS-PIB-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "description": "Maps each DSCP to a marked-down DSCP.  Also maps each DSCP to\n        an IP precedence and QosLayer2Cos.  When configured for the\n        first time, all 64 entries of the table must be\n        specified. Thereafter, instances may be modified (with a\n        delete and install in a single decision) but not deleted\n        unless all instances are deleted.",
                  "properties": {
                    "qosDiffServMappingEntry": {
                      "type": "array",
                      "description": "An instance of this class represents mappings from a DSCP.",
                      "items": {
                        "type": "object",
                        "properties": {
                          "qosDscp": {
                            "type": "string",
                            "description": "A DSCP for which this entry contains mappings.",
                            "x-yang-type": "CISCO-QOS-PIB-MIB:Dscp"
                          },
                          "qosMarkedDscp": {
                            "type": "string",
                            "description": "The DSCP to use instead of the qosDscp when the packet is out\n            of profile and hence marked as such.",
                            "x-yang-type": "CISCO-QOS-PIB-MIB:Dscp"
                          },
                          "qosL2Cos": {
                            "type": "string",
                            "description": "The L2 CoS value to use when mapping this DSCP to layer 2\n            CoS.",
                            "x-yang-type": "CISCO-QOS-PIB-MIB:QosLayer2Cos"
                          }
                        }
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-QOS-PIB-MIB:qosDiffServMappingTable": {
                    "qosDiffServMappingEntry": [
                      {
                        "qosDscp": "example-string",
                        "qosMarkedDscp": "example-string",
                        "qosL2Cos": "example-string"
                      },
                      {
                        "qosDscp": "example-string",
                        "qosMarkedDscp": "example-string",
                        "qosL2Cos": "example-string"
                      },
                      {
                        "qosDscp": "example-string",
                        "qosMarkedDscp": "example-string",
                        "qosL2Cos": "example-string"
                      }
                    ]
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-qosDiffServMappingTable",
        "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": "/qosDiffServMappingTable",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-QOS-PIB-MIB:qosDiffServMappingTable/qosDiffServMappingEntry": {
      "get": {
        "summary": "Get qosDiffServMappingEntry list",
        "description": "Retrieve list of qosDiffServMappingEntry entries from MIB",
        "tags": [
          "CISCO-QOS-PIB-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "An instance of this class represents mappings from a DSCP.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "qosDscp": {
                        "type": "string",
                        "description": "A DSCP for which this entry contains mappings.",
                        "x-yang-type": "CISCO-QOS-PIB-MIB:Dscp"
                      },
                      "qosMarkedDscp": {
                        "type": "string",
                        "description": "The DSCP to use instead of the qosDscp when the packet is out\n            of profile and hence marked as such.",
                        "x-yang-type": "CISCO-QOS-PIB-MIB:Dscp"
                      },
                      "qosL2Cos": {
                        "type": "string",
                        "description": "The L2 CoS value to use when mapping this DSCP to layer 2\n            CoS.",
                        "x-yang-type": "CISCO-QOS-PIB-MIB:QosLayer2Cos"
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-QOS-PIB-MIB:qosDiffServMappingEntry": [
                    {
                      "qosDscp": "example-string",
                      "qosMarkedDscp": "example-string",
                      "qosL2Cos": "example-string"
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-qosDiffServMappingEntry",
        "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": "/qosDiffServMappingTable/qosDiffServMappingEntry",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-QOS-PIB-MIB:qosDiffServMappingTable/qosDiffServMappingEntry={qosDscp}": {
      "get": {
        "summary": "Get qosDiffServMappingEntry entry",
        "description": "Retrieve specific qosDiffServMappingEntry entry by key from MIB",
        "tags": [
          "CISCO-QOS-PIB-MIB"
        ],
        "parameters": [
          {
            "name": "qosDscp",
            "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": {
                    "qosDscp": {
                      "type": "string",
                      "description": "A DSCP for which this entry contains mappings.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:Dscp"
                    },
                    "qosMarkedDscp": {
                      "type": "string",
                      "description": "The DSCP to use instead of the qosDscp when the packet is out\n            of profile and hence marked as such.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:Dscp"
                    },
                    "qosL2Cos": {
                      "type": "string",
                      "description": "The L2 CoS value to use when mapping this DSCP to layer 2\n            CoS.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:QosLayer2Cos"
                    }
                  }
                },
                "example": {
                  "CISCO-QOS-PIB-MIB:qosDiffServMappingEntry": {
                    "qosDscp": "example-string",
                    "qosMarkedDscp": "example-string",
                    "qosL2Cos": "example-string"
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-qosDiffServMappingEntry-2"
      },
      "x-yang-path": "/qosDiffServMappingTable/qosDiffServMappingEntry={qosDscp}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "qosDscp"
      ]
    },
    "/data/CISCO-QOS-PIB-MIB:qosCosToDscpTable": {
      "get": {
        "summary": "Get qosCosToDscpTable data",
        "description": "Retrieve qosCosToDscpTable operational data from MIB",
        "tags": [
          "CISCO-QOS-PIB-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "description": "Maps each of eight CoS values to a DSCP.  When configured for\n        the first time, all 8 entries of the table must be\n        specified. Thereafter, instances may be modified (with a\n        delete and install in a single decision) but not deleted\n        unless all instances are deleted.",
                  "properties": {
                    "qosCosToDscpEntry": {
                      "type": "array",
                      "description": "An instance of this class maps a CoS value to a DSCP.",
                      "items": {
                        "type": "object",
                        "properties": {
                          "qosCosToDscpCos": {
                            "type": "string",
                            "description": "The L2 CoS value that is being mapped.",
                            "x-yang-type": "CISCO-QOS-PIB-MIB:QosLayer2Cos"
                          },
                          "qosCosToDscpDscp": {
                            "type": "string",
                            "description": "The DSCP value to use when mapping the L2 CoS to a DSCP.",
                            "x-yang-type": "CISCO-QOS-PIB-MIB:Dscp"
                          }
                        }
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-QOS-PIB-MIB:qosCosToDscpTable": {
                    "qosCosToDscpEntry": [
                      {
                        "qosCosToDscpCos": "example-string",
                        "qosCosToDscpDscp": "example-string"
                      },
                      {
                        "qosCosToDscpCos": "example-string",
                        "qosCosToDscpDscp": "example-string"
                      },
                      {
                        "qosCosToDscpCos": "example-string",
                        "qosCosToDscpDscp": "example-string"
                      }
                    ]
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-qosCosToDscpTable",
        "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": "/qosCosToDscpTable",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-QOS-PIB-MIB:qosCosToDscpTable/qosCosToDscpEntry": {
      "get": {
        "summary": "Get qosCosToDscpEntry list",
        "description": "Retrieve list of qosCosToDscpEntry entries from MIB",
        "tags": [
          "CISCO-QOS-PIB-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "An instance of this class maps a CoS value to a DSCP.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "qosCosToDscpCos": {
                        "type": "string",
                        "description": "The L2 CoS value that is being mapped.",
                        "x-yang-type": "CISCO-QOS-PIB-MIB:QosLayer2Cos"
                      },
                      "qosCosToDscpDscp": {
                        "type": "string",
                        "description": "The DSCP value to use when mapping the L2 CoS to a DSCP.",
                        "x-yang-type": "CISCO-QOS-PIB-MIB:Dscp"
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-QOS-PIB-MIB:qosCosToDscpEntry": [
                    {
                      "qosCosToDscpCos": "example-string",
                      "qosCosToDscpDscp": "example-string"
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-qosCosToDscpEntry",
        "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": "/qosCosToDscpTable/qosCosToDscpEntry",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-QOS-PIB-MIB:qosCosToDscpTable/qosCosToDscpEntry={qosCosToDscpCos}": {
      "get": {
        "summary": "Get qosCosToDscpEntry entry",
        "description": "Retrieve specific qosCosToDscpEntry entry by key from MIB",
        "tags": [
          "CISCO-QOS-PIB-MIB"
        ],
        "parameters": [
          {
            "name": "qosCosToDscpCos",
            "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": {
                    "qosCosToDscpCos": {
                      "type": "string",
                      "description": "The L2 CoS value that is being mapped.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:QosLayer2Cos"
                    },
                    "qosCosToDscpDscp": {
                      "type": "string",
                      "description": "The DSCP value to use when mapping the L2 CoS to a DSCP.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:Dscp"
                    }
                  }
                },
                "example": {
                  "CISCO-QOS-PIB-MIB:qosCosToDscpEntry": {
                    "qosCosToDscpCos": "example-string",
                    "qosCosToDscpDscp": "example-string"
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-qosCosToDscpEntry-2"
      },
      "x-yang-path": "/qosCosToDscpTable/qosCosToDscpEntry={qosCosToDscpCos}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "qosCosToDscpCos"
      ]
    },
    "/data/CISCO-QOS-PIB-MIB:qosUnmatchedPolicyTable": {
      "get": {
        "summary": "Get qosUnmatchedPolicyTable data",
        "description": "Retrieve qosUnmatchedPolicyTable operational data from MIB",
        "tags": [
          "CISCO-QOS-PIB-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "description": "A policy class that specifies what QoS to apply to a packet\n        that does not match any other policy configured for this role\n        combination for a particular direction of traffic.",
                  "properties": {
                    "qosUnmatchedPolicyEntry": {
                      "type": "array",
                      "description": "An instance of this class specifies the unmatched policy\n          for a particular role combination for incoming or outgoing\n          traffic.",
                      "items": {
                        "type": "object",
                        "properties": {
                          "qosUnmatchedPolicyId": {
                            "type": "string",
                            "description": "An integer index to identify the instance of the policy class.",
                            "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId"
                          },
                          "qosUnmatchedPolicyRole": {
                            "type": "string",
                            "description": "Role combination for which this instance applies.",
                            "x-yang-type": "CISCO-QOS-PIB-MIB:RoleCombination"
                          },
                          "qosUnmatchedPolicyDirection": {
                            "type": "string",
                            "description": "The direction of packet flow at the interface in question to\n            which this instance applies."
                          },
                          "qosUnmatchedPolicyDscp": {
                            "type": "string",
                            "description": "The DSCP to classify the unmatched packet with.  This must be\n            specified even if qosUnmatchedPolicyDscpTrusted is true.",
                            "x-yang-type": "CISCO-QOS-PIB-MIB:Dscp"
                          },
                          "qosUnmatchedPolicyDscpTrusted": {
                            "type": "boolean",
                            "description": "If this attribute is true, then the Dscp associated with the\n            packet is trusted, i.e., it is assumed to have already been\n            set.  In this case, the Dscp is not rewritten with\n            qosUnmatchedPolicyDscp (qosUnmatchedPolicyDscp is ignored)\n            unless this is a non-IP packet and arrives untagged.  The\n            packet is still policed as part of its micro flow and its\n            aggregate flow.\n            \n            When a trusted action is applied to an input interface, the\n            Dscp (for an IP packet) or CoS (for a non-IP packet)\n            associated with the packet is the one contained in the packet.\n            When a trusted action is applied to an output interface, the\n            Dscp associated with the packet is the one that is the result\n            of the input classification and policing."
                          },
                          "qosUnmatchPolMicroFlowPolicerId": {
                            "type": "string",
                            "description": "An index identifying the instance of policer to apply to\n            unmatched packets.  It must correspond to the integer index of\n            an instance of class qosPolicerTable or be zero.  If zero, the\n            microflow is not policed.",
                            "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId"
                          },
                          "qosUnmatchedPolicyAggregateId": {
                            "type": "string",
                            "description": "An index identifying the aggregate that the packet belongs\n            to.  It must correspond to the integer index of an instance of\n            class qosAggregateTable or be zero.  If zero, the microflow\n            does not belong to any aggregate and is not policed as part of\n            any aggregate.",
                            "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId"
                          }
                        }
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-QOS-PIB-MIB:qosUnmatchedPolicyTable": {
                    "qosUnmatchedPolicyEntry": [
                      {
                        "qosUnmatchedPolicyId": "example-string",
                        "qosUnmatchedPolicyRole": "example-string",
                        "qosUnmatchedPolicyDirection": "example-string",
                        "qosUnmatchedPolicyDscp": "example-string",
                        "qosUnmatchedPolicyDscpTrusted": true,
                        "qosUnmatchPolMicroFlowPolicerId": "example-string",
                        "qosUnmatchedPolicyAggregateId": "example-string"
                      },
                      {
                        "qosUnmatchedPolicyId": "example-string",
                        "qosUnmatchedPolicyRole": "example-string",
                        "qosUnmatchedPolicyDirection": "example-string",
                        "qosUnmatchedPolicyDscp": "example-string",
                        "qosUnmatchedPolicyDscpTrusted": true,
                        "qosUnmatchPolMicroFlowPolicerId": "example-string",
                        "qosUnmatchedPolicyAggregateId": "example-string"
                      },
                      {
                        "qosUnmatchedPolicyId": "example-string",
                        "qosUnmatchedPolicyRole": "example-string",
                        "qosUnmatchedPolicyDirection": "example-string",
                        "qosUnmatchedPolicyDscp": "example-string",
                        "qosUnmatchedPolicyDscpTrusted": true,
                        "qosUnmatchPolMicroFlowPolicerId": "example-string",
                        "qosUnmatchedPolicyAggregateId": "example-string"
                      }
                    ]
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-qosUnmatchedPolicyTable",
        "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": "/qosUnmatchedPolicyTable",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-QOS-PIB-MIB:qosUnmatchedPolicyTable/qosUnmatchedPolicyEntry": {
      "get": {
        "summary": "Get qosUnmatchedPolicyEntry list",
        "description": "Retrieve list of qosUnmatchedPolicyEntry entries from MIB",
        "tags": [
          "CISCO-QOS-PIB-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "An instance of this class specifies the unmatched policy\n          for a particular role combination for incoming or outgoing\n          traffic.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "qosUnmatchedPolicyId": {
                        "type": "string",
                        "description": "An integer index to identify the instance of the policy class.",
                        "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId"
                      },
                      "qosUnmatchedPolicyRole": {
                        "type": "string",
                        "description": "Role combination for which this instance applies.",
                        "x-yang-type": "CISCO-QOS-PIB-MIB:RoleCombination"
                      },
                      "qosUnmatchedPolicyDirection": {
                        "type": "string",
                        "description": "The direction of packet flow at the interface in question to\n            which this instance applies."
                      },
                      "qosUnmatchedPolicyDscp": {
                        "type": "string",
                        "description": "The DSCP to classify the unmatched packet with.  This must be\n            specified even if qosUnmatchedPolicyDscpTrusted is true.",
                        "x-yang-type": "CISCO-QOS-PIB-MIB:Dscp"
                      },
                      "qosUnmatchedPolicyDscpTrusted": {
                        "type": "boolean",
                        "description": "If this attribute is true, then the Dscp associated with the\n            packet is trusted, i.e., it is assumed to have already been\n            set.  In this case, the Dscp is not rewritten with\n            qosUnmatchedPolicyDscp (qosUnmatchedPolicyDscp is ignored)\n            unless this is a non-IP packet and arrives untagged.  The\n            packet is still policed as part of its micro flow and its\n            aggregate flow.\n            \n            When a trusted action is applied to an input interface, the\n            Dscp (for an IP packet) or CoS (for a non-IP packet)\n            associated with the packet is the one contained in the packet.\n            When a trusted action is applied to an output interface, the\n            Dscp associated with the packet is the one that is the result\n            of the input classification and policing."
                      },
                      "qosUnmatchPolMicroFlowPolicerId": {
                        "type": "string",
                        "description": "An index identifying the instance of policer to apply to\n            unmatched packets.  It must correspond to the integer index of\n            an instance of class qosPolicerTable or be zero.  If zero, the\n            microflow is not policed.",
                        "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId"
                      },
                      "qosUnmatchedPolicyAggregateId": {
                        "type": "string",
                        "description": "An index identifying the aggregate that the packet belongs\n            to.  It must correspond to the integer index of an instance of\n            class qosAggregateTable or be zero.  If zero, the microflow\n            does not belong to any aggregate and is not policed as part of\n            any aggregate.",
                        "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId"
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-QOS-PIB-MIB:qosUnmatchedPolicyEntry": [
                    {
                      "qosUnmatchedPolicyId": "example-string",
                      "qosUnmatchedPolicyRole": "example-string",
                      "qosUnmatchedPolicyDirection": "example-string",
                      "qosUnmatchedPolicyDscp": "example-string",
                      "qosUnmatchedPolicyDscpTrusted": true,
                      "qosUnmatchPolMicroFlowPolicerId": "example-string",
                      "qosUnmatchedPolicyAggregateId": "example-string"
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-qosUnmatchedPolicyEntry",
        "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": "/qosUnmatchedPolicyTable/qosUnmatchedPolicyEntry",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-QOS-PIB-MIB:qosUnmatchedPolicyTable/qosUnmatchedPolicyEntry={qosUnmatchedPolicyId}": {
      "get": {
        "summary": "Get qosUnmatchedPolicyEntry entry",
        "description": "Retrieve specific qosUnmatchedPolicyEntry entry by key from MIB",
        "tags": [
          "CISCO-QOS-PIB-MIB"
        ],
        "parameters": [
          {
            "name": "qosUnmatchedPolicyId",
            "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": {
                    "qosUnmatchedPolicyId": {
                      "type": "string",
                      "description": "An integer index to identify the instance of the policy class.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId"
                    },
                    "qosUnmatchedPolicyRole": {
                      "type": "string",
                      "description": "Role combination for which this instance applies.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:RoleCombination"
                    },
                    "qosUnmatchedPolicyDirection": {
                      "type": "string",
                      "description": "The direction of packet flow at the interface in question to\n            which this instance applies."
                    },
                    "qosUnmatchedPolicyDscp": {
                      "type": "string",
                      "description": "The DSCP to classify the unmatched packet with.  This must be\n            specified even if qosUnmatchedPolicyDscpTrusted is true.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:Dscp"
                    },
                    "qosUnmatchedPolicyDscpTrusted": {
                      "type": "boolean",
                      "description": "If this attribute is true, then the Dscp associated with the\n            packet is trusted, i.e., it is assumed to have already been\n            set.  In this case, the Dscp is not rewritten with\n            qosUnmatchedPolicyDscp (qosUnmatchedPolicyDscp is ignored)\n            unless this is a non-IP packet and arrives untagged.  The\n            packet is still policed as part of its micro flow and its\n            aggregate flow.\n            \n            When a trusted action is applied to an input interface, the\n            Dscp (for an IP packet) or CoS (for a non-IP packet)\n            associated with the packet is the one contained in the packet.\n            When a trusted action is applied to an output interface, the\n            Dscp associated with the packet is the one that is the result\n            of the input classification and policing."
                    },
                    "qosUnmatchPolMicroFlowPolicerId": {
                      "type": "string",
                      "description": "An index identifying the instance of policer to apply to\n            unmatched packets.  It must correspond to the integer index of\n            an instance of class qosPolicerTable or be zero.  If zero, the\n            microflow is not policed.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId"
                    },
                    "qosUnmatchedPolicyAggregateId": {
                      "type": "string",
                      "description": "An index identifying the aggregate that the packet belongs\n            to.  It must correspond to the integer index of an instance of\n            class qosAggregateTable or be zero.  If zero, the microflow\n            does not belong to any aggregate and is not policed as part of\n            any aggregate.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId"
                    }
                  }
                },
                "example": {
                  "CISCO-QOS-PIB-MIB:qosUnmatchedPolicyEntry": {
                    "qosUnmatchedPolicyId": "example-string",
                    "qosUnmatchedPolicyRole": "example-string",
                    "qosUnmatchedPolicyDirection": "example-string",
                    "qosUnmatchedPolicyDscp": "example-string",
                    "qosUnmatchedPolicyDscpTrusted": true,
                    "qosUnmatchPolMicroFlowPolicerId": "example-string",
                    "qosUnmatchedPolicyAggregateId": "example-string"
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-qosUnmatchedPolicyEntry-2"
      },
      "x-yang-path": "/qosUnmatchedPolicyTable/qosUnmatchedPolicyEntry={qosUnmatchedPolicyId}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "qosUnmatchedPolicyId"
      ]
    },
    "/data/CISCO-QOS-PIB-MIB:qosPolicerTable": {
      "get": {
        "summary": "Get qosPolicerTable data",
        "description": "Retrieve qosPolicerTable operational data from MIB",
        "tags": [
          "CISCO-QOS-PIB-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "description": "A class specifying policing parameters for both microflows\n        and aggregate flows.  This table is designed for policing\n        according to a token bucket scheme where an average rate and\n        burst size is specified.",
                  "properties": {
                    "qosPolicerEntry": {
                      "type": "array",
                      "description": "An instance of this class specifies a set of policing\n          parameters.",
                      "items": {
                        "type": "object",
                        "properties": {
                          "qosPolicerId": {
                            "type": "string",
                            "description": "An integer index to identify the instance of the policy class.",
                            "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId"
                          },
                          "qosPolicerRate": {
                            "type": "integer",
                            "description": "The token rate.  It is specified in units of bit/s. A rate of\n            zero means that all packets will be out of profile.  If the\n            qosPolicerAction is set to drop then this effectively\n            denies any service to packets policed by this policer.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "qosPolicerNormalBurst": {
                            "type": "integer",
                            "description": "The normal size of a burst in terms of bits.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "qosPolicerExcessBurst": {
                            "type": "integer",
                            "description": "The excess size of a burst in terms of bits.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "qosPolicerAction": {
                            "type": "string",
                            "description": "An indication of how to handle out of profile packets.  When\n            the shape action is chosen then traffic is shaped to the rate\n            specified by qosPolicerRate."
                          }
                        }
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-QOS-PIB-MIB:qosPolicerTable": {
                    "qosPolicerEntry": [
                      {
                        "qosPolicerId": "example-string",
                        "qosPolicerRate": 0,
                        "qosPolicerNormalBurst": 0,
                        "qosPolicerExcessBurst": 0,
                        "qosPolicerAction": "example-string"
                      },
                      {
                        "qosPolicerId": "example-string",
                        "qosPolicerRate": 0,
                        "qosPolicerNormalBurst": 0,
                        "qosPolicerExcessBurst": 0,
                        "qosPolicerAction": "example-string"
                      },
                      {
                        "qosPolicerId": "example-string",
                        "qosPolicerRate": 0,
                        "qosPolicerNormalBurst": 0,
                        "qosPolicerExcessBurst": 0,
                        "qosPolicerAction": "example-string"
                      }
                    ]
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-qosPolicerTable",
        "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": "/qosPolicerTable",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-QOS-PIB-MIB:qosPolicerTable/qosPolicerEntry": {
      "get": {
        "summary": "Get qosPolicerEntry list",
        "description": "Retrieve list of qosPolicerEntry entries from MIB",
        "tags": [
          "CISCO-QOS-PIB-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "An instance of this class specifies a set of policing\n          parameters.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "qosPolicerId": {
                        "type": "string",
                        "description": "An integer index to identify the instance of the policy class.",
                        "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId"
                      },
                      "qosPolicerRate": {
                        "type": "integer",
                        "description": "The token rate.  It is specified in units of bit/s. A rate of\n            zero means that all packets will be out of profile.  If the\n            qosPolicerAction is set to drop then this effectively\n            denies any service to packets policed by this policer.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "qosPolicerNormalBurst": {
                        "type": "integer",
                        "description": "The normal size of a burst in terms of bits.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "qosPolicerExcessBurst": {
                        "type": "integer",
                        "description": "The excess size of a burst in terms of bits.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "qosPolicerAction": {
                        "type": "string",
                        "description": "An indication of how to handle out of profile packets.  When\n            the shape action is chosen then traffic is shaped to the rate\n            specified by qosPolicerRate."
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-QOS-PIB-MIB:qosPolicerEntry": [
                    {
                      "qosPolicerId": "example-string",
                      "qosPolicerRate": 0,
                      "qosPolicerNormalBurst": 0,
                      "qosPolicerExcessBurst": 0,
                      "qosPolicerAction": "example-string"
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-qosPolicerEntry",
        "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": "/qosPolicerTable/qosPolicerEntry",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-QOS-PIB-MIB:qosPolicerTable/qosPolicerEntry={qosPolicerId}": {
      "get": {
        "summary": "Get qosPolicerEntry entry",
        "description": "Retrieve specific qosPolicerEntry entry by key from MIB",
        "tags": [
          "CISCO-QOS-PIB-MIB"
        ],
        "parameters": [
          {
            "name": "qosPolicerId",
            "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": {
                    "qosPolicerId": {
                      "type": "string",
                      "description": "An integer index to identify the instance of the policy class.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId"
                    },
                    "qosPolicerRate": {
                      "type": "integer",
                      "description": "The token rate.  It is specified in units of bit/s. A rate of\n            zero means that all packets will be out of profile.  If the\n            qosPolicerAction is set to drop then this effectively\n            denies any service to packets policed by this policer.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "qosPolicerNormalBurst": {
                      "type": "integer",
                      "description": "The normal size of a burst in terms of bits.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "qosPolicerExcessBurst": {
                      "type": "integer",
                      "description": "The excess size of a burst in terms of bits.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "qosPolicerAction": {
                      "type": "string",
                      "description": "An indication of how to handle out of profile packets.  When\n            the shape action is chosen then traffic is shaped to the rate\n            specified by qosPolicerRate."
                    }
                  }
                },
                "example": {
                  "CISCO-QOS-PIB-MIB:qosPolicerEntry": {
                    "qosPolicerId": "example-string",
                    "qosPolicerRate": 0,
                    "qosPolicerNormalBurst": 0,
                    "qosPolicerExcessBurst": 0,
                    "qosPolicerAction": "example-string"
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-qosPolicerEntry-2"
      },
      "x-yang-path": "/qosPolicerTable/qosPolicerEntry={qosPolicerId}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "qosPolicerId"
      ]
    },
    "/data/CISCO-QOS-PIB-MIB:qosAggregateTable": {
      "get": {
        "summary": "Get qosAggregateTable data",
        "description": "Retrieve qosAggregateTable operational data from MIB",
        "tags": [
          "CISCO-QOS-PIB-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "description": "Instances of this class identify aggregate flows and the\n        policer to apply to each.",
                  "properties": {
                    "qosAggregateEntry": {
                      "type": "array",
                      "description": "An instance of this class specifies the policer to apply to\n          an aggregate flow.",
                      "items": {
                        "type": "object",
                        "properties": {
                          "qosAggregateId": {
                            "type": "string",
                            "description": "An integer index to identify the instance of the policy class.",
                            "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId"
                          },
                          "qosAggregatePolicerId": {
                            "type": "string",
                            "description": "An index identifying the instance of policer to apply to the\n            aggregate.  It must correspond to the integer index of an\n            instance of class qosPolicerTable.",
                            "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId"
                          }
                        }
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-QOS-PIB-MIB:qosAggregateTable": {
                    "qosAggregateEntry": [
                      {
                        "qosAggregateId": "example-string",
                        "qosAggregatePolicerId": "example-string"
                      },
                      {
                        "qosAggregateId": "example-string",
                        "qosAggregatePolicerId": "example-string"
                      },
                      {
                        "qosAggregateId": "example-string",
                        "qosAggregatePolicerId": "example-string"
                      }
                    ]
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-qosAggregateTable",
        "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": "/qosAggregateTable",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-QOS-PIB-MIB:qosAggregateTable/qosAggregateEntry": {
      "get": {
        "summary": "Get qosAggregateEntry list",
        "description": "Retrieve list of qosAggregateEntry entries from MIB",
        "tags": [
          "CISCO-QOS-PIB-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "An instance of this class specifies the policer to apply to\n          an aggregate flow.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "qosAggregateId": {
                        "type": "string",
                        "description": "An integer index to identify the instance of the policy class.",
                        "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId"
                      },
                      "qosAggregatePolicerId": {
                        "type": "string",
                        "description": "An index identifying the instance of policer to apply to the\n            aggregate.  It must correspond to the integer index of an\n            instance of class qosPolicerTable.",
                        "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId"
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-QOS-PIB-MIB:qosAggregateEntry": [
                    {
                      "qosAggregateId": "example-string",
                      "qosAggregatePolicerId": "example-string"
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-qosAggregateEntry",
        "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": "/qosAggregateTable/qosAggregateEntry",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-QOS-PIB-MIB:qosAggregateTable/qosAggregateEntry={qosAggregateId}": {
      "get": {
        "summary": "Get qosAggregateEntry entry",
        "description": "Retrieve specific qosAggregateEntry entry by key from MIB",
        "tags": [
          "CISCO-QOS-PIB-MIB"
        ],
        "parameters": [
          {
            "name": "qosAggregateId",
            "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": {
                    "qosAggregateId": {
                      "type": "string",
                      "description": "An integer index to identify the instance of the policy class.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId"
                    },
                    "qosAggregatePolicerId": {
                      "type": "string",
                      "description": "An index identifying the instance of policer to apply to the\n            aggregate.  It must correspond to the integer index of an\n            instance of class qosPolicerTable.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId"
                    }
                  }
                },
                "example": {
                  "CISCO-QOS-PIB-MIB:qosAggregateEntry": {
                    "qosAggregateId": "example-string",
                    "qosAggregatePolicerId": "example-string"
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-qosAggregateEntry-2"
      },
      "x-yang-path": "/qosAggregateTable/qosAggregateEntry={qosAggregateId}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "qosAggregateId"
      ]
    },
    "/data/CISCO-QOS-PIB-MIB:qosMacClassificationTable": {
      "get": {
        "summary": "Get qosMacClassificationTable data",
        "description": "Retrieve qosMacClassificationTable operational data from MIB",
        "tags": [
          "CISCO-QOS-PIB-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "description": "A class of MAC/Vlan tuples and their associated CoS values.",
                  "properties": {
                    "qosMacClassificationEntry": {
                      "type": "array",
                      "description": "An instance of this class specifies the mapping of a VLAN\n          and a MAC address to a CoS value.",
                      "items": {
                        "type": "object",
                        "properties": {
                          "qosMacClassificationId": {
                            "type": "string",
                            "description": "An integer index to identify the instance of the policy class.",
                            "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId"
                          },
                          "qosDstMacVlan": {
                            "type": "integer",
                            "description": "The VLAN of the destination MAC address of the L2 frame.",
                            "minimum": -2147483648,
                            "maximum": 2147483647
                          },
                          "qosDstMacAddress": {
                            "type": "string",
                            "description": "The destination MAC address of the L2 frame.",
                            "x-yang-type": "yang:mac-address"
                          },
                          "qosDstMacCos": {
                            "type": "string",
                            "description": "The CoS to assign the packet with the associated MAC/VLAN\n            tuple.  Note that this CoS is overridden by the policies to\n            classify the frame at layer 3 if there are any.",
                            "x-yang-type": "CISCO-QOS-PIB-MIB:QosLayer2Cos"
                          }
                        }
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-QOS-PIB-MIB:qosMacClassificationTable": {
                    "qosMacClassificationEntry": [
                      {
                        "qosMacClassificationId": "00:11:22:33:44:55",
                        "qosDstMacVlan": -2147483648,
                        "qosDstMacAddress": "00:11:22:33:44:55",
                        "qosDstMacCos": "00:11:22:33:44:55"
                      },
                      {
                        "qosMacClassificationId": "00:11:22:33:44:55",
                        "qosDstMacVlan": -2147483648,
                        "qosDstMacAddress": "00:11:22:33:44:55",
                        "qosDstMacCos": "00:11:22:33:44:55"
                      },
                      {
                        "qosMacClassificationId": "00:11:22:33:44:55",
                        "qosDstMacVlan": -2147483648,
                        "qosDstMacAddress": "00:11:22:33:44:55",
                        "qosDstMacCos": "00:11:22:33:44:55"
                      }
                    ]
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-qosMacClassificationTable",
        "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": "/qosMacClassificationTable",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-QOS-PIB-MIB:qosMacClassificationTable/qosMacClassificationEntry": {
      "get": {
        "summary": "Get qosMacClassificationEntry list",
        "description": "Retrieve list of qosMacClassificationEntry entries from MIB",
        "tags": [
          "CISCO-QOS-PIB-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "An instance of this class specifies the mapping of a VLAN\n          and a MAC address to a CoS value.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "qosMacClassificationId": {
                        "type": "string",
                        "description": "An integer index to identify the instance of the policy class.",
                        "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId"
                      },
                      "qosDstMacVlan": {
                        "type": "integer",
                        "description": "The VLAN of the destination MAC address of the L2 frame.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "qosDstMacAddress": {
                        "type": "string",
                        "description": "The destination MAC address of the L2 frame.",
                        "x-yang-type": "yang:mac-address"
                      },
                      "qosDstMacCos": {
                        "type": "string",
                        "description": "The CoS to assign the packet with the associated MAC/VLAN\n            tuple.  Note that this CoS is overridden by the policies to\n            classify the frame at layer 3 if there are any.",
                        "x-yang-type": "CISCO-QOS-PIB-MIB:QosLayer2Cos"
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-QOS-PIB-MIB:qosMacClassificationEntry": [
                    {
                      "qosMacClassificationId": "00:11:22:33:44:55",
                      "qosDstMacVlan": -2147483648,
                      "qosDstMacAddress": "00:11:22:33:44:55",
                      "qosDstMacCos": "00:11:22:33:44:55"
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-qosMacClassificationEntry",
        "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": "/qosMacClassificationTable/qosMacClassificationEntry",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-QOS-PIB-MIB:qosMacClassificationTable/qosMacClassificationEntry={qosMacClassificationId}": {
      "get": {
        "summary": "Get qosMacClassificationEntry entry",
        "description": "Retrieve specific qosMacClassificationEntry entry by key from MIB",
        "tags": [
          "CISCO-QOS-PIB-MIB"
        ],
        "parameters": [
          {
            "name": "qosMacClassificationId",
            "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": {
                    "qosMacClassificationId": {
                      "type": "string",
                      "description": "An integer index to identify the instance of the policy class.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId"
                    },
                    "qosDstMacVlan": {
                      "type": "integer",
                      "description": "The VLAN of the destination MAC address of the L2 frame.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "qosDstMacAddress": {
                      "type": "string",
                      "description": "The destination MAC address of the L2 frame.",
                      "x-yang-type": "yang:mac-address"
                    },
                    "qosDstMacCos": {
                      "type": "string",
                      "description": "The CoS to assign the packet with the associated MAC/VLAN\n            tuple.  Note that this CoS is overridden by the policies to\n            classify the frame at layer 3 if there are any.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:QosLayer2Cos"
                    }
                  }
                },
                "example": {
                  "CISCO-QOS-PIB-MIB:qosMacClassificationEntry": {
                    "qosMacClassificationId": "00:11:22:33:44:55",
                    "qosDstMacVlan": -2147483648,
                    "qosDstMacAddress": "00:11:22:33:44:55",
                    "qosDstMacCos": "00:11:22:33:44:55"
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-qosMacClassificationEntry-2"
      },
      "x-yang-path": "/qosMacClassificationTable/qosMacClassificationEntry={qosMacClassificationId}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "qosMacClassificationId"
      ]
    },
    "/data/CISCO-QOS-PIB-MIB:qosIpAceTable": {
      "get": {
        "summary": "Get qosIpAceTable data",
        "description": "Retrieve qosIpAceTable operational data from MIB",
        "tags": [
          "CISCO-QOS-PIB-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "description": "ACE definitions.",
                  "properties": {
                    "qosIpAceEntry": {
                      "type": "array",
                      "description": "An instance of this class specifies an ACE.",
                      "items": {
                        "type": "object",
                        "properties": {
                          "qosIpAceId": {
                            "type": "string",
                            "description": "An integer index to identify the instance of the policy class.",
                            "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId"
                          },
                          "qosIpAceDstAddr": {
                            "type": "string",
                            "description": "The IP address to match against the packet's destination IP\n            address.",
                            "format": "inet:ipv4-address"
                          },
                          "qosIpAceDstAddrMask": {
                            "type": "string",
                            "description": "A mask for the matching of the destination IP address.",
                            "format": "inet:ipv4-address"
                          },
                          "qosIpAceSrcAddr": {
                            "type": "string",
                            "description": "The IP address to match against the packet's source IP\n            address.",
                            "format": "inet:ipv4-address"
                          },
                          "qosIpAceSrcAddrMask": {
                            "type": "string",
                            "description": "A mask for the matching of the source IP address.",
                            "format": "inet:ipv4-address"
                          },
                          "qosIpAceDscpMin": {
                            "type": "string",
                            "description": "The minimum value that the DSCP in the packet can have and\n            match this ACE.",
                            "x-yang-type": "CISCO-QOS-PIB-MIB:Dscp"
                          },
                          "qosIpAceDscpMax": {
                            "type": "string",
                            "description": "The maximum value that the DSCP in the packet can have and\n            match this ACE.",
                            "x-yang-type": "CISCO-QOS-PIB-MIB:Dscp"
                          },
                          "qosIpAceProtocol": {
                            "type": "integer",
                            "description": "The IP protocol to match against the packet's protocol.\n            A value of zero means match all.",
                            "minimum": -2147483648,
                            "maximum": 2147483647
                          },
                          "qosIpAceDstL4PortMin": {
                            "type": "integer",
                            "description": "The minimum value that the packet's layer 4 dest port number\n            can have and match this ACE.",
                            "minimum": -2147483648,
                            "maximum": 2147483647
                          },
                          "qosIpAceDstL4PortMax": {
                            "type": "integer",
                            "description": "The maximum value that the packet's layer 4 dest port number\n            can have and match this ACE.",
                            "minimum": -2147483648,
                            "maximum": 2147483647
                          },
                          "qosIpAceSrcL4PortMin": {
                            "type": "integer",
                            "description": "The minimum value that the packet's layer 4 source port\n            number can have and match this ACE.",
                            "minimum": -2147483648,
                            "maximum": 2147483647
                          },
                          "qosIpAceSrcL4PortMax": {
                            "type": "integer",
                            "description": "The maximum value that the packet's layer 4 source port\n            number can have and match this ACE.",
                            "minimum": -2147483648,
                            "maximum": 2147483647
                          },
                          "qosIpAcePermit": {
                            "type": "boolean",
                            "description": "If the packet matches this ACE and the value of this attribute\n            is true, then the matching process terminates and the QoS\n            associated with this ACE (indirectly through the ACL) is\n            applied to the packet.  If the value of this attribute is false,\n            then no more ACEs in this ACL are compared to this packet and\n            matching continues with the first ACE of the next ACL."
                          }
                        }
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-QOS-PIB-MIB:qosIpAceTable": {
                    "qosIpAceEntry": [
                      {
                        "qosIpAceId": "192.168.1.1",
                        "qosIpAceDstAddr": "192.168.1.1",
                        "qosIpAceDstAddrMask": "192.168.1.1",
                        "qosIpAceSrcAddr": "192.168.1.1",
                        "qosIpAceSrcAddrMask": "192.168.1.1",
                        "qosIpAceDscpMin": "192.168.1.1",
                        "qosIpAceDscpMax": "192.168.1.1",
                        "qosIpAceProtocol": -2147483648,
                        "qosIpAceDstL4PortMin": -2147483648,
                        "qosIpAceDstL4PortMax": -2147483648,
                        "qosIpAceSrcL4PortMin": -2147483648,
                        "qosIpAceSrcL4PortMax": -2147483648,
                        "qosIpAcePermit": true
                      },
                      {
                        "qosIpAceId": "192.168.1.1",
                        "qosIpAceDstAddr": "192.168.1.1",
                        "qosIpAceDstAddrMask": "192.168.1.1",
                        "qosIpAceSrcAddr": "192.168.1.1",
                        "qosIpAceSrcAddrMask": "192.168.1.1",
                        "qosIpAceDscpMin": "192.168.1.1",
                        "qosIpAceDscpMax": "192.168.1.1",
                        "qosIpAceProtocol": -2147483648,
                        "qosIpAceDstL4PortMin": -2147483648,
                        "qosIpAceDstL4PortMax": -2147483648,
                        "qosIpAceSrcL4PortMin": -2147483648,
                        "qosIpAceSrcL4PortMax": -2147483648,
                        "qosIpAcePermit": true
                      },
                      {
                        "qosIpAceId": "192.168.1.1",
                        "qosIpAceDstAddr": "192.168.1.1",
                        "qosIpAceDstAddrMask": "192.168.1.1",
                        "qosIpAceSrcAddr": "192.168.1.1",
                        "qosIpAceSrcAddrMask": "192.168.1.1",
                        "qosIpAceDscpMin": "192.168.1.1",
                        "qosIpAceDscpMax": "192.168.1.1",
                        "qosIpAceProtocol": -2147483648,
                        "qosIpAceDstL4PortMin": -2147483648,
                        "qosIpAceDstL4PortMax": -2147483648,
                        "qosIpAceSrcL4PortMin": -2147483648,
                        "qosIpAceSrcL4PortMax": -2147483648,
                        "qosIpAcePermit": true
                      }
                    ]
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-qosIpAceTable",
        "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": "/qosIpAceTable",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-QOS-PIB-MIB:qosIpAceTable/qosIpAceEntry": {
      "get": {
        "summary": "Get qosIpAceEntry list",
        "description": "Retrieve list of qosIpAceEntry entries from MIB",
        "tags": [
          "CISCO-QOS-PIB-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "An instance of this class specifies an ACE.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "qosIpAceId": {
                        "type": "string",
                        "description": "An integer index to identify the instance of the policy class.",
                        "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId"
                      },
                      "qosIpAceDstAddr": {
                        "type": "string",
                        "description": "The IP address to match against the packet's destination IP\n            address.",
                        "format": "inet:ipv4-address"
                      },
                      "qosIpAceDstAddrMask": {
                        "type": "string",
                        "description": "A mask for the matching of the destination IP address.",
                        "format": "inet:ipv4-address"
                      },
                      "qosIpAceSrcAddr": {
                        "type": "string",
                        "description": "The IP address to match against the packet's source IP\n            address.",
                        "format": "inet:ipv4-address"
                      },
                      "qosIpAceSrcAddrMask": {
                        "type": "string",
                        "description": "A mask for the matching of the source IP address.",
                        "format": "inet:ipv4-address"
                      },
                      "qosIpAceDscpMin": {
                        "type": "string",
                        "description": "The minimum value that the DSCP in the packet can have and\n            match this ACE.",
                        "x-yang-type": "CISCO-QOS-PIB-MIB:Dscp"
                      },
                      "qosIpAceDscpMax": {
                        "type": "string",
                        "description": "The maximum value that the DSCP in the packet can have and\n            match this ACE.",
                        "x-yang-type": "CISCO-QOS-PIB-MIB:Dscp"
                      },
                      "qosIpAceProtocol": {
                        "type": "integer",
                        "description": "The IP protocol to match against the packet's protocol.\n            A value of zero means match all.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "qosIpAceDstL4PortMin": {
                        "type": "integer",
                        "description": "The minimum value that the packet's layer 4 dest port number\n            can have and match this ACE.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "qosIpAceDstL4PortMax": {
                        "type": "integer",
                        "description": "The maximum value that the packet's layer 4 dest port number\n            can have and match this ACE.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "qosIpAceSrcL4PortMin": {
                        "type": "integer",
                        "description": "The minimum value that the packet's layer 4 source port\n            number can have and match this ACE.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "qosIpAceSrcL4PortMax": {
                        "type": "integer",
                        "description": "The maximum value that the packet's layer 4 source port\n            number can have and match this ACE.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "qosIpAcePermit": {
                        "type": "boolean",
                        "description": "If the packet matches this ACE and the value of this attribute\n            is true, then the matching process terminates and the QoS\n            associated with this ACE (indirectly through the ACL) is\n            applied to the packet.  If the value of this attribute is false,\n            then no more ACEs in this ACL are compared to this packet and\n            matching continues with the first ACE of the next ACL."
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-QOS-PIB-MIB:qosIpAceEntry": [
                    {
                      "qosIpAceId": "192.168.1.1",
                      "qosIpAceDstAddr": "192.168.1.1",
                      "qosIpAceDstAddrMask": "192.168.1.1",
                      "qosIpAceSrcAddr": "192.168.1.1",
                      "qosIpAceSrcAddrMask": "192.168.1.1",
                      "qosIpAceDscpMin": "192.168.1.1",
                      "qosIpAceDscpMax": "192.168.1.1",
                      "qosIpAceProtocol": -2147483648,
                      "qosIpAceDstL4PortMin": -2147483648,
                      "qosIpAceDstL4PortMax": -2147483648,
                      "qosIpAceSrcL4PortMin": -2147483648,
                      "qosIpAceSrcL4PortMax": -2147483648,
                      "qosIpAcePermit": true
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-qosIpAceEntry",
        "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": "/qosIpAceTable/qosIpAceEntry",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-QOS-PIB-MIB:qosIpAceTable/qosIpAceEntry={qosIpAceId}": {
      "get": {
        "summary": "Get qosIpAceEntry entry",
        "description": "Retrieve specific qosIpAceEntry entry by key from MIB",
        "tags": [
          "CISCO-QOS-PIB-MIB"
        ],
        "parameters": [
          {
            "name": "qosIpAceId",
            "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": {
                    "qosIpAceId": {
                      "type": "string",
                      "description": "An integer index to identify the instance of the policy class.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId"
                    },
                    "qosIpAceDstAddr": {
                      "type": "string",
                      "description": "The IP address to match against the packet's destination IP\n            address.",
                      "format": "inet:ipv4-address"
                    },
                    "qosIpAceDstAddrMask": {
                      "type": "string",
                      "description": "A mask for the matching of the destination IP address.",
                      "format": "inet:ipv4-address"
                    },
                    "qosIpAceSrcAddr": {
                      "type": "string",
                      "description": "The IP address to match against the packet's source IP\n            address.",
                      "format": "inet:ipv4-address"
                    },
                    "qosIpAceSrcAddrMask": {
                      "type": "string",
                      "description": "A mask for the matching of the source IP address.",
                      "format": "inet:ipv4-address"
                    },
                    "qosIpAceDscpMin": {
                      "type": "string",
                      "description": "The minimum value that the DSCP in the packet can have and\n            match this ACE.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:Dscp"
                    },
                    "qosIpAceDscpMax": {
                      "type": "string",
                      "description": "The maximum value that the DSCP in the packet can have and\n            match this ACE.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:Dscp"
                    },
                    "qosIpAceProtocol": {
                      "type": "integer",
                      "description": "The IP protocol to match against the packet's protocol.\n            A value of zero means match all.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "qosIpAceDstL4PortMin": {
                      "type": "integer",
                      "description": "The minimum value that the packet's layer 4 dest port number\n            can have and match this ACE.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "qosIpAceDstL4PortMax": {
                      "type": "integer",
                      "description": "The maximum value that the packet's layer 4 dest port number\n            can have and match this ACE.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "qosIpAceSrcL4PortMin": {
                      "type": "integer",
                      "description": "The minimum value that the packet's layer 4 source port\n            number can have and match this ACE.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "qosIpAceSrcL4PortMax": {
                      "type": "integer",
                      "description": "The maximum value that the packet's layer 4 source port\n            number can have and match this ACE.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "qosIpAcePermit": {
                      "type": "boolean",
                      "description": "If the packet matches this ACE and the value of this attribute\n            is true, then the matching process terminates and the QoS\n            associated with this ACE (indirectly through the ACL) is\n            applied to the packet.  If the value of this attribute is false,\n            then no more ACEs in this ACL are compared to this packet and\n            matching continues with the first ACE of the next ACL."
                    }
                  }
                },
                "example": {
                  "CISCO-QOS-PIB-MIB:qosIpAceEntry": {
                    "qosIpAceId": "192.168.1.1",
                    "qosIpAceDstAddr": "192.168.1.1",
                    "qosIpAceDstAddrMask": "192.168.1.1",
                    "qosIpAceSrcAddr": "192.168.1.1",
                    "qosIpAceSrcAddrMask": "192.168.1.1",
                    "qosIpAceDscpMin": "192.168.1.1",
                    "qosIpAceDscpMax": "192.168.1.1",
                    "qosIpAceProtocol": -2147483648,
                    "qosIpAceDstL4PortMin": -2147483648,
                    "qosIpAceDstL4PortMax": -2147483648,
                    "qosIpAceSrcL4PortMin": -2147483648,
                    "qosIpAceSrcL4PortMax": -2147483648,
                    "qosIpAcePermit": true
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-qosIpAceEntry-2"
      },
      "x-yang-path": "/qosIpAceTable/qosIpAceEntry={qosIpAceId}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "qosIpAceId"
      ]
    },
    "/data/CISCO-QOS-PIB-MIB:qosIpAclDefinitionTable": {
      "get": {
        "summary": "Get qosIpAclDefinitionTable data",
        "description": "Retrieve qosIpAclDefinitionTable operational data from MIB",
        "tags": [
          "CISCO-QOS-PIB-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "description": "A class that defines a set of ACLs each being an ordered list\n        of ACEs.",
                  "properties": {
                    "qosIpAclDefinitionEntry": {
                      "type": "array",
                      "description": "An instance of this class specifies an ACE in an ACL and its\n          order with respect to other ACEs in the same ACL.",
                      "items": {
                        "type": "object",
                        "properties": {
                          "qosIpAclDefinitionId": {
                            "type": "string",
                            "description": "An integer index to identify the instance of the policy class.",
                            "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId"
                          },
                          "qosIpAclId": {
                            "type": "string",
                            "description": "An index for this ACL.  There will be one instance of\n            policy class qosIpAclDefinition with this integer index for\n            each ACE in the ACL per role combination.",
                            "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId"
                          },
                          "qosIpAceOrder": {
                            "type": "integer",
                            "description": "An integer that determines the position of this ACE in the ACL.\n            An ACE with a given order is positioned in the access contol\n            list before one with a higher order.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "qosIpAclDefAceId": {
                            "type": "string",
                            "description": "This attribute specifies the ACE in the qosIpAceTable that is\n            in the ACL specified by qosIpAclId at the position specified\n            by qosIpAceOrder.",
                            "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId"
                          }
                        }
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-QOS-PIB-MIB:qosIpAclDefinitionTable": {
                    "qosIpAclDefinitionEntry": [
                      {
                        "qosIpAclDefinitionId": "192.168.1.1",
                        "qosIpAclId": "192.168.1.1",
                        "qosIpAceOrder": 0,
                        "qosIpAclDefAceId": "192.168.1.1"
                      },
                      {
                        "qosIpAclDefinitionId": "192.168.1.1",
                        "qosIpAclId": "192.168.1.1",
                        "qosIpAceOrder": 0,
                        "qosIpAclDefAceId": "192.168.1.1"
                      },
                      {
                        "qosIpAclDefinitionId": "192.168.1.1",
                        "qosIpAclId": "192.168.1.1",
                        "qosIpAceOrder": 0,
                        "qosIpAclDefAceId": "192.168.1.1"
                      }
                    ]
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-qosIpAclDefinitionTable",
        "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": "/qosIpAclDefinitionTable",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-QOS-PIB-MIB:qosIpAclDefinitionTable/qosIpAclDefinitionEntry": {
      "get": {
        "summary": "Get qosIpAclDefinitionEntry list",
        "description": "Retrieve list of qosIpAclDefinitionEntry entries from MIB",
        "tags": [
          "CISCO-QOS-PIB-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "An instance of this class specifies an ACE in an ACL and its\n          order with respect to other ACEs in the same ACL.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "qosIpAclDefinitionId": {
                        "type": "string",
                        "description": "An integer index to identify the instance of the policy class.",
                        "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId"
                      },
                      "qosIpAclId": {
                        "type": "string",
                        "description": "An index for this ACL.  There will be one instance of\n            policy class qosIpAclDefinition with this integer index for\n            each ACE in the ACL per role combination.",
                        "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId"
                      },
                      "qosIpAceOrder": {
                        "type": "integer",
                        "description": "An integer that determines the position of this ACE in the ACL.\n            An ACE with a given order is positioned in the access contol\n            list before one with a higher order.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "qosIpAclDefAceId": {
                        "type": "string",
                        "description": "This attribute specifies the ACE in the qosIpAceTable that is\n            in the ACL specified by qosIpAclId at the position specified\n            by qosIpAceOrder.",
                        "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId"
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-QOS-PIB-MIB:qosIpAclDefinitionEntry": [
                    {
                      "qosIpAclDefinitionId": "192.168.1.1",
                      "qosIpAclId": "192.168.1.1",
                      "qosIpAceOrder": 0,
                      "qosIpAclDefAceId": "192.168.1.1"
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-qosIpAclDefinitionEntry",
        "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": "/qosIpAclDefinitionTable/qosIpAclDefinitionEntry",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-QOS-PIB-MIB:qosIpAclDefinitionTable/qosIpAclDefinitionEntry={qosIpAclDefinitionId}": {
      "get": {
        "summary": "Get qosIpAclDefinitionEntry entry",
        "description": "Retrieve specific qosIpAclDefinitionEntry entry by key from MIB",
        "tags": [
          "CISCO-QOS-PIB-MIB"
        ],
        "parameters": [
          {
            "name": "qosIpAclDefinitionId",
            "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": {
                    "qosIpAclDefinitionId": {
                      "type": "string",
                      "description": "An integer index to identify the instance of the policy class.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId"
                    },
                    "qosIpAclId": {
                      "type": "string",
                      "description": "An index for this ACL.  There will be one instance of\n            policy class qosIpAclDefinition with this integer index for\n            each ACE in the ACL per role combination.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId"
                    },
                    "qosIpAceOrder": {
                      "type": "integer",
                      "description": "An integer that determines the position of this ACE in the ACL.\n            An ACE with a given order is positioned in the access contol\n            list before one with a higher order.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "qosIpAclDefAceId": {
                      "type": "string",
                      "description": "This attribute specifies the ACE in the qosIpAceTable that is\n            in the ACL specified by qosIpAclId at the position specified\n            by qosIpAceOrder.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId"
                    }
                  }
                },
                "example": {
                  "CISCO-QOS-PIB-MIB:qosIpAclDefinitionEntry": {
                    "qosIpAclDefinitionId": "192.168.1.1",
                    "qosIpAclId": "192.168.1.1",
                    "qosIpAceOrder": 0,
                    "qosIpAclDefAceId": "192.168.1.1"
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-qosIpAclDefinitionEntry-2"
      },
      "x-yang-path": "/qosIpAclDefinitionTable/qosIpAclDefinitionEntry={qosIpAclDefinitionId}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "qosIpAclDefinitionId"
      ]
    },
    "/data/CISCO-QOS-PIB-MIB:qosIpAclActionTable": {
      "get": {
        "summary": "Get qosIpAclActionTable data",
        "description": "Retrieve qosIpAclActionTable operational data from MIB",
        "tags": [
          "CISCO-QOS-PIB-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "description": "A class that applies a set of ACLs to interfaces specifying,\n        for each interface the order of the ACL with respect to other\n        ACLs applied to the same interface and, for each ACL the\n        action to take for a packet that matches a permit ACE in that\n        ACL.  Interfaces are specified abstractly in terms of\n        interface role combinations.",
                  "properties": {
                    "qosIpAclActionEntry": {
                      "type": "array",
                      "description": "An instance of this class applies an ACL to traffic in a\n          particular direction on an interface with a particular role\n          combination, and specifies the action for packets which match\n          the ACL.",
                      "items": {
                        "type": "object",
                        "properties": {
                          "qosIpAclActionId": {
                            "type": "string",
                            "description": "An integer index to identify the instance of the policy class.",
                            "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId"
                          },
                          "qosIpAclActAclId": {
                            "type": "string",
                            "description": "The ACL associated with this action.",
                            "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId"
                          },
                          "qosIpAclInterfaceRoles": {
                            "type": "string",
                            "description": "The interfaces to which this ACL applies specified in terms\n            of a set of roles.",
                            "x-yang-type": "CISCO-QOS-PIB-MIB:RoleCombination"
                          },
                          "qosIpAclInterfaceDirection": {
                            "type": "string",
                            "description": "The direction of packet flow at the interface in question to\n            which this ACL applies."
                          },
                          "qosIpAclOrder": {
                            "type": "integer",
                            "description": "An integer that determines the order of this ACL in the list\n            of ACLs applied to interfaces of the specified role\n            combination. An ACL with a given order is positioned in the\n            list before one with a higher order.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "qosIpAclDscp": {
                            "type": "string",
                            "description": "The DSCP to classify the packet with in the event that the\n            packet matches an ACE in this ACL and the ACE is a permit.",
                            "x-yang-type": "CISCO-QOS-PIB-MIB:Dscp"
                          },
                          "qosIpAclDscpTrusted": {
                            "type": "boolean",
                            "description": "If this attribute is true, then the Dscp associated with\n            the packet is trusted, i.e., it is assumed to have already\n            been set.  In this case, the Dscp is not rewritten with\n            qosIpAclDscp (qosIpAclDscp is ignored).  The packet is still\n            policed as part of its micro flow and its aggregate flow.\n            \n            When a trusted action is applied to an input interface, the\n            Dscp associated with the packet is the one contained in the\n            packet.  When a trusted action is applied to an output\n            interface, the Dscp associated with the packet is the one that\n            is the result of the input classification and policing."
                          },
                          "qosIpAclMicroFlowPolicerId": {
                            "type": "string",
                            "description": "An index identifying the instance of policer to apply to the\n            microflow.  It must correspond to the integer index of an\n            instance of class qosPolicerTableor be zero.  If zero, the\n            microflow is not policed.",
                            "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId"
                          },
                          "qosIpAclAggregateId": {
                            "type": "string",
                            "description": "An index identifying the aggregate that the packet belongs\n            to.  It must correspond to the integer index of an instance of\n            class qosAggregateTable or be zero.  If zero, the microflow\n            does not belong to any aggregate and is not policed as part of\n            any aggregate.",
                            "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId"
                          }
                        }
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-QOS-PIB-MIB:qosIpAclActionTable": {
                    "qosIpAclActionEntry": [
                      {
                        "qosIpAclActionId": "192.168.1.1",
                        "qosIpAclActAclId": "192.168.1.1",
                        "qosIpAclInterfaceRoles": "192.168.1.1",
                        "qosIpAclInterfaceDirection": "192.168.1.1",
                        "qosIpAclOrder": 0,
                        "qosIpAclDscp": "192.168.1.1",
                        "qosIpAclDscpTrusted": true,
                        "qosIpAclMicroFlowPolicerId": "192.168.1.1",
                        "qosIpAclAggregateId": "192.168.1.1"
                      },
                      {
                        "qosIpAclActionId": "192.168.1.1",
                        "qosIpAclActAclId": "192.168.1.1",
                        "qosIpAclInterfaceRoles": "192.168.1.1",
                        "qosIpAclInterfaceDirection": "192.168.1.1",
                        "qosIpAclOrder": 0,
                        "qosIpAclDscp": "192.168.1.1",
                        "qosIpAclDscpTrusted": true,
                        "qosIpAclMicroFlowPolicerId": "192.168.1.1",
                        "qosIpAclAggregateId": "192.168.1.1"
                      },
                      {
                        "qosIpAclActionId": "192.168.1.1",
                        "qosIpAclActAclId": "192.168.1.1",
                        "qosIpAclInterfaceRoles": "192.168.1.1",
                        "qosIpAclInterfaceDirection": "192.168.1.1",
                        "qosIpAclOrder": 0,
                        "qosIpAclDscp": "192.168.1.1",
                        "qosIpAclDscpTrusted": true,
                        "qosIpAclMicroFlowPolicerId": "192.168.1.1",
                        "qosIpAclAggregateId": "192.168.1.1"
                      }
                    ]
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-qosIpAclActionTable",
        "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": "/qosIpAclActionTable",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-QOS-PIB-MIB:qosIpAclActionTable/qosIpAclActionEntry": {
      "get": {
        "summary": "Get qosIpAclActionEntry list",
        "description": "Retrieve list of qosIpAclActionEntry entries from MIB",
        "tags": [
          "CISCO-QOS-PIB-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "An instance of this class applies an ACL to traffic in a\n          particular direction on an interface with a particular role\n          combination, and specifies the action for packets which match\n          the ACL.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "qosIpAclActionId": {
                        "type": "string",
                        "description": "An integer index to identify the instance of the policy class.",
                        "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId"
                      },
                      "qosIpAclActAclId": {
                        "type": "string",
                        "description": "The ACL associated with this action.",
                        "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId"
                      },
                      "qosIpAclInterfaceRoles": {
                        "type": "string",
                        "description": "The interfaces to which this ACL applies specified in terms\n            of a set of roles.",
                        "x-yang-type": "CISCO-QOS-PIB-MIB:RoleCombination"
                      },
                      "qosIpAclInterfaceDirection": {
                        "type": "string",
                        "description": "The direction of packet flow at the interface in question to\n            which this ACL applies."
                      },
                      "qosIpAclOrder": {
                        "type": "integer",
                        "description": "An integer that determines the order of this ACL in the list\n            of ACLs applied to interfaces of the specified role\n            combination. An ACL with a given order is positioned in the\n            list before one with a higher order.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "qosIpAclDscp": {
                        "type": "string",
                        "description": "The DSCP to classify the packet with in the event that the\n            packet matches an ACE in this ACL and the ACE is a permit.",
                        "x-yang-type": "CISCO-QOS-PIB-MIB:Dscp"
                      },
                      "qosIpAclDscpTrusted": {
                        "type": "boolean",
                        "description": "If this attribute is true, then the Dscp associated with\n            the packet is trusted, i.e., it is assumed to have already\n            been set.  In this case, the Dscp is not rewritten with\n            qosIpAclDscp (qosIpAclDscp is ignored).  The packet is still\n            policed as part of its micro flow and its aggregate flow.\n            \n            When a trusted action is applied to an input interface, the\n            Dscp associated with the packet is the one contained in the\n            packet.  When a trusted action is applied to an output\n            interface, the Dscp associated with the packet is the one that\n            is the result of the input classification and policing."
                      },
                      "qosIpAclMicroFlowPolicerId": {
                        "type": "string",
                        "description": "An index identifying the instance of policer to apply to the\n            microflow.  It must correspond to the integer index of an\n            instance of class qosPolicerTableor be zero.  If zero, the\n            microflow is not policed.",
                        "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId"
                      },
                      "qosIpAclAggregateId": {
                        "type": "string",
                        "description": "An index identifying the aggregate that the packet belongs\n            to.  It must correspond to the integer index of an instance of\n            class qosAggregateTable or be zero.  If zero, the microflow\n            does not belong to any aggregate and is not policed as part of\n            any aggregate.",
                        "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId"
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-QOS-PIB-MIB:qosIpAclActionEntry": [
                    {
                      "qosIpAclActionId": "192.168.1.1",
                      "qosIpAclActAclId": "192.168.1.1",
                      "qosIpAclInterfaceRoles": "192.168.1.1",
                      "qosIpAclInterfaceDirection": "192.168.1.1",
                      "qosIpAclOrder": 0,
                      "qosIpAclDscp": "192.168.1.1",
                      "qosIpAclDscpTrusted": true,
                      "qosIpAclMicroFlowPolicerId": "192.168.1.1",
                      "qosIpAclAggregateId": "192.168.1.1"
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-qosIpAclActionEntry",
        "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": "/qosIpAclActionTable/qosIpAclActionEntry",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-QOS-PIB-MIB:qosIpAclActionTable/qosIpAclActionEntry={qosIpAclActionId}": {
      "get": {
        "summary": "Get qosIpAclActionEntry entry",
        "description": "Retrieve specific qosIpAclActionEntry entry by key from MIB",
        "tags": [
          "CISCO-QOS-PIB-MIB"
        ],
        "parameters": [
          {
            "name": "qosIpAclActionId",
            "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": {
                    "qosIpAclActionId": {
                      "type": "string",
                      "description": "An integer index to identify the instance of the policy class.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId"
                    },
                    "qosIpAclActAclId": {
                      "type": "string",
                      "description": "The ACL associated with this action.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId"
                    },
                    "qosIpAclInterfaceRoles": {
                      "type": "string",
                      "description": "The interfaces to which this ACL applies specified in terms\n            of a set of roles.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:RoleCombination"
                    },
                    "qosIpAclInterfaceDirection": {
                      "type": "string",
                      "description": "The direction of packet flow at the interface in question to\n            which this ACL applies."
                    },
                    "qosIpAclOrder": {
                      "type": "integer",
                      "description": "An integer that determines the order of this ACL in the list\n            of ACLs applied to interfaces of the specified role\n            combination. An ACL with a given order is positioned in the\n            list before one with a higher order.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "qosIpAclDscp": {
                      "type": "string",
                      "description": "The DSCP to classify the packet with in the event that the\n            packet matches an ACE in this ACL and the ACE is a permit.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:Dscp"
                    },
                    "qosIpAclDscpTrusted": {
                      "type": "boolean",
                      "description": "If this attribute is true, then the Dscp associated with\n            the packet is trusted, i.e., it is assumed to have already\n            been set.  In this case, the Dscp is not rewritten with\n            qosIpAclDscp (qosIpAclDscp is ignored).  The packet is still\n            policed as part of its micro flow and its aggregate flow.\n            \n            When a trusted action is applied to an input interface, the\n            Dscp associated with the packet is the one contained in the\n            packet.  When a trusted action is applied to an output\n            interface, the Dscp associated with the packet is the one that\n            is the result of the input classification and policing."
                    },
                    "qosIpAclMicroFlowPolicerId": {
                      "type": "string",
                      "description": "An index identifying the instance of policer to apply to the\n            microflow.  It must correspond to the integer index of an\n            instance of class qosPolicerTableor be zero.  If zero, the\n            microflow is not policed.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId"
                    },
                    "qosIpAclAggregateId": {
                      "type": "string",
                      "description": "An index identifying the aggregate that the packet belongs\n            to.  It must correspond to the integer index of an instance of\n            class qosAggregateTable or be zero.  If zero, the microflow\n            does not belong to any aggregate and is not policed as part of\n            any aggregate.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId"
                    }
                  }
                },
                "example": {
                  "CISCO-QOS-PIB-MIB:qosIpAclActionEntry": {
                    "qosIpAclActionId": "192.168.1.1",
                    "qosIpAclActAclId": "192.168.1.1",
                    "qosIpAclInterfaceRoles": "192.168.1.1",
                    "qosIpAclInterfaceDirection": "192.168.1.1",
                    "qosIpAclOrder": 0,
                    "qosIpAclDscp": "192.168.1.1",
                    "qosIpAclDscpTrusted": true,
                    "qosIpAclMicroFlowPolicerId": "192.168.1.1",
                    "qosIpAclAggregateId": "192.168.1.1"
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-qosIpAclActionEntry-2"
      },
      "x-yang-path": "/qosIpAclActionTable/qosIpAclActionEntry={qosIpAclActionId}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "qosIpAclActionId"
      ]
    },
    "/data/CISCO-QOS-PIB-MIB:qosIfSchedulingPreferencesTable": {
      "get": {
        "summary": "Get qosIfSchedulingPreferencesTable data",
        "description": "Retrieve qosIfSchedulingPreferencesTable operational data from MIB",
        "tags": [
          "CISCO-QOS-PIB-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "description": "This class specifies the scheduling preference an interface\n        chooses if it supports multiple scheduling types.  Higher\n        values are preferred over lower values.",
                  "properties": {
                    "qosIfSchedulingPreferenceEntry": {
                      "type": "array",
                      "description": "An instance of this class specifies a scheduling preference\n          for a queue-type on an interface with a particular role\n          combination.",
                      "items": {
                        "type": "object",
                        "properties": {
                          "qosIfSchedulingPreferenceId": {
                            "type": "string",
                            "description": "An integer index to identify the instance of the policy class.",
                            "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId"
                          },
                          "qosIfSchedulingRoles": {
                            "type": "string",
                            "description": "The combination of roles the interface must have for this\n            policy instance to apply to that interface.",
                            "x-yang-type": "CISCO-QOS-PIB-MIB:RoleCombination"
                          },
                          "qosIfSchedulingPreference": {
                            "type": "integer",
                            "description": "The preference to use this scheduling discipline and queue\n            type.  A higher value means a higher preference.  If two\n            disciplines have the same preference the choice is a local\n            decision.",
                            "minimum": -2147483648,
                            "maximum": 2147483647
                          },
                          "qosIfSchedulingDiscipline": {
                            "type": "string",
                            "description": "An enumerate type for all the known scheduling disciplines."
                          },
                          "qosIfSchedulingQueueType": {
                            "type": "string",
                            "description": "The queue type of this preference.",
                            "x-yang-type": "CISCO-QOS-PIB-MIB:QosInterfaceQueueType"
                          }
                        }
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-QOS-PIB-MIB:qosIfSchedulingPreferencesTable": {
                    "qosIfSchedulingPreferenceEntry": [
                      {
                        "qosIfSchedulingPreferenceId": "example-string",
                        "qosIfSchedulingRoles": "example-string",
                        "qosIfSchedulingPreference": -2147483648,
                        "qosIfSchedulingDiscipline": "192.168.1.1",
                        "qosIfSchedulingQueueType": "ethernetCsmacd(6)"
                      },
                      {
                        "qosIfSchedulingPreferenceId": "example-string",
                        "qosIfSchedulingRoles": "example-string",
                        "qosIfSchedulingPreference": -2147483648,
                        "qosIfSchedulingDiscipline": "192.168.1.1",
                        "qosIfSchedulingQueueType": "ethernetCsmacd(6)"
                      },
                      {
                        "qosIfSchedulingPreferenceId": "example-string",
                        "qosIfSchedulingRoles": "example-string",
                        "qosIfSchedulingPreference": -2147483648,
                        "qosIfSchedulingDiscipline": "192.168.1.1",
                        "qosIfSchedulingQueueType": "ethernetCsmacd(6)"
                      }
                    ]
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-qosIfSchedulingPreferencesTable",
        "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": "/qosIfSchedulingPreferencesTable",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-QOS-PIB-MIB:qosIfSchedulingPreferencesTable/qosIfSchedulingPreferenceEntry": {
      "get": {
        "summary": "Get qosIfSchedulingPreferenceEntry list",
        "description": "Retrieve list of qosIfSchedulingPreferenceEntry entries from MIB",
        "tags": [
          "CISCO-QOS-PIB-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "An instance of this class specifies a scheduling preference\n          for a queue-type on an interface with a particular role\n          combination.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "qosIfSchedulingPreferenceId": {
                        "type": "string",
                        "description": "An integer index to identify the instance of the policy class.",
                        "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId"
                      },
                      "qosIfSchedulingRoles": {
                        "type": "string",
                        "description": "The combination of roles the interface must have for this\n            policy instance to apply to that interface.",
                        "x-yang-type": "CISCO-QOS-PIB-MIB:RoleCombination"
                      },
                      "qosIfSchedulingPreference": {
                        "type": "integer",
                        "description": "The preference to use this scheduling discipline and queue\n            type.  A higher value means a higher preference.  If two\n            disciplines have the same preference the choice is a local\n            decision.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "qosIfSchedulingDiscipline": {
                        "type": "string",
                        "description": "An enumerate type for all the known scheduling disciplines."
                      },
                      "qosIfSchedulingQueueType": {
                        "type": "string",
                        "description": "The queue type of this preference.",
                        "x-yang-type": "CISCO-QOS-PIB-MIB:QosInterfaceQueueType"
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-QOS-PIB-MIB:qosIfSchedulingPreferenceEntry": [
                    {
                      "qosIfSchedulingPreferenceId": "example-string",
                      "qosIfSchedulingRoles": "example-string",
                      "qosIfSchedulingPreference": -2147483648,
                      "qosIfSchedulingDiscipline": "192.168.1.1",
                      "qosIfSchedulingQueueType": "ethernetCsmacd(6)"
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-qosIfSchedulingPreferenceEntry",
        "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": "/qosIfSchedulingPreferencesTable/qosIfSchedulingPreferenceEntry",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-QOS-PIB-MIB:qosIfSchedulingPreferencesTable/qosIfSchedulingPreferenceEntry={qosIfSchedulingPreferenceId}": {
      "get": {
        "summary": "Get qosIfSchedulingPreferenceEntry entry",
        "description": "Retrieve specific qosIfSchedulingPreferenceEntry entry by key from MIB",
        "tags": [
          "CISCO-QOS-PIB-MIB"
        ],
        "parameters": [
          {
            "name": "qosIfSchedulingPreferenceId",
            "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": {
                    "qosIfSchedulingPreferenceId": {
                      "type": "string",
                      "description": "An integer index to identify the instance of the policy class.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId"
                    },
                    "qosIfSchedulingRoles": {
                      "type": "string",
                      "description": "The combination of roles the interface must have for this\n            policy instance to apply to that interface.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:RoleCombination"
                    },
                    "qosIfSchedulingPreference": {
                      "type": "integer",
                      "description": "The preference to use this scheduling discipline and queue\n            type.  A higher value means a higher preference.  If two\n            disciplines have the same preference the choice is a local\n            decision.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "qosIfSchedulingDiscipline": {
                      "type": "string",
                      "description": "An enumerate type for all the known scheduling disciplines."
                    },
                    "qosIfSchedulingQueueType": {
                      "type": "string",
                      "description": "The queue type of this preference.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:QosInterfaceQueueType"
                    }
                  }
                },
                "example": {
                  "CISCO-QOS-PIB-MIB:qosIfSchedulingPreferenceEntry": {
                    "qosIfSchedulingPreferenceId": "example-string",
                    "qosIfSchedulingRoles": "example-string",
                    "qosIfSchedulingPreference": -2147483648,
                    "qosIfSchedulingDiscipline": "192.168.1.1",
                    "qosIfSchedulingQueueType": "ethernetCsmacd(6)"
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-qosIfSchedulingPreferenceEntry-2"
      },
      "x-yang-path": "/qosIfSchedulingPreferencesTable/qosIfSchedulingPreferenceEntry={qosIfSchedulingPreferenceId}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "qosIfSchedulingPreferenceId"
      ]
    },
    "/data/CISCO-QOS-PIB-MIB:qosIfDropPreferenceTable": {
      "get": {
        "summary": "Get qosIfDropPreferenceTable data",
        "description": "Retrieve qosIfDropPreferenceTable operational data from MIB",
        "tags": [
          "CISCO-QOS-PIB-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "description": "This class specifies the preference of the drop mechanism an\n        interface chooses if it supports multiple drop mechanisms.\n        Higher values are preferred over lower values.",
                  "properties": {
                    "qosIfDropPreferenceEntry": {
                      "type": "array",
                      "description": "An instance of this class specifies a drop preference for\n          a drop mechanism on an interface with a particular role\n          combination.",
                      "items": {
                        "type": "object",
                        "properties": {
                          "qosIfDropPreferenceId": {
                            "type": "string",
                            "description": "An integer index to identify the instance of the policy class.",
                            "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId"
                          },
                          "qosIfDropRoles": {
                            "type": "string",
                            "description": "The combination of roles the interface must have for this\n            policy instance to apply to that interface.",
                            "x-yang-type": "CISCO-QOS-PIB-MIB:RoleCombination"
                          },
                          "qosIfDropPreference": {
                            "type": "integer",
                            "description": "The preference to use this drop mechanism.  A higher value\n            means a higher preference.  If two mechanisms have the same\n            preference the choice is a local decision.",
                            "minimum": -2147483648,
                            "maximum": 2147483647
                          },
                          "qosIfDropDiscipline": {
                            "type": "string",
                            "description": "An enumerate type for all the known drop mechanisms."
                          }
                        }
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-QOS-PIB-MIB:qosIfDropPreferenceTable": {
                    "qosIfDropPreferenceEntry": [
                      {
                        "qosIfDropPreferenceId": "example-string",
                        "qosIfDropRoles": "example-string",
                        "qosIfDropPreference": -2147483648,
                        "qosIfDropDiscipline": "192.168.1.1"
                      },
                      {
                        "qosIfDropPreferenceId": "example-string",
                        "qosIfDropRoles": "example-string",
                        "qosIfDropPreference": -2147483648,
                        "qosIfDropDiscipline": "192.168.1.1"
                      },
                      {
                        "qosIfDropPreferenceId": "example-string",
                        "qosIfDropRoles": "example-string",
                        "qosIfDropPreference": -2147483648,
                        "qosIfDropDiscipline": "192.168.1.1"
                      }
                    ]
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-qosIfDropPreferenceTable",
        "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": "/qosIfDropPreferenceTable",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-QOS-PIB-MIB:qosIfDropPreferenceTable/qosIfDropPreferenceEntry": {
      "get": {
        "summary": "Get qosIfDropPreferenceEntry list",
        "description": "Retrieve list of qosIfDropPreferenceEntry entries from MIB",
        "tags": [
          "CISCO-QOS-PIB-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "An instance of this class specifies a drop preference for\n          a drop mechanism on an interface with a particular role\n          combination.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "qosIfDropPreferenceId": {
                        "type": "string",
                        "description": "An integer index to identify the instance of the policy class.",
                        "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId"
                      },
                      "qosIfDropRoles": {
                        "type": "string",
                        "description": "The combination of roles the interface must have for this\n            policy instance to apply to that interface.",
                        "x-yang-type": "CISCO-QOS-PIB-MIB:RoleCombination"
                      },
                      "qosIfDropPreference": {
                        "type": "integer",
                        "description": "The preference to use this drop mechanism.  A higher value\n            means a higher preference.  If two mechanisms have the same\n            preference the choice is a local decision.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "qosIfDropDiscipline": {
                        "type": "string",
                        "description": "An enumerate type for all the known drop mechanisms."
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-QOS-PIB-MIB:qosIfDropPreferenceEntry": [
                    {
                      "qosIfDropPreferenceId": "example-string",
                      "qosIfDropRoles": "example-string",
                      "qosIfDropPreference": -2147483648,
                      "qosIfDropDiscipline": "192.168.1.1"
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-qosIfDropPreferenceEntry",
        "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": "/qosIfDropPreferenceTable/qosIfDropPreferenceEntry",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-QOS-PIB-MIB:qosIfDropPreferenceTable/qosIfDropPreferenceEntry={qosIfDropPreferenceId}": {
      "get": {
        "summary": "Get qosIfDropPreferenceEntry entry",
        "description": "Retrieve specific qosIfDropPreferenceEntry entry by key from MIB",
        "tags": [
          "CISCO-QOS-PIB-MIB"
        ],
        "parameters": [
          {
            "name": "qosIfDropPreferenceId",
            "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": {
                    "qosIfDropPreferenceId": {
                      "type": "string",
                      "description": "An integer index to identify the instance of the policy class.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId"
                    },
                    "qosIfDropRoles": {
                      "type": "string",
                      "description": "The combination of roles the interface must have for this\n            policy instance to apply to that interface.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:RoleCombination"
                    },
                    "qosIfDropPreference": {
                      "type": "integer",
                      "description": "The preference to use this drop mechanism.  A higher value\n            means a higher preference.  If two mechanisms have the same\n            preference the choice is a local decision.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "qosIfDropDiscipline": {
                      "type": "string",
                      "description": "An enumerate type for all the known drop mechanisms."
                    }
                  }
                },
                "example": {
                  "CISCO-QOS-PIB-MIB:qosIfDropPreferenceEntry": {
                    "qosIfDropPreferenceId": "example-string",
                    "qosIfDropRoles": "example-string",
                    "qosIfDropPreference": -2147483648,
                    "qosIfDropDiscipline": "192.168.1.1"
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-qosIfDropPreferenceEntry-2"
      },
      "x-yang-path": "/qosIfDropPreferenceTable/qosIfDropPreferenceEntry={qosIfDropPreferenceId}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "qosIfDropPreferenceId"
      ]
    },
    "/data/CISCO-QOS-PIB-MIB:qosIfDscpAssignmentTable": {
      "get": {
        "summary": "Get qosIfDscpAssignmentTable data",
        "description": "Retrieve qosIfDscpAssignmentTable operational data from MIB",
        "tags": [
          "CISCO-QOS-PIB-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "description": "The assignment of each DSCP to a queue and threshold for each\n        interface queue type.",
                  "properties": {
                    "qosIfDscpAssignmentEntry": {
                      "type": "array",
                      "description": "An instance of this class specifies the queue and threshold\n          set for a packet with a particular DSCP on an interface of\n          a particular type with a particular role combination.",
                      "items": {
                        "type": "object",
                        "properties": {
                          "qosIfDscpAssignmentId": {
                            "type": "string",
                            "description": "An integer index to identify the instance of the policy class.",
                            "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId"
                          },
                          "qosIfDscpRoles": {
                            "type": "string",
                            "description": "The role combination the interface must be configured with.",
                            "x-yang-type": "CISCO-QOS-PIB-MIB:RoleCombination"
                          },
                          "qosIfQueueType": {
                            "type": "string",
                            "description": "The interface queue type to which this row applies.",
                            "x-yang-type": "CISCO-QOS-PIB-MIB:QosInterfaceQueueType"
                          },
                          "qosIfDscp": {
                            "type": "string",
                            "description": "The DSCP to which this row applies.",
                            "x-yang-type": "CISCO-QOS-PIB-MIB:Dscp"
                          },
                          "qosIfQueue": {
                            "type": "integer",
                            "description": "The queue to which the DSCP applies for the given interface\n            type.",
                            "minimum": -2147483648,
                            "maximum": 2147483647
                          },
                          "qosIfThresholdSet": {
                            "type": "integer",
                            "description": "The threshold set of the specified queue to which the DSCP\n            applies for the given interface type.",
                            "minimum": -2147483648,
                            "maximum": 2147483647
                          }
                        }
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-QOS-PIB-MIB:qosIfDscpAssignmentTable": {
                    "qosIfDscpAssignmentEntry": [
                      {
                        "qosIfDscpAssignmentId": "example-string",
                        "qosIfDscpRoles": "example-string",
                        "qosIfQueueType": "ethernetCsmacd(6)",
                        "qosIfDscp": "example-string",
                        "qosIfQueue": -2147483648,
                        "qosIfThresholdSet": -2147483648
                      },
                      {
                        "qosIfDscpAssignmentId": "example-string",
                        "qosIfDscpRoles": "example-string",
                        "qosIfQueueType": "ethernetCsmacd(6)",
                        "qosIfDscp": "example-string",
                        "qosIfQueue": -2147483648,
                        "qosIfThresholdSet": -2147483648
                      },
                      {
                        "qosIfDscpAssignmentId": "example-string",
                        "qosIfDscpRoles": "example-string",
                        "qosIfQueueType": "ethernetCsmacd(6)",
                        "qosIfDscp": "example-string",
                        "qosIfQueue": -2147483648,
                        "qosIfThresholdSet": -2147483648
                      }
                    ]
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-qosIfDscpAssignmentTable",
        "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": "/qosIfDscpAssignmentTable",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-QOS-PIB-MIB:qosIfDscpAssignmentTable/qosIfDscpAssignmentEntry": {
      "get": {
        "summary": "Get qosIfDscpAssignmentEntry list",
        "description": "Retrieve list of qosIfDscpAssignmentEntry entries from MIB",
        "tags": [
          "CISCO-QOS-PIB-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "An instance of this class specifies the queue and threshold\n          set for a packet with a particular DSCP on an interface of\n          a particular type with a particular role combination.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "qosIfDscpAssignmentId": {
                        "type": "string",
                        "description": "An integer index to identify the instance of the policy class.",
                        "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId"
                      },
                      "qosIfDscpRoles": {
                        "type": "string",
                        "description": "The role combination the interface must be configured with.",
                        "x-yang-type": "CISCO-QOS-PIB-MIB:RoleCombination"
                      },
                      "qosIfQueueType": {
                        "type": "string",
                        "description": "The interface queue type to which this row applies.",
                        "x-yang-type": "CISCO-QOS-PIB-MIB:QosInterfaceQueueType"
                      },
                      "qosIfDscp": {
                        "type": "string",
                        "description": "The DSCP to which this row applies.",
                        "x-yang-type": "CISCO-QOS-PIB-MIB:Dscp"
                      },
                      "qosIfQueue": {
                        "type": "integer",
                        "description": "The queue to which the DSCP applies for the given interface\n            type.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "qosIfThresholdSet": {
                        "type": "integer",
                        "description": "The threshold set of the specified queue to which the DSCP\n            applies for the given interface type.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-QOS-PIB-MIB:qosIfDscpAssignmentEntry": [
                    {
                      "qosIfDscpAssignmentId": "example-string",
                      "qosIfDscpRoles": "example-string",
                      "qosIfQueueType": "ethernetCsmacd(6)",
                      "qosIfDscp": "example-string",
                      "qosIfQueue": -2147483648,
                      "qosIfThresholdSet": -2147483648
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-qosIfDscpAssignmentEntry",
        "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": "/qosIfDscpAssignmentTable/qosIfDscpAssignmentEntry",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-QOS-PIB-MIB:qosIfDscpAssignmentTable/qosIfDscpAssignmentEntry={qosIfDscpAssignmentId}": {
      "get": {
        "summary": "Get qosIfDscpAssignmentEntry entry",
        "description": "Retrieve specific qosIfDscpAssignmentEntry entry by key from MIB",
        "tags": [
          "CISCO-QOS-PIB-MIB"
        ],
        "parameters": [
          {
            "name": "qosIfDscpAssignmentId",
            "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": {
                    "qosIfDscpAssignmentId": {
                      "type": "string",
                      "description": "An integer index to identify the instance of the policy class.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId"
                    },
                    "qosIfDscpRoles": {
                      "type": "string",
                      "description": "The role combination the interface must be configured with.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:RoleCombination"
                    },
                    "qosIfQueueType": {
                      "type": "string",
                      "description": "The interface queue type to which this row applies.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:QosInterfaceQueueType"
                    },
                    "qosIfDscp": {
                      "type": "string",
                      "description": "The DSCP to which this row applies.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:Dscp"
                    },
                    "qosIfQueue": {
                      "type": "integer",
                      "description": "The queue to which the DSCP applies for the given interface\n            type.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "qosIfThresholdSet": {
                      "type": "integer",
                      "description": "The threshold set of the specified queue to which the DSCP\n            applies for the given interface type.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    }
                  }
                },
                "example": {
                  "CISCO-QOS-PIB-MIB:qosIfDscpAssignmentEntry": {
                    "qosIfDscpAssignmentId": "example-string",
                    "qosIfDscpRoles": "example-string",
                    "qosIfQueueType": "ethernetCsmacd(6)",
                    "qosIfDscp": "example-string",
                    "qosIfQueue": -2147483648,
                    "qosIfThresholdSet": -2147483648
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-qosIfDscpAssignmentEntry-2"
      },
      "x-yang-path": "/qosIfDscpAssignmentTable/qosIfDscpAssignmentEntry={qosIfDscpAssignmentId}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "qosIfDscpAssignmentId"
      ]
    },
    "/data/CISCO-QOS-PIB-MIB:qosIfRedTable": {
      "get": {
        "summary": "Get qosIfRedTable data",
        "description": "Retrieve qosIfRedTable operational data from MIB",
        "tags": [
          "CISCO-QOS-PIB-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "description": "A class of lower and upper values for each threshold set in a\n        queue supporting WRED.  If the size of the queue for a given\n        threshold is below the lower value then packets assigned to\n        that threshold are always accepted into the queue.  If the\n        size of the queue is above upper value then packets are always\n        dropped.  If the size of the queue is between the lower and\n        the upper then packets are randomly dropped.",
                  "properties": {
                    "qosIfRedEntry": {
                      "type": "array",
                      "description": "An instance of this class specifies threshold limits for a\n          particular RED threshold of a given threshold set on an\n          interface and with a particular role combination.",
                      "items": {
                        "type": "object",
                        "properties": {
                          "qosIfRedId": {
                            "type": "string",
                            "description": "An integer index to identify the instance of the policy class.",
                            "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId"
                          },
                          "qosIfRedRoles": {
                            "type": "string",
                            "description": "The role combination the interface must be configured with.",
                            "x-yang-type": "CISCO-QOS-PIB-MIB:RoleCombination"
                          },
                          "qosIfRedNumThresholdSets": {
                            "type": "string",
                            "description": "The values in this entry apply only to queues with the number\n            of thresholds specified by this attribute.",
                            "x-yang-type": "CISCO-QOS-PIB-MIB:ThresholdSetRange"
                          },
                          "qosIfRedThresholdSet": {
                            "type": "integer",
                            "description": "The threshold set to which the lower and upper values apply.\n            It must be in the range 1 through qosIfRedNumThresholdSets.\n            There must be exactly one PRI for each value in this range.",
                            "minimum": -2147483648,
                            "maximum": 2147483647
                          },
                          "qosIfRedThresholdSetLower": {
                            "type": "string",
                            "description": "The threshold value below which no packets are dropped.",
                            "x-yang-type": "CISCO-QOS-PIB-MIB:Percent"
                          },
                          "qosIfRedThresholdSetUpper": {
                            "type": "string",
                            "description": "The threshold value above which all packets are dropped.",
                            "x-yang-type": "CISCO-QOS-PIB-MIB:Percent"
                          }
                        }
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-QOS-PIB-MIB:qosIfRedTable": {
                    "qosIfRedEntry": [
                      {
                        "qosIfRedId": "example-string",
                        "qosIfRedRoles": "example-string",
                        "qosIfRedNumThresholdSets": "example-string",
                        "qosIfRedThresholdSet": -2147483648,
                        "qosIfRedThresholdSetLower": "example-string",
                        "qosIfRedThresholdSetUpper": "example-string"
                      },
                      {
                        "qosIfRedId": "example-string",
                        "qosIfRedRoles": "example-string",
                        "qosIfRedNumThresholdSets": "example-string",
                        "qosIfRedThresholdSet": -2147483648,
                        "qosIfRedThresholdSetLower": "example-string",
                        "qosIfRedThresholdSetUpper": "example-string"
                      },
                      {
                        "qosIfRedId": "example-string",
                        "qosIfRedRoles": "example-string",
                        "qosIfRedNumThresholdSets": "example-string",
                        "qosIfRedThresholdSet": -2147483648,
                        "qosIfRedThresholdSetLower": "example-string",
                        "qosIfRedThresholdSetUpper": "example-string"
                      }
                    ]
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-qosIfRedTable",
        "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": "/qosIfRedTable",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-QOS-PIB-MIB:qosIfRedTable/qosIfRedEntry": {
      "get": {
        "summary": "Get qosIfRedEntry list",
        "description": "Retrieve list of qosIfRedEntry entries from MIB",
        "tags": [
          "CISCO-QOS-PIB-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "An instance of this class specifies threshold limits for a\n          particular RED threshold of a given threshold set on an\n          interface and with a particular role combination.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "qosIfRedId": {
                        "type": "string",
                        "description": "An integer index to identify the instance of the policy class.",
                        "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId"
                      },
                      "qosIfRedRoles": {
                        "type": "string",
                        "description": "The role combination the interface must be configured with.",
                        "x-yang-type": "CISCO-QOS-PIB-MIB:RoleCombination"
                      },
                      "qosIfRedNumThresholdSets": {
                        "type": "string",
                        "description": "The values in this entry apply only to queues with the number\n            of thresholds specified by this attribute.",
                        "x-yang-type": "CISCO-QOS-PIB-MIB:ThresholdSetRange"
                      },
                      "qosIfRedThresholdSet": {
                        "type": "integer",
                        "description": "The threshold set to which the lower and upper values apply.\n            It must be in the range 1 through qosIfRedNumThresholdSets.\n            There must be exactly one PRI for each value in this range.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "qosIfRedThresholdSetLower": {
                        "type": "string",
                        "description": "The threshold value below which no packets are dropped.",
                        "x-yang-type": "CISCO-QOS-PIB-MIB:Percent"
                      },
                      "qosIfRedThresholdSetUpper": {
                        "type": "string",
                        "description": "The threshold value above which all packets are dropped.",
                        "x-yang-type": "CISCO-QOS-PIB-MIB:Percent"
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-QOS-PIB-MIB:qosIfRedEntry": [
                    {
                      "qosIfRedId": "example-string",
                      "qosIfRedRoles": "example-string",
                      "qosIfRedNumThresholdSets": "example-string",
                      "qosIfRedThresholdSet": -2147483648,
                      "qosIfRedThresholdSetLower": "example-string",
                      "qosIfRedThresholdSetUpper": "example-string"
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-qosIfRedEntry",
        "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": "/qosIfRedTable/qosIfRedEntry",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-QOS-PIB-MIB:qosIfRedTable/qosIfRedEntry={qosIfRedId}": {
      "get": {
        "summary": "Get qosIfRedEntry entry",
        "description": "Retrieve specific qosIfRedEntry entry by key from MIB",
        "tags": [
          "CISCO-QOS-PIB-MIB"
        ],
        "parameters": [
          {
            "name": "qosIfRedId",
            "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": {
                    "qosIfRedId": {
                      "type": "string",
                      "description": "An integer index to identify the instance of the policy class.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId"
                    },
                    "qosIfRedRoles": {
                      "type": "string",
                      "description": "The role combination the interface must be configured with.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:RoleCombination"
                    },
                    "qosIfRedNumThresholdSets": {
                      "type": "string",
                      "description": "The values in this entry apply only to queues with the number\n            of thresholds specified by this attribute.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:ThresholdSetRange"
                    },
                    "qosIfRedThresholdSet": {
                      "type": "integer",
                      "description": "The threshold set to which the lower and upper values apply.\n            It must be in the range 1 through qosIfRedNumThresholdSets.\n            There must be exactly one PRI for each value in this range.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "qosIfRedThresholdSetLower": {
                      "type": "string",
                      "description": "The threshold value below which no packets are dropped.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:Percent"
                    },
                    "qosIfRedThresholdSetUpper": {
                      "type": "string",
                      "description": "The threshold value above which all packets are dropped.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:Percent"
                    }
                  }
                },
                "example": {
                  "CISCO-QOS-PIB-MIB:qosIfRedEntry": {
                    "qosIfRedId": "example-string",
                    "qosIfRedRoles": "example-string",
                    "qosIfRedNumThresholdSets": "example-string",
                    "qosIfRedThresholdSet": -2147483648,
                    "qosIfRedThresholdSetLower": "example-string",
                    "qosIfRedThresholdSetUpper": "example-string"
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-qosIfRedEntry-2"
      },
      "x-yang-path": "/qosIfRedTable/qosIfRedEntry={qosIfRedId}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "qosIfRedId"
      ]
    },
    "/data/CISCO-QOS-PIB-MIB:qosIfTailDropTable": {
      "get": {
        "summary": "Get qosIfTailDropTable data",
        "description": "Retrieve qosIfTailDropTable operational data from MIB",
        "tags": [
          "CISCO-QOS-PIB-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "description": "A class for threshold sets in a queue supporting tail drop.\n        If the size of the queue for a given threshold set is at or\n        below the specified value then packets assigned to that\n        threshold set are always accepted into the queue.  If the size\n        of the queue is above the specified value then packets are\n        always dropped.",
                  "properties": {
                    "qosIfTailDropEntry": {
                      "type": "array",
                      "description": "An instance of this class specifies the queue depth for a\n          particular tail-drop threshold set on an interface with a\n          particular role combination.",
                      "items": {
                        "type": "object",
                        "properties": {
                          "qosIfTailDropId": {
                            "type": "string",
                            "description": "An integer index to identify the instance of the policy class.",
                            "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId"
                          },
                          "qosIfTailDropRoles": {
                            "type": "string",
                            "description": "The role combination the interface must be configured with.",
                            "x-yang-type": "CISCO-QOS-PIB-MIB:RoleCombination"
                          },
                          "qosIfTailDropNumThresholdSets": {
                            "type": "string",
                            "description": "The value in this entry applies only to queues with the\n            number of thresholds specified by this attribute.",
                            "x-yang-type": "CISCO-QOS-PIB-MIB:ThresholdSetRange"
                          },
                          "qosIfTailDropThresholdSet": {
                            "type": "integer",
                            "description": "The threshold set to which the threshold value applies",
                            "minimum": -2147483648,
                            "maximum": 2147483647
                          },
                          "qosIfTailDropThresholdSetValue": {
                            "type": "string",
                            "description": "The threshold value above which packets are dropped.",
                            "x-yang-type": "CISCO-QOS-PIB-MIB:Percent"
                          }
                        }
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-QOS-PIB-MIB:qosIfTailDropTable": {
                    "qosIfTailDropEntry": [
                      {
                        "qosIfTailDropId": "example-string",
                        "qosIfTailDropRoles": "example-string",
                        "qosIfTailDropNumThresholdSets": "example-string",
                        "qosIfTailDropThresholdSet": -2147483648,
                        "qosIfTailDropThresholdSetValue": "example-string"
                      },
                      {
                        "qosIfTailDropId": "example-string",
                        "qosIfTailDropRoles": "example-string",
                        "qosIfTailDropNumThresholdSets": "example-string",
                        "qosIfTailDropThresholdSet": -2147483648,
                        "qosIfTailDropThresholdSetValue": "example-string"
                      },
                      {
                        "qosIfTailDropId": "example-string",
                        "qosIfTailDropRoles": "example-string",
                        "qosIfTailDropNumThresholdSets": "example-string",
                        "qosIfTailDropThresholdSet": -2147483648,
                        "qosIfTailDropThresholdSetValue": "example-string"
                      }
                    ]
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-qosIfTailDropTable",
        "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": "/qosIfTailDropTable",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-QOS-PIB-MIB:qosIfTailDropTable/qosIfTailDropEntry": {
      "get": {
        "summary": "Get qosIfTailDropEntry list",
        "description": "Retrieve list of qosIfTailDropEntry entries from MIB",
        "tags": [
          "CISCO-QOS-PIB-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "An instance of this class specifies the queue depth for a\n          particular tail-drop threshold set on an interface with a\n          particular role combination.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "qosIfTailDropId": {
                        "type": "string",
                        "description": "An integer index to identify the instance of the policy class.",
                        "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId"
                      },
                      "qosIfTailDropRoles": {
                        "type": "string",
                        "description": "The role combination the interface must be configured with.",
                        "x-yang-type": "CISCO-QOS-PIB-MIB:RoleCombination"
                      },
                      "qosIfTailDropNumThresholdSets": {
                        "type": "string",
                        "description": "The value in this entry applies only to queues with the\n            number of thresholds specified by this attribute.",
                        "x-yang-type": "CISCO-QOS-PIB-MIB:ThresholdSetRange"
                      },
                      "qosIfTailDropThresholdSet": {
                        "type": "integer",
                        "description": "The threshold set to which the threshold value applies",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "qosIfTailDropThresholdSetValue": {
                        "type": "string",
                        "description": "The threshold value above which packets are dropped.",
                        "x-yang-type": "CISCO-QOS-PIB-MIB:Percent"
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-QOS-PIB-MIB:qosIfTailDropEntry": [
                    {
                      "qosIfTailDropId": "example-string",
                      "qosIfTailDropRoles": "example-string",
                      "qosIfTailDropNumThresholdSets": "example-string",
                      "qosIfTailDropThresholdSet": -2147483648,
                      "qosIfTailDropThresholdSetValue": "example-string"
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-qosIfTailDropEntry",
        "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": "/qosIfTailDropTable/qosIfTailDropEntry",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-QOS-PIB-MIB:qosIfTailDropTable/qosIfTailDropEntry={qosIfTailDropId}": {
      "get": {
        "summary": "Get qosIfTailDropEntry entry",
        "description": "Retrieve specific qosIfTailDropEntry entry by key from MIB",
        "tags": [
          "CISCO-QOS-PIB-MIB"
        ],
        "parameters": [
          {
            "name": "qosIfTailDropId",
            "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": {
                    "qosIfTailDropId": {
                      "type": "string",
                      "description": "An integer index to identify the instance of the policy class.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId"
                    },
                    "qosIfTailDropRoles": {
                      "type": "string",
                      "description": "The role combination the interface must be configured with.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:RoleCombination"
                    },
                    "qosIfTailDropNumThresholdSets": {
                      "type": "string",
                      "description": "The value in this entry applies only to queues with the\n            number of thresholds specified by this attribute.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:ThresholdSetRange"
                    },
                    "qosIfTailDropThresholdSet": {
                      "type": "integer",
                      "description": "The threshold set to which the threshold value applies",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "qosIfTailDropThresholdSetValue": {
                      "type": "string",
                      "description": "The threshold value above which packets are dropped.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:Percent"
                    }
                  }
                },
                "example": {
                  "CISCO-QOS-PIB-MIB:qosIfTailDropEntry": {
                    "qosIfTailDropId": "example-string",
                    "qosIfTailDropRoles": "example-string",
                    "qosIfTailDropNumThresholdSets": "example-string",
                    "qosIfTailDropThresholdSet": -2147483648,
                    "qosIfTailDropThresholdSetValue": "example-string"
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-qosIfTailDropEntry-2"
      },
      "x-yang-path": "/qosIfTailDropTable/qosIfTailDropEntry={qosIfTailDropId}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "qosIfTailDropId"
      ]
    },
    "/data/CISCO-QOS-PIB-MIB:qosIfWeightsTable": {
      "get": {
        "summary": "Get qosIfWeightsTable data",
        "description": "Retrieve qosIfWeightsTable operational data from MIB",
        "tags": [
          "CISCO-QOS-PIB-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "description": "A class of scheduling weights for each queue of an interface\n        that supports weighted round robin scheduling or a mix of\n        priority queueing and weighted round robin.  For a queue with\n        N priority queues, the N highest queue numbers are the\n        priority queues with the highest queue number having the\n        highest priority.  WRR is applied to the non-priority queues.",
                  "properties": {
                    "qosIfWeightsEntry": {
                      "type": "array",
                      "description": "An instance of this class specifies the scheduling weight for\n          a particular queue of an interface with a particular number\n          of queues and with a particular role combination.",
                      "items": {
                        "type": "object",
                        "properties": {
                          "qosIfWeightsId": {
                            "type": "string",
                            "description": "An integer index to identify the instance of the policy class.",
                            "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId"
                          },
                          "qosIfWeightsRoles": {
                            "type": "string",
                            "description": "The role combination the interface must be configured with.",
                            "x-yang-type": "CISCO-QOS-PIB-MIB:RoleCombination"
                          },
                          "qosIfWeightsNumQueues": {
                            "type": "string",
                            "description": "The value of the weight in this instance applies only to\n            interfaces with the number of queues specified by this\n            attribute.",
                            "x-yang-type": "CISCO-QOS-PIB-MIB:QueueRange"
                          },
                          "qosIfWeightsQueue": {
                            "type": "integer",
                            "description": "The queue to which the weight applies.",
                            "minimum": -2147483648,
                            "maximum": 2147483647
                          },
                          "qosIfWeightsDrainSize": {
                            "type": "integer",
                            "description": "The maximum number of bytes that may be drained from the\n            queue in one cycle.  The percentage of the bandwith allocated\n            to this queue can be calculated from this attribute and the\n            sum of the drain sizes of all the non-priority queues of the\n            interface.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "qosIfWeightsQueueSize": {
                            "type": "integer",
                            "description": "The size of the queue in bytes.  Some devices set queue size\n            in terms of packets.  These devices must calculate the queue\n            size in packets by assuming an average packet size suitable\n            for the particular interface.\n            \n            Some devices have a fixed size buffer to be shared among all\n            queues.  These devices must allocate a fraction of the\n            total buffer space to this queue calculated as the the ratio\n            of the queue size to the sum of the queue sizes for the\n            interface.",
                            "minimum": 0,
                            "maximum": 4294967295
                          }
                        }
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-QOS-PIB-MIB:qosIfWeightsTable": {
                    "qosIfWeightsEntry": [
                      {
                        "qosIfWeightsId": "example-string",
                        "qosIfWeightsRoles": "example-string",
                        "qosIfWeightsNumQueues": "example-string",
                        "qosIfWeightsQueue": -2147483648,
                        "qosIfWeightsDrainSize": 0,
                        "qosIfWeightsQueueSize": 0
                      },
                      {
                        "qosIfWeightsId": "example-string",
                        "qosIfWeightsRoles": "example-string",
                        "qosIfWeightsNumQueues": "example-string",
                        "qosIfWeightsQueue": -2147483648,
                        "qosIfWeightsDrainSize": 0,
                        "qosIfWeightsQueueSize": 0
                      },
                      {
                        "qosIfWeightsId": "example-string",
                        "qosIfWeightsRoles": "example-string",
                        "qosIfWeightsNumQueues": "example-string",
                        "qosIfWeightsQueue": -2147483648,
                        "qosIfWeightsDrainSize": 0,
                        "qosIfWeightsQueueSize": 0
                      }
                    ]
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-qosIfWeightsTable",
        "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": "/qosIfWeightsTable",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-QOS-PIB-MIB:qosIfWeightsTable/qosIfWeightsEntry": {
      "get": {
        "summary": "Get qosIfWeightsEntry list",
        "description": "Retrieve list of qosIfWeightsEntry entries from MIB",
        "tags": [
          "CISCO-QOS-PIB-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "An instance of this class specifies the scheduling weight for\n          a particular queue of an interface with a particular number\n          of queues and with a particular role combination.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "qosIfWeightsId": {
                        "type": "string",
                        "description": "An integer index to identify the instance of the policy class.",
                        "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId"
                      },
                      "qosIfWeightsRoles": {
                        "type": "string",
                        "description": "The role combination the interface must be configured with.",
                        "x-yang-type": "CISCO-QOS-PIB-MIB:RoleCombination"
                      },
                      "qosIfWeightsNumQueues": {
                        "type": "string",
                        "description": "The value of the weight in this instance applies only to\n            interfaces with the number of queues specified by this\n            attribute.",
                        "x-yang-type": "CISCO-QOS-PIB-MIB:QueueRange"
                      },
                      "qosIfWeightsQueue": {
                        "type": "integer",
                        "description": "The queue to which the weight applies.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "qosIfWeightsDrainSize": {
                        "type": "integer",
                        "description": "The maximum number of bytes that may be drained from the\n            queue in one cycle.  The percentage of the bandwith allocated\n            to this queue can be calculated from this attribute and the\n            sum of the drain sizes of all the non-priority queues of the\n            interface.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "qosIfWeightsQueueSize": {
                        "type": "integer",
                        "description": "The size of the queue in bytes.  Some devices set queue size\n            in terms of packets.  These devices must calculate the queue\n            size in packets by assuming an average packet size suitable\n            for the particular interface.\n            \n            Some devices have a fixed size buffer to be shared among all\n            queues.  These devices must allocate a fraction of the\n            total buffer space to this queue calculated as the the ratio\n            of the queue size to the sum of the queue sizes for the\n            interface.",
                        "minimum": 0,
                        "maximum": 4294967295
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-QOS-PIB-MIB:qosIfWeightsEntry": [
                    {
                      "qosIfWeightsId": "example-string",
                      "qosIfWeightsRoles": "example-string",
                      "qosIfWeightsNumQueues": "example-string",
                      "qosIfWeightsQueue": -2147483648,
                      "qosIfWeightsDrainSize": 0,
                      "qosIfWeightsQueueSize": 0
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-qosIfWeightsEntry",
        "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": "/qosIfWeightsTable/qosIfWeightsEntry",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-QOS-PIB-MIB:qosIfWeightsTable/qosIfWeightsEntry={qosIfWeightsId}": {
      "get": {
        "summary": "Get qosIfWeightsEntry entry",
        "description": "Retrieve specific qosIfWeightsEntry entry by key from MIB",
        "tags": [
          "CISCO-QOS-PIB-MIB"
        ],
        "parameters": [
          {
            "name": "qosIfWeightsId",
            "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": {
                    "qosIfWeightsId": {
                      "type": "string",
                      "description": "An integer index to identify the instance of the policy class.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId"
                    },
                    "qosIfWeightsRoles": {
                      "type": "string",
                      "description": "The role combination the interface must be configured with.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:RoleCombination"
                    },
                    "qosIfWeightsNumQueues": {
                      "type": "string",
                      "description": "The value of the weight in this instance applies only to\n            interfaces with the number of queues specified by this\n            attribute.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:QueueRange"
                    },
                    "qosIfWeightsQueue": {
                      "type": "integer",
                      "description": "The queue to which the weight applies.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "qosIfWeightsDrainSize": {
                      "type": "integer",
                      "description": "The maximum number of bytes that may be drained from the\n            queue in one cycle.  The percentage of the bandwith allocated\n            to this queue can be calculated from this attribute and the\n            sum of the drain sizes of all the non-priority queues of the\n            interface.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "qosIfWeightsQueueSize": {
                      "type": "integer",
                      "description": "The size of the queue in bytes.  Some devices set queue size\n            in terms of packets.  These devices must calculate the queue\n            size in packets by assuming an average packet size suitable\n            for the particular interface.\n            \n            Some devices have a fixed size buffer to be shared among all\n            queues.  These devices must allocate a fraction of the\n            total buffer space to this queue calculated as the the ratio\n            of the queue size to the sum of the queue sizes for the\n            interface.",
                      "minimum": 0,
                      "maximum": 4294967295
                    }
                  }
                },
                "example": {
                  "CISCO-QOS-PIB-MIB:qosIfWeightsEntry": {
                    "qosIfWeightsId": "example-string",
                    "qosIfWeightsRoles": "example-string",
                    "qosIfWeightsNumQueues": "example-string",
                    "qosIfWeightsQueue": -2147483648,
                    "qosIfWeightsDrainSize": 0,
                    "qosIfWeightsQueueSize": 0
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-qosIfWeightsEntry-2"
      },
      "x-yang-path": "/qosIfWeightsTable/qosIfWeightsEntry={qosIfWeightsId}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "qosIfWeightsId"
      ]
    },
    "/data/CISCO-QOS-PIB-MIB:qosDevicePibIncarnationEntry": {
      "get": {
        "summary": "Get qosDevicePibIncarnationEntry list",
        "description": "Retrieve list of qosDevicePibIncarnationEntry entries from MIB",
        "tags": [
          "CISCO-QOS-PIB-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "The single policy instance of this class identifies the\n          current incarnation of the PIB and the PDP that installed\n          this incarnation.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "qosDeviceIncarnationId": {
                        "type": "string",
                        "description": "An integer index to identify the instance of the policy class.",
                        "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId"
                      },
                      "qosDevicePdpName": {
                        "type": "string",
                        "description": "The name of the PDP that installed the current incarnation of\n            the PIB into the device.  By default it is the zero length\n            string.",
                        "x-yang-type": "snmpv2-tc:DisplayString"
                      },
                      "qosDevicePibIncarnation": {
                        "type": "string",
                        "description": "An octet string to identify the current incarnation.  It has\n            meaning to the PDP that installed the PIB and perhaps its\n            standby PDPs. By default the empty string.",
                        "format": "binary"
                      },
                      "qosDevicePibTtl": {
                        "type": "integer",
                        "description": "The number of seconds after a client close or TCP timeout for\n            which the PEP continues to enforce the policy in the PIB.\n            After this interval, the PIB is consired expired and the\n            device no longer enforces the policy installed in the PIB.",
                        "minimum": 0,
                        "maximum": 4294967295
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-QOS-PIB-MIB:qosDevicePibIncarnationEntry": [
                    {
                      "qosDeviceIncarnationId": "example-string",
                      "qosDevicePdpName": "interface-1",
                      "qosDevicePibIncarnation": "example-string",
                      "qosDevicePibTtl": 0
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-qosDevicePibIncarnationEntry-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": "/qosDevicePibIncarnationEntry",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-QOS-PIB-MIB:qosDevicePibIncarnationEntry={qosDeviceIncarnationId}": {
      "get": {
        "summary": "Get qosDevicePibIncarnationEntry entry",
        "description": "Retrieve specific qosDevicePibIncarnationEntry entry by key from MIB",
        "tags": [
          "CISCO-QOS-PIB-MIB"
        ],
        "parameters": [
          {
            "name": "qosDeviceIncarnationId",
            "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": {
                    "qosDeviceIncarnationId": {
                      "type": "string",
                      "description": "An integer index to identify the instance of the policy class.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId"
                    },
                    "qosDevicePdpName": {
                      "type": "string",
                      "description": "The name of the PDP that installed the current incarnation of\n            the PIB into the device.  By default it is the zero length\n            string.",
                      "x-yang-type": "snmpv2-tc:DisplayString"
                    },
                    "qosDevicePibIncarnation": {
                      "type": "string",
                      "description": "An octet string to identify the current incarnation.  It has\n            meaning to the PDP that installed the PIB and perhaps its\n            standby PDPs. By default the empty string.",
                      "format": "binary"
                    },
                    "qosDevicePibTtl": {
                      "type": "integer",
                      "description": "The number of seconds after a client close or TCP timeout for\n            which the PEP continues to enforce the policy in the PIB.\n            After this interval, the PIB is consired expired and the\n            device no longer enforces the policy installed in the PIB.",
                      "minimum": 0,
                      "maximum": 4294967295
                    }
                  }
                },
                "example": {
                  "CISCO-QOS-PIB-MIB:qosDevicePibIncarnationEntry": {
                    "qosDeviceIncarnationId": "example-string",
                    "qosDevicePdpName": "interface-1",
                    "qosDevicePibIncarnation": "example-string",
                    "qosDevicePibTtl": 0
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-qosDevicePibIncarnationEntry-4"
      },
      "x-yang-path": "/qosDevicePibIncarnationEntry={qosDeviceIncarnationId}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "qosDeviceIncarnationId"
      ]
    },
    "/data/CISCO-QOS-PIB-MIB:qosDeviceAttributeEntry": {
      "get": {
        "summary": "Get qosDeviceAttributeEntry list",
        "description": "Retrieve list of qosDeviceAttributeEntry entries from MIB",
        "tags": [
          "CISCO-QOS-PIB-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "The single instance of this class indicates specific\n          attributes of the device.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "qosDeviceAttributeId": {
                        "type": "string",
                        "description": "An integer index to identify the instance of the policy class.",
                        "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId"
                      },
                      "qosDevicePepDomain": {
                        "type": "string",
                        "description": "The QoS domain that this device belongs to.  This is\n            configured locally on the device (perhaps by some management\n            protocol such as SNMP).  By default, it is the zero-length\n            string.",
                        "x-yang-type": "snmpv2-tc:DisplayString"
                      },
                      "qosDevicePrimaryPdp": {
                        "type": "string",
                        "description": "The address of the PDP configured to be the primary PDP for\n            the device.",
                        "format": "inet:ipv4-address"
                      },
                      "qosDeviceSecondaryPdp": {
                        "type": "string",
                        "description": "The address of the PDP configured to be the secondary PDP for\n            the device.  An address of zero indicates no secondary is\n            configured.",
                        "format": "inet:ipv4-address"
                      },
                      "qosDeviceMaxMessageSize": {
                        "type": "integer",
                        "description": "The maximum size message that this PEP is capable of\n            receiving in bytes.  A value of zero means that the maximum\n            message size is unspecified (but does not mean it is\n            unlimited).  A message greater than this maximum results in a\n            MessageTooBig error on a 'no commit' REP.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "qosDeviceCapabilities": {
                        "type": "string",
                        "description": "An enumeration of device capabilities.  Used by the PDP to\n            select policies and configuration to push to the PEP."
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-QOS-PIB-MIB:qosDeviceAttributeEntry": [
                    {
                      "qosDeviceAttributeId": "example-string",
                      "qosDevicePepDomain": "example-string",
                      "qosDevicePrimaryPdp": "example-string",
                      "qosDeviceSecondaryPdp": "example-string",
                      "qosDeviceMaxMessageSize": 0,
                      "qosDeviceCapabilities": "example-string"
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-qosDeviceAttributeEntry-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": "/qosDeviceAttributeEntry",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-QOS-PIB-MIB:qosDeviceAttributeEntry={qosDeviceAttributeId}": {
      "get": {
        "summary": "Get qosDeviceAttributeEntry entry",
        "description": "Retrieve specific qosDeviceAttributeEntry entry by key from MIB",
        "tags": [
          "CISCO-QOS-PIB-MIB"
        ],
        "parameters": [
          {
            "name": "qosDeviceAttributeId",
            "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": {
                    "qosDeviceAttributeId": {
                      "type": "string",
                      "description": "An integer index to identify the instance of the policy class.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId"
                    },
                    "qosDevicePepDomain": {
                      "type": "string",
                      "description": "The QoS domain that this device belongs to.  This is\n            configured locally on the device (perhaps by some management\n            protocol such as SNMP).  By default, it is the zero-length\n            string.",
                      "x-yang-type": "snmpv2-tc:DisplayString"
                    },
                    "qosDevicePrimaryPdp": {
                      "type": "string",
                      "description": "The address of the PDP configured to be the primary PDP for\n            the device.",
                      "format": "inet:ipv4-address"
                    },
                    "qosDeviceSecondaryPdp": {
                      "type": "string",
                      "description": "The address of the PDP configured to be the secondary PDP for\n            the device.  An address of zero indicates no secondary is\n            configured.",
                      "format": "inet:ipv4-address"
                    },
                    "qosDeviceMaxMessageSize": {
                      "type": "integer",
                      "description": "The maximum size message that this PEP is capable of\n            receiving in bytes.  A value of zero means that the maximum\n            message size is unspecified (but does not mean it is\n            unlimited).  A message greater than this maximum results in a\n            MessageTooBig error on a 'no commit' REP.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "qosDeviceCapabilities": {
                      "type": "string",
                      "description": "An enumeration of device capabilities.  Used by the PDP to\n            select policies and configuration to push to the PEP."
                    }
                  }
                },
                "example": {
                  "CISCO-QOS-PIB-MIB:qosDeviceAttributeEntry": {
                    "qosDeviceAttributeId": "example-string",
                    "qosDevicePepDomain": "example-string",
                    "qosDevicePrimaryPdp": "example-string",
                    "qosDeviceSecondaryPdp": "example-string",
                    "qosDeviceMaxMessageSize": 0,
                    "qosDeviceCapabilities": "example-string"
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-qosDeviceAttributeEntry-4"
      },
      "x-yang-path": "/qosDeviceAttributeEntry={qosDeviceAttributeId}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "qosDeviceAttributeId"
      ]
    },
    "/data/CISCO-QOS-PIB-MIB:qosInterfaceTypeEntry": {
      "get": {
        "summary": "Get qosInterfaceTypeEntry list",
        "description": "Retrieve list of qosInterfaceTypeEntry entries from MIB",
        "tags": [
          "CISCO-QOS-PIB-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "An instance of this class describes a role combination for\n          an interface type of an interface that exists on the device.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "qosInterfaceTypeId": {
                        "type": "string",
                        "description": "An integer index to identify the instance of the policy class.",
                        "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId"
                      },
                      "qosInterfaceQueueType": {
                        "type": "string",
                        "description": "The interface type in terms of number of queues and\n            thresholds.",
                        "x-yang-type": "CISCO-QOS-PIB-MIB:QosInterfaceQueueType"
                      },
                      "qosInterfaceTypeRoles": {
                        "type": "string",
                        "description": "A combination of roles on at least one interface of type\n            qosInterfaceType.",
                        "x-yang-type": "CISCO-QOS-PIB-MIB:RoleCombination"
                      },
                      "qosInterfaceTypeCapabilities": {
                        "type": "string",
                        "description": "An enumeration of interface capabilities.  Used by the PDP to\n            select policies and configuration to push to the PEP.",
                        "x-yang-type": "CISCO-QOS-PIB-MIB:QosInterfaceTypeCapabilities"
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-QOS-PIB-MIB:qosInterfaceTypeEntry": [
                    {
                      "qosInterfaceTypeId": "GigabitEthernet1/0/1",
                      "qosInterfaceQueueType": "GigabitEthernet1/0/1",
                      "qosInterfaceTypeRoles": "GigabitEthernet1/0/1",
                      "qosInterfaceTypeCapabilities": "GigabitEthernet1/0/1"
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-qosInterfaceTypeEntry-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": "/qosInterfaceTypeEntry",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-QOS-PIB-MIB:qosInterfaceTypeEntry={qosInterfaceTypeId}": {
      "get": {
        "summary": "Get qosInterfaceTypeEntry entry",
        "description": "Retrieve specific qosInterfaceTypeEntry entry by key from MIB",
        "tags": [
          "CISCO-QOS-PIB-MIB"
        ],
        "parameters": [
          {
            "name": "qosInterfaceTypeId",
            "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": {
                    "qosInterfaceTypeId": {
                      "type": "string",
                      "description": "An integer index to identify the instance of the policy class.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId"
                    },
                    "qosInterfaceQueueType": {
                      "type": "string",
                      "description": "The interface type in terms of number of queues and\n            thresholds.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:QosInterfaceQueueType"
                    },
                    "qosInterfaceTypeRoles": {
                      "type": "string",
                      "description": "A combination of roles on at least one interface of type\n            qosInterfaceType.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:RoleCombination"
                    },
                    "qosInterfaceTypeCapabilities": {
                      "type": "string",
                      "description": "An enumeration of interface capabilities.  Used by the PDP to\n            select policies and configuration to push to the PEP.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:QosInterfaceTypeCapabilities"
                    }
                  }
                },
                "example": {
                  "CISCO-QOS-PIB-MIB:qosInterfaceTypeEntry": {
                    "qosInterfaceTypeId": "GigabitEthernet1/0/1",
                    "qosInterfaceQueueType": "GigabitEthernet1/0/1",
                    "qosInterfaceTypeRoles": "GigabitEthernet1/0/1",
                    "qosInterfaceTypeCapabilities": "GigabitEthernet1/0/1"
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-qosInterfaceTypeEntry-4"
      },
      "x-yang-path": "/qosInterfaceTypeEntry={qosInterfaceTypeId}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "qosInterfaceTypeId"
      ]
    },
    "/data/CISCO-QOS-PIB-MIB:qosDiffServMappingEntry": {
      "get": {
        "summary": "Get qosDiffServMappingEntry list",
        "description": "Retrieve list of qosDiffServMappingEntry entries from MIB",
        "tags": [
          "CISCO-QOS-PIB-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "An instance of this class represents mappings from a DSCP.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "qosDscp": {
                        "type": "string",
                        "description": "A DSCP for which this entry contains mappings.",
                        "x-yang-type": "CISCO-QOS-PIB-MIB:Dscp"
                      },
                      "qosMarkedDscp": {
                        "type": "string",
                        "description": "The DSCP to use instead of the qosDscp when the packet is out\n            of profile and hence marked as such.",
                        "x-yang-type": "CISCO-QOS-PIB-MIB:Dscp"
                      },
                      "qosL2Cos": {
                        "type": "string",
                        "description": "The L2 CoS value to use when mapping this DSCP to layer 2\n            CoS.",
                        "x-yang-type": "CISCO-QOS-PIB-MIB:QosLayer2Cos"
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-QOS-PIB-MIB:qosDiffServMappingEntry": [
                    {
                      "qosDscp": "example-string",
                      "qosMarkedDscp": "example-string",
                      "qosL2Cos": "example-string"
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-qosDiffServMappingEntry-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": "/qosDiffServMappingEntry",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-QOS-PIB-MIB:qosDiffServMappingEntry={qosDscp}": {
      "get": {
        "summary": "Get qosDiffServMappingEntry entry",
        "description": "Retrieve specific qosDiffServMappingEntry entry by key from MIB",
        "tags": [
          "CISCO-QOS-PIB-MIB"
        ],
        "parameters": [
          {
            "name": "qosDscp",
            "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": {
                    "qosDscp": {
                      "type": "string",
                      "description": "A DSCP for which this entry contains mappings.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:Dscp"
                    },
                    "qosMarkedDscp": {
                      "type": "string",
                      "description": "The DSCP to use instead of the qosDscp when the packet is out\n            of profile and hence marked as such.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:Dscp"
                    },
                    "qosL2Cos": {
                      "type": "string",
                      "description": "The L2 CoS value to use when mapping this DSCP to layer 2\n            CoS.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:QosLayer2Cos"
                    }
                  }
                },
                "example": {
                  "CISCO-QOS-PIB-MIB:qosDiffServMappingEntry": {
                    "qosDscp": "example-string",
                    "qosMarkedDscp": "example-string",
                    "qosL2Cos": "example-string"
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-qosDiffServMappingEntry-4"
      },
      "x-yang-path": "/qosDiffServMappingEntry={qosDscp}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "qosDscp"
      ]
    },
    "/data/CISCO-QOS-PIB-MIB:qosCosToDscpEntry": {
      "get": {
        "summary": "Get qosCosToDscpEntry list",
        "description": "Retrieve list of qosCosToDscpEntry entries from MIB",
        "tags": [
          "CISCO-QOS-PIB-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "An instance of this class maps a CoS value to a DSCP.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "qosCosToDscpCos": {
                        "type": "string",
                        "description": "The L2 CoS value that is being mapped.",
                        "x-yang-type": "CISCO-QOS-PIB-MIB:QosLayer2Cos"
                      },
                      "qosCosToDscpDscp": {
                        "type": "string",
                        "description": "The DSCP value to use when mapping the L2 CoS to a DSCP.",
                        "x-yang-type": "CISCO-QOS-PIB-MIB:Dscp"
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-QOS-PIB-MIB:qosCosToDscpEntry": [
                    {
                      "qosCosToDscpCos": "example-string",
                      "qosCosToDscpDscp": "example-string"
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-qosCosToDscpEntry-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": "/qosCosToDscpEntry",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-QOS-PIB-MIB:qosCosToDscpEntry={qosCosToDscpCos}": {
      "get": {
        "summary": "Get qosCosToDscpEntry entry",
        "description": "Retrieve specific qosCosToDscpEntry entry by key from MIB",
        "tags": [
          "CISCO-QOS-PIB-MIB"
        ],
        "parameters": [
          {
            "name": "qosCosToDscpCos",
            "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": {
                    "qosCosToDscpCos": {
                      "type": "string",
                      "description": "The L2 CoS value that is being mapped.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:QosLayer2Cos"
                    },
                    "qosCosToDscpDscp": {
                      "type": "string",
                      "description": "The DSCP value to use when mapping the L2 CoS to a DSCP.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:Dscp"
                    }
                  }
                },
                "example": {
                  "CISCO-QOS-PIB-MIB:qosCosToDscpEntry": {
                    "qosCosToDscpCos": "example-string",
                    "qosCosToDscpDscp": "example-string"
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-qosCosToDscpEntry-4"
      },
      "x-yang-path": "/qosCosToDscpEntry={qosCosToDscpCos}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "qosCosToDscpCos"
      ]
    },
    "/data/CISCO-QOS-PIB-MIB:qosUnmatchedPolicyEntry": {
      "get": {
        "summary": "Get qosUnmatchedPolicyEntry list",
        "description": "Retrieve list of qosUnmatchedPolicyEntry entries from MIB",
        "tags": [
          "CISCO-QOS-PIB-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "An instance of this class specifies the unmatched policy\n          for a particular role combination for incoming or outgoing\n          traffic.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "qosUnmatchedPolicyId": {
                        "type": "string",
                        "description": "An integer index to identify the instance of the policy class.",
                        "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId"
                      },
                      "qosUnmatchedPolicyRole": {
                        "type": "string",
                        "description": "Role combination for which this instance applies.",
                        "x-yang-type": "CISCO-QOS-PIB-MIB:RoleCombination"
                      },
                      "qosUnmatchedPolicyDirection": {
                        "type": "string",
                        "description": "The direction of packet flow at the interface in question to\n            which this instance applies."
                      },
                      "qosUnmatchedPolicyDscp": {
                        "type": "string",
                        "description": "The DSCP to classify the unmatched packet with.  This must be\n            specified even if qosUnmatchedPolicyDscpTrusted is true.",
                        "x-yang-type": "CISCO-QOS-PIB-MIB:Dscp"
                      },
                      "qosUnmatchedPolicyDscpTrusted": {
                        "type": "boolean",
                        "description": "If this attribute is true, then the Dscp associated with the\n            packet is trusted, i.e., it is assumed to have already been\n            set.  In this case, the Dscp is not rewritten with\n            qosUnmatchedPolicyDscp (qosUnmatchedPolicyDscp is ignored)\n            unless this is a non-IP packet and arrives untagged.  The\n            packet is still policed as part of its micro flow and its\n            aggregate flow.\n            \n            When a trusted action is applied to an input interface, the\n            Dscp (for an IP packet) or CoS (for a non-IP packet)\n            associated with the packet is the one contained in the packet.\n            When a trusted action is applied to an output interface, the\n            Dscp associated with the packet is the one that is the result\n            of the input classification and policing."
                      },
                      "qosUnmatchPolMicroFlowPolicerId": {
                        "type": "string",
                        "description": "An index identifying the instance of policer to apply to\n            unmatched packets.  It must correspond to the integer index of\n            an instance of class qosPolicerTable or be zero.  If zero, the\n            microflow is not policed.",
                        "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId"
                      },
                      "qosUnmatchedPolicyAggregateId": {
                        "type": "string",
                        "description": "An index identifying the aggregate that the packet belongs\n            to.  It must correspond to the integer index of an instance of\n            class qosAggregateTable or be zero.  If zero, the microflow\n            does not belong to any aggregate and is not policed as part of\n            any aggregate.",
                        "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId"
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-QOS-PIB-MIB:qosUnmatchedPolicyEntry": [
                    {
                      "qosUnmatchedPolicyId": "example-string",
                      "qosUnmatchedPolicyRole": "example-string",
                      "qosUnmatchedPolicyDirection": "example-string",
                      "qosUnmatchedPolicyDscp": "example-string",
                      "qosUnmatchedPolicyDscpTrusted": true,
                      "qosUnmatchPolMicroFlowPolicerId": "example-string",
                      "qosUnmatchedPolicyAggregateId": "example-string"
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-qosUnmatchedPolicyEntry-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": "/qosUnmatchedPolicyEntry",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-QOS-PIB-MIB:qosUnmatchedPolicyEntry={qosUnmatchedPolicyId}": {
      "get": {
        "summary": "Get qosUnmatchedPolicyEntry entry",
        "description": "Retrieve specific qosUnmatchedPolicyEntry entry by key from MIB",
        "tags": [
          "CISCO-QOS-PIB-MIB"
        ],
        "parameters": [
          {
            "name": "qosUnmatchedPolicyId",
            "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": {
                    "qosUnmatchedPolicyId": {
                      "type": "string",
                      "description": "An integer index to identify the instance of the policy class.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId"
                    },
                    "qosUnmatchedPolicyRole": {
                      "type": "string",
                      "description": "Role combination for which this instance applies.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:RoleCombination"
                    },
                    "qosUnmatchedPolicyDirection": {
                      "type": "string",
                      "description": "The direction of packet flow at the interface in question to\n            which this instance applies."
                    },
                    "qosUnmatchedPolicyDscp": {
                      "type": "string",
                      "description": "The DSCP to classify the unmatched packet with.  This must be\n            specified even if qosUnmatchedPolicyDscpTrusted is true.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:Dscp"
                    },
                    "qosUnmatchedPolicyDscpTrusted": {
                      "type": "boolean",
                      "description": "If this attribute is true, then the Dscp associated with the\n            packet is trusted, i.e., it is assumed to have already been\n            set.  In this case, the Dscp is not rewritten with\n            qosUnmatchedPolicyDscp (qosUnmatchedPolicyDscp is ignored)\n            unless this is a non-IP packet and arrives untagged.  The\n            packet is still policed as part of its micro flow and its\n            aggregate flow.\n            \n            When a trusted action is applied to an input interface, the\n            Dscp (for an IP packet) or CoS (for a non-IP packet)\n            associated with the packet is the one contained in the packet.\n            When a trusted action is applied to an output interface, the\n            Dscp associated with the packet is the one that is the result\n            of the input classification and policing."
                    },
                    "qosUnmatchPolMicroFlowPolicerId": {
                      "type": "string",
                      "description": "An index identifying the instance of policer to apply to\n            unmatched packets.  It must correspond to the integer index of\n            an instance of class qosPolicerTable or be zero.  If zero, the\n            microflow is not policed.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId"
                    },
                    "qosUnmatchedPolicyAggregateId": {
                      "type": "string",
                      "description": "An index identifying the aggregate that the packet belongs\n            to.  It must correspond to the integer index of an instance of\n            class qosAggregateTable or be zero.  If zero, the microflow\n            does not belong to any aggregate and is not policed as part of\n            any aggregate.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId"
                    }
                  }
                },
                "example": {
                  "CISCO-QOS-PIB-MIB:qosUnmatchedPolicyEntry": {
                    "qosUnmatchedPolicyId": "example-string",
                    "qosUnmatchedPolicyRole": "example-string",
                    "qosUnmatchedPolicyDirection": "example-string",
                    "qosUnmatchedPolicyDscp": "example-string",
                    "qosUnmatchedPolicyDscpTrusted": true,
                    "qosUnmatchPolMicroFlowPolicerId": "example-string",
                    "qosUnmatchedPolicyAggregateId": "example-string"
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-qosUnmatchedPolicyEntry-4"
      },
      "x-yang-path": "/qosUnmatchedPolicyEntry={qosUnmatchedPolicyId}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "qosUnmatchedPolicyId"
      ]
    },
    "/data/CISCO-QOS-PIB-MIB:qosPolicerEntry": {
      "get": {
        "summary": "Get qosPolicerEntry list",
        "description": "Retrieve list of qosPolicerEntry entries from MIB",
        "tags": [
          "CISCO-QOS-PIB-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "An instance of this class specifies a set of policing\n          parameters.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "qosPolicerId": {
                        "type": "string",
                        "description": "An integer index to identify the instance of the policy class.",
                        "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId"
                      },
                      "qosPolicerRate": {
                        "type": "integer",
                        "description": "The token rate.  It is specified in units of bit/s. A rate of\n            zero means that all packets will be out of profile.  If the\n            qosPolicerAction is set to drop then this effectively\n            denies any service to packets policed by this policer.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "qosPolicerNormalBurst": {
                        "type": "integer",
                        "description": "The normal size of a burst in terms of bits.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "qosPolicerExcessBurst": {
                        "type": "integer",
                        "description": "The excess size of a burst in terms of bits.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "qosPolicerAction": {
                        "type": "string",
                        "description": "An indication of how to handle out of profile packets.  When\n            the shape action is chosen then traffic is shaped to the rate\n            specified by qosPolicerRate."
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-QOS-PIB-MIB:qosPolicerEntry": [
                    {
                      "qosPolicerId": "example-string",
                      "qosPolicerRate": 0,
                      "qosPolicerNormalBurst": 0,
                      "qosPolicerExcessBurst": 0,
                      "qosPolicerAction": "example-string"
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-qosPolicerEntry-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": "/qosPolicerEntry",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-QOS-PIB-MIB:qosPolicerEntry={qosPolicerId}": {
      "get": {
        "summary": "Get qosPolicerEntry entry",
        "description": "Retrieve specific qosPolicerEntry entry by key from MIB",
        "tags": [
          "CISCO-QOS-PIB-MIB"
        ],
        "parameters": [
          {
            "name": "qosPolicerId",
            "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": {
                    "qosPolicerId": {
                      "type": "string",
                      "description": "An integer index to identify the instance of the policy class.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId"
                    },
                    "qosPolicerRate": {
                      "type": "integer",
                      "description": "The token rate.  It is specified in units of bit/s. A rate of\n            zero means that all packets will be out of profile.  If the\n            qosPolicerAction is set to drop then this effectively\n            denies any service to packets policed by this policer.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "qosPolicerNormalBurst": {
                      "type": "integer",
                      "description": "The normal size of a burst in terms of bits.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "qosPolicerExcessBurst": {
                      "type": "integer",
                      "description": "The excess size of a burst in terms of bits.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "qosPolicerAction": {
                      "type": "string",
                      "description": "An indication of how to handle out of profile packets.  When\n            the shape action is chosen then traffic is shaped to the rate\n            specified by qosPolicerRate."
                    }
                  }
                },
                "example": {
                  "CISCO-QOS-PIB-MIB:qosPolicerEntry": {
                    "qosPolicerId": "example-string",
                    "qosPolicerRate": 0,
                    "qosPolicerNormalBurst": 0,
                    "qosPolicerExcessBurst": 0,
                    "qosPolicerAction": "example-string"
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-qosPolicerEntry-4"
      },
      "x-yang-path": "/qosPolicerEntry={qosPolicerId}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "qosPolicerId"
      ]
    },
    "/data/CISCO-QOS-PIB-MIB:qosAggregateEntry": {
      "get": {
        "summary": "Get qosAggregateEntry list",
        "description": "Retrieve list of qosAggregateEntry entries from MIB",
        "tags": [
          "CISCO-QOS-PIB-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "An instance of this class specifies the policer to apply to\n          an aggregate flow.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "qosAggregateId": {
                        "type": "string",
                        "description": "An integer index to identify the instance of the policy class.",
                        "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId"
                      },
                      "qosAggregatePolicerId": {
                        "type": "string",
                        "description": "An index identifying the instance of policer to apply to the\n            aggregate.  It must correspond to the integer index of an\n            instance of class qosPolicerTable.",
                        "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId"
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-QOS-PIB-MIB:qosAggregateEntry": [
                    {
                      "qosAggregateId": "example-string",
                      "qosAggregatePolicerId": "example-string"
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-qosAggregateEntry-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": "/qosAggregateEntry",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-QOS-PIB-MIB:qosAggregateEntry={qosAggregateId}": {
      "get": {
        "summary": "Get qosAggregateEntry entry",
        "description": "Retrieve specific qosAggregateEntry entry by key from MIB",
        "tags": [
          "CISCO-QOS-PIB-MIB"
        ],
        "parameters": [
          {
            "name": "qosAggregateId",
            "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": {
                    "qosAggregateId": {
                      "type": "string",
                      "description": "An integer index to identify the instance of the policy class.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId"
                    },
                    "qosAggregatePolicerId": {
                      "type": "string",
                      "description": "An index identifying the instance of policer to apply to the\n            aggregate.  It must correspond to the integer index of an\n            instance of class qosPolicerTable.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId"
                    }
                  }
                },
                "example": {
                  "CISCO-QOS-PIB-MIB:qosAggregateEntry": {
                    "qosAggregateId": "example-string",
                    "qosAggregatePolicerId": "example-string"
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-qosAggregateEntry-4"
      },
      "x-yang-path": "/qosAggregateEntry={qosAggregateId}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "qosAggregateId"
      ]
    },
    "/data/CISCO-QOS-PIB-MIB:qosMacClassificationEntry": {
      "get": {
        "summary": "Get qosMacClassificationEntry list",
        "description": "Retrieve list of qosMacClassificationEntry entries from MIB",
        "tags": [
          "CISCO-QOS-PIB-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "An instance of this class specifies the mapping of a VLAN\n          and a MAC address to a CoS value.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "qosMacClassificationId": {
                        "type": "string",
                        "description": "An integer index to identify the instance of the policy class.",
                        "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId"
                      },
                      "qosDstMacVlan": {
                        "type": "integer",
                        "description": "The VLAN of the destination MAC address of the L2 frame.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "qosDstMacAddress": {
                        "type": "string",
                        "description": "The destination MAC address of the L2 frame.",
                        "x-yang-type": "yang:mac-address"
                      },
                      "qosDstMacCos": {
                        "type": "string",
                        "description": "The CoS to assign the packet with the associated MAC/VLAN\n            tuple.  Note that this CoS is overridden by the policies to\n            classify the frame at layer 3 if there are any.",
                        "x-yang-type": "CISCO-QOS-PIB-MIB:QosLayer2Cos"
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-QOS-PIB-MIB:qosMacClassificationEntry": [
                    {
                      "qosMacClassificationId": "00:11:22:33:44:55",
                      "qosDstMacVlan": -2147483648,
                      "qosDstMacAddress": "00:11:22:33:44:55",
                      "qosDstMacCos": "00:11:22:33:44:55"
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-qosMacClassificationEntry-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": "/qosMacClassificationEntry",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-QOS-PIB-MIB:qosMacClassificationEntry={qosMacClassificationId}": {
      "get": {
        "summary": "Get qosMacClassificationEntry entry",
        "description": "Retrieve specific qosMacClassificationEntry entry by key from MIB",
        "tags": [
          "CISCO-QOS-PIB-MIB"
        ],
        "parameters": [
          {
            "name": "qosMacClassificationId",
            "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": {
                    "qosMacClassificationId": {
                      "type": "string",
                      "description": "An integer index to identify the instance of the policy class.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId"
                    },
                    "qosDstMacVlan": {
                      "type": "integer",
                      "description": "The VLAN of the destination MAC address of the L2 frame.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "qosDstMacAddress": {
                      "type": "string",
                      "description": "The destination MAC address of the L2 frame.",
                      "x-yang-type": "yang:mac-address"
                    },
                    "qosDstMacCos": {
                      "type": "string",
                      "description": "The CoS to assign the packet with the associated MAC/VLAN\n            tuple.  Note that this CoS is overridden by the policies to\n            classify the frame at layer 3 if there are any.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:QosLayer2Cos"
                    }
                  }
                },
                "example": {
                  "CISCO-QOS-PIB-MIB:qosMacClassificationEntry": {
                    "qosMacClassificationId": "00:11:22:33:44:55",
                    "qosDstMacVlan": -2147483648,
                    "qosDstMacAddress": "00:11:22:33:44:55",
                    "qosDstMacCos": "00:11:22:33:44:55"
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-qosMacClassificationEntry-4"
      },
      "x-yang-path": "/qosMacClassificationEntry={qosMacClassificationId}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "qosMacClassificationId"
      ]
    },
    "/data/CISCO-QOS-PIB-MIB:qosIpAceEntry": {
      "get": {
        "summary": "Get qosIpAceEntry list",
        "description": "Retrieve list of qosIpAceEntry entries from MIB",
        "tags": [
          "CISCO-QOS-PIB-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "An instance of this class specifies an ACE.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "qosIpAceId": {
                        "type": "string",
                        "description": "An integer index to identify the instance of the policy class.",
                        "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId"
                      },
                      "qosIpAceDstAddr": {
                        "type": "string",
                        "description": "The IP address to match against the packet's destination IP\n            address.",
                        "format": "inet:ipv4-address"
                      },
                      "qosIpAceDstAddrMask": {
                        "type": "string",
                        "description": "A mask for the matching of the destination IP address.",
                        "format": "inet:ipv4-address"
                      },
                      "qosIpAceSrcAddr": {
                        "type": "string",
                        "description": "The IP address to match against the packet's source IP\n            address.",
                        "format": "inet:ipv4-address"
                      },
                      "qosIpAceSrcAddrMask": {
                        "type": "string",
                        "description": "A mask for the matching of the source IP address.",
                        "format": "inet:ipv4-address"
                      },
                      "qosIpAceDscpMin": {
                        "type": "string",
                        "description": "The minimum value that the DSCP in the packet can have and\n            match this ACE.",
                        "x-yang-type": "CISCO-QOS-PIB-MIB:Dscp"
                      },
                      "qosIpAceDscpMax": {
                        "type": "string",
                        "description": "The maximum value that the DSCP in the packet can have and\n            match this ACE.",
                        "x-yang-type": "CISCO-QOS-PIB-MIB:Dscp"
                      },
                      "qosIpAceProtocol": {
                        "type": "integer",
                        "description": "The IP protocol to match against the packet's protocol.\n            A value of zero means match all.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "qosIpAceDstL4PortMin": {
                        "type": "integer",
                        "description": "The minimum value that the packet's layer 4 dest port number\n            can have and match this ACE.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "qosIpAceDstL4PortMax": {
                        "type": "integer",
                        "description": "The maximum value that the packet's layer 4 dest port number\n            can have and match this ACE.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "qosIpAceSrcL4PortMin": {
                        "type": "integer",
                        "description": "The minimum value that the packet's layer 4 source port\n            number can have and match this ACE.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "qosIpAceSrcL4PortMax": {
                        "type": "integer",
                        "description": "The maximum value that the packet's layer 4 source port\n            number can have and match this ACE.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "qosIpAcePermit": {
                        "type": "boolean",
                        "description": "If the packet matches this ACE and the value of this attribute\n            is true, then the matching process terminates and the QoS\n            associated with this ACE (indirectly through the ACL) is\n            applied to the packet.  If the value of this attribute is false,\n            then no more ACEs in this ACL are compared to this packet and\n            matching continues with the first ACE of the next ACL."
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-QOS-PIB-MIB:qosIpAceEntry": [
                    {
                      "qosIpAceId": "192.168.1.1",
                      "qosIpAceDstAddr": "192.168.1.1",
                      "qosIpAceDstAddrMask": "192.168.1.1",
                      "qosIpAceSrcAddr": "192.168.1.1",
                      "qosIpAceSrcAddrMask": "192.168.1.1",
                      "qosIpAceDscpMin": "192.168.1.1",
                      "qosIpAceDscpMax": "192.168.1.1",
                      "qosIpAceProtocol": -2147483648,
                      "qosIpAceDstL4PortMin": -2147483648,
                      "qosIpAceDstL4PortMax": -2147483648,
                      "qosIpAceSrcL4PortMin": -2147483648,
                      "qosIpAceSrcL4PortMax": -2147483648,
                      "qosIpAcePermit": true
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-qosIpAceEntry-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": "/qosIpAceEntry",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-QOS-PIB-MIB:qosIpAceEntry={qosIpAceId}": {
      "get": {
        "summary": "Get qosIpAceEntry entry",
        "description": "Retrieve specific qosIpAceEntry entry by key from MIB",
        "tags": [
          "CISCO-QOS-PIB-MIB"
        ],
        "parameters": [
          {
            "name": "qosIpAceId",
            "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": {
                    "qosIpAceId": {
                      "type": "string",
                      "description": "An integer index to identify the instance of the policy class.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId"
                    },
                    "qosIpAceDstAddr": {
                      "type": "string",
                      "description": "The IP address to match against the packet's destination IP\n            address.",
                      "format": "inet:ipv4-address"
                    },
                    "qosIpAceDstAddrMask": {
                      "type": "string",
                      "description": "A mask for the matching of the destination IP address.",
                      "format": "inet:ipv4-address"
                    },
                    "qosIpAceSrcAddr": {
                      "type": "string",
                      "description": "The IP address to match against the packet's source IP\n            address.",
                      "format": "inet:ipv4-address"
                    },
                    "qosIpAceSrcAddrMask": {
                      "type": "string",
                      "description": "A mask for the matching of the source IP address.",
                      "format": "inet:ipv4-address"
                    },
                    "qosIpAceDscpMin": {
                      "type": "string",
                      "description": "The minimum value that the DSCP in the packet can have and\n            match this ACE.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:Dscp"
                    },
                    "qosIpAceDscpMax": {
                      "type": "string",
                      "description": "The maximum value that the DSCP in the packet can have and\n            match this ACE.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:Dscp"
                    },
                    "qosIpAceProtocol": {
                      "type": "integer",
                      "description": "The IP protocol to match against the packet's protocol.\n            A value of zero means match all.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "qosIpAceDstL4PortMin": {
                      "type": "integer",
                      "description": "The minimum value that the packet's layer 4 dest port number\n            can have and match this ACE.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "qosIpAceDstL4PortMax": {
                      "type": "integer",
                      "description": "The maximum value that the packet's layer 4 dest port number\n            can have and match this ACE.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "qosIpAceSrcL4PortMin": {
                      "type": "integer",
                      "description": "The minimum value that the packet's layer 4 source port\n            number can have and match this ACE.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "qosIpAceSrcL4PortMax": {
                      "type": "integer",
                      "description": "The maximum value that the packet's layer 4 source port\n            number can have and match this ACE.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "qosIpAcePermit": {
                      "type": "boolean",
                      "description": "If the packet matches this ACE and the value of this attribute\n            is true, then the matching process terminates and the QoS\n            associated with this ACE (indirectly through the ACL) is\n            applied to the packet.  If the value of this attribute is false,\n            then no more ACEs in this ACL are compared to this packet and\n            matching continues with the first ACE of the next ACL."
                    }
                  }
                },
                "example": {
                  "CISCO-QOS-PIB-MIB:qosIpAceEntry": {
                    "qosIpAceId": "192.168.1.1",
                    "qosIpAceDstAddr": "192.168.1.1",
                    "qosIpAceDstAddrMask": "192.168.1.1",
                    "qosIpAceSrcAddr": "192.168.1.1",
                    "qosIpAceSrcAddrMask": "192.168.1.1",
                    "qosIpAceDscpMin": "192.168.1.1",
                    "qosIpAceDscpMax": "192.168.1.1",
                    "qosIpAceProtocol": -2147483648,
                    "qosIpAceDstL4PortMin": -2147483648,
                    "qosIpAceDstL4PortMax": -2147483648,
                    "qosIpAceSrcL4PortMin": -2147483648,
                    "qosIpAceSrcL4PortMax": -2147483648,
                    "qosIpAcePermit": true
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-qosIpAceEntry-4"
      },
      "x-yang-path": "/qosIpAceEntry={qosIpAceId}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "qosIpAceId"
      ]
    },
    "/data/CISCO-QOS-PIB-MIB:qosIpAclDefinitionEntry": {
      "get": {
        "summary": "Get qosIpAclDefinitionEntry list",
        "description": "Retrieve list of qosIpAclDefinitionEntry entries from MIB",
        "tags": [
          "CISCO-QOS-PIB-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "An instance of this class specifies an ACE in an ACL and its\n          order with respect to other ACEs in the same ACL.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "qosIpAclDefinitionId": {
                        "type": "string",
                        "description": "An integer index to identify the instance of the policy class.",
                        "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId"
                      },
                      "qosIpAclId": {
                        "type": "string",
                        "description": "An index for this ACL.  There will be one instance of\n            policy class qosIpAclDefinition with this integer index for\n            each ACE in the ACL per role combination.",
                        "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId"
                      },
                      "qosIpAceOrder": {
                        "type": "integer",
                        "description": "An integer that determines the position of this ACE in the ACL.\n            An ACE with a given order is positioned in the access contol\n            list before one with a higher order.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "qosIpAclDefAceId": {
                        "type": "string",
                        "description": "This attribute specifies the ACE in the qosIpAceTable that is\n            in the ACL specified by qosIpAclId at the position specified\n            by qosIpAceOrder.",
                        "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId"
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-QOS-PIB-MIB:qosIpAclDefinitionEntry": [
                    {
                      "qosIpAclDefinitionId": "192.168.1.1",
                      "qosIpAclId": "192.168.1.1",
                      "qosIpAceOrder": 0,
                      "qosIpAclDefAceId": "192.168.1.1"
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-qosIpAclDefinitionEntry-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": "/qosIpAclDefinitionEntry",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-QOS-PIB-MIB:qosIpAclDefinitionEntry={qosIpAclDefinitionId}": {
      "get": {
        "summary": "Get qosIpAclDefinitionEntry entry",
        "description": "Retrieve specific qosIpAclDefinitionEntry entry by key from MIB",
        "tags": [
          "CISCO-QOS-PIB-MIB"
        ],
        "parameters": [
          {
            "name": "qosIpAclDefinitionId",
            "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": {
                    "qosIpAclDefinitionId": {
                      "type": "string",
                      "description": "An integer index to identify the instance of the policy class.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId"
                    },
                    "qosIpAclId": {
                      "type": "string",
                      "description": "An index for this ACL.  There will be one instance of\n            policy class qosIpAclDefinition with this integer index for\n            each ACE in the ACL per role combination.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId"
                    },
                    "qosIpAceOrder": {
                      "type": "integer",
                      "description": "An integer that determines the position of this ACE in the ACL.\n            An ACE with a given order is positioned in the access contol\n            list before one with a higher order.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "qosIpAclDefAceId": {
                      "type": "string",
                      "description": "This attribute specifies the ACE in the qosIpAceTable that is\n            in the ACL specified by qosIpAclId at the position specified\n            by qosIpAceOrder.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId"
                    }
                  }
                },
                "example": {
                  "CISCO-QOS-PIB-MIB:qosIpAclDefinitionEntry": {
                    "qosIpAclDefinitionId": "192.168.1.1",
                    "qosIpAclId": "192.168.1.1",
                    "qosIpAceOrder": 0,
                    "qosIpAclDefAceId": "192.168.1.1"
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-qosIpAclDefinitionEntry-4"
      },
      "x-yang-path": "/qosIpAclDefinitionEntry={qosIpAclDefinitionId}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "qosIpAclDefinitionId"
      ]
    },
    "/data/CISCO-QOS-PIB-MIB:qosIpAclActionEntry": {
      "get": {
        "summary": "Get qosIpAclActionEntry list",
        "description": "Retrieve list of qosIpAclActionEntry entries from MIB",
        "tags": [
          "CISCO-QOS-PIB-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "An instance of this class applies an ACL to traffic in a\n          particular direction on an interface with a particular role\n          combination, and specifies the action for packets which match\n          the ACL.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "qosIpAclActionId": {
                        "type": "string",
                        "description": "An integer index to identify the instance of the policy class.",
                        "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId"
                      },
                      "qosIpAclActAclId": {
                        "type": "string",
                        "description": "The ACL associated with this action.",
                        "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId"
                      },
                      "qosIpAclInterfaceRoles": {
                        "type": "string",
                        "description": "The interfaces to which this ACL applies specified in terms\n            of a set of roles.",
                        "x-yang-type": "CISCO-QOS-PIB-MIB:RoleCombination"
                      },
                      "qosIpAclInterfaceDirection": {
                        "type": "string",
                        "description": "The direction of packet flow at the interface in question to\n            which this ACL applies."
                      },
                      "qosIpAclOrder": {
                        "type": "integer",
                        "description": "An integer that determines the order of this ACL in the list\n            of ACLs applied to interfaces of the specified role\n            combination. An ACL with a given order is positioned in the\n            list before one with a higher order.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "qosIpAclDscp": {
                        "type": "string",
                        "description": "The DSCP to classify the packet with in the event that the\n            packet matches an ACE in this ACL and the ACE is a permit.",
                        "x-yang-type": "CISCO-QOS-PIB-MIB:Dscp"
                      },
                      "qosIpAclDscpTrusted": {
                        "type": "boolean",
                        "description": "If this attribute is true, then the Dscp associated with\n            the packet is trusted, i.e., it is assumed to have already\n            been set.  In this case, the Dscp is not rewritten with\n            qosIpAclDscp (qosIpAclDscp is ignored).  The packet is still\n            policed as part of its micro flow and its aggregate flow.\n            \n            When a trusted action is applied to an input interface, the\n            Dscp associated with the packet is the one contained in the\n            packet.  When a trusted action is applied to an output\n            interface, the Dscp associated with the packet is the one that\n            is the result of the input classification and policing."
                      },
                      "qosIpAclMicroFlowPolicerId": {
                        "type": "string",
                        "description": "An index identifying the instance of policer to apply to the\n            microflow.  It must correspond to the integer index of an\n            instance of class qosPolicerTableor be zero.  If zero, the\n            microflow is not policed.",
                        "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId"
                      },
                      "qosIpAclAggregateId": {
                        "type": "string",
                        "description": "An index identifying the aggregate that the packet belongs\n            to.  It must correspond to the integer index of an instance of\n            class qosAggregateTable or be zero.  If zero, the microflow\n            does not belong to any aggregate and is not policed as part of\n            any aggregate.",
                        "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId"
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-QOS-PIB-MIB:qosIpAclActionEntry": [
                    {
                      "qosIpAclActionId": "192.168.1.1",
                      "qosIpAclActAclId": "192.168.1.1",
                      "qosIpAclInterfaceRoles": "192.168.1.1",
                      "qosIpAclInterfaceDirection": "192.168.1.1",
                      "qosIpAclOrder": 0,
                      "qosIpAclDscp": "192.168.1.1",
                      "qosIpAclDscpTrusted": true,
                      "qosIpAclMicroFlowPolicerId": "192.168.1.1",
                      "qosIpAclAggregateId": "192.168.1.1"
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-qosIpAclActionEntry-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": "/qosIpAclActionEntry",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-QOS-PIB-MIB:qosIpAclActionEntry={qosIpAclActionId}": {
      "get": {
        "summary": "Get qosIpAclActionEntry entry",
        "description": "Retrieve specific qosIpAclActionEntry entry by key from MIB",
        "tags": [
          "CISCO-QOS-PIB-MIB"
        ],
        "parameters": [
          {
            "name": "qosIpAclActionId",
            "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": {
                    "qosIpAclActionId": {
                      "type": "string",
                      "description": "An integer index to identify the instance of the policy class.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId"
                    },
                    "qosIpAclActAclId": {
                      "type": "string",
                      "description": "The ACL associated with this action.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId"
                    },
                    "qosIpAclInterfaceRoles": {
                      "type": "string",
                      "description": "The interfaces to which this ACL applies specified in terms\n            of a set of roles.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:RoleCombination"
                    },
                    "qosIpAclInterfaceDirection": {
                      "type": "string",
                      "description": "The direction of packet flow at the interface in question to\n            which this ACL applies."
                    },
                    "qosIpAclOrder": {
                      "type": "integer",
                      "description": "An integer that determines the order of this ACL in the list\n            of ACLs applied to interfaces of the specified role\n            combination. An ACL with a given order is positioned in the\n            list before one with a higher order.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "qosIpAclDscp": {
                      "type": "string",
                      "description": "The DSCP to classify the packet with in the event that the\n            packet matches an ACE in this ACL and the ACE is a permit.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:Dscp"
                    },
                    "qosIpAclDscpTrusted": {
                      "type": "boolean",
                      "description": "If this attribute is true, then the Dscp associated with\n            the packet is trusted, i.e., it is assumed to have already\n            been set.  In this case, the Dscp is not rewritten with\n            qosIpAclDscp (qosIpAclDscp is ignored).  The packet is still\n            policed as part of its micro flow and its aggregate flow.\n            \n            When a trusted action is applied to an input interface, the\n            Dscp associated with the packet is the one contained in the\n            packet.  When a trusted action is applied to an output\n            interface, the Dscp associated with the packet is the one that\n            is the result of the input classification and policing."
                    },
                    "qosIpAclMicroFlowPolicerId": {
                      "type": "string",
                      "description": "An index identifying the instance of policer to apply to the\n            microflow.  It must correspond to the integer index of an\n            instance of class qosPolicerTableor be zero.  If zero, the\n            microflow is not policed.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId"
                    },
                    "qosIpAclAggregateId": {
                      "type": "string",
                      "description": "An index identifying the aggregate that the packet belongs\n            to.  It must correspond to the integer index of an instance of\n            class qosAggregateTable or be zero.  If zero, the microflow\n            does not belong to any aggregate and is not policed as part of\n            any aggregate.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId"
                    }
                  }
                },
                "example": {
                  "CISCO-QOS-PIB-MIB:qosIpAclActionEntry": {
                    "qosIpAclActionId": "192.168.1.1",
                    "qosIpAclActAclId": "192.168.1.1",
                    "qosIpAclInterfaceRoles": "192.168.1.1",
                    "qosIpAclInterfaceDirection": "192.168.1.1",
                    "qosIpAclOrder": 0,
                    "qosIpAclDscp": "192.168.1.1",
                    "qosIpAclDscpTrusted": true,
                    "qosIpAclMicroFlowPolicerId": "192.168.1.1",
                    "qosIpAclAggregateId": "192.168.1.1"
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-qosIpAclActionEntry-4"
      },
      "x-yang-path": "/qosIpAclActionEntry={qosIpAclActionId}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "qosIpAclActionId"
      ]
    },
    "/data/CISCO-QOS-PIB-MIB:qosIfSchedulingPreferenceEntry": {
      "get": {
        "summary": "Get qosIfSchedulingPreferenceEntry list",
        "description": "Retrieve list of qosIfSchedulingPreferenceEntry entries from MIB",
        "tags": [
          "CISCO-QOS-PIB-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "An instance of this class specifies a scheduling preference\n          for a queue-type on an interface with a particular role\n          combination.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "qosIfSchedulingPreferenceId": {
                        "type": "string",
                        "description": "An integer index to identify the instance of the policy class.",
                        "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId"
                      },
                      "qosIfSchedulingRoles": {
                        "type": "string",
                        "description": "The combination of roles the interface must have for this\n            policy instance to apply to that interface.",
                        "x-yang-type": "CISCO-QOS-PIB-MIB:RoleCombination"
                      },
                      "qosIfSchedulingPreference": {
                        "type": "integer",
                        "description": "The preference to use this scheduling discipline and queue\n            type.  A higher value means a higher preference.  If two\n            disciplines have the same preference the choice is a local\n            decision.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "qosIfSchedulingDiscipline": {
                        "type": "string",
                        "description": "An enumerate type for all the known scheduling disciplines."
                      },
                      "qosIfSchedulingQueueType": {
                        "type": "string",
                        "description": "The queue type of this preference.",
                        "x-yang-type": "CISCO-QOS-PIB-MIB:QosInterfaceQueueType"
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-QOS-PIB-MIB:qosIfSchedulingPreferenceEntry": [
                    {
                      "qosIfSchedulingPreferenceId": "example-string",
                      "qosIfSchedulingRoles": "example-string",
                      "qosIfSchedulingPreference": -2147483648,
                      "qosIfSchedulingDiscipline": "192.168.1.1",
                      "qosIfSchedulingQueueType": "ethernetCsmacd(6)"
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-qosIfSchedulingPreferenceEntry-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": "/qosIfSchedulingPreferenceEntry",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-QOS-PIB-MIB:qosIfSchedulingPreferenceEntry={qosIfSchedulingPreferenceId}": {
      "get": {
        "summary": "Get qosIfSchedulingPreferenceEntry entry",
        "description": "Retrieve specific qosIfSchedulingPreferenceEntry entry by key from MIB",
        "tags": [
          "CISCO-QOS-PIB-MIB"
        ],
        "parameters": [
          {
            "name": "qosIfSchedulingPreferenceId",
            "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": {
                    "qosIfSchedulingPreferenceId": {
                      "type": "string",
                      "description": "An integer index to identify the instance of the policy class.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId"
                    },
                    "qosIfSchedulingRoles": {
                      "type": "string",
                      "description": "The combination of roles the interface must have for this\n            policy instance to apply to that interface.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:RoleCombination"
                    },
                    "qosIfSchedulingPreference": {
                      "type": "integer",
                      "description": "The preference to use this scheduling discipline and queue\n            type.  A higher value means a higher preference.  If two\n            disciplines have the same preference the choice is a local\n            decision.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "qosIfSchedulingDiscipline": {
                      "type": "string",
                      "description": "An enumerate type for all the known scheduling disciplines."
                    },
                    "qosIfSchedulingQueueType": {
                      "type": "string",
                      "description": "The queue type of this preference.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:QosInterfaceQueueType"
                    }
                  }
                },
                "example": {
                  "CISCO-QOS-PIB-MIB:qosIfSchedulingPreferenceEntry": {
                    "qosIfSchedulingPreferenceId": "example-string",
                    "qosIfSchedulingRoles": "example-string",
                    "qosIfSchedulingPreference": -2147483648,
                    "qosIfSchedulingDiscipline": "192.168.1.1",
                    "qosIfSchedulingQueueType": "ethernetCsmacd(6)"
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-qosIfSchedulingPreferenceEntry-4"
      },
      "x-yang-path": "/qosIfSchedulingPreferenceEntry={qosIfSchedulingPreferenceId}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "qosIfSchedulingPreferenceId"
      ]
    },
    "/data/CISCO-QOS-PIB-MIB:qosIfDropPreferenceEntry": {
      "get": {
        "summary": "Get qosIfDropPreferenceEntry list",
        "description": "Retrieve list of qosIfDropPreferenceEntry entries from MIB",
        "tags": [
          "CISCO-QOS-PIB-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "An instance of this class specifies a drop preference for\n          a drop mechanism on an interface with a particular role\n          combination.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "qosIfDropPreferenceId": {
                        "type": "string",
                        "description": "An integer index to identify the instance of the policy class.",
                        "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId"
                      },
                      "qosIfDropRoles": {
                        "type": "string",
                        "description": "The combination of roles the interface must have for this\n            policy instance to apply to that interface.",
                        "x-yang-type": "CISCO-QOS-PIB-MIB:RoleCombination"
                      },
                      "qosIfDropPreference": {
                        "type": "integer",
                        "description": "The preference to use this drop mechanism.  A higher value\n            means a higher preference.  If two mechanisms have the same\n            preference the choice is a local decision.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "qosIfDropDiscipline": {
                        "type": "string",
                        "description": "An enumerate type for all the known drop mechanisms."
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-QOS-PIB-MIB:qosIfDropPreferenceEntry": [
                    {
                      "qosIfDropPreferenceId": "example-string",
                      "qosIfDropRoles": "example-string",
                      "qosIfDropPreference": -2147483648,
                      "qosIfDropDiscipline": "192.168.1.1"
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-qosIfDropPreferenceEntry-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": "/qosIfDropPreferenceEntry",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-QOS-PIB-MIB:qosIfDropPreferenceEntry={qosIfDropPreferenceId}": {
      "get": {
        "summary": "Get qosIfDropPreferenceEntry entry",
        "description": "Retrieve specific qosIfDropPreferenceEntry entry by key from MIB",
        "tags": [
          "CISCO-QOS-PIB-MIB"
        ],
        "parameters": [
          {
            "name": "qosIfDropPreferenceId",
            "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": {
                    "qosIfDropPreferenceId": {
                      "type": "string",
                      "description": "An integer index to identify the instance of the policy class.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId"
                    },
                    "qosIfDropRoles": {
                      "type": "string",
                      "description": "The combination of roles the interface must have for this\n            policy instance to apply to that interface.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:RoleCombination"
                    },
                    "qosIfDropPreference": {
                      "type": "integer",
                      "description": "The preference to use this drop mechanism.  A higher value\n            means a higher preference.  If two mechanisms have the same\n            preference the choice is a local decision.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "qosIfDropDiscipline": {
                      "type": "string",
                      "description": "An enumerate type for all the known drop mechanisms."
                    }
                  }
                },
                "example": {
                  "CISCO-QOS-PIB-MIB:qosIfDropPreferenceEntry": {
                    "qosIfDropPreferenceId": "example-string",
                    "qosIfDropRoles": "example-string",
                    "qosIfDropPreference": -2147483648,
                    "qosIfDropDiscipline": "192.168.1.1"
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-qosIfDropPreferenceEntry-4"
      },
      "x-yang-path": "/qosIfDropPreferenceEntry={qosIfDropPreferenceId}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "qosIfDropPreferenceId"
      ]
    },
    "/data/CISCO-QOS-PIB-MIB:qosIfDscpAssignmentEntry": {
      "get": {
        "summary": "Get qosIfDscpAssignmentEntry list",
        "description": "Retrieve list of qosIfDscpAssignmentEntry entries from MIB",
        "tags": [
          "CISCO-QOS-PIB-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "An instance of this class specifies the queue and threshold\n          set for a packet with a particular DSCP on an interface of\n          a particular type with a particular role combination.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "qosIfDscpAssignmentId": {
                        "type": "string",
                        "description": "An integer index to identify the instance of the policy class.",
                        "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId"
                      },
                      "qosIfDscpRoles": {
                        "type": "string",
                        "description": "The role combination the interface must be configured with.",
                        "x-yang-type": "CISCO-QOS-PIB-MIB:RoleCombination"
                      },
                      "qosIfQueueType": {
                        "type": "string",
                        "description": "The interface queue type to which this row applies.",
                        "x-yang-type": "CISCO-QOS-PIB-MIB:QosInterfaceQueueType"
                      },
                      "qosIfDscp": {
                        "type": "string",
                        "description": "The DSCP to which this row applies.",
                        "x-yang-type": "CISCO-QOS-PIB-MIB:Dscp"
                      },
                      "qosIfQueue": {
                        "type": "integer",
                        "description": "The queue to which the DSCP applies for the given interface\n            type.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "qosIfThresholdSet": {
                        "type": "integer",
                        "description": "The threshold set of the specified queue to which the DSCP\n            applies for the given interface type.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-QOS-PIB-MIB:qosIfDscpAssignmentEntry": [
                    {
                      "qosIfDscpAssignmentId": "example-string",
                      "qosIfDscpRoles": "example-string",
                      "qosIfQueueType": "ethernetCsmacd(6)",
                      "qosIfDscp": "example-string",
                      "qosIfQueue": -2147483648,
                      "qosIfThresholdSet": -2147483648
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-qosIfDscpAssignmentEntry-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": "/qosIfDscpAssignmentEntry",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-QOS-PIB-MIB:qosIfDscpAssignmentEntry={qosIfDscpAssignmentId}": {
      "get": {
        "summary": "Get qosIfDscpAssignmentEntry entry",
        "description": "Retrieve specific qosIfDscpAssignmentEntry entry by key from MIB",
        "tags": [
          "CISCO-QOS-PIB-MIB"
        ],
        "parameters": [
          {
            "name": "qosIfDscpAssignmentId",
            "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": {
                    "qosIfDscpAssignmentId": {
                      "type": "string",
                      "description": "An integer index to identify the instance of the policy class.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId"
                    },
                    "qosIfDscpRoles": {
                      "type": "string",
                      "description": "The role combination the interface must be configured with.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:RoleCombination"
                    },
                    "qosIfQueueType": {
                      "type": "string",
                      "description": "The interface queue type to which this row applies.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:QosInterfaceQueueType"
                    },
                    "qosIfDscp": {
                      "type": "string",
                      "description": "The DSCP to which this row applies.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:Dscp"
                    },
                    "qosIfQueue": {
                      "type": "integer",
                      "description": "The queue to which the DSCP applies for the given interface\n            type.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "qosIfThresholdSet": {
                      "type": "integer",
                      "description": "The threshold set of the specified queue to which the DSCP\n            applies for the given interface type.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    }
                  }
                },
                "example": {
                  "CISCO-QOS-PIB-MIB:qosIfDscpAssignmentEntry": {
                    "qosIfDscpAssignmentId": "example-string",
                    "qosIfDscpRoles": "example-string",
                    "qosIfQueueType": "ethernetCsmacd(6)",
                    "qosIfDscp": "example-string",
                    "qosIfQueue": -2147483648,
                    "qosIfThresholdSet": -2147483648
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-qosIfDscpAssignmentEntry-4"
      },
      "x-yang-path": "/qosIfDscpAssignmentEntry={qosIfDscpAssignmentId}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "qosIfDscpAssignmentId"
      ]
    },
    "/data/CISCO-QOS-PIB-MIB:qosIfRedEntry": {
      "get": {
        "summary": "Get qosIfRedEntry list",
        "description": "Retrieve list of qosIfRedEntry entries from MIB",
        "tags": [
          "CISCO-QOS-PIB-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "An instance of this class specifies threshold limits for a\n          particular RED threshold of a given threshold set on an\n          interface and with a particular role combination.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "qosIfRedId": {
                        "type": "string",
                        "description": "An integer index to identify the instance of the policy class.",
                        "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId"
                      },
                      "qosIfRedRoles": {
                        "type": "string",
                        "description": "The role combination the interface must be configured with.",
                        "x-yang-type": "CISCO-QOS-PIB-MIB:RoleCombination"
                      },
                      "qosIfRedNumThresholdSets": {
                        "type": "string",
                        "description": "The values in this entry apply only to queues with the number\n            of thresholds specified by this attribute.",
                        "x-yang-type": "CISCO-QOS-PIB-MIB:ThresholdSetRange"
                      },
                      "qosIfRedThresholdSet": {
                        "type": "integer",
                        "description": "The threshold set to which the lower and upper values apply.\n            It must be in the range 1 through qosIfRedNumThresholdSets.\n            There must be exactly one PRI for each value in this range.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "qosIfRedThresholdSetLower": {
                        "type": "string",
                        "description": "The threshold value below which no packets are dropped.",
                        "x-yang-type": "CISCO-QOS-PIB-MIB:Percent"
                      },
                      "qosIfRedThresholdSetUpper": {
                        "type": "string",
                        "description": "The threshold value above which all packets are dropped.",
                        "x-yang-type": "CISCO-QOS-PIB-MIB:Percent"
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-QOS-PIB-MIB:qosIfRedEntry": [
                    {
                      "qosIfRedId": "example-string",
                      "qosIfRedRoles": "example-string",
                      "qosIfRedNumThresholdSets": "example-string",
                      "qosIfRedThresholdSet": -2147483648,
                      "qosIfRedThresholdSetLower": "example-string",
                      "qosIfRedThresholdSetUpper": "example-string"
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-qosIfRedEntry-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": "/qosIfRedEntry",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-QOS-PIB-MIB:qosIfRedEntry={qosIfRedId}": {
      "get": {
        "summary": "Get qosIfRedEntry entry",
        "description": "Retrieve specific qosIfRedEntry entry by key from MIB",
        "tags": [
          "CISCO-QOS-PIB-MIB"
        ],
        "parameters": [
          {
            "name": "qosIfRedId",
            "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": {
                    "qosIfRedId": {
                      "type": "string",
                      "description": "An integer index to identify the instance of the policy class.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId"
                    },
                    "qosIfRedRoles": {
                      "type": "string",
                      "description": "The role combination the interface must be configured with.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:RoleCombination"
                    },
                    "qosIfRedNumThresholdSets": {
                      "type": "string",
                      "description": "The values in this entry apply only to queues with the number\n            of thresholds specified by this attribute.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:ThresholdSetRange"
                    },
                    "qosIfRedThresholdSet": {
                      "type": "integer",
                      "description": "The threshold set to which the lower and upper values apply.\n            It must be in the range 1 through qosIfRedNumThresholdSets.\n            There must be exactly one PRI for each value in this range.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "qosIfRedThresholdSetLower": {
                      "type": "string",
                      "description": "The threshold value below which no packets are dropped.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:Percent"
                    },
                    "qosIfRedThresholdSetUpper": {
                      "type": "string",
                      "description": "The threshold value above which all packets are dropped.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:Percent"
                    }
                  }
                },
                "example": {
                  "CISCO-QOS-PIB-MIB:qosIfRedEntry": {
                    "qosIfRedId": "example-string",
                    "qosIfRedRoles": "example-string",
                    "qosIfRedNumThresholdSets": "example-string",
                    "qosIfRedThresholdSet": -2147483648,
                    "qosIfRedThresholdSetLower": "example-string",
                    "qosIfRedThresholdSetUpper": "example-string"
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-qosIfRedEntry-4"
      },
      "x-yang-path": "/qosIfRedEntry={qosIfRedId}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "qosIfRedId"
      ]
    },
    "/data/CISCO-QOS-PIB-MIB:qosIfTailDropEntry": {
      "get": {
        "summary": "Get qosIfTailDropEntry list",
        "description": "Retrieve list of qosIfTailDropEntry entries from MIB",
        "tags": [
          "CISCO-QOS-PIB-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "An instance of this class specifies the queue depth for a\n          particular tail-drop threshold set on an interface with a\n          particular role combination.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "qosIfTailDropId": {
                        "type": "string",
                        "description": "An integer index to identify the instance of the policy class.",
                        "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId"
                      },
                      "qosIfTailDropRoles": {
                        "type": "string",
                        "description": "The role combination the interface must be configured with.",
                        "x-yang-type": "CISCO-QOS-PIB-MIB:RoleCombination"
                      },
                      "qosIfTailDropNumThresholdSets": {
                        "type": "string",
                        "description": "The value in this entry applies only to queues with the\n            number of thresholds specified by this attribute.",
                        "x-yang-type": "CISCO-QOS-PIB-MIB:ThresholdSetRange"
                      },
                      "qosIfTailDropThresholdSet": {
                        "type": "integer",
                        "description": "The threshold set to which the threshold value applies",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "qosIfTailDropThresholdSetValue": {
                        "type": "string",
                        "description": "The threshold value above which packets are dropped.",
                        "x-yang-type": "CISCO-QOS-PIB-MIB:Percent"
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-QOS-PIB-MIB:qosIfTailDropEntry": [
                    {
                      "qosIfTailDropId": "example-string",
                      "qosIfTailDropRoles": "example-string",
                      "qosIfTailDropNumThresholdSets": "example-string",
                      "qosIfTailDropThresholdSet": -2147483648,
                      "qosIfTailDropThresholdSetValue": "example-string"
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-qosIfTailDropEntry-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": "/qosIfTailDropEntry",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-QOS-PIB-MIB:qosIfTailDropEntry={qosIfTailDropId}": {
      "get": {
        "summary": "Get qosIfTailDropEntry entry",
        "description": "Retrieve specific qosIfTailDropEntry entry by key from MIB",
        "tags": [
          "CISCO-QOS-PIB-MIB"
        ],
        "parameters": [
          {
            "name": "qosIfTailDropId",
            "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": {
                    "qosIfTailDropId": {
                      "type": "string",
                      "description": "An integer index to identify the instance of the policy class.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId"
                    },
                    "qosIfTailDropRoles": {
                      "type": "string",
                      "description": "The role combination the interface must be configured with.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:RoleCombination"
                    },
                    "qosIfTailDropNumThresholdSets": {
                      "type": "string",
                      "description": "The value in this entry applies only to queues with the\n            number of thresholds specified by this attribute.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:ThresholdSetRange"
                    },
                    "qosIfTailDropThresholdSet": {
                      "type": "integer",
                      "description": "The threshold set to which the threshold value applies",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "qosIfTailDropThresholdSetValue": {
                      "type": "string",
                      "description": "The threshold value above which packets are dropped.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:Percent"
                    }
                  }
                },
                "example": {
                  "CISCO-QOS-PIB-MIB:qosIfTailDropEntry": {
                    "qosIfTailDropId": "example-string",
                    "qosIfTailDropRoles": "example-string",
                    "qosIfTailDropNumThresholdSets": "example-string",
                    "qosIfTailDropThresholdSet": -2147483648,
                    "qosIfTailDropThresholdSetValue": "example-string"
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-qosIfTailDropEntry-4"
      },
      "x-yang-path": "/qosIfTailDropEntry={qosIfTailDropId}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "qosIfTailDropId"
      ]
    },
    "/data/CISCO-QOS-PIB-MIB:qosIfWeightsEntry": {
      "get": {
        "summary": "Get qosIfWeightsEntry list",
        "description": "Retrieve list of qosIfWeightsEntry entries from MIB",
        "tags": [
          "CISCO-QOS-PIB-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "An instance of this class specifies the scheduling weight for\n          a particular queue of an interface with a particular number\n          of queues and with a particular role combination.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "qosIfWeightsId": {
                        "type": "string",
                        "description": "An integer index to identify the instance of the policy class.",
                        "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId"
                      },
                      "qosIfWeightsRoles": {
                        "type": "string",
                        "description": "The role combination the interface must be configured with.",
                        "x-yang-type": "CISCO-QOS-PIB-MIB:RoleCombination"
                      },
                      "qosIfWeightsNumQueues": {
                        "type": "string",
                        "description": "The value of the weight in this instance applies only to\n            interfaces with the number of queues specified by this\n            attribute.",
                        "x-yang-type": "CISCO-QOS-PIB-MIB:QueueRange"
                      },
                      "qosIfWeightsQueue": {
                        "type": "integer",
                        "description": "The queue to which the weight applies.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "qosIfWeightsDrainSize": {
                        "type": "integer",
                        "description": "The maximum number of bytes that may be drained from the\n            queue in one cycle.  The percentage of the bandwith allocated\n            to this queue can be calculated from this attribute and the\n            sum of the drain sizes of all the non-priority queues of the\n            interface.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "qosIfWeightsQueueSize": {
                        "type": "integer",
                        "description": "The size of the queue in bytes.  Some devices set queue size\n            in terms of packets.  These devices must calculate the queue\n            size in packets by assuming an average packet size suitable\n            for the particular interface.\n            \n            Some devices have a fixed size buffer to be shared among all\n            queues.  These devices must allocate a fraction of the\n            total buffer space to this queue calculated as the the ratio\n            of the queue size to the sum of the queue sizes for the\n            interface.",
                        "minimum": 0,
                        "maximum": 4294967295
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-QOS-PIB-MIB:qosIfWeightsEntry": [
                    {
                      "qosIfWeightsId": "example-string",
                      "qosIfWeightsRoles": "example-string",
                      "qosIfWeightsNumQueues": "example-string",
                      "qosIfWeightsQueue": -2147483648,
                      "qosIfWeightsDrainSize": 0,
                      "qosIfWeightsQueueSize": 0
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-qosIfWeightsEntry-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": "/qosIfWeightsEntry",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-QOS-PIB-MIB:qosIfWeightsEntry={qosIfWeightsId}": {
      "get": {
        "summary": "Get qosIfWeightsEntry entry",
        "description": "Retrieve specific qosIfWeightsEntry entry by key from MIB",
        "tags": [
          "CISCO-QOS-PIB-MIB"
        ],
        "parameters": [
          {
            "name": "qosIfWeightsId",
            "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": {
                    "qosIfWeightsId": {
                      "type": "string",
                      "description": "An integer index to identify the instance of the policy class.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId"
                    },
                    "qosIfWeightsRoles": {
                      "type": "string",
                      "description": "The role combination the interface must be configured with.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:RoleCombination"
                    },
                    "qosIfWeightsNumQueues": {
                      "type": "string",
                      "description": "The value of the weight in this instance applies only to\n            interfaces with the number of queues specified by this\n            attribute.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:QueueRange"
                    },
                    "qosIfWeightsQueue": {
                      "type": "integer",
                      "description": "The queue to which the weight applies.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "qosIfWeightsDrainSize": {
                      "type": "integer",
                      "description": "The maximum number of bytes that may be drained from the\n            queue in one cycle.  The percentage of the bandwith allocated\n            to this queue can be calculated from this attribute and the\n            sum of the drain sizes of all the non-priority queues of the\n            interface.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "qosIfWeightsQueueSize": {
                      "type": "integer",
                      "description": "The size of the queue in bytes.  Some devices set queue size\n            in terms of packets.  These devices must calculate the queue\n            size in packets by assuming an average packet size suitable\n            for the particular interface.\n            \n            Some devices have a fixed size buffer to be shared among all\n            queues.  These devices must allocate a fraction of the\n            total buffer space to this queue calculated as the the ratio\n            of the queue size to the sum of the queue sizes for the\n            interface.",
                      "minimum": 0,
                      "maximum": 4294967295
                    }
                  }
                },
                "example": {
                  "CISCO-QOS-PIB-MIB:qosIfWeightsEntry": {
                    "qosIfWeightsId": "example-string",
                    "qosIfWeightsRoles": "example-string",
                    "qosIfWeightsNumQueues": "example-string",
                    "qosIfWeightsQueue": -2147483648,
                    "qosIfWeightsDrainSize": 0,
                    "qosIfWeightsQueueSize": 0
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-qosIfWeightsEntry-4"
      },
      "x-yang-path": "/qosIfWeightsEntry={qosIfWeightsId}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "qosIfWeightsId"
      ]
    }
  },
  "components": {
    "schemas": {
      "CISCO-QOS-PIB-MIB_CISCO-QOS-PIB-MIB": {
        "type": "object",
        "description": "This class contains a single policy instance that identifies\n        the current incarnation of the PIB and the PDP that installed\n        this incarnation.  The instance of this class is reported to\n        the PDP at client connect time so that the PDP can (attempt\n        to) ascertain the current state of the PIB.",
        "properties": {
          "qosDevicePibIncarnationEntry": {
            "type": "array",
            "description": "The single policy instance of this class identifies the\n          current incarnation of the PIB and the PDP that installed\n          this incarnation.",
            "items": {
              "type": "object",
              "properties": {
                "qosDeviceIncarnationId": {
                  "type": "string",
                  "description": "An integer index to identify the instance of the policy class.",
                  "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId",
                  "readOnly": true
                },
                "qosDevicePdpName": {
                  "type": "string",
                  "description": "The name of the PDP that installed the current incarnation of\n            the PIB into the device.  By default it is the zero length\n            string.",
                  "x-yang-type": "snmpv2-tc:DisplayString",
                  "readOnly": true
                },
                "qosDevicePibIncarnation": {
                  "type": "string",
                  "description": "An octet string to identify the current incarnation.  It has\n            meaning to the PDP that installed the PIB and perhaps its\n            standby PDPs. By default the empty string.",
                  "format": "binary",
                  "readOnly": true
                },
                "qosDevicePibTtl": {
                  "type": "integer",
                  "description": "The number of seconds after a client close or TCP timeout for\n            which the PEP continues to enforce the policy in the PIB.\n            After this interval, the PIB is consired expired and the\n            device no longer enforces the policy installed in the PIB.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                }
              }
            },
            "readOnly": true
          },
          "qosDeviceAttributeEntry": {
            "type": "array",
            "description": "The single instance of this class indicates specific\n          attributes of the device.",
            "items": {
              "type": "object",
              "properties": {
                "qosDeviceAttributeId": {
                  "type": "string",
                  "description": "An integer index to identify the instance of the policy class.",
                  "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId",
                  "readOnly": true
                },
                "qosDevicePepDomain": {
                  "type": "string",
                  "description": "The QoS domain that this device belongs to.  This is\n            configured locally on the device (perhaps by some management\n            protocol such as SNMP).  By default, it is the zero-length\n            string.",
                  "x-yang-type": "snmpv2-tc:DisplayString",
                  "readOnly": true
                },
                "qosDevicePrimaryPdp": {
                  "type": "string",
                  "description": "The address of the PDP configured to be the primary PDP for\n            the device.",
                  "format": "inet:ipv4-address",
                  "readOnly": true
                },
                "qosDeviceSecondaryPdp": {
                  "type": "string",
                  "description": "The address of the PDP configured to be the secondary PDP for\n            the device.  An address of zero indicates no secondary is\n            configured.",
                  "format": "inet:ipv4-address",
                  "readOnly": true
                },
                "qosDeviceMaxMessageSize": {
                  "type": "integer",
                  "description": "The maximum size message that this PEP is capable of\n            receiving in bytes.  A value of zero means that the maximum\n            message size is unspecified (but does not mean it is\n            unlimited).  A message greater than this maximum results in a\n            MessageTooBig error on a 'no commit' REP.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "qosDeviceCapabilities": {
                  "type": "string",
                  "description": "An enumeration of device capabilities.  Used by the PDP to\n            select policies and configuration to push to the PEP.",
                  "readOnly": true
                }
              }
            },
            "readOnly": true
          },
          "qosInterfaceTypeEntry": {
            "type": "array",
            "description": "An instance of this class describes a role combination for\n          an interface type of an interface that exists on the device.",
            "items": {
              "type": "object",
              "properties": {
                "qosInterfaceTypeId": {
                  "type": "string",
                  "description": "An integer index to identify the instance of the policy class.",
                  "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId",
                  "readOnly": true
                },
                "qosInterfaceQueueType": {
                  "type": "string",
                  "description": "The interface type in terms of number of queues and\n            thresholds.",
                  "x-yang-type": "CISCO-QOS-PIB-MIB:QosInterfaceQueueType",
                  "readOnly": true
                },
                "qosInterfaceTypeRoles": {
                  "type": "string",
                  "description": "A combination of roles on at least one interface of type\n            qosInterfaceType.",
                  "x-yang-type": "CISCO-QOS-PIB-MIB:RoleCombination",
                  "readOnly": true
                },
                "qosInterfaceTypeCapabilities": {
                  "type": "string",
                  "description": "An enumeration of interface capabilities.  Used by the PDP to\n            select policies and configuration to push to the PEP.",
                  "x-yang-type": "CISCO-QOS-PIB-MIB:QosInterfaceTypeCapabilities",
                  "readOnly": true
                }
              }
            },
            "readOnly": true
          },
          "qosDiffServMappingEntry": {
            "type": "array",
            "description": "An instance of this class represents mappings from a DSCP.",
            "items": {
              "type": "object",
              "properties": {
                "qosDscp": {
                  "type": "string",
                  "description": "A DSCP for which this entry contains mappings.",
                  "x-yang-type": "CISCO-QOS-PIB-MIB:Dscp",
                  "readOnly": true
                },
                "qosMarkedDscp": {
                  "type": "string",
                  "description": "The DSCP to use instead of the qosDscp when the packet is out\n            of profile and hence marked as such.",
                  "x-yang-type": "CISCO-QOS-PIB-MIB:Dscp",
                  "readOnly": true
                },
                "qosL2Cos": {
                  "type": "string",
                  "description": "The L2 CoS value to use when mapping this DSCP to layer 2\n            CoS.",
                  "x-yang-type": "CISCO-QOS-PIB-MIB:QosLayer2Cos",
                  "readOnly": true
                }
              }
            },
            "readOnly": true
          },
          "qosCosToDscpEntry": {
            "type": "array",
            "description": "An instance of this class maps a CoS value to a DSCP.",
            "items": {
              "type": "object",
              "properties": {
                "qosCosToDscpCos": {
                  "type": "string",
                  "description": "The L2 CoS value that is being mapped.",
                  "x-yang-type": "CISCO-QOS-PIB-MIB:QosLayer2Cos",
                  "readOnly": true
                },
                "qosCosToDscpDscp": {
                  "type": "string",
                  "description": "The DSCP value to use when mapping the L2 CoS to a DSCP.",
                  "x-yang-type": "CISCO-QOS-PIB-MIB:Dscp",
                  "readOnly": true
                }
              }
            },
            "readOnly": true
          },
          "qosUnmatchedPolicyEntry": {
            "type": "array",
            "description": "An instance of this class specifies the unmatched policy\n          for a particular role combination for incoming or outgoing\n          traffic.",
            "items": {
              "type": "object",
              "properties": {
                "qosUnmatchedPolicyId": {
                  "type": "string",
                  "description": "An integer index to identify the instance of the policy class.",
                  "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId",
                  "readOnly": true
                },
                "qosUnmatchedPolicyRole": {
                  "type": "string",
                  "description": "Role combination for which this instance applies.",
                  "x-yang-type": "CISCO-QOS-PIB-MIB:RoleCombination",
                  "readOnly": true
                },
                "qosUnmatchedPolicyDirection": {
                  "type": "string",
                  "description": "The direction of packet flow at the interface in question to\n            which this instance applies.",
                  "readOnly": true
                },
                "qosUnmatchedPolicyDscp": {
                  "type": "string",
                  "description": "The DSCP to classify the unmatched packet with.  This must be\n            specified even if qosUnmatchedPolicyDscpTrusted is true.",
                  "x-yang-type": "CISCO-QOS-PIB-MIB:Dscp",
                  "readOnly": true
                },
                "qosUnmatchedPolicyDscpTrusted": {
                  "type": "boolean",
                  "description": "If this attribute is true, then the Dscp associated with the\n            packet is trusted, i.e., it is assumed to have already been\n            set.  In this case, the Dscp is not rewritten with\n            qosUnmatchedPolicyDscp (qosUnmatchedPolicyDscp is ignored)\n            unless this is a non-IP packet and arrives untagged.  The\n            packet is still policed as part of its micro flow and its\n            aggregate flow.\n            \n            When a trusted action is applied to an input interface, the\n            Dscp (for an IP packet) or CoS (for a non-IP packet)\n            associated with the packet is the one contained in the packet.\n            When a trusted action is applied to an output interface, the\n            Dscp associated with the packet is the one that is the result\n            of the input classification and policing.",
                  "readOnly": true
                },
                "qosUnmatchPolMicroFlowPolicerId": {
                  "type": "string",
                  "description": "An index identifying the instance of policer to apply to\n            unmatched packets.  It must correspond to the integer index of\n            an instance of class qosPolicerTable or be zero.  If zero, the\n            microflow is not policed.",
                  "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId",
                  "readOnly": true
                },
                "qosUnmatchedPolicyAggregateId": {
                  "type": "string",
                  "description": "An index identifying the aggregate that the packet belongs\n            to.  It must correspond to the integer index of an instance of\n            class qosAggregateTable or be zero.  If zero, the microflow\n            does not belong to any aggregate and is not policed as part of\n            any aggregate.",
                  "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId",
                  "readOnly": true
                }
              }
            },
            "readOnly": true
          },
          "qosPolicerEntry": {
            "type": "array",
            "description": "An instance of this class specifies a set of policing\n          parameters.",
            "items": {
              "type": "object",
              "properties": {
                "qosPolicerId": {
                  "type": "string",
                  "description": "An integer index to identify the instance of the policy class.",
                  "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId",
                  "readOnly": true
                },
                "qosPolicerRate": {
                  "type": "integer",
                  "description": "The token rate.  It is specified in units of bit/s. A rate of\n            zero means that all packets will be out of profile.  If the\n            qosPolicerAction is set to drop then this effectively\n            denies any service to packets policed by this policer.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "qosPolicerNormalBurst": {
                  "type": "integer",
                  "description": "The normal size of a burst in terms of bits.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "qosPolicerExcessBurst": {
                  "type": "integer",
                  "description": "The excess size of a burst in terms of bits.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "qosPolicerAction": {
                  "type": "string",
                  "description": "An indication of how to handle out of profile packets.  When\n            the shape action is chosen then traffic is shaped to the rate\n            specified by qosPolicerRate.",
                  "readOnly": true
                }
              }
            },
            "readOnly": true
          },
          "qosAggregateEntry": {
            "type": "array",
            "description": "An instance of this class specifies the policer to apply to\n          an aggregate flow.",
            "items": {
              "type": "object",
              "properties": {
                "qosAggregateId": {
                  "type": "string",
                  "description": "An integer index to identify the instance of the policy class.",
                  "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId",
                  "readOnly": true
                },
                "qosAggregatePolicerId": {
                  "type": "string",
                  "description": "An index identifying the instance of policer to apply to the\n            aggregate.  It must correspond to the integer index of an\n            instance of class qosPolicerTable.",
                  "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId",
                  "readOnly": true
                }
              }
            },
            "readOnly": true
          },
          "qosMacClassificationEntry": {
            "type": "array",
            "description": "An instance of this class specifies the mapping of a VLAN\n          and a MAC address to a CoS value.",
            "items": {
              "type": "object",
              "properties": {
                "qosMacClassificationId": {
                  "type": "string",
                  "description": "An integer index to identify the instance of the policy class.",
                  "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId",
                  "readOnly": true
                },
                "qosDstMacVlan": {
                  "type": "integer",
                  "description": "The VLAN of the destination MAC address of the L2 frame.",
                  "minimum": -2147483648,
                  "maximum": 2147483647,
                  "readOnly": true
                },
                "qosDstMacAddress": {
                  "type": "string",
                  "description": "The destination MAC address of the L2 frame.",
                  "x-yang-type": "yang:mac-address",
                  "readOnly": true
                },
                "qosDstMacCos": {
                  "type": "string",
                  "description": "The CoS to assign the packet with the associated MAC/VLAN\n            tuple.  Note that this CoS is overridden by the policies to\n            classify the frame at layer 3 if there are any.",
                  "x-yang-type": "CISCO-QOS-PIB-MIB:QosLayer2Cos",
                  "readOnly": true
                }
              }
            },
            "readOnly": true
          },
          "qosIpAceEntry": {
            "type": "array",
            "description": "An instance of this class specifies an ACE.",
            "items": {
              "type": "object",
              "properties": {
                "qosIpAceId": {
                  "type": "string",
                  "description": "An integer index to identify the instance of the policy class.",
                  "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId",
                  "readOnly": true
                },
                "qosIpAceDstAddr": {
                  "type": "string",
                  "description": "The IP address to match against the packet's destination IP\n            address.",
                  "format": "inet:ipv4-address",
                  "readOnly": true
                },
                "qosIpAceDstAddrMask": {
                  "type": "string",
                  "description": "A mask for the matching of the destination IP address.",
                  "format": "inet:ipv4-address",
                  "readOnly": true
                },
                "qosIpAceSrcAddr": {
                  "type": "string",
                  "description": "The IP address to match against the packet's source IP\n            address.",
                  "format": "inet:ipv4-address",
                  "readOnly": true
                },
                "qosIpAceSrcAddrMask": {
                  "type": "string",
                  "description": "A mask for the matching of the source IP address.",
                  "format": "inet:ipv4-address",
                  "readOnly": true
                },
                "qosIpAceDscpMin": {
                  "type": "string",
                  "description": "The minimum value that the DSCP in the packet can have and\n            match this ACE.",
                  "x-yang-type": "CISCO-QOS-PIB-MIB:Dscp",
                  "readOnly": true
                },
                "qosIpAceDscpMax": {
                  "type": "string",
                  "description": "The maximum value that the DSCP in the packet can have and\n            match this ACE.",
                  "x-yang-type": "CISCO-QOS-PIB-MIB:Dscp",
                  "readOnly": true
                },
                "qosIpAceProtocol": {
                  "type": "integer",
                  "description": "The IP protocol to match against the packet's protocol.\n            A value of zero means match all.",
                  "minimum": -2147483648,
                  "maximum": 2147483647,
                  "readOnly": true
                },
                "qosIpAceDstL4PortMin": {
                  "type": "integer",
                  "description": "The minimum value that the packet's layer 4 dest port number\n            can have and match this ACE.",
                  "minimum": -2147483648,
                  "maximum": 2147483647,
                  "readOnly": true
                },
                "qosIpAceDstL4PortMax": {
                  "type": "integer",
                  "description": "The maximum value that the packet's layer 4 dest port number\n            can have and match this ACE.",
                  "minimum": -2147483648,
                  "maximum": 2147483647,
                  "readOnly": true
                },
                "qosIpAceSrcL4PortMin": {
                  "type": "integer",
                  "description": "The minimum value that the packet's layer 4 source port\n            number can have and match this ACE.",
                  "minimum": -2147483648,
                  "maximum": 2147483647,
                  "readOnly": true
                },
                "qosIpAceSrcL4PortMax": {
                  "type": "integer",
                  "description": "The maximum value that the packet's layer 4 source port\n            number can have and match this ACE.",
                  "minimum": -2147483648,
                  "maximum": 2147483647,
                  "readOnly": true
                },
                "qosIpAcePermit": {
                  "type": "boolean",
                  "description": "If the packet matches this ACE and the value of this attribute\n            is true, then the matching process terminates and the QoS\n            associated with this ACE (indirectly through the ACL) is\n            applied to the packet.  If the value of this attribute is false,\n            then no more ACEs in this ACL are compared to this packet and\n            matching continues with the first ACE of the next ACL.",
                  "readOnly": true
                }
              }
            },
            "readOnly": true
          },
          "qosIpAclDefinitionEntry": {
            "type": "array",
            "description": "An instance of this class specifies an ACE in an ACL and its\n          order with respect to other ACEs in the same ACL.",
            "items": {
              "type": "object",
              "properties": {
                "qosIpAclDefinitionId": {
                  "type": "string",
                  "description": "An integer index to identify the instance of the policy class.",
                  "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId",
                  "readOnly": true
                },
                "qosIpAclId": {
                  "type": "string",
                  "description": "An index for this ACL.  There will be one instance of\n            policy class qosIpAclDefinition with this integer index for\n            each ACE in the ACL per role combination.",
                  "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId",
                  "readOnly": true
                },
                "qosIpAceOrder": {
                  "type": "integer",
                  "description": "An integer that determines the position of this ACE in the ACL.\n            An ACE with a given order is positioned in the access contol\n            list before one with a higher order.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "qosIpAclDefAceId": {
                  "type": "string",
                  "description": "This attribute specifies the ACE in the qosIpAceTable that is\n            in the ACL specified by qosIpAclId at the position specified\n            by qosIpAceOrder.",
                  "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId",
                  "readOnly": true
                }
              }
            },
            "readOnly": true
          },
          "qosIpAclActionEntry": {
            "type": "array",
            "description": "An instance of this class applies an ACL to traffic in a\n          particular direction on an interface with a particular role\n          combination, and specifies the action for packets which match\n          the ACL.",
            "items": {
              "type": "object",
              "properties": {
                "qosIpAclActionId": {
                  "type": "string",
                  "description": "An integer index to identify the instance of the policy class.",
                  "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId",
                  "readOnly": true
                },
                "qosIpAclActAclId": {
                  "type": "string",
                  "description": "The ACL associated with this action.",
                  "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId",
                  "readOnly": true
                },
                "qosIpAclInterfaceRoles": {
                  "type": "string",
                  "description": "The interfaces to which this ACL applies specified in terms\n            of a set of roles.",
                  "x-yang-type": "CISCO-QOS-PIB-MIB:RoleCombination",
                  "readOnly": true
                },
                "qosIpAclInterfaceDirection": {
                  "type": "string",
                  "description": "The direction of packet flow at the interface in question to\n            which this ACL applies.",
                  "readOnly": true
                },
                "qosIpAclOrder": {
                  "type": "integer",
                  "description": "An integer that determines the order of this ACL in the list\n            of ACLs applied to interfaces of the specified role\n            combination. An ACL with a given order is positioned in the\n            list before one with a higher order.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "qosIpAclDscp": {
                  "type": "string",
                  "description": "The DSCP to classify the packet with in the event that the\n            packet matches an ACE in this ACL and the ACE is a permit.",
                  "x-yang-type": "CISCO-QOS-PIB-MIB:Dscp",
                  "readOnly": true
                },
                "qosIpAclDscpTrusted": {
                  "type": "boolean",
                  "description": "If this attribute is true, then the Dscp associated with\n            the packet is trusted, i.e., it is assumed to have already\n            been set.  In this case, the Dscp is not rewritten with\n            qosIpAclDscp (qosIpAclDscp is ignored).  The packet is still\n            policed as part of its micro flow and its aggregate flow.\n            \n            When a trusted action is applied to an input interface, the\n            Dscp associated with the packet is the one contained in the\n            packet.  When a trusted action is applied to an output\n            interface, the Dscp associated with the packet is the one that\n            is the result of the input classification and policing.",
                  "readOnly": true
                },
                "qosIpAclMicroFlowPolicerId": {
                  "type": "string",
                  "description": "An index identifying the instance of policer to apply to the\n            microflow.  It must correspond to the integer index of an\n            instance of class qosPolicerTableor be zero.  If zero, the\n            microflow is not policed.",
                  "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId",
                  "readOnly": true
                },
                "qosIpAclAggregateId": {
                  "type": "string",
                  "description": "An index identifying the aggregate that the packet belongs\n            to.  It must correspond to the integer index of an instance of\n            class qosAggregateTable or be zero.  If zero, the microflow\n            does not belong to any aggregate and is not policed as part of\n            any aggregate.",
                  "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId",
                  "readOnly": true
                }
              }
            },
            "readOnly": true
          },
          "qosIfSchedulingPreferenceEntry": {
            "type": "array",
            "description": "An instance of this class specifies a scheduling preference\n          for a queue-type on an interface with a particular role\n          combination.",
            "items": {
              "type": "object",
              "properties": {
                "qosIfSchedulingPreferenceId": {
                  "type": "string",
                  "description": "An integer index to identify the instance of the policy class.",
                  "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId",
                  "readOnly": true
                },
                "qosIfSchedulingRoles": {
                  "type": "string",
                  "description": "The combination of roles the interface must have for this\n            policy instance to apply to that interface.",
                  "x-yang-type": "CISCO-QOS-PIB-MIB:RoleCombination",
                  "readOnly": true
                },
                "qosIfSchedulingPreference": {
                  "type": "integer",
                  "description": "The preference to use this scheduling discipline and queue\n            type.  A higher value means a higher preference.  If two\n            disciplines have the same preference the choice is a local\n            decision.",
                  "minimum": -2147483648,
                  "maximum": 2147483647,
                  "readOnly": true
                },
                "qosIfSchedulingDiscipline": {
                  "type": "string",
                  "description": "An enumerate type for all the known scheduling disciplines.",
                  "readOnly": true
                },
                "qosIfSchedulingQueueType": {
                  "type": "string",
                  "description": "The queue type of this preference.",
                  "x-yang-type": "CISCO-QOS-PIB-MIB:QosInterfaceQueueType",
                  "readOnly": true
                }
              }
            },
            "readOnly": true
          },
          "qosIfDropPreferenceEntry": {
            "type": "array",
            "description": "An instance of this class specifies a drop preference for\n          a drop mechanism on an interface with a particular role\n          combination.",
            "items": {
              "type": "object",
              "properties": {
                "qosIfDropPreferenceId": {
                  "type": "string",
                  "description": "An integer index to identify the instance of the policy class.",
                  "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId",
                  "readOnly": true
                },
                "qosIfDropRoles": {
                  "type": "string",
                  "description": "The combination of roles the interface must have for this\n            policy instance to apply to that interface.",
                  "x-yang-type": "CISCO-QOS-PIB-MIB:RoleCombination",
                  "readOnly": true
                },
                "qosIfDropPreference": {
                  "type": "integer",
                  "description": "The preference to use this drop mechanism.  A higher value\n            means a higher preference.  If two mechanisms have the same\n            preference the choice is a local decision.",
                  "minimum": -2147483648,
                  "maximum": 2147483647,
                  "readOnly": true
                },
                "qosIfDropDiscipline": {
                  "type": "string",
                  "description": "An enumerate type for all the known drop mechanisms.",
                  "readOnly": true
                }
              }
            },
            "readOnly": true
          },
          "qosIfDscpAssignmentEntry": {
            "type": "array",
            "description": "An instance of this class specifies the queue and threshold\n          set for a packet with a particular DSCP on an interface of\n          a particular type with a particular role combination.",
            "items": {
              "type": "object",
              "properties": {
                "qosIfDscpAssignmentId": {
                  "type": "string",
                  "description": "An integer index to identify the instance of the policy class.",
                  "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId",
                  "readOnly": true
                },
                "qosIfDscpRoles": {
                  "type": "string",
                  "description": "The role combination the interface must be configured with.",
                  "x-yang-type": "CISCO-QOS-PIB-MIB:RoleCombination",
                  "readOnly": true
                },
                "qosIfQueueType": {
                  "type": "string",
                  "description": "The interface queue type to which this row applies.",
                  "x-yang-type": "CISCO-QOS-PIB-MIB:QosInterfaceQueueType",
                  "readOnly": true
                },
                "qosIfDscp": {
                  "type": "string",
                  "description": "The DSCP to which this row applies.",
                  "x-yang-type": "CISCO-QOS-PIB-MIB:Dscp",
                  "readOnly": true
                },
                "qosIfQueue": {
                  "type": "integer",
                  "description": "The queue to which the DSCP applies for the given interface\n            type.",
                  "minimum": -2147483648,
                  "maximum": 2147483647,
                  "readOnly": true
                },
                "qosIfThresholdSet": {
                  "type": "integer",
                  "description": "The threshold set of the specified queue to which the DSCP\n            applies for the given interface type.",
                  "minimum": -2147483648,
                  "maximum": 2147483647,
                  "readOnly": true
                }
              }
            },
            "readOnly": true
          },
          "qosIfRedEntry": {
            "type": "array",
            "description": "An instance of this class specifies threshold limits for a\n          particular RED threshold of a given threshold set on an\n          interface and with a particular role combination.",
            "items": {
              "type": "object",
              "properties": {
                "qosIfRedId": {
                  "type": "string",
                  "description": "An integer index to identify the instance of the policy class.",
                  "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId",
                  "readOnly": true
                },
                "qosIfRedRoles": {
                  "type": "string",
                  "description": "The role combination the interface must be configured with.",
                  "x-yang-type": "CISCO-QOS-PIB-MIB:RoleCombination",
                  "readOnly": true
                },
                "qosIfRedNumThresholdSets": {
                  "type": "string",
                  "description": "The values in this entry apply only to queues with the number\n            of thresholds specified by this attribute.",
                  "x-yang-type": "CISCO-QOS-PIB-MIB:ThresholdSetRange",
                  "readOnly": true
                },
                "qosIfRedThresholdSet": {
                  "type": "integer",
                  "description": "The threshold set to which the lower and upper values apply.\n            It must be in the range 1 through qosIfRedNumThresholdSets.\n            There must be exactly one PRI for each value in this range.",
                  "minimum": -2147483648,
                  "maximum": 2147483647,
                  "readOnly": true
                },
                "qosIfRedThresholdSetLower": {
                  "type": "string",
                  "description": "The threshold value below which no packets are dropped.",
                  "x-yang-type": "CISCO-QOS-PIB-MIB:Percent",
                  "readOnly": true
                },
                "qosIfRedThresholdSetUpper": {
                  "type": "string",
                  "description": "The threshold value above which all packets are dropped.",
                  "x-yang-type": "CISCO-QOS-PIB-MIB:Percent",
                  "readOnly": true
                }
              }
            },
            "readOnly": true
          },
          "qosIfTailDropEntry": {
            "type": "array",
            "description": "An instance of this class specifies the queue depth for a\n          particular tail-drop threshold set on an interface with a\n          particular role combination.",
            "items": {
              "type": "object",
              "properties": {
                "qosIfTailDropId": {
                  "type": "string",
                  "description": "An integer index to identify the instance of the policy class.",
                  "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId",
                  "readOnly": true
                },
                "qosIfTailDropRoles": {
                  "type": "string",
                  "description": "The role combination the interface must be configured with.",
                  "x-yang-type": "CISCO-QOS-PIB-MIB:RoleCombination",
                  "readOnly": true
                },
                "qosIfTailDropNumThresholdSets": {
                  "type": "string",
                  "description": "The value in this entry applies only to queues with the\n            number of thresholds specified by this attribute.",
                  "x-yang-type": "CISCO-QOS-PIB-MIB:ThresholdSetRange",
                  "readOnly": true
                },
                "qosIfTailDropThresholdSet": {
                  "type": "integer",
                  "description": "The threshold set to which the threshold value applies",
                  "minimum": -2147483648,
                  "maximum": 2147483647,
                  "readOnly": true
                },
                "qosIfTailDropThresholdSetValue": {
                  "type": "string",
                  "description": "The threshold value above which packets are dropped.",
                  "x-yang-type": "CISCO-QOS-PIB-MIB:Percent",
                  "readOnly": true
                }
              }
            },
            "readOnly": true
          },
          "qosIfWeightsEntry": {
            "type": "array",
            "description": "An instance of this class specifies the scheduling weight for\n          a particular queue of an interface with a particular number\n          of queues and with a particular role combination.",
            "items": {
              "type": "object",
              "properties": {
                "qosIfWeightsId": {
                  "type": "string",
                  "description": "An integer index to identify the instance of the policy class.",
                  "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId",
                  "readOnly": true
                },
                "qosIfWeightsRoles": {
                  "type": "string",
                  "description": "The role combination the interface must be configured with.",
                  "x-yang-type": "CISCO-QOS-PIB-MIB:RoleCombination",
                  "readOnly": true
                },
                "qosIfWeightsNumQueues": {
                  "type": "string",
                  "description": "The value of the weight in this instance applies only to\n            interfaces with the number of queues specified by this\n            attribute.",
                  "x-yang-type": "CISCO-QOS-PIB-MIB:QueueRange",
                  "readOnly": true
                },
                "qosIfWeightsQueue": {
                  "type": "integer",
                  "description": "The queue to which the weight applies.",
                  "minimum": -2147483648,
                  "maximum": 2147483647,
                  "readOnly": true
                },
                "qosIfWeightsDrainSize": {
                  "type": "integer",
                  "description": "The maximum number of bytes that may be drained from the\n            queue in one cycle.  The percentage of the bandwith allocated\n            to this queue can be calculated from this attribute and the\n            sum of the drain sizes of all the non-priority queues of the\n            interface.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "qosIfWeightsQueueSize": {
                  "type": "integer",
                  "description": "The size of the queue in bytes.  Some devices set queue size\n            in terms of packets.  These devices must calculate the queue\n            size in packets by assuming an average packet size suitable\n            for the particular interface.\n            \n            Some devices have a fixed size buffer to be shared among all\n            queues.  These devices must allocate a fraction of the\n            total buffer space to this queue calculated as the the ratio\n            of the queue size to the sum of the queue sizes for the\n            interface.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                }
              }
            },
            "readOnly": true
          },
          "qosDevicePibIncarnationTable": {
            "type": "object",
            "description": "This class contains a single policy instance that identifies\n        the current incarnation of the PIB and the PDP that installed\n        this incarnation.  The instance of this class is reported to\n        the PDP at client connect time so that the PDP can (attempt\n        to) ascertain the current state of the PIB.",
            "properties": {
              "qosDevicePibIncarnationEntry": {
                "type": "array",
                "description": "The single policy instance of this class identifies the\n          current incarnation of the PIB and the PDP that installed\n          this incarnation.",
                "items": {
                  "type": "object",
                  "properties": {
                    "qosDeviceIncarnationId": {
                      "type": "string",
                      "description": "An integer index to identify the instance of the policy class.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId",
                      "readOnly": true
                    },
                    "qosDevicePdpName": {
                      "type": "string",
                      "description": "The name of the PDP that installed the current incarnation of\n            the PIB into the device.  By default it is the zero length\n            string.",
                      "x-yang-type": "snmpv2-tc:DisplayString",
                      "readOnly": true
                    },
                    "qosDevicePibIncarnation": {
                      "type": "string",
                      "description": "An octet string to identify the current incarnation.  It has\n            meaning to the PDP that installed the PIB and perhaps its\n            standby PDPs. By default the empty string.",
                      "format": "binary",
                      "readOnly": true
                    },
                    "qosDevicePibTtl": {
                      "type": "integer",
                      "description": "The number of seconds after a client close or TCP timeout for\n            which the PEP continues to enforce the policy in the PIB.\n            After this interval, the PIB is consired expired and the\n            device no longer enforces the policy installed in the PIB.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    }
                  }
                },
                "readOnly": true
              }
            },
            "readOnly": true
          },
          "qosDeviceAttributeTable": {
            "type": "object",
            "description": "The single instance of this class indicates specific\n        attributes of the device.  These include configuration values\n        such as the configured PDP addresses, the maximum message\n        size, and specific device capabilities.  The latter include\n        input port-based and output port-based classification and/or\n        policing, support for flow based policing, aggregate based\n        policing, traffic shaping capabilities, etc.",
            "properties": {
              "qosDeviceAttributeEntry": {
                "type": "array",
                "description": "The single instance of this class indicates specific\n          attributes of the device.",
                "items": {
                  "type": "object",
                  "properties": {
                    "qosDeviceAttributeId": {
                      "type": "string",
                      "description": "An integer index to identify the instance of the policy class.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId",
                      "readOnly": true
                    },
                    "qosDevicePepDomain": {
                      "type": "string",
                      "description": "The QoS domain that this device belongs to.  This is\n            configured locally on the device (perhaps by some management\n            protocol such as SNMP).  By default, it is the zero-length\n            string.",
                      "x-yang-type": "snmpv2-tc:DisplayString",
                      "readOnly": true
                    },
                    "qosDevicePrimaryPdp": {
                      "type": "string",
                      "description": "The address of the PDP configured to be the primary PDP for\n            the device.",
                      "format": "inet:ipv4-address",
                      "readOnly": true
                    },
                    "qosDeviceSecondaryPdp": {
                      "type": "string",
                      "description": "The address of the PDP configured to be the secondary PDP for\n            the device.  An address of zero indicates no secondary is\n            configured.",
                      "format": "inet:ipv4-address",
                      "readOnly": true
                    },
                    "qosDeviceMaxMessageSize": {
                      "type": "integer",
                      "description": "The maximum size message that this PEP is capable of\n            receiving in bytes.  A value of zero means that the maximum\n            message size is unspecified (but does not mean it is\n            unlimited).  A message greater than this maximum results in a\n            MessageTooBig error on a 'no commit' REP.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "qosDeviceCapabilities": {
                      "type": "string",
                      "description": "An enumeration of device capabilities.  Used by the PDP to\n            select policies and configuration to push to the PEP.",
                      "readOnly": true
                    }
                  }
                },
                "readOnly": true
              }
            },
            "readOnly": true
          },
          "qosInterfaceTypeTable": {
            "type": "object",
            "description": "This class describes the interface types of the interfaces\n        that exist on the device.  It includes the queue type, role\n        combination and capabilities of interfaces.  The PEP does not\n        report which specific interfaces have which characteristics.",
            "properties": {
              "qosInterfaceTypeEntry": {
                "type": "array",
                "description": "An instance of this class describes a role combination for\n          an interface type of an interface that exists on the device.",
                "items": {
                  "type": "object",
                  "properties": {
                    "qosInterfaceTypeId": {
                      "type": "string",
                      "description": "An integer index to identify the instance of the policy class.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId",
                      "readOnly": true
                    },
                    "qosInterfaceQueueType": {
                      "type": "string",
                      "description": "The interface type in terms of number of queues and\n            thresholds.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:QosInterfaceQueueType",
                      "readOnly": true
                    },
                    "qosInterfaceTypeRoles": {
                      "type": "string",
                      "description": "A combination of roles on at least one interface of type\n            qosInterfaceType.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:RoleCombination",
                      "readOnly": true
                    },
                    "qosInterfaceTypeCapabilities": {
                      "type": "string",
                      "description": "An enumeration of interface capabilities.  Used by the PDP to\n            select policies and configuration to push to the PEP.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:QosInterfaceTypeCapabilities",
                      "readOnly": true
                    }
                  }
                },
                "readOnly": true
              }
            },
            "readOnly": true
          },
          "qosDiffServMappingTable": {
            "type": "object",
            "description": "Maps each DSCP to a marked-down DSCP.  Also maps each DSCP to\n        an IP precedence and QosLayer2Cos.  When configured for the\n        first time, all 64 entries of the table must be\n        specified. Thereafter, instances may be modified (with a\n        delete and install in a single decision) but not deleted\n        unless all instances are deleted.",
            "properties": {
              "qosDiffServMappingEntry": {
                "type": "array",
                "description": "An instance of this class represents mappings from a DSCP.",
                "items": {
                  "type": "object",
                  "properties": {
                    "qosDscp": {
                      "type": "string",
                      "description": "A DSCP for which this entry contains mappings.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:Dscp",
                      "readOnly": true
                    },
                    "qosMarkedDscp": {
                      "type": "string",
                      "description": "The DSCP to use instead of the qosDscp when the packet is out\n            of profile and hence marked as such.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:Dscp",
                      "readOnly": true
                    },
                    "qosL2Cos": {
                      "type": "string",
                      "description": "The L2 CoS value to use when mapping this DSCP to layer 2\n            CoS.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:QosLayer2Cos",
                      "readOnly": true
                    }
                  }
                },
                "readOnly": true
              }
            },
            "readOnly": true
          },
          "qosCosToDscpTable": {
            "type": "object",
            "description": "Maps each of eight CoS values to a DSCP.  When configured for\n        the first time, all 8 entries of the table must be\n        specified. Thereafter, instances may be modified (with a\n        delete and install in a single decision) but not deleted\n        unless all instances are deleted.",
            "properties": {
              "qosCosToDscpEntry": {
                "type": "array",
                "description": "An instance of this class maps a CoS value to a DSCP.",
                "items": {
                  "type": "object",
                  "properties": {
                    "qosCosToDscpCos": {
                      "type": "string",
                      "description": "The L2 CoS value that is being mapped.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:QosLayer2Cos",
                      "readOnly": true
                    },
                    "qosCosToDscpDscp": {
                      "type": "string",
                      "description": "The DSCP value to use when mapping the L2 CoS to a DSCP.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:Dscp",
                      "readOnly": true
                    }
                  }
                },
                "readOnly": true
              }
            },
            "readOnly": true
          },
          "qosUnmatchedPolicyTable": {
            "type": "object",
            "description": "A policy class that specifies what QoS to apply to a packet\n        that does not match any other policy configured for this role\n        combination for a particular direction of traffic.",
            "properties": {
              "qosUnmatchedPolicyEntry": {
                "type": "array",
                "description": "An instance of this class specifies the unmatched policy\n          for a particular role combination for incoming or outgoing\n          traffic.",
                "items": {
                  "type": "object",
                  "properties": {
                    "qosUnmatchedPolicyId": {
                      "type": "string",
                      "description": "An integer index to identify the instance of the policy class.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId",
                      "readOnly": true
                    },
                    "qosUnmatchedPolicyRole": {
                      "type": "string",
                      "description": "Role combination for which this instance applies.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:RoleCombination",
                      "readOnly": true
                    },
                    "qosUnmatchedPolicyDirection": {
                      "type": "string",
                      "description": "The direction of packet flow at the interface in question to\n            which this instance applies.",
                      "readOnly": true
                    },
                    "qosUnmatchedPolicyDscp": {
                      "type": "string",
                      "description": "The DSCP to classify the unmatched packet with.  This must be\n            specified even if qosUnmatchedPolicyDscpTrusted is true.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:Dscp",
                      "readOnly": true
                    },
                    "qosUnmatchedPolicyDscpTrusted": {
                      "type": "boolean",
                      "description": "If this attribute is true, then the Dscp associated with the\n            packet is trusted, i.e., it is assumed to have already been\n            set.  In this case, the Dscp is not rewritten with\n            qosUnmatchedPolicyDscp (qosUnmatchedPolicyDscp is ignored)\n            unless this is a non-IP packet and arrives untagged.  The\n            packet is still policed as part of its micro flow and its\n            aggregate flow.\n            \n            When a trusted action is applied to an input interface, the\n            Dscp (for an IP packet) or CoS (for a non-IP packet)\n            associated with the packet is the one contained in the packet.\n            When a trusted action is applied to an output interface, the\n            Dscp associated with the packet is the one that is the result\n            of the input classification and policing.",
                      "readOnly": true
                    },
                    "qosUnmatchPolMicroFlowPolicerId": {
                      "type": "string",
                      "description": "An index identifying the instance of policer to apply to\n            unmatched packets.  It must correspond to the integer index of\n            an instance of class qosPolicerTable or be zero.  If zero, the\n            microflow is not policed.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId",
                      "readOnly": true
                    },
                    "qosUnmatchedPolicyAggregateId": {
                      "type": "string",
                      "description": "An index identifying the aggregate that the packet belongs\n            to.  It must correspond to the integer index of an instance of\n            class qosAggregateTable or be zero.  If zero, the microflow\n            does not belong to any aggregate and is not policed as part of\n            any aggregate.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId",
                      "readOnly": true
                    }
                  }
                },
                "readOnly": true
              }
            },
            "readOnly": true
          },
          "qosPolicerTable": {
            "type": "object",
            "description": "A class specifying policing parameters for both microflows\n        and aggregate flows.  This table is designed for policing\n        according to a token bucket scheme where an average rate and\n        burst size is specified.",
            "properties": {
              "qosPolicerEntry": {
                "type": "array",
                "description": "An instance of this class specifies a set of policing\n          parameters.",
                "items": {
                  "type": "object",
                  "properties": {
                    "qosPolicerId": {
                      "type": "string",
                      "description": "An integer index to identify the instance of the policy class.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId",
                      "readOnly": true
                    },
                    "qosPolicerRate": {
                      "type": "integer",
                      "description": "The token rate.  It is specified in units of bit/s. A rate of\n            zero means that all packets will be out of profile.  If the\n            qosPolicerAction is set to drop then this effectively\n            denies any service to packets policed by this policer.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "qosPolicerNormalBurst": {
                      "type": "integer",
                      "description": "The normal size of a burst in terms of bits.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "qosPolicerExcessBurst": {
                      "type": "integer",
                      "description": "The excess size of a burst in terms of bits.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "qosPolicerAction": {
                      "type": "string",
                      "description": "An indication of how to handle out of profile packets.  When\n            the shape action is chosen then traffic is shaped to the rate\n            specified by qosPolicerRate.",
                      "readOnly": true
                    }
                  }
                },
                "readOnly": true
              }
            },
            "readOnly": true
          },
          "qosAggregateTable": {
            "type": "object",
            "description": "Instances of this class identify aggregate flows and the\n        policer to apply to each.",
            "properties": {
              "qosAggregateEntry": {
                "type": "array",
                "description": "An instance of this class specifies the policer to apply to\n          an aggregate flow.",
                "items": {
                  "type": "object",
                  "properties": {
                    "qosAggregateId": {
                      "type": "string",
                      "description": "An integer index to identify the instance of the policy class.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId",
                      "readOnly": true
                    },
                    "qosAggregatePolicerId": {
                      "type": "string",
                      "description": "An index identifying the instance of policer to apply to the\n            aggregate.  It must correspond to the integer index of an\n            instance of class qosPolicerTable.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId",
                      "readOnly": true
                    }
                  }
                },
                "readOnly": true
              }
            },
            "readOnly": true
          },
          "qosMacClassificationTable": {
            "type": "object",
            "description": "A class of MAC/Vlan tuples and their associated CoS values.",
            "properties": {
              "qosMacClassificationEntry": {
                "type": "array",
                "description": "An instance of this class specifies the mapping of a VLAN\n          and a MAC address to a CoS value.",
                "items": {
                  "type": "object",
                  "properties": {
                    "qosMacClassificationId": {
                      "type": "string",
                      "description": "An integer index to identify the instance of the policy class.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId",
                      "readOnly": true
                    },
                    "qosDstMacVlan": {
                      "type": "integer",
                      "description": "The VLAN of the destination MAC address of the L2 frame.",
                      "minimum": -2147483648,
                      "maximum": 2147483647,
                      "readOnly": true
                    },
                    "qosDstMacAddress": {
                      "type": "string",
                      "description": "The destination MAC address of the L2 frame.",
                      "x-yang-type": "yang:mac-address",
                      "readOnly": true
                    },
                    "qosDstMacCos": {
                      "type": "string",
                      "description": "The CoS to assign the packet with the associated MAC/VLAN\n            tuple.  Note that this CoS is overridden by the policies to\n            classify the frame at layer 3 if there are any.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:QosLayer2Cos",
                      "readOnly": true
                    }
                  }
                },
                "readOnly": true
              }
            },
            "readOnly": true
          },
          "qosIpAceTable": {
            "type": "object",
            "description": "ACE definitions.",
            "properties": {
              "qosIpAceEntry": {
                "type": "array",
                "description": "An instance of this class specifies an ACE.",
                "items": {
                  "type": "object",
                  "properties": {
                    "qosIpAceId": {
                      "type": "string",
                      "description": "An integer index to identify the instance of the policy class.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId",
                      "readOnly": true
                    },
                    "qosIpAceDstAddr": {
                      "type": "string",
                      "description": "The IP address to match against the packet's destination IP\n            address.",
                      "format": "inet:ipv4-address",
                      "readOnly": true
                    },
                    "qosIpAceDstAddrMask": {
                      "type": "string",
                      "description": "A mask for the matching of the destination IP address.",
                      "format": "inet:ipv4-address",
                      "readOnly": true
                    },
                    "qosIpAceSrcAddr": {
                      "type": "string",
                      "description": "The IP address to match against the packet's source IP\n            address.",
                      "format": "inet:ipv4-address",
                      "readOnly": true
                    },
                    "qosIpAceSrcAddrMask": {
                      "type": "string",
                      "description": "A mask for the matching of the source IP address.",
                      "format": "inet:ipv4-address",
                      "readOnly": true
                    },
                    "qosIpAceDscpMin": {
                      "type": "string",
                      "description": "The minimum value that the DSCP in the packet can have and\n            match this ACE.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:Dscp",
                      "readOnly": true
                    },
                    "qosIpAceDscpMax": {
                      "type": "string",
                      "description": "The maximum value that the DSCP in the packet can have and\n            match this ACE.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:Dscp",
                      "readOnly": true
                    },
                    "qosIpAceProtocol": {
                      "type": "integer",
                      "description": "The IP protocol to match against the packet's protocol.\n            A value of zero means match all.",
                      "minimum": -2147483648,
                      "maximum": 2147483647,
                      "readOnly": true
                    },
                    "qosIpAceDstL4PortMin": {
                      "type": "integer",
                      "description": "The minimum value that the packet's layer 4 dest port number\n            can have and match this ACE.",
                      "minimum": -2147483648,
                      "maximum": 2147483647,
                      "readOnly": true
                    },
                    "qosIpAceDstL4PortMax": {
                      "type": "integer",
                      "description": "The maximum value that the packet's layer 4 dest port number\n            can have and match this ACE.",
                      "minimum": -2147483648,
                      "maximum": 2147483647,
                      "readOnly": true
                    },
                    "qosIpAceSrcL4PortMin": {
                      "type": "integer",
                      "description": "The minimum value that the packet's layer 4 source port\n            number can have and match this ACE.",
                      "minimum": -2147483648,
                      "maximum": 2147483647,
                      "readOnly": true
                    },
                    "qosIpAceSrcL4PortMax": {
                      "type": "integer",
                      "description": "The maximum value that the packet's layer 4 source port\n            number can have and match this ACE.",
                      "minimum": -2147483648,
                      "maximum": 2147483647,
                      "readOnly": true
                    },
                    "qosIpAcePermit": {
                      "type": "boolean",
                      "description": "If the packet matches this ACE and the value of this attribute\n            is true, then the matching process terminates and the QoS\n            associated with this ACE (indirectly through the ACL) is\n            applied to the packet.  If the value of this attribute is false,\n            then no more ACEs in this ACL are compared to this packet and\n            matching continues with the first ACE of the next ACL.",
                      "readOnly": true
                    }
                  }
                },
                "readOnly": true
              }
            },
            "readOnly": true
          },
          "qosIpAclDefinitionTable": {
            "type": "object",
            "description": "A class that defines a set of ACLs each being an ordered list\n        of ACEs.",
            "properties": {
              "qosIpAclDefinitionEntry": {
                "type": "array",
                "description": "An instance of this class specifies an ACE in an ACL and its\n          order with respect to other ACEs in the same ACL.",
                "items": {
                  "type": "object",
                  "properties": {
                    "qosIpAclDefinitionId": {
                      "type": "string",
                      "description": "An integer index to identify the instance of the policy class.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId",
                      "readOnly": true
                    },
                    "qosIpAclId": {
                      "type": "string",
                      "description": "An index for this ACL.  There will be one instance of\n            policy class qosIpAclDefinition with this integer index for\n            each ACE in the ACL per role combination.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId",
                      "readOnly": true
                    },
                    "qosIpAceOrder": {
                      "type": "integer",
                      "description": "An integer that determines the position of this ACE in the ACL.\n            An ACE with a given order is positioned in the access contol\n            list before one with a higher order.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "qosIpAclDefAceId": {
                      "type": "string",
                      "description": "This attribute specifies the ACE in the qosIpAceTable that is\n            in the ACL specified by qosIpAclId at the position specified\n            by qosIpAceOrder.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId",
                      "readOnly": true
                    }
                  }
                },
                "readOnly": true
              }
            },
            "readOnly": true
          },
          "qosIpAclActionTable": {
            "type": "object",
            "description": "A class that applies a set of ACLs to interfaces specifying,\n        for each interface the order of the ACL with respect to other\n        ACLs applied to the same interface and, for each ACL the\n        action to take for a packet that matches a permit ACE in that\n        ACL.  Interfaces are specified abstractly in terms of\n        interface role combinations.",
            "properties": {
              "qosIpAclActionEntry": {
                "type": "array",
                "description": "An instance of this class applies an ACL to traffic in a\n          particular direction on an interface with a particular role\n          combination, and specifies the action for packets which match\n          the ACL.",
                "items": {
                  "type": "object",
                  "properties": {
                    "qosIpAclActionId": {
                      "type": "string",
                      "description": "An integer index to identify the instance of the policy class.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId",
                      "readOnly": true
                    },
                    "qosIpAclActAclId": {
                      "type": "string",
                      "description": "The ACL associated with this action.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId",
                      "readOnly": true
                    },
                    "qosIpAclInterfaceRoles": {
                      "type": "string",
                      "description": "The interfaces to which this ACL applies specified in terms\n            of a set of roles.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:RoleCombination",
                      "readOnly": true
                    },
                    "qosIpAclInterfaceDirection": {
                      "type": "string",
                      "description": "The direction of packet flow at the interface in question to\n            which this ACL applies.",
                      "readOnly": true
                    },
                    "qosIpAclOrder": {
                      "type": "integer",
                      "description": "An integer that determines the order of this ACL in the list\n            of ACLs applied to interfaces of the specified role\n            combination. An ACL with a given order is positioned in the\n            list before one with a higher order.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "qosIpAclDscp": {
                      "type": "string",
                      "description": "The DSCP to classify the packet with in the event that the\n            packet matches an ACE in this ACL and the ACE is a permit.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:Dscp",
                      "readOnly": true
                    },
                    "qosIpAclDscpTrusted": {
                      "type": "boolean",
                      "description": "If this attribute is true, then the Dscp associated with\n            the packet is trusted, i.e., it is assumed to have already\n            been set.  In this case, the Dscp is not rewritten with\n            qosIpAclDscp (qosIpAclDscp is ignored).  The packet is still\n            policed as part of its micro flow and its aggregate flow.\n            \n            When a trusted action is applied to an input interface, the\n            Dscp associated with the packet is the one contained in the\n            packet.  When a trusted action is applied to an output\n            interface, the Dscp associated with the packet is the one that\n            is the result of the input classification and policing.",
                      "readOnly": true
                    },
                    "qosIpAclMicroFlowPolicerId": {
                      "type": "string",
                      "description": "An index identifying the instance of policer to apply to the\n            microflow.  It must correspond to the integer index of an\n            instance of class qosPolicerTableor be zero.  If zero, the\n            microflow is not policed.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId",
                      "readOnly": true
                    },
                    "qosIpAclAggregateId": {
                      "type": "string",
                      "description": "An index identifying the aggregate that the packet belongs\n            to.  It must correspond to the integer index of an instance of\n            class qosAggregateTable or be zero.  If zero, the microflow\n            does not belong to any aggregate and is not policed as part of\n            any aggregate.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId",
                      "readOnly": true
                    }
                  }
                },
                "readOnly": true
              }
            },
            "readOnly": true
          },
          "qosIfSchedulingPreferencesTable": {
            "type": "object",
            "description": "This class specifies the scheduling preference an interface\n        chooses if it supports multiple scheduling types.  Higher\n        values are preferred over lower values.",
            "properties": {
              "qosIfSchedulingPreferenceEntry": {
                "type": "array",
                "description": "An instance of this class specifies a scheduling preference\n          for a queue-type on an interface with a particular role\n          combination.",
                "items": {
                  "type": "object",
                  "properties": {
                    "qosIfSchedulingPreferenceId": {
                      "type": "string",
                      "description": "An integer index to identify the instance of the policy class.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId",
                      "readOnly": true
                    },
                    "qosIfSchedulingRoles": {
                      "type": "string",
                      "description": "The combination of roles the interface must have for this\n            policy instance to apply to that interface.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:RoleCombination",
                      "readOnly": true
                    },
                    "qosIfSchedulingPreference": {
                      "type": "integer",
                      "description": "The preference to use this scheduling discipline and queue\n            type.  A higher value means a higher preference.  If two\n            disciplines have the same preference the choice is a local\n            decision.",
                      "minimum": -2147483648,
                      "maximum": 2147483647,
                      "readOnly": true
                    },
                    "qosIfSchedulingDiscipline": {
                      "type": "string",
                      "description": "An enumerate type for all the known scheduling disciplines.",
                      "readOnly": true
                    },
                    "qosIfSchedulingQueueType": {
                      "type": "string",
                      "description": "The queue type of this preference.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:QosInterfaceQueueType",
                      "readOnly": true
                    }
                  }
                },
                "readOnly": true
              }
            },
            "readOnly": true
          },
          "qosIfDropPreferenceTable": {
            "type": "object",
            "description": "This class specifies the preference of the drop mechanism an\n        interface chooses if it supports multiple drop mechanisms.\n        Higher values are preferred over lower values.",
            "properties": {
              "qosIfDropPreferenceEntry": {
                "type": "array",
                "description": "An instance of this class specifies a drop preference for\n          a drop mechanism on an interface with a particular role\n          combination.",
                "items": {
                  "type": "object",
                  "properties": {
                    "qosIfDropPreferenceId": {
                      "type": "string",
                      "description": "An integer index to identify the instance of the policy class.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId",
                      "readOnly": true
                    },
                    "qosIfDropRoles": {
                      "type": "string",
                      "description": "The combination of roles the interface must have for this\n            policy instance to apply to that interface.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:RoleCombination",
                      "readOnly": true
                    },
                    "qosIfDropPreference": {
                      "type": "integer",
                      "description": "The preference to use this drop mechanism.  A higher value\n            means a higher preference.  If two mechanisms have the same\n            preference the choice is a local decision.",
                      "minimum": -2147483648,
                      "maximum": 2147483647,
                      "readOnly": true
                    },
                    "qosIfDropDiscipline": {
                      "type": "string",
                      "description": "An enumerate type for all the known drop mechanisms.",
                      "readOnly": true
                    }
                  }
                },
                "readOnly": true
              }
            },
            "readOnly": true
          },
          "qosIfDscpAssignmentTable": {
            "type": "object",
            "description": "The assignment of each DSCP to a queue and threshold for each\n        interface queue type.",
            "properties": {
              "qosIfDscpAssignmentEntry": {
                "type": "array",
                "description": "An instance of this class specifies the queue and threshold\n          set for a packet with a particular DSCP on an interface of\n          a particular type with a particular role combination.",
                "items": {
                  "type": "object",
                  "properties": {
                    "qosIfDscpAssignmentId": {
                      "type": "string",
                      "description": "An integer index to identify the instance of the policy class.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId",
                      "readOnly": true
                    },
                    "qosIfDscpRoles": {
                      "type": "string",
                      "description": "The role combination the interface must be configured with.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:RoleCombination",
                      "readOnly": true
                    },
                    "qosIfQueueType": {
                      "type": "string",
                      "description": "The interface queue type to which this row applies.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:QosInterfaceQueueType",
                      "readOnly": true
                    },
                    "qosIfDscp": {
                      "type": "string",
                      "description": "The DSCP to which this row applies.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:Dscp",
                      "readOnly": true
                    },
                    "qosIfQueue": {
                      "type": "integer",
                      "description": "The queue to which the DSCP applies for the given interface\n            type.",
                      "minimum": -2147483648,
                      "maximum": 2147483647,
                      "readOnly": true
                    },
                    "qosIfThresholdSet": {
                      "type": "integer",
                      "description": "The threshold set of the specified queue to which the DSCP\n            applies for the given interface type.",
                      "minimum": -2147483648,
                      "maximum": 2147483647,
                      "readOnly": true
                    }
                  }
                },
                "readOnly": true
              }
            },
            "readOnly": true
          },
          "qosIfRedTable": {
            "type": "object",
            "description": "A class of lower and upper values for each threshold set in a\n        queue supporting WRED.  If the size of the queue for a given\n        threshold is below the lower value then packets assigned to\n        that threshold are always accepted into the queue.  If the\n        size of the queue is above upper value then packets are always\n        dropped.  If the size of the queue is between the lower and\n        the upper then packets are randomly dropped.",
            "properties": {
              "qosIfRedEntry": {
                "type": "array",
                "description": "An instance of this class specifies threshold limits for a\n          particular RED threshold of a given threshold set on an\n          interface and with a particular role combination.",
                "items": {
                  "type": "object",
                  "properties": {
                    "qosIfRedId": {
                      "type": "string",
                      "description": "An integer index to identify the instance of the policy class.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId",
                      "readOnly": true
                    },
                    "qosIfRedRoles": {
                      "type": "string",
                      "description": "The role combination the interface must be configured with.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:RoleCombination",
                      "readOnly": true
                    },
                    "qosIfRedNumThresholdSets": {
                      "type": "string",
                      "description": "The values in this entry apply only to queues with the number\n            of thresholds specified by this attribute.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:ThresholdSetRange",
                      "readOnly": true
                    },
                    "qosIfRedThresholdSet": {
                      "type": "integer",
                      "description": "The threshold set to which the lower and upper values apply.\n            It must be in the range 1 through qosIfRedNumThresholdSets.\n            There must be exactly one PRI for each value in this range.",
                      "minimum": -2147483648,
                      "maximum": 2147483647,
                      "readOnly": true
                    },
                    "qosIfRedThresholdSetLower": {
                      "type": "string",
                      "description": "The threshold value below which no packets are dropped.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:Percent",
                      "readOnly": true
                    },
                    "qosIfRedThresholdSetUpper": {
                      "type": "string",
                      "description": "The threshold value above which all packets are dropped.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:Percent",
                      "readOnly": true
                    }
                  }
                },
                "readOnly": true
              }
            },
            "readOnly": true
          },
          "qosIfTailDropTable": {
            "type": "object",
            "description": "A class for threshold sets in a queue supporting tail drop.\n        If the size of the queue for a given threshold set is at or\n        below the specified value then packets assigned to that\n        threshold set are always accepted into the queue.  If the size\n        of the queue is above the specified value then packets are\n        always dropped.",
            "properties": {
              "qosIfTailDropEntry": {
                "type": "array",
                "description": "An instance of this class specifies the queue depth for a\n          particular tail-drop threshold set on an interface with a\n          particular role combination.",
                "items": {
                  "type": "object",
                  "properties": {
                    "qosIfTailDropId": {
                      "type": "string",
                      "description": "An integer index to identify the instance of the policy class.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId",
                      "readOnly": true
                    },
                    "qosIfTailDropRoles": {
                      "type": "string",
                      "description": "The role combination the interface must be configured with.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:RoleCombination",
                      "readOnly": true
                    },
                    "qosIfTailDropNumThresholdSets": {
                      "type": "string",
                      "description": "The value in this entry applies only to queues with the\n            number of thresholds specified by this attribute.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:ThresholdSetRange",
                      "readOnly": true
                    },
                    "qosIfTailDropThresholdSet": {
                      "type": "integer",
                      "description": "The threshold set to which the threshold value applies",
                      "minimum": -2147483648,
                      "maximum": 2147483647,
                      "readOnly": true
                    },
                    "qosIfTailDropThresholdSetValue": {
                      "type": "string",
                      "description": "The threshold value above which packets are dropped.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:Percent",
                      "readOnly": true
                    }
                  }
                },
                "readOnly": true
              }
            },
            "readOnly": true
          },
          "qosIfWeightsTable": {
            "type": "object",
            "description": "A class of scheduling weights for each queue of an interface\n        that supports weighted round robin scheduling or a mix of\n        priority queueing and weighted round robin.  For a queue with\n        N priority queues, the N highest queue numbers are the\n        priority queues with the highest queue number having the\n        highest priority.  WRR is applied to the non-priority queues.",
            "properties": {
              "qosIfWeightsEntry": {
                "type": "array",
                "description": "An instance of this class specifies the scheduling weight for\n          a particular queue of an interface with a particular number\n          of queues and with a particular role combination.",
                "items": {
                  "type": "object",
                  "properties": {
                    "qosIfWeightsId": {
                      "type": "string",
                      "description": "An integer index to identify the instance of the policy class.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId",
                      "readOnly": true
                    },
                    "qosIfWeightsRoles": {
                      "type": "string",
                      "description": "The role combination the interface must be configured with.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:RoleCombination",
                      "readOnly": true
                    },
                    "qosIfWeightsNumQueues": {
                      "type": "string",
                      "description": "The value of the weight in this instance applies only to\n            interfaces with the number of queues specified by this\n            attribute.",
                      "x-yang-type": "CISCO-QOS-PIB-MIB:QueueRange",
                      "readOnly": true
                    },
                    "qosIfWeightsQueue": {
                      "type": "integer",
                      "description": "The queue to which the weight applies.",
                      "minimum": -2147483648,
                      "maximum": 2147483647,
                      "readOnly": true
                    },
                    "qosIfWeightsDrainSize": {
                      "type": "integer",
                      "description": "The maximum number of bytes that may be drained from the\n            queue in one cycle.  The percentage of the bandwith allocated\n            to this queue can be calculated from this attribute and the\n            sum of the drain sizes of all the non-priority queues of the\n            interface.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "qosIfWeightsQueueSize": {
                      "type": "integer",
                      "description": "The size of the queue in bytes.  Some devices set queue size\n            in terms of packets.  These devices must calculate the queue\n            size in packets by assuming an average packet size suitable\n            for the particular interface.\n            \n            Some devices have a fixed size buffer to be shared among all\n            queues.  These devices must allocate a fraction of the\n            total buffer space to this queue calculated as the the ratio\n            of the queue size to the sum of the queue sizes for the\n            interface.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    }
                  }
                },
                "readOnly": true
              }
            },
            "readOnly": true
          }
        }
      },
      "CISCO-QOS-PIB-MIB_qosDevicePibIncarnationEntry": {
        "type": "array",
        "description": "The single policy instance of this class identifies the\n          current incarnation of the PIB and the PDP that installed\n          this incarnation.",
        "items": {
          "type": "object",
          "properties": {
            "qosDeviceIncarnationId": {
              "type": "string",
              "description": "An integer index to identify the instance of the policy class.",
              "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId",
              "readOnly": true
            },
            "qosDevicePdpName": {
              "type": "string",
              "description": "The name of the PDP that installed the current incarnation of\n            the PIB into the device.  By default it is the zero length\n            string.",
              "x-yang-type": "snmpv2-tc:DisplayString",
              "readOnly": true
            },
            "qosDevicePibIncarnation": {
              "type": "string",
              "description": "An octet string to identify the current incarnation.  It has\n            meaning to the PDP that installed the PIB and perhaps its\n            standby PDPs. By default the empty string.",
              "format": "binary",
              "readOnly": true
            },
            "qosDevicePibTtl": {
              "type": "integer",
              "description": "The number of seconds after a client close or TCP timeout for\n            which the PEP continues to enforce the policy in the PIB.\n            After this interval, the PIB is consired expired and the\n            device no longer enforces the policy installed in the PIB.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            }
          }
        }
      },
      "CISCO-QOS-PIB-MIB_qosDeviceAttributeEntry": {
        "type": "array",
        "description": "The single instance of this class indicates specific\n          attributes of the device.",
        "items": {
          "type": "object",
          "properties": {
            "qosDeviceAttributeId": {
              "type": "string",
              "description": "An integer index to identify the instance of the policy class.",
              "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId",
              "readOnly": true
            },
            "qosDevicePepDomain": {
              "type": "string",
              "description": "The QoS domain that this device belongs to.  This is\n            configured locally on the device (perhaps by some management\n            protocol such as SNMP).  By default, it is the zero-length\n            string.",
              "x-yang-type": "snmpv2-tc:DisplayString",
              "readOnly": true
            },
            "qosDevicePrimaryPdp": {
              "type": "string",
              "description": "The address of the PDP configured to be the primary PDP for\n            the device.",
              "format": "inet:ipv4-address",
              "readOnly": true
            },
            "qosDeviceSecondaryPdp": {
              "type": "string",
              "description": "The address of the PDP configured to be the secondary PDP for\n            the device.  An address of zero indicates no secondary is\n            configured.",
              "format": "inet:ipv4-address",
              "readOnly": true
            },
            "qosDeviceMaxMessageSize": {
              "type": "integer",
              "description": "The maximum size message that this PEP is capable of\n            receiving in bytes.  A value of zero means that the maximum\n            message size is unspecified (but does not mean it is\n            unlimited).  A message greater than this maximum results in a\n            MessageTooBig error on a 'no commit' REP.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "qosDeviceCapabilities": {
              "type": "string",
              "description": "An enumeration of device capabilities.  Used by the PDP to\n            select policies and configuration to push to the PEP.",
              "readOnly": true
            }
          }
        }
      },
      "CISCO-QOS-PIB-MIB_qosInterfaceTypeEntry": {
        "type": "array",
        "description": "An instance of this class describes a role combination for\n          an interface type of an interface that exists on the device.",
        "items": {
          "type": "object",
          "properties": {
            "qosInterfaceTypeId": {
              "type": "string",
              "description": "An integer index to identify the instance of the policy class.",
              "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId",
              "readOnly": true
            },
            "qosInterfaceQueueType": {
              "type": "string",
              "description": "The interface type in terms of number of queues and\n            thresholds.",
              "x-yang-type": "CISCO-QOS-PIB-MIB:QosInterfaceQueueType",
              "readOnly": true
            },
            "qosInterfaceTypeRoles": {
              "type": "string",
              "description": "A combination of roles on at least one interface of type\n            qosInterfaceType.",
              "x-yang-type": "CISCO-QOS-PIB-MIB:RoleCombination",
              "readOnly": true
            },
            "qosInterfaceTypeCapabilities": {
              "type": "string",
              "description": "An enumeration of interface capabilities.  Used by the PDP to\n            select policies and configuration to push to the PEP.",
              "x-yang-type": "CISCO-QOS-PIB-MIB:QosInterfaceTypeCapabilities",
              "readOnly": true
            }
          }
        }
      },
      "CISCO-QOS-PIB-MIB_qosDiffServMappingEntry": {
        "type": "array",
        "description": "An instance of this class represents mappings from a DSCP.",
        "items": {
          "type": "object",
          "properties": {
            "qosDscp": {
              "type": "string",
              "description": "A DSCP for which this entry contains mappings.",
              "x-yang-type": "CISCO-QOS-PIB-MIB:Dscp",
              "readOnly": true
            },
            "qosMarkedDscp": {
              "type": "string",
              "description": "The DSCP to use instead of the qosDscp when the packet is out\n            of profile and hence marked as such.",
              "x-yang-type": "CISCO-QOS-PIB-MIB:Dscp",
              "readOnly": true
            },
            "qosL2Cos": {
              "type": "string",
              "description": "The L2 CoS value to use when mapping this DSCP to layer 2\n            CoS.",
              "x-yang-type": "CISCO-QOS-PIB-MIB:QosLayer2Cos",
              "readOnly": true
            }
          }
        }
      },
      "CISCO-QOS-PIB-MIB_qosCosToDscpEntry": {
        "type": "array",
        "description": "An instance of this class maps a CoS value to a DSCP.",
        "items": {
          "type": "object",
          "properties": {
            "qosCosToDscpCos": {
              "type": "string",
              "description": "The L2 CoS value that is being mapped.",
              "x-yang-type": "CISCO-QOS-PIB-MIB:QosLayer2Cos",
              "readOnly": true
            },
            "qosCosToDscpDscp": {
              "type": "string",
              "description": "The DSCP value to use when mapping the L2 CoS to a DSCP.",
              "x-yang-type": "CISCO-QOS-PIB-MIB:Dscp",
              "readOnly": true
            }
          }
        }
      },
      "CISCO-QOS-PIB-MIB_qosUnmatchedPolicyEntry": {
        "type": "array",
        "description": "An instance of this class specifies the unmatched policy\n          for a particular role combination for incoming or outgoing\n          traffic.",
        "items": {
          "type": "object",
          "properties": {
            "qosUnmatchedPolicyId": {
              "type": "string",
              "description": "An integer index to identify the instance of the policy class.",
              "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId",
              "readOnly": true
            },
            "qosUnmatchedPolicyRole": {
              "type": "string",
              "description": "Role combination for which this instance applies.",
              "x-yang-type": "CISCO-QOS-PIB-MIB:RoleCombination",
              "readOnly": true
            },
            "qosUnmatchedPolicyDirection": {
              "type": "string",
              "description": "The direction of packet flow at the interface in question to\n            which this instance applies.",
              "readOnly": true
            },
            "qosUnmatchedPolicyDscp": {
              "type": "string",
              "description": "The DSCP to classify the unmatched packet with.  This must be\n            specified even if qosUnmatchedPolicyDscpTrusted is true.",
              "x-yang-type": "CISCO-QOS-PIB-MIB:Dscp",
              "readOnly": true
            },
            "qosUnmatchedPolicyDscpTrusted": {
              "type": "boolean",
              "description": "If this attribute is true, then the Dscp associated with the\n            packet is trusted, i.e., it is assumed to have already been\n            set.  In this case, the Dscp is not rewritten with\n            qosUnmatchedPolicyDscp (qosUnmatchedPolicyDscp is ignored)\n            unless this is a non-IP packet and arrives untagged.  The\n            packet is still policed as part of its micro flow and its\n            aggregate flow.\n            \n            When a trusted action is applied to an input interface, the\n            Dscp (for an IP packet) or CoS (for a non-IP packet)\n            associated with the packet is the one contained in the packet.\n            When a trusted action is applied to an output interface, the\n            Dscp associated with the packet is the one that is the result\n            of the input classification and policing.",
              "readOnly": true
            },
            "qosUnmatchPolMicroFlowPolicerId": {
              "type": "string",
              "description": "An index identifying the instance of policer to apply to\n            unmatched packets.  It must correspond to the integer index of\n            an instance of class qosPolicerTable or be zero.  If zero, the\n            microflow is not policed.",
              "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId",
              "readOnly": true
            },
            "qosUnmatchedPolicyAggregateId": {
              "type": "string",
              "description": "An index identifying the aggregate that the packet belongs\n            to.  It must correspond to the integer index of an instance of\n            class qosAggregateTable or be zero.  If zero, the microflow\n            does not belong to any aggregate and is not policed as part of\n            any aggregate.",
              "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId",
              "readOnly": true
            }
          }
        }
      },
      "CISCO-QOS-PIB-MIB_qosPolicerEntry": {
        "type": "array",
        "description": "An instance of this class specifies a set of policing\n          parameters.",
        "items": {
          "type": "object",
          "properties": {
            "qosPolicerId": {
              "type": "string",
              "description": "An integer index to identify the instance of the policy class.",
              "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId",
              "readOnly": true
            },
            "qosPolicerRate": {
              "type": "integer",
              "description": "The token rate.  It is specified in units of bit/s. A rate of\n            zero means that all packets will be out of profile.  If the\n            qosPolicerAction is set to drop then this effectively\n            denies any service to packets policed by this policer.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "qosPolicerNormalBurst": {
              "type": "integer",
              "description": "The normal size of a burst in terms of bits.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "qosPolicerExcessBurst": {
              "type": "integer",
              "description": "The excess size of a burst in terms of bits.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "qosPolicerAction": {
              "type": "string",
              "description": "An indication of how to handle out of profile packets.  When\n            the shape action is chosen then traffic is shaped to the rate\n            specified by qosPolicerRate.",
              "readOnly": true
            }
          }
        }
      },
      "CISCO-QOS-PIB-MIB_qosAggregateEntry": {
        "type": "array",
        "description": "An instance of this class specifies the policer to apply to\n          an aggregate flow.",
        "items": {
          "type": "object",
          "properties": {
            "qosAggregateId": {
              "type": "string",
              "description": "An integer index to identify the instance of the policy class.",
              "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId",
              "readOnly": true
            },
            "qosAggregatePolicerId": {
              "type": "string",
              "description": "An index identifying the instance of policer to apply to the\n            aggregate.  It must correspond to the integer index of an\n            instance of class qosPolicerTable.",
              "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId",
              "readOnly": true
            }
          }
        }
      },
      "CISCO-QOS-PIB-MIB_qosMacClassificationEntry": {
        "type": "array",
        "description": "An instance of this class specifies the mapping of a VLAN\n          and a MAC address to a CoS value.",
        "items": {
          "type": "object",
          "properties": {
            "qosMacClassificationId": {
              "type": "string",
              "description": "An integer index to identify the instance of the policy class.",
              "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId",
              "readOnly": true
            },
            "qosDstMacVlan": {
              "type": "integer",
              "description": "The VLAN of the destination MAC address of the L2 frame.",
              "minimum": -2147483648,
              "maximum": 2147483647,
              "readOnly": true
            },
            "qosDstMacAddress": {
              "type": "string",
              "description": "The destination MAC address of the L2 frame.",
              "x-yang-type": "yang:mac-address",
              "readOnly": true
            },
            "qosDstMacCos": {
              "type": "string",
              "description": "The CoS to assign the packet with the associated MAC/VLAN\n            tuple.  Note that this CoS is overridden by the policies to\n            classify the frame at layer 3 if there are any.",
              "x-yang-type": "CISCO-QOS-PIB-MIB:QosLayer2Cos",
              "readOnly": true
            }
          }
        }
      },
      "CISCO-QOS-PIB-MIB_qosIpAceEntry": {
        "type": "array",
        "description": "An instance of this class specifies an ACE.",
        "items": {
          "type": "object",
          "properties": {
            "qosIpAceId": {
              "type": "string",
              "description": "An integer index to identify the instance of the policy class.",
              "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId",
              "readOnly": true
            },
            "qosIpAceDstAddr": {
              "type": "string",
              "description": "The IP address to match against the packet's destination IP\n            address.",
              "format": "inet:ipv4-address",
              "readOnly": true
            },
            "qosIpAceDstAddrMask": {
              "type": "string",
              "description": "A mask for the matching of the destination IP address.",
              "format": "inet:ipv4-address",
              "readOnly": true
            },
            "qosIpAceSrcAddr": {
              "type": "string",
              "description": "The IP address to match against the packet's source IP\n            address.",
              "format": "inet:ipv4-address",
              "readOnly": true
            },
            "qosIpAceSrcAddrMask": {
              "type": "string",
              "description": "A mask for the matching of the source IP address.",
              "format": "inet:ipv4-address",
              "readOnly": true
            },
            "qosIpAceDscpMin": {
              "type": "string",
              "description": "The minimum value that the DSCP in the packet can have and\n            match this ACE.",
              "x-yang-type": "CISCO-QOS-PIB-MIB:Dscp",
              "readOnly": true
            },
            "qosIpAceDscpMax": {
              "type": "string",
              "description": "The maximum value that the DSCP in the packet can have and\n            match this ACE.",
              "x-yang-type": "CISCO-QOS-PIB-MIB:Dscp",
              "readOnly": true
            },
            "qosIpAceProtocol": {
              "type": "integer",
              "description": "The IP protocol to match against the packet's protocol.\n            A value of zero means match all.",
              "minimum": -2147483648,
              "maximum": 2147483647,
              "readOnly": true
            },
            "qosIpAceDstL4PortMin": {
              "type": "integer",
              "description": "The minimum value that the packet's layer 4 dest port number\n            can have and match this ACE.",
              "minimum": -2147483648,
              "maximum": 2147483647,
              "readOnly": true
            },
            "qosIpAceDstL4PortMax": {
              "type": "integer",
              "description": "The maximum value that the packet's layer 4 dest port number\n            can have and match this ACE.",
              "minimum": -2147483648,
              "maximum": 2147483647,
              "readOnly": true
            },
            "qosIpAceSrcL4PortMin": {
              "type": "integer",
              "description": "The minimum value that the packet's layer 4 source port\n            number can have and match this ACE.",
              "minimum": -2147483648,
              "maximum": 2147483647,
              "readOnly": true
            },
            "qosIpAceSrcL4PortMax": {
              "type": "integer",
              "description": "The maximum value that the packet's layer 4 source port\n            number can have and match this ACE.",
              "minimum": -2147483648,
              "maximum": 2147483647,
              "readOnly": true
            },
            "qosIpAcePermit": {
              "type": "boolean",
              "description": "If the packet matches this ACE and the value of this attribute\n            is true, then the matching process terminates and the QoS\n            associated with this ACE (indirectly through the ACL) is\n            applied to the packet.  If the value of this attribute is false,\n            then no more ACEs in this ACL are compared to this packet and\n            matching continues with the first ACE of the next ACL.",
              "readOnly": true
            }
          }
        }
      },
      "CISCO-QOS-PIB-MIB_qosIpAclDefinitionEntry": {
        "type": "array",
        "description": "An instance of this class specifies an ACE in an ACL and its\n          order with respect to other ACEs in the same ACL.",
        "items": {
          "type": "object",
          "properties": {
            "qosIpAclDefinitionId": {
              "type": "string",
              "description": "An integer index to identify the instance of the policy class.",
              "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId",
              "readOnly": true
            },
            "qosIpAclId": {
              "type": "string",
              "description": "An index for this ACL.  There will be one instance of\n            policy class qosIpAclDefinition with this integer index for\n            each ACE in the ACL per role combination.",
              "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId",
              "readOnly": true
            },
            "qosIpAceOrder": {
              "type": "integer",
              "description": "An integer that determines the position of this ACE in the ACL.\n            An ACE with a given order is positioned in the access contol\n            list before one with a higher order.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "qosIpAclDefAceId": {
              "type": "string",
              "description": "This attribute specifies the ACE in the qosIpAceTable that is\n            in the ACL specified by qosIpAclId at the position specified\n            by qosIpAceOrder.",
              "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId",
              "readOnly": true
            }
          }
        }
      },
      "CISCO-QOS-PIB-MIB_qosIpAclActionEntry": {
        "type": "array",
        "description": "An instance of this class applies an ACL to traffic in a\n          particular direction on an interface with a particular role\n          combination, and specifies the action for packets which match\n          the ACL.",
        "items": {
          "type": "object",
          "properties": {
            "qosIpAclActionId": {
              "type": "string",
              "description": "An integer index to identify the instance of the policy class.",
              "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId",
              "readOnly": true
            },
            "qosIpAclActAclId": {
              "type": "string",
              "description": "The ACL associated with this action.",
              "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId",
              "readOnly": true
            },
            "qosIpAclInterfaceRoles": {
              "type": "string",
              "description": "The interfaces to which this ACL applies specified in terms\n            of a set of roles.",
              "x-yang-type": "CISCO-QOS-PIB-MIB:RoleCombination",
              "readOnly": true
            },
            "qosIpAclInterfaceDirection": {
              "type": "string",
              "description": "The direction of packet flow at the interface in question to\n            which this ACL applies.",
              "readOnly": true
            },
            "qosIpAclOrder": {
              "type": "integer",
              "description": "An integer that determines the order of this ACL in the list\n            of ACLs applied to interfaces of the specified role\n            combination. An ACL with a given order is positioned in the\n            list before one with a higher order.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "qosIpAclDscp": {
              "type": "string",
              "description": "The DSCP to classify the packet with in the event that the\n            packet matches an ACE in this ACL and the ACE is a permit.",
              "x-yang-type": "CISCO-QOS-PIB-MIB:Dscp",
              "readOnly": true
            },
            "qosIpAclDscpTrusted": {
              "type": "boolean",
              "description": "If this attribute is true, then the Dscp associated with\n            the packet is trusted, i.e., it is assumed to have already\n            been set.  In this case, the Dscp is not rewritten with\n            qosIpAclDscp (qosIpAclDscp is ignored).  The packet is still\n            policed as part of its micro flow and its aggregate flow.\n            \n            When a trusted action is applied to an input interface, the\n            Dscp associated with the packet is the one contained in the\n            packet.  When a trusted action is applied to an output\n            interface, the Dscp associated with the packet is the one that\n            is the result of the input classification and policing.",
              "readOnly": true
            },
            "qosIpAclMicroFlowPolicerId": {
              "type": "string",
              "description": "An index identifying the instance of policer to apply to the\n            microflow.  It must correspond to the integer index of an\n            instance of class qosPolicerTableor be zero.  If zero, the\n            microflow is not policed.",
              "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId",
              "readOnly": true
            },
            "qosIpAclAggregateId": {
              "type": "string",
              "description": "An index identifying the aggregate that the packet belongs\n            to.  It must correspond to the integer index of an instance of\n            class qosAggregateTable or be zero.  If zero, the microflow\n            does not belong to any aggregate and is not policed as part of\n            any aggregate.",
              "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId",
              "readOnly": true
            }
          }
        }
      },
      "CISCO-QOS-PIB-MIB_qosIfSchedulingPreferenceEntry": {
        "type": "array",
        "description": "An instance of this class specifies a scheduling preference\n          for a queue-type on an interface with a particular role\n          combination.",
        "items": {
          "type": "object",
          "properties": {
            "qosIfSchedulingPreferenceId": {
              "type": "string",
              "description": "An integer index to identify the instance of the policy class.",
              "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId",
              "readOnly": true
            },
            "qosIfSchedulingRoles": {
              "type": "string",
              "description": "The combination of roles the interface must have for this\n            policy instance to apply to that interface.",
              "x-yang-type": "CISCO-QOS-PIB-MIB:RoleCombination",
              "readOnly": true
            },
            "qosIfSchedulingPreference": {
              "type": "integer",
              "description": "The preference to use this scheduling discipline and queue\n            type.  A higher value means a higher preference.  If two\n            disciplines have the same preference the choice is a local\n            decision.",
              "minimum": -2147483648,
              "maximum": 2147483647,
              "readOnly": true
            },
            "qosIfSchedulingDiscipline": {
              "type": "string",
              "description": "An enumerate type for all the known scheduling disciplines.",
              "readOnly": true
            },
            "qosIfSchedulingQueueType": {
              "type": "string",
              "description": "The queue type of this preference.",
              "x-yang-type": "CISCO-QOS-PIB-MIB:QosInterfaceQueueType",
              "readOnly": true
            }
          }
        }
      },
      "CISCO-QOS-PIB-MIB_qosIfDropPreferenceEntry": {
        "type": "array",
        "description": "An instance of this class specifies a drop preference for\n          a drop mechanism on an interface with a particular role\n          combination.",
        "items": {
          "type": "object",
          "properties": {
            "qosIfDropPreferenceId": {
              "type": "string",
              "description": "An integer index to identify the instance of the policy class.",
              "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId",
              "readOnly": true
            },
            "qosIfDropRoles": {
              "type": "string",
              "description": "The combination of roles the interface must have for this\n            policy instance to apply to that interface.",
              "x-yang-type": "CISCO-QOS-PIB-MIB:RoleCombination",
              "readOnly": true
            },
            "qosIfDropPreference": {
              "type": "integer",
              "description": "The preference to use this drop mechanism.  A higher value\n            means a higher preference.  If two mechanisms have the same\n            preference the choice is a local decision.",
              "minimum": -2147483648,
              "maximum": 2147483647,
              "readOnly": true
            },
            "qosIfDropDiscipline": {
              "type": "string",
              "description": "An enumerate type for all the known drop mechanisms.",
              "readOnly": true
            }
          }
        }
      },
      "CISCO-QOS-PIB-MIB_qosIfDscpAssignmentEntry": {
        "type": "array",
        "description": "An instance of this class specifies the queue and threshold\n          set for a packet with a particular DSCP on an interface of\n          a particular type with a particular role combination.",
        "items": {
          "type": "object",
          "properties": {
            "qosIfDscpAssignmentId": {
              "type": "string",
              "description": "An integer index to identify the instance of the policy class.",
              "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId",
              "readOnly": true
            },
            "qosIfDscpRoles": {
              "type": "string",
              "description": "The role combination the interface must be configured with.",
              "x-yang-type": "CISCO-QOS-PIB-MIB:RoleCombination",
              "readOnly": true
            },
            "qosIfQueueType": {
              "type": "string",
              "description": "The interface queue type to which this row applies.",
              "x-yang-type": "CISCO-QOS-PIB-MIB:QosInterfaceQueueType",
              "readOnly": true
            },
            "qosIfDscp": {
              "type": "string",
              "description": "The DSCP to which this row applies.",
              "x-yang-type": "CISCO-QOS-PIB-MIB:Dscp",
              "readOnly": true
            },
            "qosIfQueue": {
              "type": "integer",
              "description": "The queue to which the DSCP applies for the given interface\n            type.",
              "minimum": -2147483648,
              "maximum": 2147483647,
              "readOnly": true
            },
            "qosIfThresholdSet": {
              "type": "integer",
              "description": "The threshold set of the specified queue to which the DSCP\n            applies for the given interface type.",
              "minimum": -2147483648,
              "maximum": 2147483647,
              "readOnly": true
            }
          }
        }
      },
      "CISCO-QOS-PIB-MIB_qosIfRedEntry": {
        "type": "array",
        "description": "An instance of this class specifies threshold limits for a\n          particular RED threshold of a given threshold set on an\n          interface and with a particular role combination.",
        "items": {
          "type": "object",
          "properties": {
            "qosIfRedId": {
              "type": "string",
              "description": "An integer index to identify the instance of the policy class.",
              "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId",
              "readOnly": true
            },
            "qosIfRedRoles": {
              "type": "string",
              "description": "The role combination the interface must be configured with.",
              "x-yang-type": "CISCO-QOS-PIB-MIB:RoleCombination",
              "readOnly": true
            },
            "qosIfRedNumThresholdSets": {
              "type": "string",
              "description": "The values in this entry apply only to queues with the number\n            of thresholds specified by this attribute.",
              "x-yang-type": "CISCO-QOS-PIB-MIB:ThresholdSetRange",
              "readOnly": true
            },
            "qosIfRedThresholdSet": {
              "type": "integer",
              "description": "The threshold set to which the lower and upper values apply.\n            It must be in the range 1 through qosIfRedNumThresholdSets.\n            There must be exactly one PRI for each value in this range.",
              "minimum": -2147483648,
              "maximum": 2147483647,
              "readOnly": true
            },
            "qosIfRedThresholdSetLower": {
              "type": "string",
              "description": "The threshold value below which no packets are dropped.",
              "x-yang-type": "CISCO-QOS-PIB-MIB:Percent",
              "readOnly": true
            },
            "qosIfRedThresholdSetUpper": {
              "type": "string",
              "description": "The threshold value above which all packets are dropped.",
              "x-yang-type": "CISCO-QOS-PIB-MIB:Percent",
              "readOnly": true
            }
          }
        }
      },
      "CISCO-QOS-PIB-MIB_qosIfTailDropEntry": {
        "type": "array",
        "description": "An instance of this class specifies the queue depth for a\n          particular tail-drop threshold set on an interface with a\n          particular role combination.",
        "items": {
          "type": "object",
          "properties": {
            "qosIfTailDropId": {
              "type": "string",
              "description": "An integer index to identify the instance of the policy class.",
              "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId",
              "readOnly": true
            },
            "qosIfTailDropRoles": {
              "type": "string",
              "description": "The role combination the interface must be configured with.",
              "x-yang-type": "CISCO-QOS-PIB-MIB:RoleCombination",
              "readOnly": true
            },
            "qosIfTailDropNumThresholdSets": {
              "type": "string",
              "description": "The value in this entry applies only to queues with the\n            number of thresholds specified by this attribute.",
              "x-yang-type": "CISCO-QOS-PIB-MIB:ThresholdSetRange",
              "readOnly": true
            },
            "qosIfTailDropThresholdSet": {
              "type": "integer",
              "description": "The threshold set to which the threshold value applies",
              "minimum": -2147483648,
              "maximum": 2147483647,
              "readOnly": true
            },
            "qosIfTailDropThresholdSetValue": {
              "type": "string",
              "description": "The threshold value above which packets are dropped.",
              "x-yang-type": "CISCO-QOS-PIB-MIB:Percent",
              "readOnly": true
            }
          }
        }
      },
      "CISCO-QOS-PIB-MIB_qosIfWeightsEntry": {
        "type": "array",
        "description": "An instance of this class specifies the scheduling weight for\n          a particular queue of an interface with a particular number\n          of queues and with a particular role combination.",
        "items": {
          "type": "object",
          "properties": {
            "qosIfWeightsId": {
              "type": "string",
              "description": "An integer index to identify the instance of the policy class.",
              "x-yang-type": "CISCO-QOS-PIB-MIB:PolicyInstanceId",
              "readOnly": true
            },
            "qosIfWeightsRoles": {
              "type": "string",
              "description": "The role combination the interface must be configured with.",
              "x-yang-type": "CISCO-QOS-PIB-MIB:RoleCombination",
              "readOnly": true
            },
            "qosIfWeightsNumQueues": {
              "type": "string",
              "description": "The value of the weight in this instance applies only to\n            interfaces with the number of queues specified by this\n            attribute.",
              "x-yang-type": "CISCO-QOS-PIB-MIB:QueueRange",
              "readOnly": true
            },
            "qosIfWeightsQueue": {
              "type": "integer",
              "description": "The queue to which the weight applies.",
              "minimum": -2147483648,
              "maximum": 2147483647,
              "readOnly": true
            },
            "qosIfWeightsDrainSize": {
              "type": "integer",
              "description": "The maximum number of bytes that may be drained from the\n            queue in one cycle.  The percentage of the bandwith allocated\n            to this queue can be calculated from this attribute and the\n            sum of the drain sizes of all the non-priority queues of the\n            interface.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "qosIfWeightsQueueSize": {
              "type": "integer",
              "description": "The size of the queue in bytes.  Some devices set queue size\n            in terms of packets.  These devices must calculate the queue\n            size in packets by assuming an average packet size suitable\n            for the particular interface.\n            \n            Some devices have a fixed size buffer to be shared among all\n            queues.  These devices must allocate a fraction of the\n            total buffer space to this queue calculated as the the ratio\n            of the queue size to the sum of the queue sizes for the\n            interface.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            }
          }
        }
      },
      "restconf-error": {
        "type": "object",
        "description": "Standard RESTCONF error response (RFC 8040 Section 7.1)",
        "properties": {
          "ietf-restconf:errors": {
            "type": "object",
            "properties": {
              "error": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {
                    "error-type": {
                      "type": "string",
                      "enum": [
                        "transport",
                        "rpc",
                        "protocol",
                        "application"
                      ],
                      "description": "Layer where the error occurred"
                    },
                    "error-tag": {
                      "type": "string",
                      "description": "Enumerated error tag (e.g. invalid-value, data-missing, access-denied)"
                    },
                    "error-severity": {
                      "type": "string",
                      "enum": [
                        "error",
                        "warning"
                      ],
                      "description": "Error severity"
                    },
                    "error-app-tag": {
                      "type": "string",
                      "description": "Application-specific error tag"
                    },
                    "error-path": {
                      "type": "string",
                      "description": "YANG instance-identifier of the error node"
                    },
                    "error-message": {
                      "type": "string",
                      "description": "Human-readable error description"
                    }
                  },
                  "required": [
                    "error-type",
                    "error-tag"
                  ]
                }
              }
            }
          }
        },
        "example": {
          "ietf-restconf:errors": {
            "error": [
              {
                "error-type": "protocol",
                "error-tag": "invalid-value",
                "error-severity": "error",
                "error-message": "Invalid input parameter"
              }
            ]
          }
        }
      }
    },
    "securitySchemes": {
      "basicAuth": {
        "type": "http",
        "scheme": "basic"
      }
    }
  },
  "security": [
    {
      "basicAuth": []
    }
  ],
  "tags": [
    {
      "name": "CISCO-QOS-PIB-MIB",
      "description": "MIB operations for CISCO-QOS-PIB-MIB"
    }
  ],
  "externalDocs": {
    "description": "Cisco SNMP Object Navigator",
    "url": "https://snmp.cloudapps.cisco.com/Support/IOS/do/BrowseMIB.do"
  }
}
