{
  "openapi": "3.0.0",
  "info": {
    "title": "CISCO-CONFIG-MAN-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-CONFIG-MAN-MIB structure](https://jeremycohoe.github.io/cisco-ios-xe-openapi-swagger/yang-trees/CISCO-CONFIG-MAN-MIB.html)",
    "contact": {
      "name": "Cisco DevNet",
      "url": "https://developer.cisco.com"
    },
    "x-yang-module": "CISCO-CONFIG-MAN-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-CONFIG-MAN-MIB:ccmHistory": {
      "get": {
        "summary": "Get ccmHistory data",
        "description": "Retrieve ccmHistory operational data from MIB",
        "tags": [
          "CISCO-CONFIG-MAN-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "description": "The value of sysUpTime when the running configuration\n          was last changed.\n          \n                  If the value of ccmHistoryRunningLastChanged is\n                  greater than ccmHistoryRunningLastSaved, the \n                  configuration has been changed but not saved.",
                  "properties": {
                    "ccmHistoryRunningLastChanged": {
                      "type": "string",
                      "description": "The value of sysUpTime when the running configuration\n          was last changed.\n          \n                  If the value of ccmHistoryRunningLastChanged is\n                  greater than ccmHistoryRunningLastSaved, the \n                  configuration has been changed but not saved.",
                      "x-yang-type": "yang:timeticks"
                    },
                    "ccmHistoryRunningLastSaved": {
                      "type": "string",
                      "description": "The value of sysUpTime when the running configuration\n          was last saved (written).\n          \n          If the value of ccmHistoryRunningLastChanged is \n          greater than ccmHistoryRunningLastSaved, the \n          configuration has been changed but not saved.\n          \n          What constitutes a safe saving of the running\n          configuration is a management policy issue beyond the\n          scope of this MIB.  For some installations, writing the\n          running configuration to a terminal may be a way of\n          capturing and saving it.  Others may use local or\n          remote storage.  Thus ANY write is considered saving\n          for the purposes of the MIB.",
                      "x-yang-type": "yang:timeticks"
                    },
                    "ccmHistoryStartupLastChanged": {
                      "type": "string",
                      "description": "The value of sysUpTime when the startup configuration\n          was last written to.  In general this is the\n          default configuration used when cold starting the\n          system.  It may have been changed by a save of the\n          running configuration or by a copy from elsewhere.",
                      "x-yang-type": "yang:timeticks"
                    },
                    "ccmHistoryMaxEventEntries": {
                      "type": "integer",
                      "description": "The maximum number of entries that can be held in\n          ccmHistoryEventTable.\n          \n          The recommended value for implementations is 10.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "ccmHistoryEventEntriesBumped": {
                      "type": "integer",
                      "description": "The number of times the oldest entry in\n          ccmHistoryEventTable was deleted to make room \n          for a new entry.",
                      "minimum": 0,
                      "maximum": 4294967295
                    }
                  }
                },
                "example": {
                  "CISCO-CONFIG-MAN-MIB:ccmHistory": {
                    "ccmHistoryRunningLastChanged": "example-string",
                    "ccmHistoryRunningLastSaved": "example-string",
                    "ccmHistoryStartupLastChanged": "example-string",
                    "ccmHistoryMaxEventEntries": -2147483648,
                    "ccmHistoryEventEntriesBumped": 0
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-ccmHistory",
        "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": "/ccmHistory",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-CONFIG-MAN-MIB:ccmCLIHistory": {
      "get": {
        "summary": "Get ccmCLIHistory data",
        "description": "Retrieve ccmCLIHistory operational data from MIB",
        "tags": [
          "CISCO-CONFIG-MAN-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "description": "ccmCLIHistory",
                  "properties": {
                    "ccmCLIHistoryMaxCmdEntries": {
                      "type": "integer",
                      "description": "The maximum number of entries that can be held in\n          ccmCLIHistoryCommandTable.\n          \n          The recommended value for implementations is 100.\n          \n          If the number of entries in ccmCLIHistoryCommandTable \n          exceeds the value of this object, old entries will be \n          bumped to make room for new entries.\n          \n          The ccmCLIHistoryCommandTable will not be populated\n          if the value of this object is 0.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "ccmCLIHistoryCmdEntries": {
                      "type": "integer",
                      "description": "The current number of entries in\n          ccmCLIHistoryCommandTable.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "ccmCLIHistoryCmdEntriesAllowed": {
                      "type": "integer",
                      "description": "This object indicates the upper limit on the\n          number of entries allowed in \n          ccmCLIHistoryCommandTable by the managed system.",
                      "minimum": 0,
                      "maximum": 4294967295
                    }
                  }
                },
                "example": {
                  "CISCO-CONFIG-MAN-MIB:ccmCLIHistory": {
                    "ccmCLIHistoryMaxCmdEntries": 0,
                    "ccmCLIHistoryCmdEntries": 0,
                    "ccmCLIHistoryCmdEntriesAllowed": 0
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-ccmCLIHistory",
        "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": "/ccmCLIHistory",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-CONFIG-MAN-MIB:ccmCLICfg": {
      "get": {
        "summary": "Get ccmCLICfg data",
        "description": "Retrieve ccmCLICfg operational data from MIB",
        "tags": [
          "CISCO-CONFIG-MAN-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "description": "This variable indicates whether the system produces\n          the ccmCLIRunningConfigChanged notification. A false \n          value will prevent notifications from being generated \n          by this system.",
                  "properties": {
                    "ccmCLICfgRunConfNotifEnable": {
                      "type": "boolean",
                      "description": "This variable indicates whether the system produces\n          the ccmCLIRunningConfigChanged notification. A false \n          value will prevent notifications from being generated \n          by this system."
                    }
                  }
                },
                "example": {
                  "CISCO-CONFIG-MAN-MIB:ccmCLICfg": {
                    "ccmCLICfgRunConfNotifEnable": true
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-ccmCLICfg",
        "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": "/ccmCLICfg",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-CONFIG-MAN-MIB:ccmCTIDObjects": {
      "get": {
        "summary": "Get ccmCTIDObjects data",
        "description": "Retrieve ccmCTIDObjects operational data from MIB",
        "tags": [
          "CISCO-CONFIG-MAN-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "description": "This object indicates the Config Change Tracking ID which\n          uniquely represents version-incrementing changes to the IOS \n          running configuration.",
                  "properties": {
                    "ccmCTID": {
                      "type": "string",
                      "description": "This object indicates the Config Change Tracking ID which\n          uniquely represents version-incrementing changes to the IOS \n          running configuration.",
                      "x-yang-type": "cisco-tc:Unsigned64"
                    },
                    "ccmCTIDLastChangeTime": {
                      "type": "string",
                      "description": "This object indicates the time when the Config Change Tracking\n          ID last changed.",
                      "x-yang-type": "snmpv2-tc:DateAndTime"
                    },
                    "ccmCTIDWhoChanged": {
                      "type": "string",
                      "description": "This object indicates the user who last reset the Config Change\n          Tracking ID.",
                      "x-yang-type": "snmp-framework:SnmpAdminString"
                    },
                    "ccmCTIDRolledOverNotifEnable": {
                      "type": "boolean",
                      "description": "This variable indicates whether the system produces the\n          ccmCTIDRolledOver notification. A false value will prevent\n          notifications from being generated by this system."
                    }
                  }
                },
                "example": {
                  "CISCO-CONFIG-MAN-MIB:ccmCTIDObjects": {
                    "ccmCTID": "example-string",
                    "ccmCTIDLastChangeTime": "example-string",
                    "ccmCTIDWhoChanged": "example-string",
                    "ccmCTIDRolledOverNotifEnable": true
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-ccmCTIDObjects",
        "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": "/ccmCTIDObjects",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-CONFIG-MAN-MIB:ccmHistoryEventTable": {
      "get": {
        "summary": "Get ccmHistoryEventTable data",
        "description": "Retrieve ccmHistoryEventTable operational data from MIB",
        "tags": [
          "CISCO-CONFIG-MAN-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "description": "A table of configuration events on this router.",
                  "properties": {
                    "ccmHistoryEventEntry": {
                      "type": "array",
                      "description": "Information about a configuration event on this\n          router.",
                      "items": {
                        "type": "object",
                        "properties": {
                          "ccmHistoryEventIndex": {
                            "type": "integer",
                            "description": "A monotonically increasing integer for the sole\n            purpose of indexing events.  When it reaches the \n            maximum value, an extremely unlikely event, the agent \n            wraps the value back to 1 and may flush existing \n            entries.",
                            "minimum": -2147483648,
                            "maximum": 2147483647
                          },
                          "ccmHistoryEventTime": {
                            "type": "string",
                            "description": "The value of sysUpTime when the event occurred.",
                            "x-yang-type": "yang:timeticks"
                          },
                          "ccmHistoryEventCommandSource": {
                            "type": "string",
                            "description": "The source of the command that instigated the event."
                          },
                          "ccmHistoryEventConfigSource": {
                            "type": "string",
                            "description": "The configuration data source for the event.",
                            "x-yang-type": "CISCO-CONFIG-MAN-MIB:HistoryEventMedium"
                          },
                          "ccmHistoryEventConfigDestination": {
                            "type": "string",
                            "description": "The configuration data destination for the event.",
                            "x-yang-type": "CISCO-CONFIG-MAN-MIB:HistoryEventMedium"
                          },
                          "ccmHistoryEventTerminalType": {
                            "type": "string",
                            "description": "If ccmHistoryEventCommandSource is 'commandLine',\n            the terminal type, otherwise 'notApplicable'."
                          },
                          "ccmHistoryEventTerminalNumber": {
                            "type": "integer",
                            "description": "If ccmHistoryEventCommandSource is 'commandLine',\n            the terminal number.  The value is -1 if not available\n            or not applicable.",
                            "minimum": -2147483648,
                            "maximum": 2147483647
                          },
                          "ccmHistoryEventTerminalUser": {
                            "type": "string",
                            "description": "If ccmHistoryEventCommandSource is 'commandLine',\n            the name of the logged in user.  The length is zero if\n            not available or not applicable.",
                            "x-yang-type": "snmpv2-tc:DisplayString"
                          },
                          "ccmHistoryEventTerminalLocation": {
                            "type": "string",
                            "description": "If ccmHistoryEventCommandSource is 'commandLine',\n            the hard-wired location of the terminal or the remote \n            host for an incoming connection.  The length is zero \n            if not available or not applicable.",
                            "x-yang-type": "snmpv2-tc:DisplayString"
                          },
                          "ccmHistoryEventCommandSourceAddress": {
                            "type": "string",
                            "description": "If ccmHistoryEventTerminalType is 'virtual', the\n            internet address of the connected system.\n            \n            If ccmHistoryEventCommandSource is 'snmp', the internet\n            address of the requester.\n            \n            The value is 0.0.0.0 if not available or not \n            applicable.\n            \n            This object is deprecated by\n            ccmHistoryEventCommandSourceAddrRev1",
                            "format": "inet:ipv4-address"
                          },
                          "ccmHistoryEventVirtualHostName": {
                            "type": "string",
                            "description": "If ccmHistoryEventTerminalType is 'virtual', the host\n            name of the connected system.  The length is zero if\n            not available or not applicable.",
                            "x-yang-type": "snmpv2-tc:DisplayString"
                          },
                          "ccmHistoryEventServerAddress": {
                            "type": "string",
                            "description": "If ccmHistoryEventConfigSource or\n            ccmHistoryEventConfigDestination is 'networkTftp' or\n            'networkRcp', the internet address of the storage file\n            server.  The value is 0.0.0.0 if not applicable or not\n                    available.\n                    This object is deprecated by\n                    ccmHistoryEventServerAddrRev1",
                            "format": "inet:ipv4-address"
                          },
                          "ccmHistoryEventFile": {
                            "type": "string",
                            "description": "If ccmHistoryEventConfigSource or\n            ccmHistoryEventConfigDestination is 'networkTftp' or\n            'networkRcp', the configuration file name at the\n            storage file server.  The length is zero if not\n            available or not applicable.",
                            "x-yang-type": "snmpv2-tc:DisplayString"
                          },
                          "ccmHistoryEventRcpUser": {
                            "type": "string",
                            "description": "If ccmHistoryEventConfigSource or\n            ccmHistoryEventConfigDestination is 'networkRcp', the\n            remote user name.  The length is zero if not applicable\n            or not available.",
                            "x-yang-type": "snmpv2-tc:DisplayString"
                          },
                          "ccmHistoryCLICmdEntriesBumped": {
                            "type": "integer",
                            "description": "The number of times the oldest entry in\n            ccmCLIHistoryCommandTable with first index as \n            ccmHistoryEventIndex was deleted to make \n            room for a new entry.\n            \n            This object is applicable only if \n            ccmHistoryEventCommandSource has a value \n            of 'commandLine'.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "ccmHistoryEventCommandSourceAddrType": {
                            "type": "string",
                            "description": "This object indicates the transport type of the\n            address contained in\n            ccmHistoryEventCommandSourceAddrRev1.\n            \n            The value will be zero if not available or not\n            applicable.",
                            "x-yang-type": "inet-address:InetAddressType"
                          },
                          "ccmHistoryEventCommandSourceAddrRev1": {
                            "type": "string",
                            "description": "If ccmHistoryEventTerminalType is 'virtual', the\n            internet address of the connected system.\n            \n            If ccmHistoryEventCommandSource is 'snmp', the\n            internet address of the requester.\n            \n            The value of all bit's is zero  if not available or\n            not applicable.\n            \n            The Format of this address depends on the value of the\n            ccmHistoryEventCommandSourceAddrType object.\n            \n            This object deprecates\n            ccmHistoryEventCommandSourceAddress",
                            "x-yang-type": "inet-address:InetAddress"
                          },
                          "ccmHistoryEventServerAddrType": {
                            "type": "string",
                            "description": "This object indicates the transport type of the\n            address contained in ccmHistoryEventServerAddrRev1.\n            \n            The value will be zero if not available or not\n            aplicable.",
                            "x-yang-type": "inet-address:InetAddressType"
                          },
                          "ccmHistoryEventServerAddrRev1": {
                            "type": "string",
                            "description": "If ccmHistoryEventConfigSource or\n            ccmHistoryEventConfigDestination is 'networkTftp' or\n            'networkRcp', the internet address of the storage file\n            server. \n            \n            The value of all bits is 0s if not applicable or not\n            available.\n            \n            The Format of this address depends on the value of the\n            ccmHistoryEventServerAddrType object.\n            \n            This object deprecates ccmHistoryEventServerAddress.",
                            "x-yang-type": "inet-address:InetAddress"
                          }
                        }
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-CONFIG-MAN-MIB:ccmHistoryEventTable": {
                    "ccmHistoryEventEntry": [
                      {
                        "ccmHistoryEventIndex": 1,
                        "ccmHistoryEventTime": "example-string",
                        "ccmHistoryEventCommandSource": "example-string",
                        "ccmHistoryEventConfigSource": "example-string",
                        "ccmHistoryEventConfigDestination": "example-string",
                        "ccmHistoryEventTerminalType": "ethernetCsmacd(6)",
                        "ccmHistoryEventTerminalNumber": -2147483648,
                        "ccmHistoryEventTerminalUser": "example-string",
                        "ccmHistoryEventTerminalLocation": "example-string",
                        "ccmHistoryEventCommandSourceAddress": "192.168.1.1",
                        "ccmHistoryEventVirtualHostName": "interface-1",
                        "ccmHistoryEventServerAddress": "192.168.1.1",
                        "ccmHistoryEventFile": "example-string",
                        "ccmHistoryEventRcpUser": "example-string",
                        "ccmHistoryCLICmdEntriesBumped": 0,
                        "ccmHistoryEventCommandSourceAddrType": "192.168.1.1",
                        "ccmHistoryEventCommandSourceAddrRev1": "192.168.1.1",
                        "ccmHistoryEventServerAddrType": "192.168.1.1",
                        "ccmHistoryEventServerAddrRev1": "192.168.1.1"
                      },
                      {
                        "ccmHistoryEventIndex": 2,
                        "ccmHistoryEventTime": "example-string",
                        "ccmHistoryEventCommandSource": "example-string",
                        "ccmHistoryEventConfigSource": "example-string",
                        "ccmHistoryEventConfigDestination": "example-string",
                        "ccmHistoryEventTerminalType": "ethernetCsmacd(6)",
                        "ccmHistoryEventTerminalNumber": -2147483648,
                        "ccmHistoryEventTerminalUser": "example-string",
                        "ccmHistoryEventTerminalLocation": "example-string",
                        "ccmHistoryEventCommandSourceAddress": "192.168.1.1",
                        "ccmHistoryEventVirtualHostName": "interface-1",
                        "ccmHistoryEventServerAddress": "192.168.1.1",
                        "ccmHistoryEventFile": "example-string",
                        "ccmHistoryEventRcpUser": "example-string",
                        "ccmHistoryCLICmdEntriesBumped": 0,
                        "ccmHistoryEventCommandSourceAddrType": "192.168.1.1",
                        "ccmHistoryEventCommandSourceAddrRev1": "192.168.1.1",
                        "ccmHistoryEventServerAddrType": "192.168.1.1",
                        "ccmHistoryEventServerAddrRev1": "192.168.1.1"
                      },
                      {
                        "ccmHistoryEventIndex": 3,
                        "ccmHistoryEventTime": "example-string",
                        "ccmHistoryEventCommandSource": "example-string",
                        "ccmHistoryEventConfigSource": "example-string",
                        "ccmHistoryEventConfigDestination": "example-string",
                        "ccmHistoryEventTerminalType": "ethernetCsmacd(6)",
                        "ccmHistoryEventTerminalNumber": -2147483648,
                        "ccmHistoryEventTerminalUser": "example-string",
                        "ccmHistoryEventTerminalLocation": "example-string",
                        "ccmHistoryEventCommandSourceAddress": "192.168.1.1",
                        "ccmHistoryEventVirtualHostName": "interface-1",
                        "ccmHistoryEventServerAddress": "192.168.1.1",
                        "ccmHistoryEventFile": "example-string",
                        "ccmHistoryEventRcpUser": "example-string",
                        "ccmHistoryCLICmdEntriesBumped": 0,
                        "ccmHistoryEventCommandSourceAddrType": "192.168.1.1",
                        "ccmHistoryEventCommandSourceAddrRev1": "192.168.1.1",
                        "ccmHistoryEventServerAddrType": "192.168.1.1",
                        "ccmHistoryEventServerAddrRev1": "192.168.1.1"
                      }
                    ]
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-ccmHistoryEventTable",
        "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": "/ccmHistoryEventTable",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-CONFIG-MAN-MIB:ccmHistoryEventTable/ccmHistoryEventEntry": {
      "get": {
        "summary": "Get ccmHistoryEventEntry list",
        "description": "Retrieve list of ccmHistoryEventEntry entries from MIB",
        "tags": [
          "CISCO-CONFIG-MAN-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "Information about a configuration event on this\n          router.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "ccmHistoryEventIndex": {
                        "type": "integer",
                        "description": "A monotonically increasing integer for the sole\n            purpose of indexing events.  When it reaches the \n            maximum value, an extremely unlikely event, the agent \n            wraps the value back to 1 and may flush existing \n            entries.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "ccmHistoryEventTime": {
                        "type": "string",
                        "description": "The value of sysUpTime when the event occurred.",
                        "x-yang-type": "yang:timeticks"
                      },
                      "ccmHistoryEventCommandSource": {
                        "type": "string",
                        "description": "The source of the command that instigated the event."
                      },
                      "ccmHistoryEventConfigSource": {
                        "type": "string",
                        "description": "The configuration data source for the event.",
                        "x-yang-type": "CISCO-CONFIG-MAN-MIB:HistoryEventMedium"
                      },
                      "ccmHistoryEventConfigDestination": {
                        "type": "string",
                        "description": "The configuration data destination for the event.",
                        "x-yang-type": "CISCO-CONFIG-MAN-MIB:HistoryEventMedium"
                      },
                      "ccmHistoryEventTerminalType": {
                        "type": "string",
                        "description": "If ccmHistoryEventCommandSource is 'commandLine',\n            the terminal type, otherwise 'notApplicable'."
                      },
                      "ccmHistoryEventTerminalNumber": {
                        "type": "integer",
                        "description": "If ccmHistoryEventCommandSource is 'commandLine',\n            the terminal number.  The value is -1 if not available\n            or not applicable.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "ccmHistoryEventTerminalUser": {
                        "type": "string",
                        "description": "If ccmHistoryEventCommandSource is 'commandLine',\n            the name of the logged in user.  The length is zero if\n            not available or not applicable.",
                        "x-yang-type": "snmpv2-tc:DisplayString"
                      },
                      "ccmHistoryEventTerminalLocation": {
                        "type": "string",
                        "description": "If ccmHistoryEventCommandSource is 'commandLine',\n            the hard-wired location of the terminal or the remote \n            host for an incoming connection.  The length is zero \n            if not available or not applicable.",
                        "x-yang-type": "snmpv2-tc:DisplayString"
                      },
                      "ccmHistoryEventCommandSourceAddress": {
                        "type": "string",
                        "description": "If ccmHistoryEventTerminalType is 'virtual', the\n            internet address of the connected system.\n            \n            If ccmHistoryEventCommandSource is 'snmp', the internet\n            address of the requester.\n            \n            The value is 0.0.0.0 if not available or not \n            applicable.\n            \n            This object is deprecated by\n            ccmHistoryEventCommandSourceAddrRev1",
                        "format": "inet:ipv4-address"
                      },
                      "ccmHistoryEventVirtualHostName": {
                        "type": "string",
                        "description": "If ccmHistoryEventTerminalType is 'virtual', the host\n            name of the connected system.  The length is zero if\n            not available or not applicable.",
                        "x-yang-type": "snmpv2-tc:DisplayString"
                      },
                      "ccmHistoryEventServerAddress": {
                        "type": "string",
                        "description": "If ccmHistoryEventConfigSource or\n            ccmHistoryEventConfigDestination is 'networkTftp' or\n            'networkRcp', the internet address of the storage file\n            server.  The value is 0.0.0.0 if not applicable or not\n                    available.\n                    This object is deprecated by\n                    ccmHistoryEventServerAddrRev1",
                        "format": "inet:ipv4-address"
                      },
                      "ccmHistoryEventFile": {
                        "type": "string",
                        "description": "If ccmHistoryEventConfigSource or\n            ccmHistoryEventConfigDestination is 'networkTftp' or\n            'networkRcp', the configuration file name at the\n            storage file server.  The length is zero if not\n            available or not applicable.",
                        "x-yang-type": "snmpv2-tc:DisplayString"
                      },
                      "ccmHistoryEventRcpUser": {
                        "type": "string",
                        "description": "If ccmHistoryEventConfigSource or\n            ccmHistoryEventConfigDestination is 'networkRcp', the\n            remote user name.  The length is zero if not applicable\n            or not available.",
                        "x-yang-type": "snmpv2-tc:DisplayString"
                      },
                      "ccmHistoryCLICmdEntriesBumped": {
                        "type": "integer",
                        "description": "The number of times the oldest entry in\n            ccmCLIHistoryCommandTable with first index as \n            ccmHistoryEventIndex was deleted to make \n            room for a new entry.\n            \n            This object is applicable only if \n            ccmHistoryEventCommandSource has a value \n            of 'commandLine'.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "ccmHistoryEventCommandSourceAddrType": {
                        "type": "string",
                        "description": "This object indicates the transport type of the\n            address contained in\n            ccmHistoryEventCommandSourceAddrRev1.\n            \n            The value will be zero if not available or not\n            applicable.",
                        "x-yang-type": "inet-address:InetAddressType"
                      },
                      "ccmHistoryEventCommandSourceAddrRev1": {
                        "type": "string",
                        "description": "If ccmHistoryEventTerminalType is 'virtual', the\n            internet address of the connected system.\n            \n            If ccmHistoryEventCommandSource is 'snmp', the\n            internet address of the requester.\n            \n            The value of all bit's is zero  if not available or\n            not applicable.\n            \n            The Format of this address depends on the value of the\n            ccmHistoryEventCommandSourceAddrType object.\n            \n            This object deprecates\n            ccmHistoryEventCommandSourceAddress",
                        "x-yang-type": "inet-address:InetAddress"
                      },
                      "ccmHistoryEventServerAddrType": {
                        "type": "string",
                        "description": "This object indicates the transport type of the\n            address contained in ccmHistoryEventServerAddrRev1.\n            \n            The value will be zero if not available or not\n            aplicable.",
                        "x-yang-type": "inet-address:InetAddressType"
                      },
                      "ccmHistoryEventServerAddrRev1": {
                        "type": "string",
                        "description": "If ccmHistoryEventConfigSource or\n            ccmHistoryEventConfigDestination is 'networkTftp' or\n            'networkRcp', the internet address of the storage file\n            server. \n            \n            The value of all bits is 0s if not applicable or not\n            available.\n            \n            The Format of this address depends on the value of the\n            ccmHistoryEventServerAddrType object.\n            \n            This object deprecates ccmHistoryEventServerAddress.",
                        "x-yang-type": "inet-address:InetAddress"
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-CONFIG-MAN-MIB:ccmHistoryEventEntry": [
                    {
                      "ccmHistoryEventIndex": 1,
                      "ccmHistoryEventTime": "example-string",
                      "ccmHistoryEventCommandSource": "example-string",
                      "ccmHistoryEventConfigSource": "example-string",
                      "ccmHistoryEventConfigDestination": "example-string",
                      "ccmHistoryEventTerminalType": "ethernetCsmacd(6)",
                      "ccmHistoryEventTerminalNumber": -2147483648,
                      "ccmHistoryEventTerminalUser": "example-string",
                      "ccmHistoryEventTerminalLocation": "example-string",
                      "ccmHistoryEventCommandSourceAddress": "192.168.1.1",
                      "ccmHistoryEventVirtualHostName": "interface-1",
                      "ccmHistoryEventServerAddress": "192.168.1.1",
                      "ccmHistoryEventFile": "example-string",
                      "ccmHistoryEventRcpUser": "example-string",
                      "ccmHistoryCLICmdEntriesBumped": 0,
                      "ccmHistoryEventCommandSourceAddrType": "192.168.1.1",
                      "ccmHistoryEventCommandSourceAddrRev1": "192.168.1.1",
                      "ccmHistoryEventServerAddrType": "192.168.1.1",
                      "ccmHistoryEventServerAddrRev1": "192.168.1.1"
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-ccmHistoryEventEntry",
        "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": "/ccmHistoryEventTable/ccmHistoryEventEntry",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-CONFIG-MAN-MIB:ccmHistoryEventTable/ccmHistoryEventEntry={ccmHistoryEventIndex}": {
      "get": {
        "summary": "Get ccmHistoryEventEntry entry",
        "description": "Retrieve specific ccmHistoryEventEntry entry by key from MIB",
        "tags": [
          "CISCO-CONFIG-MAN-MIB"
        ],
        "parameters": [
          {
            "name": "ccmHistoryEventIndex",
            "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": {
                    "ccmHistoryEventIndex": {
                      "type": "integer",
                      "description": "A monotonically increasing integer for the sole\n            purpose of indexing events.  When it reaches the \n            maximum value, an extremely unlikely event, the agent \n            wraps the value back to 1 and may flush existing \n            entries.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "ccmHistoryEventTime": {
                      "type": "string",
                      "description": "The value of sysUpTime when the event occurred.",
                      "x-yang-type": "yang:timeticks"
                    },
                    "ccmHistoryEventCommandSource": {
                      "type": "string",
                      "description": "The source of the command that instigated the event."
                    },
                    "ccmHistoryEventConfigSource": {
                      "type": "string",
                      "description": "The configuration data source for the event.",
                      "x-yang-type": "CISCO-CONFIG-MAN-MIB:HistoryEventMedium"
                    },
                    "ccmHistoryEventConfigDestination": {
                      "type": "string",
                      "description": "The configuration data destination for the event.",
                      "x-yang-type": "CISCO-CONFIG-MAN-MIB:HistoryEventMedium"
                    },
                    "ccmHistoryEventTerminalType": {
                      "type": "string",
                      "description": "If ccmHistoryEventCommandSource is 'commandLine',\n            the terminal type, otherwise 'notApplicable'."
                    },
                    "ccmHistoryEventTerminalNumber": {
                      "type": "integer",
                      "description": "If ccmHistoryEventCommandSource is 'commandLine',\n            the terminal number.  The value is -1 if not available\n            or not applicable.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "ccmHistoryEventTerminalUser": {
                      "type": "string",
                      "description": "If ccmHistoryEventCommandSource is 'commandLine',\n            the name of the logged in user.  The length is zero if\n            not available or not applicable.",
                      "x-yang-type": "snmpv2-tc:DisplayString"
                    },
                    "ccmHistoryEventTerminalLocation": {
                      "type": "string",
                      "description": "If ccmHistoryEventCommandSource is 'commandLine',\n            the hard-wired location of the terminal or the remote \n            host for an incoming connection.  The length is zero \n            if not available or not applicable.",
                      "x-yang-type": "snmpv2-tc:DisplayString"
                    },
                    "ccmHistoryEventCommandSourceAddress": {
                      "type": "string",
                      "description": "If ccmHistoryEventTerminalType is 'virtual', the\n            internet address of the connected system.\n            \n            If ccmHistoryEventCommandSource is 'snmp', the internet\n            address of the requester.\n            \n            The value is 0.0.0.0 if not available or not \n            applicable.\n            \n            This object is deprecated by\n            ccmHistoryEventCommandSourceAddrRev1",
                      "format": "inet:ipv4-address"
                    },
                    "ccmHistoryEventVirtualHostName": {
                      "type": "string",
                      "description": "If ccmHistoryEventTerminalType is 'virtual', the host\n            name of the connected system.  The length is zero if\n            not available or not applicable.",
                      "x-yang-type": "snmpv2-tc:DisplayString"
                    },
                    "ccmHistoryEventServerAddress": {
                      "type": "string",
                      "description": "If ccmHistoryEventConfigSource or\n            ccmHistoryEventConfigDestination is 'networkTftp' or\n            'networkRcp', the internet address of the storage file\n            server.  The value is 0.0.0.0 if not applicable or not\n                    available.\n                    This object is deprecated by\n                    ccmHistoryEventServerAddrRev1",
                      "format": "inet:ipv4-address"
                    },
                    "ccmHistoryEventFile": {
                      "type": "string",
                      "description": "If ccmHistoryEventConfigSource or\n            ccmHistoryEventConfigDestination is 'networkTftp' or\n            'networkRcp', the configuration file name at the\n            storage file server.  The length is zero if not\n            available or not applicable.",
                      "x-yang-type": "snmpv2-tc:DisplayString"
                    },
                    "ccmHistoryEventRcpUser": {
                      "type": "string",
                      "description": "If ccmHistoryEventConfigSource or\n            ccmHistoryEventConfigDestination is 'networkRcp', the\n            remote user name.  The length is zero if not applicable\n            or not available.",
                      "x-yang-type": "snmpv2-tc:DisplayString"
                    },
                    "ccmHistoryCLICmdEntriesBumped": {
                      "type": "integer",
                      "description": "The number of times the oldest entry in\n            ccmCLIHistoryCommandTable with first index as \n            ccmHistoryEventIndex was deleted to make \n            room for a new entry.\n            \n            This object is applicable only if \n            ccmHistoryEventCommandSource has a value \n            of 'commandLine'.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "ccmHistoryEventCommandSourceAddrType": {
                      "type": "string",
                      "description": "This object indicates the transport type of the\n            address contained in\n            ccmHistoryEventCommandSourceAddrRev1.\n            \n            The value will be zero if not available or not\n            applicable.",
                      "x-yang-type": "inet-address:InetAddressType"
                    },
                    "ccmHistoryEventCommandSourceAddrRev1": {
                      "type": "string",
                      "description": "If ccmHistoryEventTerminalType is 'virtual', the\n            internet address of the connected system.\n            \n            If ccmHistoryEventCommandSource is 'snmp', the\n            internet address of the requester.\n            \n            The value of all bit's is zero  if not available or\n            not applicable.\n            \n            The Format of this address depends on the value of the\n            ccmHistoryEventCommandSourceAddrType object.\n            \n            This object deprecates\n            ccmHistoryEventCommandSourceAddress",
                      "x-yang-type": "inet-address:InetAddress"
                    },
                    "ccmHistoryEventServerAddrType": {
                      "type": "string",
                      "description": "This object indicates the transport type of the\n            address contained in ccmHistoryEventServerAddrRev1.\n            \n            The value will be zero if not available or not\n            aplicable.",
                      "x-yang-type": "inet-address:InetAddressType"
                    },
                    "ccmHistoryEventServerAddrRev1": {
                      "type": "string",
                      "description": "If ccmHistoryEventConfigSource or\n            ccmHistoryEventConfigDestination is 'networkTftp' or\n            'networkRcp', the internet address of the storage file\n            server. \n            \n            The value of all bits is 0s if not applicable or not\n            available.\n            \n            The Format of this address depends on the value of the\n            ccmHistoryEventServerAddrType object.\n            \n            This object deprecates ccmHistoryEventServerAddress.",
                      "x-yang-type": "inet-address:InetAddress"
                    }
                  }
                },
                "example": {
                  "CISCO-CONFIG-MAN-MIB:ccmHistoryEventEntry": {
                    "ccmHistoryEventIndex": 1,
                    "ccmHistoryEventTime": "example-string",
                    "ccmHistoryEventCommandSource": "example-string",
                    "ccmHistoryEventConfigSource": "example-string",
                    "ccmHistoryEventConfigDestination": "example-string",
                    "ccmHistoryEventTerminalType": "ethernetCsmacd(6)",
                    "ccmHistoryEventTerminalNumber": -2147483648,
                    "ccmHistoryEventTerminalUser": "example-string",
                    "ccmHistoryEventTerminalLocation": "example-string",
                    "ccmHistoryEventCommandSourceAddress": "192.168.1.1",
                    "ccmHistoryEventVirtualHostName": "interface-1",
                    "ccmHistoryEventServerAddress": "192.168.1.1",
                    "ccmHistoryEventFile": "example-string",
                    "ccmHistoryEventRcpUser": "example-string",
                    "ccmHistoryCLICmdEntriesBumped": 0,
                    "ccmHistoryEventCommandSourceAddrType": "192.168.1.1",
                    "ccmHistoryEventCommandSourceAddrRev1": "192.168.1.1",
                    "ccmHistoryEventServerAddrType": "192.168.1.1",
                    "ccmHistoryEventServerAddrRev1": "192.168.1.1"
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-ccmHistoryEventEntry-2"
      },
      "x-yang-path": "/ccmHistoryEventTable/ccmHistoryEventEntry={ccmHistoryEventIndex}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "ccmHistoryEventIndex"
      ]
    },
    "/data/CISCO-CONFIG-MAN-MIB:ccmCLIHistoryCommandTable": {
      "get": {
        "summary": "Get ccmCLIHistoryCommandTable data",
        "description": "Retrieve ccmCLIHistoryCommandTable operational data from MIB",
        "tags": [
          "CISCO-CONFIG-MAN-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "description": "A table of CLI commands that took effect during\n        configuration events.",
                  "properties": {
                    "ccmCLIHistoryCommandEntry": {
                      "type": "array",
                      "description": "ccmCLIHistoryCommandEntry",
                      "items": {
                        "type": "object",
                        "properties": {
                          "ccmHistoryEventIndex": {
                            "type": "string",
                            "description": "ccmHistoryEventIndex",
                            "x-yang-type": "leafref"
                          },
                          "ccmCLIHistoryCommandIndex": {
                            "type": "integer",
                            "description": "A monotonically increasing integer for the\n            purpose of indexing CLI commands which took effect\n            during a configuration event.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "ccmCLIHistoryCommand": {
                            "type": "string",
                            "description": "The CLI command entered which took effect\n            during the configuration event pointed by \n            ccmHistoryEventIndex.",
                            "x-yang-type": "snmpv2-tc:DisplayString"
                          }
                        }
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-CONFIG-MAN-MIB:ccmCLIHistoryCommandTable": {
                    "ccmCLIHistoryCommandEntry": [
                      {
                        "ccmHistoryEventIndex": "1",
                        "ccmCLIHistoryCommandIndex": 1,
                        "ccmCLIHistoryCommand": "example-string"
                      },
                      {
                        "ccmHistoryEventIndex": "2",
                        "ccmCLIHistoryCommandIndex": 2,
                        "ccmCLIHistoryCommand": "example-string"
                      },
                      {
                        "ccmHistoryEventIndex": "3",
                        "ccmCLIHistoryCommandIndex": 3,
                        "ccmCLIHistoryCommand": "example-string"
                      }
                    ]
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-ccmCLIHistoryCommandTable",
        "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": "/ccmCLIHistoryCommandTable",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-CONFIG-MAN-MIB:ccmCLIHistoryCommandTable/ccmCLIHistoryCommandEntry": {
      "get": {
        "summary": "Get ccmCLIHistoryCommandEntry list",
        "description": "Retrieve list of ccmCLIHistoryCommandEntry entries from MIB",
        "tags": [
          "CISCO-CONFIG-MAN-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "ccmCLIHistoryCommandEntry",
                  "items": {
                    "type": "object",
                    "properties": {
                      "ccmHistoryEventIndex": {
                        "type": "string",
                        "description": "ccmHistoryEventIndex",
                        "x-yang-type": "leafref"
                      },
                      "ccmCLIHistoryCommandIndex": {
                        "type": "integer",
                        "description": "A monotonically increasing integer for the\n            purpose of indexing CLI commands which took effect\n            during a configuration event.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "ccmCLIHistoryCommand": {
                        "type": "string",
                        "description": "The CLI command entered which took effect\n            during the configuration event pointed by \n            ccmHistoryEventIndex.",
                        "x-yang-type": "snmpv2-tc:DisplayString"
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-CONFIG-MAN-MIB:ccmCLIHistoryCommandEntry": [
                    {
                      "ccmHistoryEventIndex": "example-string",
                      "ccmCLIHistoryCommandIndex": 1,
                      "ccmCLIHistoryCommand": "example-string"
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-ccmCLIHistoryCommandEntry",
        "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": "/ccmCLIHistoryCommandTable/ccmCLIHistoryCommandEntry",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-CONFIG-MAN-MIB:ccmHistoryEventEntry": {
      "get": {
        "summary": "Get ccmHistoryEventEntry list",
        "description": "Retrieve list of ccmHistoryEventEntry entries from MIB",
        "tags": [
          "CISCO-CONFIG-MAN-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "Information about a configuration event on this\n          router.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "ccmHistoryEventIndex": {
                        "type": "integer",
                        "description": "A monotonically increasing integer for the sole\n            purpose of indexing events.  When it reaches the \n            maximum value, an extremely unlikely event, the agent \n            wraps the value back to 1 and may flush existing \n            entries.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "ccmHistoryEventTime": {
                        "type": "string",
                        "description": "The value of sysUpTime when the event occurred.",
                        "x-yang-type": "yang:timeticks"
                      },
                      "ccmHistoryEventCommandSource": {
                        "type": "string",
                        "description": "The source of the command that instigated the event."
                      },
                      "ccmHistoryEventConfigSource": {
                        "type": "string",
                        "description": "The configuration data source for the event.",
                        "x-yang-type": "CISCO-CONFIG-MAN-MIB:HistoryEventMedium"
                      },
                      "ccmHistoryEventConfigDestination": {
                        "type": "string",
                        "description": "The configuration data destination for the event.",
                        "x-yang-type": "CISCO-CONFIG-MAN-MIB:HistoryEventMedium"
                      },
                      "ccmHistoryEventTerminalType": {
                        "type": "string",
                        "description": "If ccmHistoryEventCommandSource is 'commandLine',\n            the terminal type, otherwise 'notApplicable'."
                      },
                      "ccmHistoryEventTerminalNumber": {
                        "type": "integer",
                        "description": "If ccmHistoryEventCommandSource is 'commandLine',\n            the terminal number.  The value is -1 if not available\n            or not applicable.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "ccmHistoryEventTerminalUser": {
                        "type": "string",
                        "description": "If ccmHistoryEventCommandSource is 'commandLine',\n            the name of the logged in user.  The length is zero if\n            not available or not applicable.",
                        "x-yang-type": "snmpv2-tc:DisplayString"
                      },
                      "ccmHistoryEventTerminalLocation": {
                        "type": "string",
                        "description": "If ccmHistoryEventCommandSource is 'commandLine',\n            the hard-wired location of the terminal or the remote \n            host for an incoming connection.  The length is zero \n            if not available or not applicable.",
                        "x-yang-type": "snmpv2-tc:DisplayString"
                      },
                      "ccmHistoryEventCommandSourceAddress": {
                        "type": "string",
                        "description": "If ccmHistoryEventTerminalType is 'virtual', the\n            internet address of the connected system.\n            \n            If ccmHistoryEventCommandSource is 'snmp', the internet\n            address of the requester.\n            \n            The value is 0.0.0.0 if not available or not \n            applicable.\n            \n            This object is deprecated by\n            ccmHistoryEventCommandSourceAddrRev1",
                        "format": "inet:ipv4-address"
                      },
                      "ccmHistoryEventVirtualHostName": {
                        "type": "string",
                        "description": "If ccmHistoryEventTerminalType is 'virtual', the host\n            name of the connected system.  The length is zero if\n            not available or not applicable.",
                        "x-yang-type": "snmpv2-tc:DisplayString"
                      },
                      "ccmHistoryEventServerAddress": {
                        "type": "string",
                        "description": "If ccmHistoryEventConfigSource or\n            ccmHistoryEventConfigDestination is 'networkTftp' or\n            'networkRcp', the internet address of the storage file\n            server.  The value is 0.0.0.0 if not applicable or not\n                    available.\n                    This object is deprecated by\n                    ccmHistoryEventServerAddrRev1",
                        "format": "inet:ipv4-address"
                      },
                      "ccmHistoryEventFile": {
                        "type": "string",
                        "description": "If ccmHistoryEventConfigSource or\n            ccmHistoryEventConfigDestination is 'networkTftp' or\n            'networkRcp', the configuration file name at the\n            storage file server.  The length is zero if not\n            available or not applicable.",
                        "x-yang-type": "snmpv2-tc:DisplayString"
                      },
                      "ccmHistoryEventRcpUser": {
                        "type": "string",
                        "description": "If ccmHistoryEventConfigSource or\n            ccmHistoryEventConfigDestination is 'networkRcp', the\n            remote user name.  The length is zero if not applicable\n            or not available.",
                        "x-yang-type": "snmpv2-tc:DisplayString"
                      },
                      "ccmHistoryCLICmdEntriesBumped": {
                        "type": "integer",
                        "description": "The number of times the oldest entry in\n            ccmCLIHistoryCommandTable with first index as \n            ccmHistoryEventIndex was deleted to make \n            room for a new entry.\n            \n            This object is applicable only if \n            ccmHistoryEventCommandSource has a value \n            of 'commandLine'.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "ccmHistoryEventCommandSourceAddrType": {
                        "type": "string",
                        "description": "This object indicates the transport type of the\n            address contained in\n            ccmHistoryEventCommandSourceAddrRev1.\n            \n            The value will be zero if not available or not\n            applicable.",
                        "x-yang-type": "inet-address:InetAddressType"
                      },
                      "ccmHistoryEventCommandSourceAddrRev1": {
                        "type": "string",
                        "description": "If ccmHistoryEventTerminalType is 'virtual', the\n            internet address of the connected system.\n            \n            If ccmHistoryEventCommandSource is 'snmp', the\n            internet address of the requester.\n            \n            The value of all bit's is zero  if not available or\n            not applicable.\n            \n            The Format of this address depends on the value of the\n            ccmHistoryEventCommandSourceAddrType object.\n            \n            This object deprecates\n            ccmHistoryEventCommandSourceAddress",
                        "x-yang-type": "inet-address:InetAddress"
                      },
                      "ccmHistoryEventServerAddrType": {
                        "type": "string",
                        "description": "This object indicates the transport type of the\n            address contained in ccmHistoryEventServerAddrRev1.\n            \n            The value will be zero if not available or not\n            aplicable.",
                        "x-yang-type": "inet-address:InetAddressType"
                      },
                      "ccmHistoryEventServerAddrRev1": {
                        "type": "string",
                        "description": "If ccmHistoryEventConfigSource or\n            ccmHistoryEventConfigDestination is 'networkTftp' or\n            'networkRcp', the internet address of the storage file\n            server. \n            \n            The value of all bits is 0s if not applicable or not\n            available.\n            \n            The Format of this address depends on the value of the\n            ccmHistoryEventServerAddrType object.\n            \n            This object deprecates ccmHistoryEventServerAddress.",
                        "x-yang-type": "inet-address:InetAddress"
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-CONFIG-MAN-MIB:ccmHistoryEventEntry": [
                    {
                      "ccmHistoryEventIndex": 1,
                      "ccmHistoryEventTime": "example-string",
                      "ccmHistoryEventCommandSource": "example-string",
                      "ccmHistoryEventConfigSource": "example-string",
                      "ccmHistoryEventConfigDestination": "example-string",
                      "ccmHistoryEventTerminalType": "ethernetCsmacd(6)",
                      "ccmHistoryEventTerminalNumber": -2147483648,
                      "ccmHistoryEventTerminalUser": "example-string",
                      "ccmHistoryEventTerminalLocation": "example-string",
                      "ccmHistoryEventCommandSourceAddress": "192.168.1.1",
                      "ccmHistoryEventVirtualHostName": "interface-1",
                      "ccmHistoryEventServerAddress": "192.168.1.1",
                      "ccmHistoryEventFile": "example-string",
                      "ccmHistoryEventRcpUser": "example-string",
                      "ccmHistoryCLICmdEntriesBumped": 0,
                      "ccmHistoryEventCommandSourceAddrType": "192.168.1.1",
                      "ccmHistoryEventCommandSourceAddrRev1": "192.168.1.1",
                      "ccmHistoryEventServerAddrType": "192.168.1.1",
                      "ccmHistoryEventServerAddrRev1": "192.168.1.1"
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-ccmHistoryEventEntry-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": "/ccmHistoryEventEntry",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-CONFIG-MAN-MIB:ccmHistoryEventEntry={ccmHistoryEventIndex}": {
      "get": {
        "summary": "Get ccmHistoryEventEntry entry",
        "description": "Retrieve specific ccmHistoryEventEntry entry by key from MIB",
        "tags": [
          "CISCO-CONFIG-MAN-MIB"
        ],
        "parameters": [
          {
            "name": "ccmHistoryEventIndex",
            "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": {
                    "ccmHistoryEventIndex": {
                      "type": "integer",
                      "description": "A monotonically increasing integer for the sole\n            purpose of indexing events.  When it reaches the \n            maximum value, an extremely unlikely event, the agent \n            wraps the value back to 1 and may flush existing \n            entries.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "ccmHistoryEventTime": {
                      "type": "string",
                      "description": "The value of sysUpTime when the event occurred.",
                      "x-yang-type": "yang:timeticks"
                    },
                    "ccmHistoryEventCommandSource": {
                      "type": "string",
                      "description": "The source of the command that instigated the event."
                    },
                    "ccmHistoryEventConfigSource": {
                      "type": "string",
                      "description": "The configuration data source for the event.",
                      "x-yang-type": "CISCO-CONFIG-MAN-MIB:HistoryEventMedium"
                    },
                    "ccmHistoryEventConfigDestination": {
                      "type": "string",
                      "description": "The configuration data destination for the event.",
                      "x-yang-type": "CISCO-CONFIG-MAN-MIB:HistoryEventMedium"
                    },
                    "ccmHistoryEventTerminalType": {
                      "type": "string",
                      "description": "If ccmHistoryEventCommandSource is 'commandLine',\n            the terminal type, otherwise 'notApplicable'."
                    },
                    "ccmHistoryEventTerminalNumber": {
                      "type": "integer",
                      "description": "If ccmHistoryEventCommandSource is 'commandLine',\n            the terminal number.  The value is -1 if not available\n            or not applicable.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "ccmHistoryEventTerminalUser": {
                      "type": "string",
                      "description": "If ccmHistoryEventCommandSource is 'commandLine',\n            the name of the logged in user.  The length is zero if\n            not available or not applicable.",
                      "x-yang-type": "snmpv2-tc:DisplayString"
                    },
                    "ccmHistoryEventTerminalLocation": {
                      "type": "string",
                      "description": "If ccmHistoryEventCommandSource is 'commandLine',\n            the hard-wired location of the terminal or the remote \n            host for an incoming connection.  The length is zero \n            if not available or not applicable.",
                      "x-yang-type": "snmpv2-tc:DisplayString"
                    },
                    "ccmHistoryEventCommandSourceAddress": {
                      "type": "string",
                      "description": "If ccmHistoryEventTerminalType is 'virtual', the\n            internet address of the connected system.\n            \n            If ccmHistoryEventCommandSource is 'snmp', the internet\n            address of the requester.\n            \n            The value is 0.0.0.0 if not available or not \n            applicable.\n            \n            This object is deprecated by\n            ccmHistoryEventCommandSourceAddrRev1",
                      "format": "inet:ipv4-address"
                    },
                    "ccmHistoryEventVirtualHostName": {
                      "type": "string",
                      "description": "If ccmHistoryEventTerminalType is 'virtual', the host\n            name of the connected system.  The length is zero if\n            not available or not applicable.",
                      "x-yang-type": "snmpv2-tc:DisplayString"
                    },
                    "ccmHistoryEventServerAddress": {
                      "type": "string",
                      "description": "If ccmHistoryEventConfigSource or\n            ccmHistoryEventConfigDestination is 'networkTftp' or\n            'networkRcp', the internet address of the storage file\n            server.  The value is 0.0.0.0 if not applicable or not\n                    available.\n                    This object is deprecated by\n                    ccmHistoryEventServerAddrRev1",
                      "format": "inet:ipv4-address"
                    },
                    "ccmHistoryEventFile": {
                      "type": "string",
                      "description": "If ccmHistoryEventConfigSource or\n            ccmHistoryEventConfigDestination is 'networkTftp' or\n            'networkRcp', the configuration file name at the\n            storage file server.  The length is zero if not\n            available or not applicable.",
                      "x-yang-type": "snmpv2-tc:DisplayString"
                    },
                    "ccmHistoryEventRcpUser": {
                      "type": "string",
                      "description": "If ccmHistoryEventConfigSource or\n            ccmHistoryEventConfigDestination is 'networkRcp', the\n            remote user name.  The length is zero if not applicable\n            or not available.",
                      "x-yang-type": "snmpv2-tc:DisplayString"
                    },
                    "ccmHistoryCLICmdEntriesBumped": {
                      "type": "integer",
                      "description": "The number of times the oldest entry in\n            ccmCLIHistoryCommandTable with first index as \n            ccmHistoryEventIndex was deleted to make \n            room for a new entry.\n            \n            This object is applicable only if \n            ccmHistoryEventCommandSource has a value \n            of 'commandLine'.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "ccmHistoryEventCommandSourceAddrType": {
                      "type": "string",
                      "description": "This object indicates the transport type of the\n            address contained in\n            ccmHistoryEventCommandSourceAddrRev1.\n            \n            The value will be zero if not available or not\n            applicable.",
                      "x-yang-type": "inet-address:InetAddressType"
                    },
                    "ccmHistoryEventCommandSourceAddrRev1": {
                      "type": "string",
                      "description": "If ccmHistoryEventTerminalType is 'virtual', the\n            internet address of the connected system.\n            \n            If ccmHistoryEventCommandSource is 'snmp', the\n            internet address of the requester.\n            \n            The value of all bit's is zero  if not available or\n            not applicable.\n            \n            The Format of this address depends on the value of the\n            ccmHistoryEventCommandSourceAddrType object.\n            \n            This object deprecates\n            ccmHistoryEventCommandSourceAddress",
                      "x-yang-type": "inet-address:InetAddress"
                    },
                    "ccmHistoryEventServerAddrType": {
                      "type": "string",
                      "description": "This object indicates the transport type of the\n            address contained in ccmHistoryEventServerAddrRev1.\n            \n            The value will be zero if not available or not\n            aplicable.",
                      "x-yang-type": "inet-address:InetAddressType"
                    },
                    "ccmHistoryEventServerAddrRev1": {
                      "type": "string",
                      "description": "If ccmHistoryEventConfigSource or\n            ccmHistoryEventConfigDestination is 'networkTftp' or\n            'networkRcp', the internet address of the storage file\n            server. \n            \n            The value of all bits is 0s if not applicable or not\n            available.\n            \n            The Format of this address depends on the value of the\n            ccmHistoryEventServerAddrType object.\n            \n            This object deprecates ccmHistoryEventServerAddress.",
                      "x-yang-type": "inet-address:InetAddress"
                    }
                  }
                },
                "example": {
                  "CISCO-CONFIG-MAN-MIB:ccmHistoryEventEntry": {
                    "ccmHistoryEventIndex": 1,
                    "ccmHistoryEventTime": "example-string",
                    "ccmHistoryEventCommandSource": "example-string",
                    "ccmHistoryEventConfigSource": "example-string",
                    "ccmHistoryEventConfigDestination": "example-string",
                    "ccmHistoryEventTerminalType": "ethernetCsmacd(6)",
                    "ccmHistoryEventTerminalNumber": -2147483648,
                    "ccmHistoryEventTerminalUser": "example-string",
                    "ccmHistoryEventTerminalLocation": "example-string",
                    "ccmHistoryEventCommandSourceAddress": "192.168.1.1",
                    "ccmHistoryEventVirtualHostName": "interface-1",
                    "ccmHistoryEventServerAddress": "192.168.1.1",
                    "ccmHistoryEventFile": "example-string",
                    "ccmHistoryEventRcpUser": "example-string",
                    "ccmHistoryCLICmdEntriesBumped": 0,
                    "ccmHistoryEventCommandSourceAddrType": "192.168.1.1",
                    "ccmHistoryEventCommandSourceAddrRev1": "192.168.1.1",
                    "ccmHistoryEventServerAddrType": "192.168.1.1",
                    "ccmHistoryEventServerAddrRev1": "192.168.1.1"
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-ccmHistoryEventEntry-4"
      },
      "x-yang-path": "/ccmHistoryEventEntry={ccmHistoryEventIndex}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "ccmHistoryEventIndex"
      ]
    },
    "/data/CISCO-CONFIG-MAN-MIB:ccmCLIHistoryCommandEntry": {
      "get": {
        "summary": "Get ccmCLIHistoryCommandEntry list",
        "description": "Retrieve list of ccmCLIHistoryCommandEntry entries from MIB",
        "tags": [
          "CISCO-CONFIG-MAN-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "ccmCLIHistoryCommandEntry",
                  "items": {
                    "type": "object",
                    "properties": {
                      "ccmHistoryEventIndex": {
                        "type": "string",
                        "description": "ccmHistoryEventIndex",
                        "x-yang-type": "leafref"
                      },
                      "ccmCLIHistoryCommandIndex": {
                        "type": "integer",
                        "description": "A monotonically increasing integer for the\n            purpose of indexing CLI commands which took effect\n            during a configuration event.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "ccmCLIHistoryCommand": {
                        "type": "string",
                        "description": "The CLI command entered which took effect\n            during the configuration event pointed by \n            ccmHistoryEventIndex.",
                        "x-yang-type": "snmpv2-tc:DisplayString"
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-CONFIG-MAN-MIB:ccmCLIHistoryCommandEntry": [
                    {
                      "ccmHistoryEventIndex": "example-string",
                      "ccmCLIHistoryCommandIndex": 1,
                      "ccmCLIHistoryCommand": "example-string"
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-ccmCLIHistoryCommandEntry-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": "/ccmCLIHistoryCommandEntry",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-CONFIG-MAN-MIB:ccmCLIHistoryCommandTable/ccmCLIHistoryCommandEntry={ccmHistoryEventIndex},{ccmCLIHistoryCommandIndex}": {
      "get": {
        "summary": "Get ccmCLIHistoryCommandEntry entry",
        "description": "Retrieve specific ccmCLIHistoryCommandEntry entry by key from MIB",
        "tags": [
          "CISCO-CONFIG-MAN-MIB"
        ],
        "parameters": [
          {
            "name": "ccmHistoryEventIndex",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "ccmCLIHistoryCommandIndex",
            "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": {
                    "ccmHistoryEventIndex": {
                      "type": "string",
                      "description": "ccmHistoryEventIndex",
                      "x-yang-type": "leafref"
                    },
                    "ccmCLIHistoryCommandIndex": {
                      "type": "integer",
                      "description": "A monotonically increasing integer for the\n            purpose of indexing CLI commands which took effect\n            during a configuration event.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "ccmCLIHistoryCommand": {
                      "type": "string",
                      "description": "The CLI command entered which took effect\n            during the configuration event pointed by \n            ccmHistoryEventIndex.",
                      "x-yang-type": "snmpv2-tc:DisplayString"
                    }
                  }
                },
                "example": {
                  "CISCO-CONFIG-MAN-MIB:ccmCLIHistoryCommandEntry": {
                    "ccmHistoryEventIndex": "example-string",
                    "ccmCLIHistoryCommandIndex": 1,
                    "ccmCLIHistoryCommand": "example-string"
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-ccmCLIHistoryCommandEntry-2"
      },
      "x-yang-path": "/ccmCLIHistoryCommandTable/ccmCLIHistoryCommandEntry={ccmHistoryEventIndex ccmCLIHistoryCommandIndex}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "ccmHistoryEventIndex ccmCLIHistoryCommandIndex"
      ]
    },
    "/data/CISCO-CONFIG-MAN-MIB:ccmCLIHistoryCommandEntry={ccmHistoryEventIndex},{ccmCLIHistoryCommandIndex}": {
      "get": {
        "summary": "Get ccmCLIHistoryCommandEntry entry",
        "description": "Retrieve specific ccmCLIHistoryCommandEntry entry by key from MIB",
        "tags": [
          "CISCO-CONFIG-MAN-MIB"
        ],
        "parameters": [
          {
            "name": "ccmHistoryEventIndex",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "ccmCLIHistoryCommandIndex",
            "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": {
                    "ccmHistoryEventIndex": {
                      "type": "string",
                      "description": "ccmHistoryEventIndex",
                      "x-yang-type": "leafref"
                    },
                    "ccmCLIHistoryCommandIndex": {
                      "type": "integer",
                      "description": "A monotonically increasing integer for the\n            purpose of indexing CLI commands which took effect\n            during a configuration event.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "ccmCLIHistoryCommand": {
                      "type": "string",
                      "description": "The CLI command entered which took effect\n            during the configuration event pointed by \n            ccmHistoryEventIndex.",
                      "x-yang-type": "snmpv2-tc:DisplayString"
                    }
                  }
                },
                "example": {
                  "CISCO-CONFIG-MAN-MIB:ccmCLIHistoryCommandEntry": {
                    "ccmHistoryEventIndex": "example-string",
                    "ccmCLIHistoryCommandIndex": 1,
                    "ccmCLIHistoryCommand": "example-string"
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-ccmCLIHistoryCommandEntry-4"
      },
      "x-yang-path": "/ccmCLIHistoryCommandEntry={ccmHistoryEventIndex ccmCLIHistoryCommandIndex}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "ccmHistoryEventIndex ccmCLIHistoryCommandIndex"
      ]
    }
  },
  "components": {
    "schemas": {
      "CISCO-CONFIG-MAN-MIB_CISCO-CONFIG-MAN-MIB": {
        "type": "object",
        "description": "The value of sysUpTime when the running configuration\n          was last changed.\n          \n                  If the value of ccmHistoryRunningLastChanged is\n                  greater than ccmHistoryRunningLastSaved, the \n                  configuration has been changed but not saved.",
        "properties": {
          "ccmHistoryEventEntry": {
            "type": "array",
            "description": "Information about a configuration event on this\n          router.",
            "items": {
              "type": "object",
              "properties": {
                "ccmHistoryEventIndex": {
                  "type": "integer",
                  "description": "A monotonically increasing integer for the sole\n            purpose of indexing events.  When it reaches the \n            maximum value, an extremely unlikely event, the agent \n            wraps the value back to 1 and may flush existing \n            entries.",
                  "minimum": -2147483648,
                  "maximum": 2147483647,
                  "readOnly": true
                },
                "ccmHistoryEventTime": {
                  "type": "string",
                  "description": "The value of sysUpTime when the event occurred.",
                  "x-yang-type": "yang:timeticks",
                  "readOnly": true
                },
                "ccmHistoryEventCommandSource": {
                  "type": "string",
                  "description": "The source of the command that instigated the event.",
                  "readOnly": true
                },
                "ccmHistoryEventConfigSource": {
                  "type": "string",
                  "description": "The configuration data source for the event.",
                  "x-yang-type": "CISCO-CONFIG-MAN-MIB:HistoryEventMedium",
                  "readOnly": true
                },
                "ccmHistoryEventConfigDestination": {
                  "type": "string",
                  "description": "The configuration data destination for the event.",
                  "x-yang-type": "CISCO-CONFIG-MAN-MIB:HistoryEventMedium",
                  "readOnly": true
                },
                "ccmHistoryEventTerminalType": {
                  "type": "string",
                  "description": "If ccmHistoryEventCommandSource is 'commandLine',\n            the terminal type, otherwise 'notApplicable'.",
                  "readOnly": true
                },
                "ccmHistoryEventTerminalNumber": {
                  "type": "integer",
                  "description": "If ccmHistoryEventCommandSource is 'commandLine',\n            the terminal number.  The value is -1 if not available\n            or not applicable.",
                  "minimum": -2147483648,
                  "maximum": 2147483647,
                  "readOnly": true
                },
                "ccmHistoryEventTerminalUser": {
                  "type": "string",
                  "description": "If ccmHistoryEventCommandSource is 'commandLine',\n            the name of the logged in user.  The length is zero if\n            not available or not applicable.",
                  "x-yang-type": "snmpv2-tc:DisplayString",
                  "readOnly": true
                },
                "ccmHistoryEventTerminalLocation": {
                  "type": "string",
                  "description": "If ccmHistoryEventCommandSource is 'commandLine',\n            the hard-wired location of the terminal or the remote \n            host for an incoming connection.  The length is zero \n            if not available or not applicable.",
                  "x-yang-type": "snmpv2-tc:DisplayString",
                  "readOnly": true
                },
                "ccmHistoryEventCommandSourceAddress": {
                  "type": "string",
                  "description": "If ccmHistoryEventTerminalType is 'virtual', the\n            internet address of the connected system.\n            \n            If ccmHistoryEventCommandSource is 'snmp', the internet\n            address of the requester.\n            \n            The value is 0.0.0.0 if not available or not \n            applicable.\n            \n            This object is deprecated by\n            ccmHistoryEventCommandSourceAddrRev1",
                  "format": "inet:ipv4-address",
                  "readOnly": true
                },
                "ccmHistoryEventVirtualHostName": {
                  "type": "string",
                  "description": "If ccmHistoryEventTerminalType is 'virtual', the host\n            name of the connected system.  The length is zero if\n            not available or not applicable.",
                  "x-yang-type": "snmpv2-tc:DisplayString",
                  "readOnly": true
                },
                "ccmHistoryEventServerAddress": {
                  "type": "string",
                  "description": "If ccmHistoryEventConfigSource or\n            ccmHistoryEventConfigDestination is 'networkTftp' or\n            'networkRcp', the internet address of the storage file\n            server.  The value is 0.0.0.0 if not applicable or not\n                    available.\n                    This object is deprecated by\n                    ccmHistoryEventServerAddrRev1",
                  "format": "inet:ipv4-address",
                  "readOnly": true
                },
                "ccmHistoryEventFile": {
                  "type": "string",
                  "description": "If ccmHistoryEventConfigSource or\n            ccmHistoryEventConfigDestination is 'networkTftp' or\n            'networkRcp', the configuration file name at the\n            storage file server.  The length is zero if not\n            available or not applicable.",
                  "x-yang-type": "snmpv2-tc:DisplayString",
                  "readOnly": true
                },
                "ccmHistoryEventRcpUser": {
                  "type": "string",
                  "description": "If ccmHistoryEventConfigSource or\n            ccmHistoryEventConfigDestination is 'networkRcp', the\n            remote user name.  The length is zero if not applicable\n            or not available.",
                  "x-yang-type": "snmpv2-tc:DisplayString",
                  "readOnly": true
                },
                "ccmHistoryCLICmdEntriesBumped": {
                  "type": "integer",
                  "description": "The number of times the oldest entry in\n            ccmCLIHistoryCommandTable with first index as \n            ccmHistoryEventIndex was deleted to make \n            room for a new entry.\n            \n            This object is applicable only if \n            ccmHistoryEventCommandSource has a value \n            of 'commandLine'.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "ccmHistoryEventCommandSourceAddrType": {
                  "type": "string",
                  "description": "This object indicates the transport type of the\n            address contained in\n            ccmHistoryEventCommandSourceAddrRev1.\n            \n            The value will be zero if not available or not\n            applicable.",
                  "x-yang-type": "inet-address:InetAddressType",
                  "readOnly": true
                },
                "ccmHistoryEventCommandSourceAddrRev1": {
                  "type": "string",
                  "description": "If ccmHistoryEventTerminalType is 'virtual', the\n            internet address of the connected system.\n            \n            If ccmHistoryEventCommandSource is 'snmp', the\n            internet address of the requester.\n            \n            The value of all bit's is zero  if not available or\n            not applicable.\n            \n            The Format of this address depends on the value of the\n            ccmHistoryEventCommandSourceAddrType object.\n            \n            This object deprecates\n            ccmHistoryEventCommandSourceAddress",
                  "x-yang-type": "inet-address:InetAddress",
                  "readOnly": true
                },
                "ccmHistoryEventServerAddrType": {
                  "type": "string",
                  "description": "This object indicates the transport type of the\n            address contained in ccmHistoryEventServerAddrRev1.\n            \n            The value will be zero if not available or not\n            aplicable.",
                  "x-yang-type": "inet-address:InetAddressType",
                  "readOnly": true
                },
                "ccmHistoryEventServerAddrRev1": {
                  "type": "string",
                  "description": "If ccmHistoryEventConfigSource or\n            ccmHistoryEventConfigDestination is 'networkTftp' or\n            'networkRcp', the internet address of the storage file\n            server. \n            \n            The value of all bits is 0s if not applicable or not\n            available.\n            \n            The Format of this address depends on the value of the\n            ccmHistoryEventServerAddrType object.\n            \n            This object deprecates ccmHistoryEventServerAddress.",
                  "x-yang-type": "inet-address:InetAddress",
                  "readOnly": true
                }
              }
            },
            "readOnly": true
          },
          "ccmCLIHistoryCommandEntry": {
            "type": "array",
            "description": "ccmCLIHistoryCommandEntry",
            "items": {
              "type": "object",
              "properties": {
                "ccmHistoryEventIndex": {
                  "type": "string",
                  "description": "ccmHistoryEventIndex",
                  "x-yang-type": "leafref",
                  "readOnly": true
                },
                "ccmCLIHistoryCommandIndex": {
                  "type": "integer",
                  "description": "A monotonically increasing integer for the\n            purpose of indexing CLI commands which took effect\n            during a configuration event.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "ccmCLIHistoryCommand": {
                  "type": "string",
                  "description": "The CLI command entered which took effect\n            during the configuration event pointed by \n            ccmHistoryEventIndex.",
                  "x-yang-type": "snmpv2-tc:DisplayString",
                  "readOnly": true
                }
              }
            },
            "readOnly": true
          },
          "ccmHistory": {
            "type": "object",
            "description": "The value of sysUpTime when the running configuration\n          was last changed.\n          \n                  If the value of ccmHistoryRunningLastChanged is\n                  greater than ccmHistoryRunningLastSaved, the \n                  configuration has been changed but not saved.",
            "properties": {
              "ccmHistoryRunningLastChanged": {
                "type": "string",
                "description": "The value of sysUpTime when the running configuration\n          was last changed.\n          \n                  If the value of ccmHistoryRunningLastChanged is\n                  greater than ccmHistoryRunningLastSaved, the \n                  configuration has been changed but not saved.",
                "x-yang-type": "yang:timeticks",
                "readOnly": true
              },
              "ccmHistoryRunningLastSaved": {
                "type": "string",
                "description": "The value of sysUpTime when the running configuration\n          was last saved (written).\n          \n          If the value of ccmHistoryRunningLastChanged is \n          greater than ccmHistoryRunningLastSaved, the \n          configuration has been changed but not saved.\n          \n          What constitutes a safe saving of the running\n          configuration is a management policy issue beyond the\n          scope of this MIB.  For some installations, writing the\n          running configuration to a terminal may be a way of\n          capturing and saving it.  Others may use local or\n          remote storage.  Thus ANY write is considered saving\n          for the purposes of the MIB.",
                "x-yang-type": "yang:timeticks",
                "readOnly": true
              },
              "ccmHistoryStartupLastChanged": {
                "type": "string",
                "description": "The value of sysUpTime when the startup configuration\n          was last written to.  In general this is the\n          default configuration used when cold starting the\n          system.  It may have been changed by a save of the\n          running configuration or by a copy from elsewhere.",
                "x-yang-type": "yang:timeticks",
                "readOnly": true
              },
              "ccmHistoryMaxEventEntries": {
                "type": "integer",
                "description": "The maximum number of entries that can be held in\n          ccmHistoryEventTable.\n          \n          The recommended value for implementations is 10.",
                "minimum": -2147483648,
                "maximum": 2147483647,
                "readOnly": true
              },
              "ccmHistoryEventEntriesBumped": {
                "type": "integer",
                "description": "The number of times the oldest entry in\n          ccmHistoryEventTable was deleted to make room \n          for a new entry.",
                "minimum": 0,
                "maximum": 4294967295,
                "readOnly": true
              }
            },
            "readOnly": true
          },
          "ccmCLIHistory": {
            "type": "object",
            "description": "ccmCLIHistory",
            "properties": {
              "ccmCLIHistoryMaxCmdEntries": {
                "type": "integer",
                "description": "The maximum number of entries that can be held in\n          ccmCLIHistoryCommandTable.\n          \n          The recommended value for implementations is 100.\n          \n          If the number of entries in ccmCLIHistoryCommandTable \n          exceeds the value of this object, old entries will be \n          bumped to make room for new entries.\n          \n          The ccmCLIHistoryCommandTable will not be populated\n          if the value of this object is 0.",
                "minimum": 0,
                "maximum": 4294967295,
                "readOnly": true
              },
              "ccmCLIHistoryCmdEntries": {
                "type": "integer",
                "description": "The current number of entries in\n          ccmCLIHistoryCommandTable.",
                "minimum": 0,
                "maximum": 4294967295,
                "readOnly": true
              },
              "ccmCLIHistoryCmdEntriesAllowed": {
                "type": "integer",
                "description": "This object indicates the upper limit on the\n          number of entries allowed in \n          ccmCLIHistoryCommandTable by the managed system.",
                "minimum": 0,
                "maximum": 4294967295,
                "readOnly": true
              }
            },
            "readOnly": true
          },
          "ccmCLICfg": {
            "type": "object",
            "description": "This variable indicates whether the system produces\n          the ccmCLIRunningConfigChanged notification. A false \n          value will prevent notifications from being generated \n          by this system.",
            "properties": {
              "ccmCLICfgRunConfNotifEnable": {
                "type": "boolean",
                "description": "This variable indicates whether the system produces\n          the ccmCLIRunningConfigChanged notification. A false \n          value will prevent notifications from being generated \n          by this system.",
                "readOnly": true
              }
            },
            "readOnly": true
          },
          "ccmCTIDObjects": {
            "type": "object",
            "description": "This object indicates the Config Change Tracking ID which\n          uniquely represents version-incrementing changes to the IOS \n          running configuration.",
            "properties": {
              "ccmCTID": {
                "type": "string",
                "description": "This object indicates the Config Change Tracking ID which\n          uniquely represents version-incrementing changes to the IOS \n          running configuration.",
                "x-yang-type": "cisco-tc:Unsigned64",
                "readOnly": true
              },
              "ccmCTIDLastChangeTime": {
                "type": "string",
                "description": "This object indicates the time when the Config Change Tracking\n          ID last changed.",
                "x-yang-type": "snmpv2-tc:DateAndTime",
                "readOnly": true
              },
              "ccmCTIDWhoChanged": {
                "type": "string",
                "description": "This object indicates the user who last reset the Config Change\n          Tracking ID.",
                "x-yang-type": "snmp-framework:SnmpAdminString",
                "readOnly": true
              },
              "ccmCTIDRolledOverNotifEnable": {
                "type": "boolean",
                "description": "This variable indicates whether the system produces the\n          ccmCTIDRolledOver notification. A false value will prevent\n          notifications from being generated by this system.",
                "readOnly": true
              }
            },
            "readOnly": true
          },
          "ccmHistoryEventTable": {
            "type": "object",
            "description": "A table of configuration events on this router.",
            "properties": {
              "ccmHistoryEventEntry": {
                "type": "array",
                "description": "Information about a configuration event on this\n          router.",
                "items": {
                  "type": "object",
                  "properties": {
                    "ccmHistoryEventIndex": {
                      "type": "integer",
                      "description": "A monotonically increasing integer for the sole\n            purpose of indexing events.  When it reaches the \n            maximum value, an extremely unlikely event, the agent \n            wraps the value back to 1 and may flush existing \n            entries.",
                      "minimum": -2147483648,
                      "maximum": 2147483647,
                      "readOnly": true
                    },
                    "ccmHistoryEventTime": {
                      "type": "string",
                      "description": "The value of sysUpTime when the event occurred.",
                      "x-yang-type": "yang:timeticks",
                      "readOnly": true
                    },
                    "ccmHistoryEventCommandSource": {
                      "type": "string",
                      "description": "The source of the command that instigated the event.",
                      "readOnly": true
                    },
                    "ccmHistoryEventConfigSource": {
                      "type": "string",
                      "description": "The configuration data source for the event.",
                      "x-yang-type": "CISCO-CONFIG-MAN-MIB:HistoryEventMedium",
                      "readOnly": true
                    },
                    "ccmHistoryEventConfigDestination": {
                      "type": "string",
                      "description": "The configuration data destination for the event.",
                      "x-yang-type": "CISCO-CONFIG-MAN-MIB:HistoryEventMedium",
                      "readOnly": true
                    },
                    "ccmHistoryEventTerminalType": {
                      "type": "string",
                      "description": "If ccmHistoryEventCommandSource is 'commandLine',\n            the terminal type, otherwise 'notApplicable'.",
                      "readOnly": true
                    },
                    "ccmHistoryEventTerminalNumber": {
                      "type": "integer",
                      "description": "If ccmHistoryEventCommandSource is 'commandLine',\n            the terminal number.  The value is -1 if not available\n            or not applicable.",
                      "minimum": -2147483648,
                      "maximum": 2147483647,
                      "readOnly": true
                    },
                    "ccmHistoryEventTerminalUser": {
                      "type": "string",
                      "description": "If ccmHistoryEventCommandSource is 'commandLine',\n            the name of the logged in user.  The length is zero if\n            not available or not applicable.",
                      "x-yang-type": "snmpv2-tc:DisplayString",
                      "readOnly": true
                    },
                    "ccmHistoryEventTerminalLocation": {
                      "type": "string",
                      "description": "If ccmHistoryEventCommandSource is 'commandLine',\n            the hard-wired location of the terminal or the remote \n            host for an incoming connection.  The length is zero \n            if not available or not applicable.",
                      "x-yang-type": "snmpv2-tc:DisplayString",
                      "readOnly": true
                    },
                    "ccmHistoryEventCommandSourceAddress": {
                      "type": "string",
                      "description": "If ccmHistoryEventTerminalType is 'virtual', the\n            internet address of the connected system.\n            \n            If ccmHistoryEventCommandSource is 'snmp', the internet\n            address of the requester.\n            \n            The value is 0.0.0.0 if not available or not \n            applicable.\n            \n            This object is deprecated by\n            ccmHistoryEventCommandSourceAddrRev1",
                      "format": "inet:ipv4-address",
                      "readOnly": true
                    },
                    "ccmHistoryEventVirtualHostName": {
                      "type": "string",
                      "description": "If ccmHistoryEventTerminalType is 'virtual', the host\n            name of the connected system.  The length is zero if\n            not available or not applicable.",
                      "x-yang-type": "snmpv2-tc:DisplayString",
                      "readOnly": true
                    },
                    "ccmHistoryEventServerAddress": {
                      "type": "string",
                      "description": "If ccmHistoryEventConfigSource or\n            ccmHistoryEventConfigDestination is 'networkTftp' or\n            'networkRcp', the internet address of the storage file\n            server.  The value is 0.0.0.0 if not applicable or not\n                    available.\n                    This object is deprecated by\n                    ccmHistoryEventServerAddrRev1",
                      "format": "inet:ipv4-address",
                      "readOnly": true
                    },
                    "ccmHistoryEventFile": {
                      "type": "string",
                      "description": "If ccmHistoryEventConfigSource or\n            ccmHistoryEventConfigDestination is 'networkTftp' or\n            'networkRcp', the configuration file name at the\n            storage file server.  The length is zero if not\n            available or not applicable.",
                      "x-yang-type": "snmpv2-tc:DisplayString",
                      "readOnly": true
                    },
                    "ccmHistoryEventRcpUser": {
                      "type": "string",
                      "description": "If ccmHistoryEventConfigSource or\n            ccmHistoryEventConfigDestination is 'networkRcp', the\n            remote user name.  The length is zero if not applicable\n            or not available.",
                      "x-yang-type": "snmpv2-tc:DisplayString",
                      "readOnly": true
                    },
                    "ccmHistoryCLICmdEntriesBumped": {
                      "type": "integer",
                      "description": "The number of times the oldest entry in\n            ccmCLIHistoryCommandTable with first index as \n            ccmHistoryEventIndex was deleted to make \n            room for a new entry.\n            \n            This object is applicable only if \n            ccmHistoryEventCommandSource has a value \n            of 'commandLine'.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "ccmHistoryEventCommandSourceAddrType": {
                      "type": "string",
                      "description": "This object indicates the transport type of the\n            address contained in\n            ccmHistoryEventCommandSourceAddrRev1.\n            \n            The value will be zero if not available or not\n            applicable.",
                      "x-yang-type": "inet-address:InetAddressType",
                      "readOnly": true
                    },
                    "ccmHistoryEventCommandSourceAddrRev1": {
                      "type": "string",
                      "description": "If ccmHistoryEventTerminalType is 'virtual', the\n            internet address of the connected system.\n            \n            If ccmHistoryEventCommandSource is 'snmp', the\n            internet address of the requester.\n            \n            The value of all bit's is zero  if not available or\n            not applicable.\n            \n            The Format of this address depends on the value of the\n            ccmHistoryEventCommandSourceAddrType object.\n            \n            This object deprecates\n            ccmHistoryEventCommandSourceAddress",
                      "x-yang-type": "inet-address:InetAddress",
                      "readOnly": true
                    },
                    "ccmHistoryEventServerAddrType": {
                      "type": "string",
                      "description": "This object indicates the transport type of the\n            address contained in ccmHistoryEventServerAddrRev1.\n            \n            The value will be zero if not available or not\n            aplicable.",
                      "x-yang-type": "inet-address:InetAddressType",
                      "readOnly": true
                    },
                    "ccmHistoryEventServerAddrRev1": {
                      "type": "string",
                      "description": "If ccmHistoryEventConfigSource or\n            ccmHistoryEventConfigDestination is 'networkTftp' or\n            'networkRcp', the internet address of the storage file\n            server. \n            \n            The value of all bits is 0s if not applicable or not\n            available.\n            \n            The Format of this address depends on the value of the\n            ccmHistoryEventServerAddrType object.\n            \n            This object deprecates ccmHistoryEventServerAddress.",
                      "x-yang-type": "inet-address:InetAddress",
                      "readOnly": true
                    }
                  }
                },
                "readOnly": true
              }
            },
            "readOnly": true
          },
          "ccmCLIHistoryCommandTable": {
            "type": "object",
            "description": "A table of CLI commands that took effect during\n        configuration events.",
            "properties": {
              "ccmCLIHistoryCommandEntry": {
                "type": "array",
                "description": "ccmCLIHistoryCommandEntry",
                "items": {
                  "type": "object",
                  "properties": {
                    "ccmHistoryEventIndex": {
                      "type": "string",
                      "description": "ccmHistoryEventIndex",
                      "x-yang-type": "leafref",
                      "readOnly": true
                    },
                    "ccmCLIHistoryCommandIndex": {
                      "type": "integer",
                      "description": "A monotonically increasing integer for the\n            purpose of indexing CLI commands which took effect\n            during a configuration event.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "ccmCLIHistoryCommand": {
                      "type": "string",
                      "description": "The CLI command entered which took effect\n            during the configuration event pointed by \n            ccmHistoryEventIndex.",
                      "x-yang-type": "snmpv2-tc:DisplayString",
                      "readOnly": true
                    }
                  }
                },
                "readOnly": true
              }
            },
            "readOnly": true
          }
        }
      },
      "CISCO-CONFIG-MAN-MIB_object-1": {
        "type": "object",
        "description": "object-1",
        "properties": {
          "ccmHistoryRunningLastChanged": {
            "type": "string",
            "description": "ccmHistoryRunningLastChanged",
            "x-yang-type": "leafref",
            "readOnly": true
          }
        }
      },
      "CISCO-CONFIG-MAN-MIB_object-2": {
        "type": "object",
        "description": "object-2",
        "properties": {
          "ccmHistoryEventIndex": {
            "type": "string",
            "description": "ccmHistoryEventIndex",
            "x-yang-type": "leafref",
            "readOnly": true
          },
          "ccmHistoryEventTerminalType": {
            "type": "string",
            "description": "ccmHistoryEventTerminalType",
            "x-yang-type": "leafref",
            "readOnly": true
          }
        }
      },
      "CISCO-CONFIG-MAN-MIB_object-3": {
        "type": "object",
        "description": "object-3",
        "properties": {
          "ccmHistoryEventIndex": {
            "type": "string",
            "description": "ccmHistoryEventIndex",
            "x-yang-type": "leafref",
            "readOnly": true
          },
          "ccmHistoryEventConfigDestination": {
            "type": "string",
            "description": "ccmHistoryEventConfigDestination",
            "x-yang-type": "leafref",
            "readOnly": true
          }
        }
      },
      "CISCO-CONFIG-MAN-MIB_ccmHistoryEventEntry": {
        "type": "array",
        "description": "Information about a configuration event on this\n          router.",
        "items": {
          "type": "object",
          "properties": {
            "ccmHistoryEventIndex": {
              "type": "integer",
              "description": "A monotonically increasing integer for the sole\n            purpose of indexing events.  When it reaches the \n            maximum value, an extremely unlikely event, the agent \n            wraps the value back to 1 and may flush existing \n            entries.",
              "minimum": -2147483648,
              "maximum": 2147483647,
              "readOnly": true
            },
            "ccmHistoryEventTime": {
              "type": "string",
              "description": "The value of sysUpTime when the event occurred.",
              "x-yang-type": "yang:timeticks",
              "readOnly": true
            },
            "ccmHistoryEventCommandSource": {
              "type": "string",
              "description": "The source of the command that instigated the event.",
              "readOnly": true
            },
            "ccmHistoryEventConfigSource": {
              "type": "string",
              "description": "The configuration data source for the event.",
              "x-yang-type": "CISCO-CONFIG-MAN-MIB:HistoryEventMedium",
              "readOnly": true
            },
            "ccmHistoryEventConfigDestination": {
              "type": "string",
              "description": "The configuration data destination for the event.",
              "x-yang-type": "CISCO-CONFIG-MAN-MIB:HistoryEventMedium",
              "readOnly": true
            },
            "ccmHistoryEventTerminalType": {
              "type": "string",
              "description": "If ccmHistoryEventCommandSource is 'commandLine',\n            the terminal type, otherwise 'notApplicable'.",
              "readOnly": true
            },
            "ccmHistoryEventTerminalNumber": {
              "type": "integer",
              "description": "If ccmHistoryEventCommandSource is 'commandLine',\n            the terminal number.  The value is -1 if not available\n            or not applicable.",
              "minimum": -2147483648,
              "maximum": 2147483647,
              "readOnly": true
            },
            "ccmHistoryEventTerminalUser": {
              "type": "string",
              "description": "If ccmHistoryEventCommandSource is 'commandLine',\n            the name of the logged in user.  The length is zero if\n            not available or not applicable.",
              "x-yang-type": "snmpv2-tc:DisplayString",
              "readOnly": true
            },
            "ccmHistoryEventTerminalLocation": {
              "type": "string",
              "description": "If ccmHistoryEventCommandSource is 'commandLine',\n            the hard-wired location of the terminal or the remote \n            host for an incoming connection.  The length is zero \n            if not available or not applicable.",
              "x-yang-type": "snmpv2-tc:DisplayString",
              "readOnly": true
            },
            "ccmHistoryEventCommandSourceAddress": {
              "type": "string",
              "description": "If ccmHistoryEventTerminalType is 'virtual', the\n            internet address of the connected system.\n            \n            If ccmHistoryEventCommandSource is 'snmp', the internet\n            address of the requester.\n            \n            The value is 0.0.0.0 if not available or not \n            applicable.\n            \n            This object is deprecated by\n            ccmHistoryEventCommandSourceAddrRev1",
              "format": "inet:ipv4-address",
              "readOnly": true
            },
            "ccmHistoryEventVirtualHostName": {
              "type": "string",
              "description": "If ccmHistoryEventTerminalType is 'virtual', the host\n            name of the connected system.  The length is zero if\n            not available or not applicable.",
              "x-yang-type": "snmpv2-tc:DisplayString",
              "readOnly": true
            },
            "ccmHistoryEventServerAddress": {
              "type": "string",
              "description": "If ccmHistoryEventConfigSource or\n            ccmHistoryEventConfigDestination is 'networkTftp' or\n            'networkRcp', the internet address of the storage file\n            server.  The value is 0.0.0.0 if not applicable or not\n                    available.\n                    This object is deprecated by\n                    ccmHistoryEventServerAddrRev1",
              "format": "inet:ipv4-address",
              "readOnly": true
            },
            "ccmHistoryEventFile": {
              "type": "string",
              "description": "If ccmHistoryEventConfigSource or\n            ccmHistoryEventConfigDestination is 'networkTftp' or\n            'networkRcp', the configuration file name at the\n            storage file server.  The length is zero if not\n            available or not applicable.",
              "x-yang-type": "snmpv2-tc:DisplayString",
              "readOnly": true
            },
            "ccmHistoryEventRcpUser": {
              "type": "string",
              "description": "If ccmHistoryEventConfigSource or\n            ccmHistoryEventConfigDestination is 'networkRcp', the\n            remote user name.  The length is zero if not applicable\n            or not available.",
              "x-yang-type": "snmpv2-tc:DisplayString",
              "readOnly": true
            },
            "ccmHistoryCLICmdEntriesBumped": {
              "type": "integer",
              "description": "The number of times the oldest entry in\n            ccmCLIHistoryCommandTable with first index as \n            ccmHistoryEventIndex was deleted to make \n            room for a new entry.\n            \n            This object is applicable only if \n            ccmHistoryEventCommandSource has a value \n            of 'commandLine'.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "ccmHistoryEventCommandSourceAddrType": {
              "type": "string",
              "description": "This object indicates the transport type of the\n            address contained in\n            ccmHistoryEventCommandSourceAddrRev1.\n            \n            The value will be zero if not available or not\n            applicable.",
              "x-yang-type": "inet-address:InetAddressType",
              "readOnly": true
            },
            "ccmHistoryEventCommandSourceAddrRev1": {
              "type": "string",
              "description": "If ccmHistoryEventTerminalType is 'virtual', the\n            internet address of the connected system.\n            \n            If ccmHistoryEventCommandSource is 'snmp', the\n            internet address of the requester.\n            \n            The value of all bit's is zero  if not available or\n            not applicable.\n            \n            The Format of this address depends on the value of the\n            ccmHistoryEventCommandSourceAddrType object.\n            \n            This object deprecates\n            ccmHistoryEventCommandSourceAddress",
              "x-yang-type": "inet-address:InetAddress",
              "readOnly": true
            },
            "ccmHistoryEventServerAddrType": {
              "type": "string",
              "description": "This object indicates the transport type of the\n            address contained in ccmHistoryEventServerAddrRev1.\n            \n            The value will be zero if not available or not\n            aplicable.",
              "x-yang-type": "inet-address:InetAddressType",
              "readOnly": true
            },
            "ccmHistoryEventServerAddrRev1": {
              "type": "string",
              "description": "If ccmHistoryEventConfigSource or\n            ccmHistoryEventConfigDestination is 'networkTftp' or\n            'networkRcp', the internet address of the storage file\n            server. \n            \n            The value of all bits is 0s if not applicable or not\n            available.\n            \n            The Format of this address depends on the value of the\n            ccmHistoryEventServerAddrType object.\n            \n            This object deprecates ccmHistoryEventServerAddress.",
              "x-yang-type": "inet-address:InetAddress",
              "readOnly": true
            }
          }
        }
      },
      "CISCO-CONFIG-MAN-MIB_ccmCLIHistoryCommandEntry": {
        "type": "array",
        "description": "ccmCLIHistoryCommandEntry",
        "items": {
          "type": "object",
          "properties": {
            "ccmHistoryEventIndex": {
              "type": "string",
              "description": "ccmHistoryEventIndex",
              "x-yang-type": "leafref",
              "readOnly": true
            },
            "ccmCLIHistoryCommandIndex": {
              "type": "integer",
              "description": "A monotonically increasing integer for the\n            purpose of indexing CLI commands which took effect\n            during a configuration event.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "ccmCLIHistoryCommand": {
              "type": "string",
              "description": "The CLI command entered which took effect\n            during the configuration event pointed by \n            ccmHistoryEventIndex.",
              "x-yang-type": "snmpv2-tc:DisplayString",
              "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-CONFIG-MAN-MIB",
      "description": "MIB operations for CISCO-CONFIG-MAN-MIB"
    }
  ],
  "externalDocs": {
    "description": "Cisco SNMP Object Navigator",
    "url": "https://snmp.cloudapps.cisco.com/Support/IOS/do/BrowseMIB.do"
  }
}
