{
  "openapi": "3.0.0",
  "info": {
    "title": "CISCO-ENTITY-EXT-MIB MIB API",
    "version": "1.0.0",
    "description": "SNMP MIB translated to YANG data model\n\n⚠️ **IMPORTANT - MIB DATA ACCESS**:\nThis YANG model exists for SMIv2-to-YANG translation purposes, but MIB data on IOS-XE devices is primarily accessed via **SNMP protocol**, not RESTCONF.\n\n**RESTCONF Limitation**: Many MIB paths may return 404 errors via RESTCONF `/data` endpoints because the device exposes MIB data through SNMP, not the YANG datastore.\n\n**Recommended Access Methods**:\n- Use SNMP (v2c/v3) to query MIB data directly\n- Use NETCONF `<get>` operations for devices supporting YANG-modeled MIB access\n- Check device capabilities: some newer IOS-XE versions may support limited RESTCONF access to specific MIBs\n\n**YANG Model Purpose**: These YANG models define the structure of SNMP MIBs in YANG format for tooling compatibility, but do not guarantee RESTCONF data availability.\n\n\n**📊 YANG Tree:** [View CISCO-ENTITY-EXT-MIB structure](https://jeremycohoe.github.io/cisco-ios-xe-openapi-swagger/yang-trees/CISCO-ENTITY-EXT-MIB.html)",
    "contact": {
      "name": "Cisco DevNet",
      "url": "https://developer.cisco.com"
    },
    "x-yang-module": "CISCO-ENTITY-EXT-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-ENTITY-EXT-MIB:ceExtPhysicalProcessorTable": {
      "get": {
        "summary": "Get ceExtPhysicalProcessorTable data",
        "description": "Retrieve ceExtPhysicalProcessorTable operational data from MIB",
        "tags": [
          "CISCO-ENTITY-EXT-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "description": "The ceExtPhysicalProcessorTable extends\n        the ENTITY-MIB entPhysicalTable for modules\n        (Non FRUs(Field Replacable Units) or FRUs).",
                  "properties": {
                    "ceExtPhysicalProcessorEntry": {
                      "type": "array",
                      "description": "ceExtPhysicalProcessorEntry",
                      "items": {
                        "type": "object",
                        "properties": {
                          "entPhysicalIndex": {
                            "type": "string",
                            "description": "entPhysicalIndex",
                            "x-yang-type": "leafref"
                          },
                          "ceExtProcessorRam": {
                            "type": "integer",
                            "description": "Total number of bytes of RAM available on the\n            Processor.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "ceExtNVRAMSize": {
                            "type": "integer",
                            "description": "Total number of bytes of NVRAM in the entity.\n            \n            A value of 0 for this object means the entity\n            does not support NVRAM or NVRAM information \n            is not available.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "ceExtNVRAMUsed": {
                            "type": "integer",
                            "description": "Number of bytes of NVRAM in use. This object\n            is irrelevant if ceExtNVRAMSize is 0.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "ceExtProcessorRamOverflow": {
                            "type": "integer",
                            "description": "This object represents the upper 32-bit of ceExtProcessorRam.\n            This object needs to be supported only if the available RAM\n            bytes exceeds 32-bit, otherwise this object value would be set\n            to 0.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "ceExtHCProcessorRam": {
                            "type": "string",
                            "description": "This object represents the total number of bytes of RAM\n            available on the Processor. This object is a 64-bit version\n            of ceExtProcessorRam.",
                            "x-yang-type": "cisco-tc:Unsigned64"
                          }
                        }
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-ENTITY-EXT-MIB:ceExtPhysicalProcessorTable": {
                    "ceExtPhysicalProcessorEntry": [
                      {
                        "entPhysicalIndex": "1",
                        "ceExtProcessorRam": 0,
                        "ceExtNVRAMSize": 0,
                        "ceExtNVRAMUsed": 0,
                        "ceExtProcessorRamOverflow": 0,
                        "ceExtHCProcessorRam": "example-string"
                      },
                      {
                        "entPhysicalIndex": "2",
                        "ceExtProcessorRam": 0,
                        "ceExtNVRAMSize": 0,
                        "ceExtNVRAMUsed": 0,
                        "ceExtProcessorRamOverflow": 0,
                        "ceExtHCProcessorRam": "example-string"
                      },
                      {
                        "entPhysicalIndex": "3",
                        "ceExtProcessorRam": 0,
                        "ceExtNVRAMSize": 0,
                        "ceExtNVRAMUsed": 0,
                        "ceExtProcessorRamOverflow": 0,
                        "ceExtHCProcessorRam": "example-string"
                      }
                    ]
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-ceExtPhysicalProcessorTable",
        "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": "/ceExtPhysicalProcessorTable",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-ENTITY-EXT-MIB:ceExtPhysicalProcessorTable/ceExtPhysicalProcessorEntry": {
      "get": {
        "summary": "Get ceExtPhysicalProcessorEntry list",
        "description": "Retrieve list of ceExtPhysicalProcessorEntry entries from MIB",
        "tags": [
          "CISCO-ENTITY-EXT-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "ceExtPhysicalProcessorEntry",
                  "items": {
                    "type": "object",
                    "properties": {
                      "entPhysicalIndex": {
                        "type": "string",
                        "description": "entPhysicalIndex",
                        "x-yang-type": "leafref"
                      },
                      "ceExtProcessorRam": {
                        "type": "integer",
                        "description": "Total number of bytes of RAM available on the\n            Processor.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "ceExtNVRAMSize": {
                        "type": "integer",
                        "description": "Total number of bytes of NVRAM in the entity.\n            \n            A value of 0 for this object means the entity\n            does not support NVRAM or NVRAM information \n            is not available.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "ceExtNVRAMUsed": {
                        "type": "integer",
                        "description": "Number of bytes of NVRAM in use. This object\n            is irrelevant if ceExtNVRAMSize is 0.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "ceExtProcessorRamOverflow": {
                        "type": "integer",
                        "description": "This object represents the upper 32-bit of ceExtProcessorRam.\n            This object needs to be supported only if the available RAM\n            bytes exceeds 32-bit, otherwise this object value would be set\n            to 0.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "ceExtHCProcessorRam": {
                        "type": "string",
                        "description": "This object represents the total number of bytes of RAM\n            available on the Processor. This object is a 64-bit version\n            of ceExtProcessorRam.",
                        "x-yang-type": "cisco-tc:Unsigned64"
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-ENTITY-EXT-MIB:ceExtPhysicalProcessorEntry": [
                    {
                      "entPhysicalIndex": "example-string",
                      "ceExtProcessorRam": 0,
                      "ceExtNVRAMSize": 0,
                      "ceExtNVRAMUsed": 0,
                      "ceExtProcessorRamOverflow": 0,
                      "ceExtHCProcessorRam": "example-string"
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-ceExtPhysicalProcessorEntry",
        "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": "/ceExtPhysicalProcessorTable/ceExtPhysicalProcessorEntry",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-ENTITY-EXT-MIB:ceExtPhysicalProcessorTable/ceExtPhysicalProcessorEntry={entPhysicalIndex}": {
      "get": {
        "summary": "Get ceExtPhysicalProcessorEntry entry",
        "description": "Retrieve specific ceExtPhysicalProcessorEntry entry by key from MIB",
        "tags": [
          "CISCO-ENTITY-EXT-MIB"
        ],
        "parameters": [
          {
            "name": "entPhysicalIndex",
            "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": {
                    "entPhysicalIndex": {
                      "type": "string",
                      "description": "entPhysicalIndex",
                      "x-yang-type": "leafref"
                    },
                    "ceExtProcessorRam": {
                      "type": "integer",
                      "description": "Total number of bytes of RAM available on the\n            Processor.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "ceExtNVRAMSize": {
                      "type": "integer",
                      "description": "Total number of bytes of NVRAM in the entity.\n            \n            A value of 0 for this object means the entity\n            does not support NVRAM or NVRAM information \n            is not available.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "ceExtNVRAMUsed": {
                      "type": "integer",
                      "description": "Number of bytes of NVRAM in use. This object\n            is irrelevant if ceExtNVRAMSize is 0.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "ceExtProcessorRamOverflow": {
                      "type": "integer",
                      "description": "This object represents the upper 32-bit of ceExtProcessorRam.\n            This object needs to be supported only if the available RAM\n            bytes exceeds 32-bit, otherwise this object value would be set\n            to 0.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "ceExtHCProcessorRam": {
                      "type": "string",
                      "description": "This object represents the total number of bytes of RAM\n            available on the Processor. This object is a 64-bit version\n            of ceExtProcessorRam.",
                      "x-yang-type": "cisco-tc:Unsigned64"
                    }
                  }
                },
                "example": {
                  "CISCO-ENTITY-EXT-MIB:ceExtPhysicalProcessorEntry": {
                    "entPhysicalIndex": "example-string",
                    "ceExtProcessorRam": 0,
                    "ceExtNVRAMSize": 0,
                    "ceExtNVRAMUsed": 0,
                    "ceExtProcessorRamOverflow": 0,
                    "ceExtHCProcessorRam": "example-string"
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-ceExtPhysicalProcessorEntry-2"
      },
      "x-yang-path": "/ceExtPhysicalProcessorTable/ceExtPhysicalProcessorEntry={entPhysicalIndex}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "entPhysicalIndex"
      ]
    },
    "/data/CISCO-ENTITY-EXT-MIB:ceExtConfigRegTable": {
      "get": {
        "summary": "Get ceExtConfigRegTable data",
        "description": "Retrieve ceExtConfigRegTable operational data from MIB",
        "tags": [
          "CISCO-ENTITY-EXT-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "description": "The ceExtConfigRegTable extends\n        the ENTITY-MIB entPhysicalTable.",
                  "properties": {
                    "ceExtConfigRegEntry": {
                      "type": "array",
                      "description": "A ceExtConfigRegTable entry extends\n          a corresponding entPhysicalTable entry of class\n          module which has a configuration register.\n          \n          Entries are created by the agent at the system power-up\n          or module insertion.\n          \n          Entries are removed when the module is reset or \n          removed.",
                      "items": {
                        "type": "object",
                        "properties": {
                          "entPhysicalIndex": {
                            "type": "string",
                            "description": "entPhysicalIndex",
                            "x-yang-type": "leafref"
                          },
                          "ceExtConfigRegister": {
                            "type": "string",
                            "description": "The value of configuration register with which\n            the processor module booted.",
                            "x-yang-type": "CISCO-ENTITY-EXT-MIB:ConfigRegisterValue"
                          },
                          "ceExtConfigRegNext": {
                            "type": "string",
                            "description": "The value of configuration register in the\n            processor module at next reboot. Just after \n            the reboot this has the same value as \n            ceExtConfigRegister.",
                            "x-yang-type": "CISCO-ENTITY-EXT-MIB:ConfigRegisterValue"
                          },
                          "ceExtSysBootImageList": {
                            "type": "string",
                            "description": "The list of system boot images which\n            can be used for booting.",
                            "x-yang-type": "CISCO-ENTITY-EXT-MIB:BootImageList"
                          },
                          "ceExtKickstartImageList": {
                            "type": "string",
                            "description": "The list of system kickstart images which\n            can be used for booting.",
                            "x-yang-type": "CISCO-ENTITY-EXT-MIB:BootImageList"
                          }
                        }
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-ENTITY-EXT-MIB:ceExtConfigRegTable": {
                    "ceExtConfigRegEntry": [
                      {
                        "entPhysicalIndex": "1",
                        "ceExtConfigRegister": "example-string",
                        "ceExtConfigRegNext": "example-string",
                        "ceExtSysBootImageList": "example-string",
                        "ceExtKickstartImageList": "example-string"
                      },
                      {
                        "entPhysicalIndex": "2",
                        "ceExtConfigRegister": "example-string",
                        "ceExtConfigRegNext": "example-string",
                        "ceExtSysBootImageList": "example-string",
                        "ceExtKickstartImageList": "example-string"
                      },
                      {
                        "entPhysicalIndex": "3",
                        "ceExtConfigRegister": "example-string",
                        "ceExtConfigRegNext": "example-string",
                        "ceExtSysBootImageList": "example-string",
                        "ceExtKickstartImageList": "example-string"
                      }
                    ]
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-ceExtConfigRegTable",
        "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": "/ceExtConfigRegTable",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-ENTITY-EXT-MIB:ceExtConfigRegTable/ceExtConfigRegEntry": {
      "get": {
        "summary": "Get ceExtConfigRegEntry list",
        "description": "Retrieve list of ceExtConfigRegEntry entries from MIB",
        "tags": [
          "CISCO-ENTITY-EXT-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "A ceExtConfigRegTable entry extends\n          a corresponding entPhysicalTable entry of class\n          module which has a configuration register.\n          \n          Entries are created by the agent at the system power-up\n          or module insertion.\n          \n          Entries are removed when the module is reset or \n          removed.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "entPhysicalIndex": {
                        "type": "string",
                        "description": "entPhysicalIndex",
                        "x-yang-type": "leafref"
                      },
                      "ceExtConfigRegister": {
                        "type": "string",
                        "description": "The value of configuration register with which\n            the processor module booted.",
                        "x-yang-type": "CISCO-ENTITY-EXT-MIB:ConfigRegisterValue"
                      },
                      "ceExtConfigRegNext": {
                        "type": "string",
                        "description": "The value of configuration register in the\n            processor module at next reboot. Just after \n            the reboot this has the same value as \n            ceExtConfigRegister.",
                        "x-yang-type": "CISCO-ENTITY-EXT-MIB:ConfigRegisterValue"
                      },
                      "ceExtSysBootImageList": {
                        "type": "string",
                        "description": "The list of system boot images which\n            can be used for booting.",
                        "x-yang-type": "CISCO-ENTITY-EXT-MIB:BootImageList"
                      },
                      "ceExtKickstartImageList": {
                        "type": "string",
                        "description": "The list of system kickstart images which\n            can be used for booting.",
                        "x-yang-type": "CISCO-ENTITY-EXT-MIB:BootImageList"
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-ENTITY-EXT-MIB:ceExtConfigRegEntry": [
                    {
                      "entPhysicalIndex": "example-string",
                      "ceExtConfigRegister": "example-string",
                      "ceExtConfigRegNext": "example-string",
                      "ceExtSysBootImageList": "example-string",
                      "ceExtKickstartImageList": "example-string"
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-ceExtConfigRegEntry",
        "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": "/ceExtConfigRegTable/ceExtConfigRegEntry",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-ENTITY-EXT-MIB:ceExtConfigRegTable/ceExtConfigRegEntry={entPhysicalIndex}": {
      "get": {
        "summary": "Get ceExtConfigRegEntry entry",
        "description": "Retrieve specific ceExtConfigRegEntry entry by key from MIB",
        "tags": [
          "CISCO-ENTITY-EXT-MIB"
        ],
        "parameters": [
          {
            "name": "entPhysicalIndex",
            "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": {
                    "entPhysicalIndex": {
                      "type": "string",
                      "description": "entPhysicalIndex",
                      "x-yang-type": "leafref"
                    },
                    "ceExtConfigRegister": {
                      "type": "string",
                      "description": "The value of configuration register with which\n            the processor module booted.",
                      "x-yang-type": "CISCO-ENTITY-EXT-MIB:ConfigRegisterValue"
                    },
                    "ceExtConfigRegNext": {
                      "type": "string",
                      "description": "The value of configuration register in the\n            processor module at next reboot. Just after \n            the reboot this has the same value as \n            ceExtConfigRegister.",
                      "x-yang-type": "CISCO-ENTITY-EXT-MIB:ConfigRegisterValue"
                    },
                    "ceExtSysBootImageList": {
                      "type": "string",
                      "description": "The list of system boot images which\n            can be used for booting.",
                      "x-yang-type": "CISCO-ENTITY-EXT-MIB:BootImageList"
                    },
                    "ceExtKickstartImageList": {
                      "type": "string",
                      "description": "The list of system kickstart images which\n            can be used for booting.",
                      "x-yang-type": "CISCO-ENTITY-EXT-MIB:BootImageList"
                    }
                  }
                },
                "example": {
                  "CISCO-ENTITY-EXT-MIB:ceExtConfigRegEntry": {
                    "entPhysicalIndex": "example-string",
                    "ceExtConfigRegister": "example-string",
                    "ceExtConfigRegNext": "example-string",
                    "ceExtSysBootImageList": "example-string",
                    "ceExtKickstartImageList": "example-string"
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-ceExtConfigRegEntry-2"
      },
      "x-yang-path": "/ceExtConfigRegTable/ceExtConfigRegEntry={entPhysicalIndex}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "entPhysicalIndex"
      ]
    },
    "/data/CISCO-ENTITY-EXT-MIB:ceExtEntityLEDTable": {
      "get": {
        "summary": "Get ceExtEntityLEDTable data",
        "description": "Retrieve ceExtEntityLEDTable operational data from MIB",
        "tags": [
          "CISCO-ENTITY-EXT-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "description": "A table containing information of LED on an entity.",
                  "properties": {
                    "ceExtEntityLEDEntry": {
                      "type": "array",
                      "description": "An entry (conceptual row) in the ceExtEntityLEDTable,\n          containing information about an LED on an entity, identified by \n          entPhysicalIndex.",
                      "items": {
                        "type": "object",
                        "properties": {
                          "entPhysicalIndex": {
                            "type": "string",
                            "description": "entPhysicalIndex",
                            "x-yang-type": "leafref"
                          },
                          "ceExtEntityLEDType": {
                            "type": "string",
                            "description": "The type of LED on this entity.\n            'status' - indicates the entity status.\n            'system' - indicates the overall system status. \n            'active' - the redundancy status of a module, for e.g.\n                       supervisor module. \n            'power'  - indicates sufficient power availability for all \n                       modules.\n            'battery'- indicates the battery status."
                          },
                          "ceExtEntityLEDColor": {
                            "type": "string",
                            "description": "The color of the LED."
                          }
                        }
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-ENTITY-EXT-MIB:ceExtEntityLEDTable": {
                    "ceExtEntityLEDEntry": [
                      {
                        "entPhysicalIndex": "1",
                        "ceExtEntityLEDType": "ethernetCsmacd(6)",
                        "ceExtEntityLEDColor": "example-string"
                      },
                      {
                        "entPhysicalIndex": "2",
                        "ceExtEntityLEDType": "ethernetCsmacd(6)",
                        "ceExtEntityLEDColor": "example-string"
                      },
                      {
                        "entPhysicalIndex": "3",
                        "ceExtEntityLEDType": "ethernetCsmacd(6)",
                        "ceExtEntityLEDColor": "example-string"
                      }
                    ]
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-ceExtEntityLEDTable",
        "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": "/ceExtEntityLEDTable",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-ENTITY-EXT-MIB:ceExtEntityLEDTable/ceExtEntityLEDEntry": {
      "get": {
        "summary": "Get ceExtEntityLEDEntry list",
        "description": "Retrieve list of ceExtEntityLEDEntry entries from MIB",
        "tags": [
          "CISCO-ENTITY-EXT-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "An entry (conceptual row) in the ceExtEntityLEDTable,\n          containing information about an LED on an entity, identified by \n          entPhysicalIndex.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "entPhysicalIndex": {
                        "type": "string",
                        "description": "entPhysicalIndex",
                        "x-yang-type": "leafref"
                      },
                      "ceExtEntityLEDType": {
                        "type": "string",
                        "description": "The type of LED on this entity.\n            'status' - indicates the entity status.\n            'system' - indicates the overall system status. \n            'active' - the redundancy status of a module, for e.g.\n                       supervisor module. \n            'power'  - indicates sufficient power availability for all \n                       modules.\n            'battery'- indicates the battery status."
                      },
                      "ceExtEntityLEDColor": {
                        "type": "string",
                        "description": "The color of the LED."
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-ENTITY-EXT-MIB:ceExtEntityLEDEntry": [
                    {
                      "entPhysicalIndex": "example-string",
                      "ceExtEntityLEDType": "ethernetCsmacd(6)",
                      "ceExtEntityLEDColor": "example-string"
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-ceExtEntityLEDEntry",
        "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": "/ceExtEntityLEDTable/ceExtEntityLEDEntry",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-ENTITY-EXT-MIB:ceExtPhysicalProcessorEntry": {
      "get": {
        "summary": "Get ceExtPhysicalProcessorEntry list",
        "description": "Retrieve list of ceExtPhysicalProcessorEntry entries from MIB",
        "tags": [
          "CISCO-ENTITY-EXT-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "ceExtPhysicalProcessorEntry",
                  "items": {
                    "type": "object",
                    "properties": {
                      "entPhysicalIndex": {
                        "type": "string",
                        "description": "entPhysicalIndex",
                        "x-yang-type": "leafref"
                      },
                      "ceExtProcessorRam": {
                        "type": "integer",
                        "description": "Total number of bytes of RAM available on the\n            Processor.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "ceExtNVRAMSize": {
                        "type": "integer",
                        "description": "Total number of bytes of NVRAM in the entity.\n            \n            A value of 0 for this object means the entity\n            does not support NVRAM or NVRAM information \n            is not available.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "ceExtNVRAMUsed": {
                        "type": "integer",
                        "description": "Number of bytes of NVRAM in use. This object\n            is irrelevant if ceExtNVRAMSize is 0.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "ceExtProcessorRamOverflow": {
                        "type": "integer",
                        "description": "This object represents the upper 32-bit of ceExtProcessorRam.\n            This object needs to be supported only if the available RAM\n            bytes exceeds 32-bit, otherwise this object value would be set\n            to 0.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "ceExtHCProcessorRam": {
                        "type": "string",
                        "description": "This object represents the total number of bytes of RAM\n            available on the Processor. This object is a 64-bit version\n            of ceExtProcessorRam.",
                        "x-yang-type": "cisco-tc:Unsigned64"
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-ENTITY-EXT-MIB:ceExtPhysicalProcessorEntry": [
                    {
                      "entPhysicalIndex": "example-string",
                      "ceExtProcessorRam": 0,
                      "ceExtNVRAMSize": 0,
                      "ceExtNVRAMUsed": 0,
                      "ceExtProcessorRamOverflow": 0,
                      "ceExtHCProcessorRam": "example-string"
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-ceExtPhysicalProcessorEntry-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": "/ceExtPhysicalProcessorEntry",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-ENTITY-EXT-MIB:ceExtPhysicalProcessorEntry={entPhysicalIndex}": {
      "get": {
        "summary": "Get ceExtPhysicalProcessorEntry entry",
        "description": "Retrieve specific ceExtPhysicalProcessorEntry entry by key from MIB",
        "tags": [
          "CISCO-ENTITY-EXT-MIB"
        ],
        "parameters": [
          {
            "name": "entPhysicalIndex",
            "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": {
                    "entPhysicalIndex": {
                      "type": "string",
                      "description": "entPhysicalIndex",
                      "x-yang-type": "leafref"
                    },
                    "ceExtProcessorRam": {
                      "type": "integer",
                      "description": "Total number of bytes of RAM available on the\n            Processor.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "ceExtNVRAMSize": {
                      "type": "integer",
                      "description": "Total number of bytes of NVRAM in the entity.\n            \n            A value of 0 for this object means the entity\n            does not support NVRAM or NVRAM information \n            is not available.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "ceExtNVRAMUsed": {
                      "type": "integer",
                      "description": "Number of bytes of NVRAM in use. This object\n            is irrelevant if ceExtNVRAMSize is 0.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "ceExtProcessorRamOverflow": {
                      "type": "integer",
                      "description": "This object represents the upper 32-bit of ceExtProcessorRam.\n            This object needs to be supported only if the available RAM\n            bytes exceeds 32-bit, otherwise this object value would be set\n            to 0.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "ceExtHCProcessorRam": {
                      "type": "string",
                      "description": "This object represents the total number of bytes of RAM\n            available on the Processor. This object is a 64-bit version\n            of ceExtProcessorRam.",
                      "x-yang-type": "cisco-tc:Unsigned64"
                    }
                  }
                },
                "example": {
                  "CISCO-ENTITY-EXT-MIB:ceExtPhysicalProcessorEntry": {
                    "entPhysicalIndex": "example-string",
                    "ceExtProcessorRam": 0,
                    "ceExtNVRAMSize": 0,
                    "ceExtNVRAMUsed": 0,
                    "ceExtProcessorRamOverflow": 0,
                    "ceExtHCProcessorRam": "example-string"
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-ceExtPhysicalProcessorEntry-4"
      },
      "x-yang-path": "/ceExtPhysicalProcessorEntry={entPhysicalIndex}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "entPhysicalIndex"
      ]
    },
    "/data/CISCO-ENTITY-EXT-MIB:ceExtConfigRegEntry": {
      "get": {
        "summary": "Get ceExtConfigRegEntry list",
        "description": "Retrieve list of ceExtConfigRegEntry entries from MIB",
        "tags": [
          "CISCO-ENTITY-EXT-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "A ceExtConfigRegTable entry extends\n          a corresponding entPhysicalTable entry of class\n          module which has a configuration register.\n          \n          Entries are created by the agent at the system power-up\n          or module insertion.\n          \n          Entries are removed when the module is reset or \n          removed.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "entPhysicalIndex": {
                        "type": "string",
                        "description": "entPhysicalIndex",
                        "x-yang-type": "leafref"
                      },
                      "ceExtConfigRegister": {
                        "type": "string",
                        "description": "The value of configuration register with which\n            the processor module booted.",
                        "x-yang-type": "CISCO-ENTITY-EXT-MIB:ConfigRegisterValue"
                      },
                      "ceExtConfigRegNext": {
                        "type": "string",
                        "description": "The value of configuration register in the\n            processor module at next reboot. Just after \n            the reboot this has the same value as \n            ceExtConfigRegister.",
                        "x-yang-type": "CISCO-ENTITY-EXT-MIB:ConfigRegisterValue"
                      },
                      "ceExtSysBootImageList": {
                        "type": "string",
                        "description": "The list of system boot images which\n            can be used for booting.",
                        "x-yang-type": "CISCO-ENTITY-EXT-MIB:BootImageList"
                      },
                      "ceExtKickstartImageList": {
                        "type": "string",
                        "description": "The list of system kickstart images which\n            can be used for booting.",
                        "x-yang-type": "CISCO-ENTITY-EXT-MIB:BootImageList"
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-ENTITY-EXT-MIB:ceExtConfigRegEntry": [
                    {
                      "entPhysicalIndex": "example-string",
                      "ceExtConfigRegister": "example-string",
                      "ceExtConfigRegNext": "example-string",
                      "ceExtSysBootImageList": "example-string",
                      "ceExtKickstartImageList": "example-string"
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-ceExtConfigRegEntry-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": "/ceExtConfigRegEntry",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-ENTITY-EXT-MIB:ceExtConfigRegEntry={entPhysicalIndex}": {
      "get": {
        "summary": "Get ceExtConfigRegEntry entry",
        "description": "Retrieve specific ceExtConfigRegEntry entry by key from MIB",
        "tags": [
          "CISCO-ENTITY-EXT-MIB"
        ],
        "parameters": [
          {
            "name": "entPhysicalIndex",
            "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": {
                    "entPhysicalIndex": {
                      "type": "string",
                      "description": "entPhysicalIndex",
                      "x-yang-type": "leafref"
                    },
                    "ceExtConfigRegister": {
                      "type": "string",
                      "description": "The value of configuration register with which\n            the processor module booted.",
                      "x-yang-type": "CISCO-ENTITY-EXT-MIB:ConfigRegisterValue"
                    },
                    "ceExtConfigRegNext": {
                      "type": "string",
                      "description": "The value of configuration register in the\n            processor module at next reboot. Just after \n            the reboot this has the same value as \n            ceExtConfigRegister.",
                      "x-yang-type": "CISCO-ENTITY-EXT-MIB:ConfigRegisterValue"
                    },
                    "ceExtSysBootImageList": {
                      "type": "string",
                      "description": "The list of system boot images which\n            can be used for booting.",
                      "x-yang-type": "CISCO-ENTITY-EXT-MIB:BootImageList"
                    },
                    "ceExtKickstartImageList": {
                      "type": "string",
                      "description": "The list of system kickstart images which\n            can be used for booting.",
                      "x-yang-type": "CISCO-ENTITY-EXT-MIB:BootImageList"
                    }
                  }
                },
                "example": {
                  "CISCO-ENTITY-EXT-MIB:ceExtConfigRegEntry": {
                    "entPhysicalIndex": "example-string",
                    "ceExtConfigRegister": "example-string",
                    "ceExtConfigRegNext": "example-string",
                    "ceExtSysBootImageList": "example-string",
                    "ceExtKickstartImageList": "example-string"
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-ceExtConfigRegEntry-4"
      },
      "x-yang-path": "/ceExtConfigRegEntry={entPhysicalIndex}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "entPhysicalIndex"
      ]
    },
    "/data/CISCO-ENTITY-EXT-MIB:ceExtEntityLEDEntry": {
      "get": {
        "summary": "Get ceExtEntityLEDEntry list",
        "description": "Retrieve list of ceExtEntityLEDEntry entries from MIB",
        "tags": [
          "CISCO-ENTITY-EXT-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "An entry (conceptual row) in the ceExtEntityLEDTable,\n          containing information about an LED on an entity, identified by \n          entPhysicalIndex.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "entPhysicalIndex": {
                        "type": "string",
                        "description": "entPhysicalIndex",
                        "x-yang-type": "leafref"
                      },
                      "ceExtEntityLEDType": {
                        "type": "string",
                        "description": "The type of LED on this entity.\n            'status' - indicates the entity status.\n            'system' - indicates the overall system status. \n            'active' - the redundancy status of a module, for e.g.\n                       supervisor module. \n            'power'  - indicates sufficient power availability for all \n                       modules.\n            'battery'- indicates the battery status."
                      },
                      "ceExtEntityLEDColor": {
                        "type": "string",
                        "description": "The color of the LED."
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-ENTITY-EXT-MIB:ceExtEntityLEDEntry": [
                    {
                      "entPhysicalIndex": "example-string",
                      "ceExtEntityLEDType": "ethernetCsmacd(6)",
                      "ceExtEntityLEDColor": "example-string"
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-ceExtEntityLEDEntry-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": "/ceExtEntityLEDEntry",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-ENTITY-EXT-MIB:ceExtEntityLEDTable/ceExtEntityLEDEntry={entPhysicalIndex},{ceExtEntityLEDType}": {
      "get": {
        "summary": "Get ceExtEntityLEDEntry entry",
        "description": "Retrieve specific ceExtEntityLEDEntry entry by key from MIB",
        "tags": [
          "CISCO-ENTITY-EXT-MIB"
        ],
        "parameters": [
          {
            "name": "entPhysicalIndex",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "ceExtEntityLEDType",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "Accept",
            "in": "header",
            "required": false,
            "description": "RESTCONF response media type (RFC 8040)",
            "schema": {
              "type": "string",
              "default": "application/yang-data+json",
              "enum": [
                "application/yang-data+json",
                "application/yang-data+xml"
              ]
            }
          },
          {
            "name": "depth",
            "in": "query",
            "required": false,
            "description": "Limit the depth of returned sub-tree data (RFC 8040 Section 4.8.2). Use 'unbounded' for full depth.",
            "schema": {
              "type": "string",
              "default": "unbounded"
            }
          },
          {
            "name": "fields",
            "in": "query",
            "required": false,
            "description": "Select specific fields to return (RFC 8040 Section 4.8.3). Example: fields=name;status",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "content",
            "in": "query",
            "required": false,
            "description": "Filter by config state: 'config' (config true only), 'nonconfig' (config false only), or 'all'.",
            "schema": {
              "type": "string",
              "enum": [
                "config",
                "nonconfig",
                "all"
              ],
              "default": "all"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "entPhysicalIndex": {
                      "type": "string",
                      "description": "entPhysicalIndex",
                      "x-yang-type": "leafref"
                    },
                    "ceExtEntityLEDType": {
                      "type": "string",
                      "description": "The type of LED on this entity.\n            'status' - indicates the entity status.\n            'system' - indicates the overall system status. \n            'active' - the redundancy status of a module, for e.g.\n                       supervisor module. \n            'power'  - indicates sufficient power availability for all \n                       modules.\n            'battery'- indicates the battery status."
                    },
                    "ceExtEntityLEDColor": {
                      "type": "string",
                      "description": "The color of the LED."
                    }
                  }
                },
                "example": {
                  "CISCO-ENTITY-EXT-MIB:ceExtEntityLEDEntry": {
                    "entPhysicalIndex": "example-string",
                    "ceExtEntityLEDType": "ethernetCsmacd(6)",
                    "ceExtEntityLEDColor": "example-string"
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-ceExtEntityLEDEntry-2"
      },
      "x-yang-path": "/ceExtEntityLEDTable/ceExtEntityLEDEntry={entPhysicalIndex ceExtEntityLEDType}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "entPhysicalIndex ceExtEntityLEDType"
      ]
    },
    "/data/CISCO-ENTITY-EXT-MIB:ceExtEntityLEDEntry={entPhysicalIndex},{ceExtEntityLEDType}": {
      "get": {
        "summary": "Get ceExtEntityLEDEntry entry",
        "description": "Retrieve specific ceExtEntityLEDEntry entry by key from MIB",
        "tags": [
          "CISCO-ENTITY-EXT-MIB"
        ],
        "parameters": [
          {
            "name": "entPhysicalIndex",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "ceExtEntityLEDType",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "Accept",
            "in": "header",
            "required": false,
            "description": "RESTCONF response media type (RFC 8040)",
            "schema": {
              "type": "string",
              "default": "application/yang-data+json",
              "enum": [
                "application/yang-data+json",
                "application/yang-data+xml"
              ]
            }
          },
          {
            "name": "depth",
            "in": "query",
            "required": false,
            "description": "Limit the depth of returned sub-tree data (RFC 8040 Section 4.8.2). Use 'unbounded' for full depth.",
            "schema": {
              "type": "string",
              "default": "unbounded"
            }
          },
          {
            "name": "fields",
            "in": "query",
            "required": false,
            "description": "Select specific fields to return (RFC 8040 Section 4.8.3). Example: fields=name;status",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "content",
            "in": "query",
            "required": false,
            "description": "Filter by config state: 'config' (config true only), 'nonconfig' (config false only), or 'all'.",
            "schema": {
              "type": "string",
              "enum": [
                "config",
                "nonconfig",
                "all"
              ],
              "default": "all"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "entPhysicalIndex": {
                      "type": "string",
                      "description": "entPhysicalIndex",
                      "x-yang-type": "leafref"
                    },
                    "ceExtEntityLEDType": {
                      "type": "string",
                      "description": "The type of LED on this entity.\n            'status' - indicates the entity status.\n            'system' - indicates the overall system status. \n            'active' - the redundancy status of a module, for e.g.\n                       supervisor module. \n            'power'  - indicates sufficient power availability for all \n                       modules.\n            'battery'- indicates the battery status."
                    },
                    "ceExtEntityLEDColor": {
                      "type": "string",
                      "description": "The color of the LED."
                    }
                  }
                },
                "example": {
                  "CISCO-ENTITY-EXT-MIB:ceExtEntityLEDEntry": {
                    "entPhysicalIndex": "example-string",
                    "ceExtEntityLEDType": "ethernetCsmacd(6)",
                    "ceExtEntityLEDColor": "example-string"
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-ceExtEntityLEDEntry-4"
      },
      "x-yang-path": "/ceExtEntityLEDEntry={entPhysicalIndex ceExtEntityLEDType}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "entPhysicalIndex ceExtEntityLEDType"
      ]
    }
  },
  "components": {
    "schemas": {
      "CISCO-ENTITY-EXT-MIB_CISCO-ENTITY-EXT-MIB": {
        "type": "object",
        "description": "The ceExtPhysicalProcessorTable extends\n        the ENTITY-MIB entPhysicalTable for modules\n        (Non FRUs(Field Replacable Units) or FRUs).",
        "properties": {
          "ceExtPhysicalProcessorEntry": {
            "type": "array",
            "description": "ceExtPhysicalProcessorEntry",
            "items": {
              "type": "object",
              "properties": {
                "entPhysicalIndex": {
                  "type": "string",
                  "description": "entPhysicalIndex",
                  "x-yang-type": "leafref",
                  "readOnly": true
                },
                "ceExtProcessorRam": {
                  "type": "integer",
                  "description": "Total number of bytes of RAM available on the\n            Processor.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "ceExtNVRAMSize": {
                  "type": "integer",
                  "description": "Total number of bytes of NVRAM in the entity.\n            \n            A value of 0 for this object means the entity\n            does not support NVRAM or NVRAM information \n            is not available.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "ceExtNVRAMUsed": {
                  "type": "integer",
                  "description": "Number of bytes of NVRAM in use. This object\n            is irrelevant if ceExtNVRAMSize is 0.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "ceExtProcessorRamOverflow": {
                  "type": "integer",
                  "description": "This object represents the upper 32-bit of ceExtProcessorRam.\n            This object needs to be supported only if the available RAM\n            bytes exceeds 32-bit, otherwise this object value would be set\n            to 0.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "ceExtHCProcessorRam": {
                  "type": "string",
                  "description": "This object represents the total number of bytes of RAM\n            available on the Processor. This object is a 64-bit version\n            of ceExtProcessorRam.",
                  "x-yang-type": "cisco-tc:Unsigned64",
                  "readOnly": true
                }
              }
            },
            "readOnly": true
          },
          "ceExtConfigRegEntry": {
            "type": "array",
            "description": "A ceExtConfigRegTable entry extends\n          a corresponding entPhysicalTable entry of class\n          module which has a configuration register.\n          \n          Entries are created by the agent at the system power-up\n          or module insertion.\n          \n          Entries are removed when the module is reset or \n          removed.",
            "items": {
              "type": "object",
              "properties": {
                "entPhysicalIndex": {
                  "type": "string",
                  "description": "entPhysicalIndex",
                  "x-yang-type": "leafref",
                  "readOnly": true
                },
                "ceExtConfigRegister": {
                  "type": "string",
                  "description": "The value of configuration register with which\n            the processor module booted.",
                  "x-yang-type": "CISCO-ENTITY-EXT-MIB:ConfigRegisterValue",
                  "readOnly": true
                },
                "ceExtConfigRegNext": {
                  "type": "string",
                  "description": "The value of configuration register in the\n            processor module at next reboot. Just after \n            the reboot this has the same value as \n            ceExtConfigRegister.",
                  "x-yang-type": "CISCO-ENTITY-EXT-MIB:ConfigRegisterValue",
                  "readOnly": true
                },
                "ceExtSysBootImageList": {
                  "type": "string",
                  "description": "The list of system boot images which\n            can be used for booting.",
                  "x-yang-type": "CISCO-ENTITY-EXT-MIB:BootImageList",
                  "readOnly": true
                },
                "ceExtKickstartImageList": {
                  "type": "string",
                  "description": "The list of system kickstart images which\n            can be used for booting.",
                  "x-yang-type": "CISCO-ENTITY-EXT-MIB:BootImageList",
                  "readOnly": true
                }
              }
            },
            "readOnly": true
          },
          "ceExtEntityLEDEntry": {
            "type": "array",
            "description": "An entry (conceptual row) in the ceExtEntityLEDTable,\n          containing information about an LED on an entity, identified by \n          entPhysicalIndex.",
            "items": {
              "type": "object",
              "properties": {
                "entPhysicalIndex": {
                  "type": "string",
                  "description": "entPhysicalIndex",
                  "x-yang-type": "leafref",
                  "readOnly": true
                },
                "ceExtEntityLEDType": {
                  "type": "string",
                  "description": "The type of LED on this entity.\n            'status' - indicates the entity status.\n            'system' - indicates the overall system status. \n            'active' - the redundancy status of a module, for e.g.\n                       supervisor module. \n            'power'  - indicates sufficient power availability for all \n                       modules.\n            'battery'- indicates the battery status.",
                  "readOnly": true
                },
                "ceExtEntityLEDColor": {
                  "type": "string",
                  "description": "The color of the LED.",
                  "readOnly": true
                }
              }
            },
            "readOnly": true
          },
          "ceExtPhysicalProcessorTable": {
            "type": "object",
            "description": "The ceExtPhysicalProcessorTable extends\n        the ENTITY-MIB entPhysicalTable for modules\n        (Non FRUs(Field Replacable Units) or FRUs).",
            "properties": {
              "ceExtPhysicalProcessorEntry": {
                "type": "array",
                "description": "ceExtPhysicalProcessorEntry",
                "items": {
                  "type": "object",
                  "properties": {
                    "entPhysicalIndex": {
                      "type": "string",
                      "description": "entPhysicalIndex",
                      "x-yang-type": "leafref",
                      "readOnly": true
                    },
                    "ceExtProcessorRam": {
                      "type": "integer",
                      "description": "Total number of bytes of RAM available on the\n            Processor.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "ceExtNVRAMSize": {
                      "type": "integer",
                      "description": "Total number of bytes of NVRAM in the entity.\n            \n            A value of 0 for this object means the entity\n            does not support NVRAM or NVRAM information \n            is not available.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "ceExtNVRAMUsed": {
                      "type": "integer",
                      "description": "Number of bytes of NVRAM in use. This object\n            is irrelevant if ceExtNVRAMSize is 0.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "ceExtProcessorRamOverflow": {
                      "type": "integer",
                      "description": "This object represents the upper 32-bit of ceExtProcessorRam.\n            This object needs to be supported only if the available RAM\n            bytes exceeds 32-bit, otherwise this object value would be set\n            to 0.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "ceExtHCProcessorRam": {
                      "type": "string",
                      "description": "This object represents the total number of bytes of RAM\n            available on the Processor. This object is a 64-bit version\n            of ceExtProcessorRam.",
                      "x-yang-type": "cisco-tc:Unsigned64",
                      "readOnly": true
                    }
                  }
                },
                "readOnly": true
              }
            },
            "readOnly": true
          },
          "ceExtConfigRegTable": {
            "type": "object",
            "description": "The ceExtConfigRegTable extends\n        the ENTITY-MIB entPhysicalTable.",
            "properties": {
              "ceExtConfigRegEntry": {
                "type": "array",
                "description": "A ceExtConfigRegTable entry extends\n          a corresponding entPhysicalTable entry of class\n          module which has a configuration register.\n          \n          Entries are created by the agent at the system power-up\n          or module insertion.\n          \n          Entries are removed when the module is reset or \n          removed.",
                "items": {
                  "type": "object",
                  "properties": {
                    "entPhysicalIndex": {
                      "type": "string",
                      "description": "entPhysicalIndex",
                      "x-yang-type": "leafref",
                      "readOnly": true
                    },
                    "ceExtConfigRegister": {
                      "type": "string",
                      "description": "The value of configuration register with which\n            the processor module booted.",
                      "x-yang-type": "CISCO-ENTITY-EXT-MIB:ConfigRegisterValue",
                      "readOnly": true
                    },
                    "ceExtConfigRegNext": {
                      "type": "string",
                      "description": "The value of configuration register in the\n            processor module at next reboot. Just after \n            the reboot this has the same value as \n            ceExtConfigRegister.",
                      "x-yang-type": "CISCO-ENTITY-EXT-MIB:ConfigRegisterValue",
                      "readOnly": true
                    },
                    "ceExtSysBootImageList": {
                      "type": "string",
                      "description": "The list of system boot images which\n            can be used for booting.",
                      "x-yang-type": "CISCO-ENTITY-EXT-MIB:BootImageList",
                      "readOnly": true
                    },
                    "ceExtKickstartImageList": {
                      "type": "string",
                      "description": "The list of system kickstart images which\n            can be used for booting.",
                      "x-yang-type": "CISCO-ENTITY-EXT-MIB:BootImageList",
                      "readOnly": true
                    }
                  }
                },
                "readOnly": true
              }
            },
            "readOnly": true
          },
          "ceExtEntityLEDTable": {
            "type": "object",
            "description": "A table containing information of LED on an entity.",
            "properties": {
              "ceExtEntityLEDEntry": {
                "type": "array",
                "description": "An entry (conceptual row) in the ceExtEntityLEDTable,\n          containing information about an LED on an entity, identified by \n          entPhysicalIndex.",
                "items": {
                  "type": "object",
                  "properties": {
                    "entPhysicalIndex": {
                      "type": "string",
                      "description": "entPhysicalIndex",
                      "x-yang-type": "leafref",
                      "readOnly": true
                    },
                    "ceExtEntityLEDType": {
                      "type": "string",
                      "description": "The type of LED on this entity.\n            'status' - indicates the entity status.\n            'system' - indicates the overall system status. \n            'active' - the redundancy status of a module, for e.g.\n                       supervisor module. \n            'power'  - indicates sufficient power availability for all \n                       modules.\n            'battery'- indicates the battery status.",
                      "readOnly": true
                    },
                    "ceExtEntityLEDColor": {
                      "type": "string",
                      "description": "The color of the LED.",
                      "readOnly": true
                    }
                  }
                },
                "readOnly": true
              }
            },
            "readOnly": true
          }
        }
      },
      "CISCO-ENTITY-EXT-MIB_ceExtPhysicalProcessorEntry": {
        "type": "array",
        "description": "ceExtPhysicalProcessorEntry",
        "items": {
          "type": "object",
          "properties": {
            "entPhysicalIndex": {
              "type": "string",
              "description": "entPhysicalIndex",
              "x-yang-type": "leafref",
              "readOnly": true
            },
            "ceExtProcessorRam": {
              "type": "integer",
              "description": "Total number of bytes of RAM available on the\n            Processor.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "ceExtNVRAMSize": {
              "type": "integer",
              "description": "Total number of bytes of NVRAM in the entity.\n            \n            A value of 0 for this object means the entity\n            does not support NVRAM or NVRAM information \n            is not available.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "ceExtNVRAMUsed": {
              "type": "integer",
              "description": "Number of bytes of NVRAM in use. This object\n            is irrelevant if ceExtNVRAMSize is 0.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "ceExtProcessorRamOverflow": {
              "type": "integer",
              "description": "This object represents the upper 32-bit of ceExtProcessorRam.\n            This object needs to be supported only if the available RAM\n            bytes exceeds 32-bit, otherwise this object value would be set\n            to 0.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "ceExtHCProcessorRam": {
              "type": "string",
              "description": "This object represents the total number of bytes of RAM\n            available on the Processor. This object is a 64-bit version\n            of ceExtProcessorRam.",
              "x-yang-type": "cisco-tc:Unsigned64",
              "readOnly": true
            }
          }
        }
      },
      "CISCO-ENTITY-EXT-MIB_ceExtConfigRegEntry": {
        "type": "array",
        "description": "A ceExtConfigRegTable entry extends\n          a corresponding entPhysicalTable entry of class\n          module which has a configuration register.\n          \n          Entries are created by the agent at the system power-up\n          or module insertion.\n          \n          Entries are removed when the module is reset or \n          removed.",
        "items": {
          "type": "object",
          "properties": {
            "entPhysicalIndex": {
              "type": "string",
              "description": "entPhysicalIndex",
              "x-yang-type": "leafref",
              "readOnly": true
            },
            "ceExtConfigRegister": {
              "type": "string",
              "description": "The value of configuration register with which\n            the processor module booted.",
              "x-yang-type": "CISCO-ENTITY-EXT-MIB:ConfigRegisterValue",
              "readOnly": true
            },
            "ceExtConfigRegNext": {
              "type": "string",
              "description": "The value of configuration register in the\n            processor module at next reboot. Just after \n            the reboot this has the same value as \n            ceExtConfigRegister.",
              "x-yang-type": "CISCO-ENTITY-EXT-MIB:ConfigRegisterValue",
              "readOnly": true
            },
            "ceExtSysBootImageList": {
              "type": "string",
              "description": "The list of system boot images which\n            can be used for booting.",
              "x-yang-type": "CISCO-ENTITY-EXT-MIB:BootImageList",
              "readOnly": true
            },
            "ceExtKickstartImageList": {
              "type": "string",
              "description": "The list of system kickstart images which\n            can be used for booting.",
              "x-yang-type": "CISCO-ENTITY-EXT-MIB:BootImageList",
              "readOnly": true
            }
          }
        }
      },
      "CISCO-ENTITY-EXT-MIB_ceExtEntityLEDEntry": {
        "type": "array",
        "description": "An entry (conceptual row) in the ceExtEntityLEDTable,\n          containing information about an LED on an entity, identified by \n          entPhysicalIndex.",
        "items": {
          "type": "object",
          "properties": {
            "entPhysicalIndex": {
              "type": "string",
              "description": "entPhysicalIndex",
              "x-yang-type": "leafref",
              "readOnly": true
            },
            "ceExtEntityLEDType": {
              "type": "string",
              "description": "The type of LED on this entity.\n            'status' - indicates the entity status.\n            'system' - indicates the overall system status. \n            'active' - the redundancy status of a module, for e.g.\n                       supervisor module. \n            'power'  - indicates sufficient power availability for all \n                       modules.\n            'battery'- indicates the battery status.",
              "readOnly": true
            },
            "ceExtEntityLEDColor": {
              "type": "string",
              "description": "The color of the LED.",
              "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-ENTITY-EXT-MIB",
      "description": "MIB operations for CISCO-ENTITY-EXT-MIB"
    }
  ],
  "externalDocs": {
    "description": "Cisco SNMP Object Navigator",
    "url": "https://snmp.cloudapps.cisco.com/Support/IOS/do/BrowseMIB.do"
  }
}
