{
  "openapi": "3.0.0",
  "info": {
    "title": "CISCO-EMBEDDED-EVENT-MGR-MIB MIB API",
    "version": "1.0.0",
    "description": "The MIB module to describe and store events generated\n    by the Cisco Embedded Event Manager.  \n    \n    The Cisco Embedded Event Manager detects hardware and software \n    faults, and other events (such as OIRs) for the system.\n    It also enables users to configure fault recovery services\n    for system wide components.  The Embedded Event Manager also \n    provides process reliability statistics.\n    \n    The Embedded Event Manager is a policy driven process through \n    which faults in the system are reported through a defined API.\n    The Embedded Event Manager policy engine receives notifications\n    when faults and other events occur.  Embedded Event Manager \n    policies implement recovery based on the current state of the \n    system and the actions specified in the policy for a given \n    event.  Recovery actions are triggered when the policy is \n    run.  Developers write and customize Embedded Event Manager \n    policies to handle faults and events.\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-EMBEDDED-EVENT-MGR-MIB structure](https://jeremycohoe.github.io/cisco-ios-xe-openapi-swagger/yang-trees/CISCO-EMBEDDED-EVENT-MGR-MIB.html)",
    "contact": {
      "name": "Cisco DevNet",
      "url": "https://developer.cisco.com"
    },
    "x-yang-module": "CISCO-EMBEDDED-EVENT-MGR-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-EMBEDDED-EVENT-MGR-MIB:ceemHistory": {
      "get": {
        "summary": "Get ceemHistory data",
        "description": "Retrieve ceemHistory operational data from MIB",
        "tags": [
          "CISCO-EMBEDDED-EVENT-MGR-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "description": "The maximum number of entries that can be held in\n          ceemHistoryEventTable.",
                  "properties": {
                    "ceemHistoryMaxEventEntries": {
                      "type": "integer",
                      "description": "The maximum number of entries that can be held in\n          ceemHistoryEventTable.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "ceemHistoryLastEventEntry": {
                      "type": "integer",
                      "description": "Index of last entry created in ceemHistoryEventTable.",
                      "minimum": 0,
                      "maximum": 4294967295
                    }
                  }
                },
                "example": {
                  "CISCO-EMBEDDED-EVENT-MGR-MIB:ceemHistory": {
                    "ceemHistoryMaxEventEntries": -2147483648,
                    "ceemHistoryLastEventEntry": 0
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-ceemHistory",
        "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": "/ceemHistory",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-EMBEDDED-EVENT-MGR-MIB:ceemEventMapTable": {
      "get": {
        "summary": "Get ceemEventMapTable data",
        "description": "Retrieve ceemEventMapTable operational data from MIB",
        "tags": [
          "CISCO-EMBEDDED-EVENT-MGR-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "description": "A table containing information about ceemEventIndex\n        value mapping.  Each conceptual row specifies a \n        unique mapping between a ceemEventIndex value, and a \n        Embedded Event Manager event type.  Rows are added \n        dynamically as the Embedded Event Manager server learns\n        of new event types.  This occurs when Embedded Event \n        Manager Event Detectors register with the Embedded \n        Event Manager server.",
                  "properties": {
                    "ceemEventMapEntry": {
                      "type": "array",
                      "description": "A mapping between an event type and an event description.",
                      "items": {
                        "type": "object",
                        "properties": {
                          "ceemEventIndex": {
                            "type": "integer",
                            "description": "This object uniquely identifies an event.  Events\n            are not persisted across reloads.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "ceemEventName": {
                            "type": "string",
                            "description": "The name of the Embedded Event Manager event.",
                            "x-yang-type": "snmp-framework:SnmpAdminString"
                          },
                          "ceemEventDescrText": {
                            "type": "string",
                            "description": "This object specifies a human-readable\n            message describing information about the \n            Embedded Event Manager event.",
                            "x-yang-type": "snmp-framework:SnmpAdminString"
                          }
                        }
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-EMBEDDED-EVENT-MGR-MIB:ceemEventMapTable": {
                    "ceemEventMapEntry": [
                      {
                        "ceemEventIndex": 1,
                        "ceemEventName": "interface-1",
                        "ceemEventDescrText": "GigabitEthernet1/0/1"
                      },
                      {
                        "ceemEventIndex": 2,
                        "ceemEventName": "interface-1",
                        "ceemEventDescrText": "GigabitEthernet1/0/1"
                      },
                      {
                        "ceemEventIndex": 3,
                        "ceemEventName": "interface-1",
                        "ceemEventDescrText": "GigabitEthernet1/0/1"
                      }
                    ]
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-ceemEventMapTable",
        "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": "/ceemEventMapTable",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-EMBEDDED-EVENT-MGR-MIB:ceemEventMapTable/ceemEventMapEntry": {
      "get": {
        "summary": "Get ceemEventMapEntry list",
        "description": "Retrieve list of ceemEventMapEntry entries from MIB",
        "tags": [
          "CISCO-EMBEDDED-EVENT-MGR-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "A mapping between an event type and an event description.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "ceemEventIndex": {
                        "type": "integer",
                        "description": "This object uniquely identifies an event.  Events\n            are not persisted across reloads.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "ceemEventName": {
                        "type": "string",
                        "description": "The name of the Embedded Event Manager event.",
                        "x-yang-type": "snmp-framework:SnmpAdminString"
                      },
                      "ceemEventDescrText": {
                        "type": "string",
                        "description": "This object specifies a human-readable\n            message describing information about the \n            Embedded Event Manager event.",
                        "x-yang-type": "snmp-framework:SnmpAdminString"
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-EMBEDDED-EVENT-MGR-MIB:ceemEventMapEntry": [
                    {
                      "ceemEventIndex": 1,
                      "ceemEventName": "interface-1",
                      "ceemEventDescrText": "GigabitEthernet1/0/1"
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-ceemEventMapEntry",
        "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": "/ceemEventMapTable/ceemEventMapEntry",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-EMBEDDED-EVENT-MGR-MIB:ceemEventMapTable/ceemEventMapEntry={ceemEventIndex}": {
      "get": {
        "summary": "Get ceemEventMapEntry entry",
        "description": "Retrieve specific ceemEventMapEntry entry by key from MIB",
        "tags": [
          "CISCO-EMBEDDED-EVENT-MGR-MIB"
        ],
        "parameters": [
          {
            "name": "ceemEventIndex",
            "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": {
                    "ceemEventIndex": {
                      "type": "integer",
                      "description": "This object uniquely identifies an event.  Events\n            are not persisted across reloads.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "ceemEventName": {
                      "type": "string",
                      "description": "The name of the Embedded Event Manager event.",
                      "x-yang-type": "snmp-framework:SnmpAdminString"
                    },
                    "ceemEventDescrText": {
                      "type": "string",
                      "description": "This object specifies a human-readable\n            message describing information about the \n            Embedded Event Manager event.",
                      "x-yang-type": "snmp-framework:SnmpAdminString"
                    }
                  }
                },
                "example": {
                  "CISCO-EMBEDDED-EVENT-MGR-MIB:ceemEventMapEntry": {
                    "ceemEventIndex": 1,
                    "ceemEventName": "interface-1",
                    "ceemEventDescrText": "GigabitEthernet1/0/1"
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-ceemEventMapEntry-2"
      },
      "x-yang-path": "/ceemEventMapTable/ceemEventMapEntry={ceemEventIndex}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "ceemEventIndex"
      ]
    },
    "/data/CISCO-EMBEDDED-EVENT-MGR-MIB:ceemHistoryEventTable": {
      "get": {
        "summary": "Get ceemHistoryEventTable data",
        "description": "Retrieve ceemHistoryEventTable operational data from MIB",
        "tags": [
          "CISCO-EMBEDDED-EVENT-MGR-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "description": "ceemHistoryEventTable",
                  "properties": {
                    "ceemHistoryEventEntry": {
                      "type": "array",
                      "description": "Information about an Embedded Event Manager event which has\n          been generated by this router.  It provides up to four event\n          types to support complex event specifications that are\n          triggered when multiple events are published within a certain\n          period of time.",
                      "items": {
                        "type": "object",
                        "properties": {
                          "ceemHistoryEventIndex": {
                            "type": "integer",
                            "description": "A monotonically increasing non-zero integer uniquely\n            identifying a generated event.  When it reaches the \n            maximum value, the agent wraps the value back to 1 \n            and may flush all existing entries in the event table.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "ceemHistoryEventType1": {
                            "type": "integer",
                            "description": "The type of Embedded Event Manager event which was\n            detected. The value corresponds to an entry in the \n            ceemEventTable.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "ceemHistoryEventType2": {
                            "type": "integer",
                            "description": "The type of Embedded Event Manager event which was\n            detected. The value corresponds to an entry in the \n            ceemEventTable.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "ceemHistoryEventType3": {
                            "type": "integer",
                            "description": "The type of Embedded Event Manager event which was\n            detected. The value corresponds to an entry in the \n            ceemEventTable.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "ceemHistoryEventType4": {
                            "type": "integer",
                            "description": "The type of Embedded Event Manager event which was\n            detected. The value corresponds to an entry in the\n            ceemEventTable.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "ceemHistoryPolicyPath": {
                            "type": "string",
                            "description": "The file path on the router where the Embedded Event Manager\n            policy that was triggered is stored.  If the size of the \n            file path string is larger than 128, the end characters \n            will be truncated.",
                            "x-yang-type": "snmp-framework:SnmpAdminString"
                          },
                          "ceemHistoryPolicyName": {
                            "type": "string",
                            "description": "The name of the Embedded Event Manager policy that was\n            triggered because of an Embedded Event Manager event. The\n            name must be a valid Embedded Event Manager policy name. \n            It must be in the form of a valid Posix filename.",
                            "x-yang-type": "snmp-framework:SnmpAdminString"
                          },
                          "ceemHistoryPolicyExitStatus": {
                            "type": "integer",
                            "description": "The exit status of the Embedded Event Manager policy\n            execution.  This value corresponds to the Posix process \n            exit status.",
                            "minimum": -2147483648,
                            "maximum": 2147483647
                          },
                          "ceemHistoryPolicyIntData1": {
                            "type": "integer",
                            "description": "Arbitrary integer data that the Embedded Event Manager policy\n            can use. Use of this object is optional. If unused by\n            a policy, this object will not be instantiated for \n            that policy.",
                            "minimum": -2147483648,
                            "maximum": 2147483647
                          },
                          "ceemHistoryPolicyIntData2": {
                            "type": "integer",
                            "description": "Arbitrary integer data that the Embedded Event Manager policy\n            can use. Use of this object is optional. If unused by\n            a policy, this object will not be instantiated for \n            that policy.",
                            "minimum": -2147483648,
                            "maximum": 2147483647
                          },
                          "ceemHistoryPolicyStrData": {
                            "type": "string",
                            "description": "Arbitrary string data the Embedded Event Manager policy can\n            use.  Use of this object is optional.  If unused by\n            a policy, this object will not be instantiated for \n            that policy.",
                            "x-yang-type": "snmp-framework:SnmpAdminString"
                          },
                          "ceemHistoryNotifyType": {
                            "type": "string",
                            "description": "The notification type that was sent from the Embedded Event\n            Manager.  The valid values are server or policy.",
                            "x-yang-type": "CISCO-EMBEDDED-EVENT-MGR-MIB:NotifySource"
                          },
                          "ceemHistoryEventType5": {
                            "type": "integer",
                            "description": "The type of Embedded Event Manager event which was\n            detected. The value corresponds to an entry in the \n            ceemEventTable.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "ceemHistoryEventType6": {
                            "type": "integer",
                            "description": "The type of Embedded Event Manager event which was\n            detected. The value corresponds to an entry in the \n            ceemEventTable.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "ceemHistoryEventType7": {
                            "type": "integer",
                            "description": "The type of Embedded Event Manager event which was\n            detected. The value corresponds to an entry in the \n            ceemEventTable.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "ceemHistoryEventType8": {
                            "type": "integer",
                            "description": "The type of Embedded Event Manager event which was\n            detected. The value corresponds to an entry in the \n            ceemEventTable.",
                            "minimum": 0,
                            "maximum": 4294967295
                          }
                        }
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-EMBEDDED-EVENT-MGR-MIB:ceemHistoryEventTable": {
                    "ceemHistoryEventEntry": [
                      {
                        "ceemHistoryEventIndex": 1,
                        "ceemHistoryEventType1": 0,
                        "ceemHistoryEventType2": 0,
                        "ceemHistoryEventType3": 0,
                        "ceemHistoryEventType4": 0,
                        "ceemHistoryPolicyPath": "example-string",
                        "ceemHistoryPolicyName": "interface-1",
                        "ceemHistoryPolicyExitStatus": -2147483648,
                        "ceemHistoryPolicyIntData1": -2147483648,
                        "ceemHistoryPolicyIntData2": -2147483648,
                        "ceemHistoryPolicyStrData": "example-string",
                        "ceemHistoryNotifyType": "ethernetCsmacd(6)",
                        "ceemHistoryEventType5": 0,
                        "ceemHistoryEventType6": 0,
                        "ceemHistoryEventType7": 0,
                        "ceemHistoryEventType8": 0
                      },
                      {
                        "ceemHistoryEventIndex": 2,
                        "ceemHistoryEventType1": 0,
                        "ceemHistoryEventType2": 0,
                        "ceemHistoryEventType3": 0,
                        "ceemHistoryEventType4": 0,
                        "ceemHistoryPolicyPath": "example-string",
                        "ceemHistoryPolicyName": "interface-1",
                        "ceemHistoryPolicyExitStatus": -2147483648,
                        "ceemHistoryPolicyIntData1": -2147483648,
                        "ceemHistoryPolicyIntData2": -2147483648,
                        "ceemHistoryPolicyStrData": "example-string",
                        "ceemHistoryNotifyType": "ethernetCsmacd(6)",
                        "ceemHistoryEventType5": 0,
                        "ceemHistoryEventType6": 0,
                        "ceemHistoryEventType7": 0,
                        "ceemHistoryEventType8": 0
                      },
                      {
                        "ceemHistoryEventIndex": 3,
                        "ceemHistoryEventType1": 0,
                        "ceemHistoryEventType2": 0,
                        "ceemHistoryEventType3": 0,
                        "ceemHistoryEventType4": 0,
                        "ceemHistoryPolicyPath": "example-string",
                        "ceemHistoryPolicyName": "interface-1",
                        "ceemHistoryPolicyExitStatus": -2147483648,
                        "ceemHistoryPolicyIntData1": -2147483648,
                        "ceemHistoryPolicyIntData2": -2147483648,
                        "ceemHistoryPolicyStrData": "example-string",
                        "ceemHistoryNotifyType": "ethernetCsmacd(6)",
                        "ceemHistoryEventType5": 0,
                        "ceemHistoryEventType6": 0,
                        "ceemHistoryEventType7": 0,
                        "ceemHistoryEventType8": 0
                      }
                    ]
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-ceemHistoryEventTable",
        "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": "/ceemHistoryEventTable",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-EMBEDDED-EVENT-MGR-MIB:ceemHistoryEventTable/ceemHistoryEventEntry": {
      "get": {
        "summary": "Get ceemHistoryEventEntry list",
        "description": "Retrieve list of ceemHistoryEventEntry entries from MIB",
        "tags": [
          "CISCO-EMBEDDED-EVENT-MGR-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "Information about an Embedded Event Manager event which has\n          been generated by this router.  It provides up to four event\n          types to support complex event specifications that are\n          triggered when multiple events are published within a certain\n          period of time.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "ceemHistoryEventIndex": {
                        "type": "integer",
                        "description": "A monotonically increasing non-zero integer uniquely\n            identifying a generated event.  When it reaches the \n            maximum value, the agent wraps the value back to 1 \n            and may flush all existing entries in the event table.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "ceemHistoryEventType1": {
                        "type": "integer",
                        "description": "The type of Embedded Event Manager event which was\n            detected. The value corresponds to an entry in the \n            ceemEventTable.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "ceemHistoryEventType2": {
                        "type": "integer",
                        "description": "The type of Embedded Event Manager event which was\n            detected. The value corresponds to an entry in the \n            ceemEventTable.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "ceemHistoryEventType3": {
                        "type": "integer",
                        "description": "The type of Embedded Event Manager event which was\n            detected. The value corresponds to an entry in the \n            ceemEventTable.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "ceemHistoryEventType4": {
                        "type": "integer",
                        "description": "The type of Embedded Event Manager event which was\n            detected. The value corresponds to an entry in the\n            ceemEventTable.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "ceemHistoryPolicyPath": {
                        "type": "string",
                        "description": "The file path on the router where the Embedded Event Manager\n            policy that was triggered is stored.  If the size of the \n            file path string is larger than 128, the end characters \n            will be truncated.",
                        "x-yang-type": "snmp-framework:SnmpAdminString"
                      },
                      "ceemHistoryPolicyName": {
                        "type": "string",
                        "description": "The name of the Embedded Event Manager policy that was\n            triggered because of an Embedded Event Manager event. The\n            name must be a valid Embedded Event Manager policy name. \n            It must be in the form of a valid Posix filename.",
                        "x-yang-type": "snmp-framework:SnmpAdminString"
                      },
                      "ceemHistoryPolicyExitStatus": {
                        "type": "integer",
                        "description": "The exit status of the Embedded Event Manager policy\n            execution.  This value corresponds to the Posix process \n            exit status.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "ceemHistoryPolicyIntData1": {
                        "type": "integer",
                        "description": "Arbitrary integer data that the Embedded Event Manager policy\n            can use. Use of this object is optional. If unused by\n            a policy, this object will not be instantiated for \n            that policy.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "ceemHistoryPolicyIntData2": {
                        "type": "integer",
                        "description": "Arbitrary integer data that the Embedded Event Manager policy\n            can use. Use of this object is optional. If unused by\n            a policy, this object will not be instantiated for \n            that policy.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "ceemHistoryPolicyStrData": {
                        "type": "string",
                        "description": "Arbitrary string data the Embedded Event Manager policy can\n            use.  Use of this object is optional.  If unused by\n            a policy, this object will not be instantiated for \n            that policy.",
                        "x-yang-type": "snmp-framework:SnmpAdminString"
                      },
                      "ceemHistoryNotifyType": {
                        "type": "string",
                        "description": "The notification type that was sent from the Embedded Event\n            Manager.  The valid values are server or policy.",
                        "x-yang-type": "CISCO-EMBEDDED-EVENT-MGR-MIB:NotifySource"
                      },
                      "ceemHistoryEventType5": {
                        "type": "integer",
                        "description": "The type of Embedded Event Manager event which was\n            detected. The value corresponds to an entry in the \n            ceemEventTable.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "ceemHistoryEventType6": {
                        "type": "integer",
                        "description": "The type of Embedded Event Manager event which was\n            detected. The value corresponds to an entry in the \n            ceemEventTable.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "ceemHistoryEventType7": {
                        "type": "integer",
                        "description": "The type of Embedded Event Manager event which was\n            detected. The value corresponds to an entry in the \n            ceemEventTable.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "ceemHistoryEventType8": {
                        "type": "integer",
                        "description": "The type of Embedded Event Manager event which was\n            detected. The value corresponds to an entry in the \n            ceemEventTable.",
                        "minimum": 0,
                        "maximum": 4294967295
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-EMBEDDED-EVENT-MGR-MIB:ceemHistoryEventEntry": [
                    {
                      "ceemHistoryEventIndex": 1,
                      "ceemHistoryEventType1": 0,
                      "ceemHistoryEventType2": 0,
                      "ceemHistoryEventType3": 0,
                      "ceemHistoryEventType4": 0,
                      "ceemHistoryPolicyPath": "example-string",
                      "ceemHistoryPolicyName": "interface-1",
                      "ceemHistoryPolicyExitStatus": -2147483648,
                      "ceemHistoryPolicyIntData1": -2147483648,
                      "ceemHistoryPolicyIntData2": -2147483648,
                      "ceemHistoryPolicyStrData": "example-string",
                      "ceemHistoryNotifyType": "ethernetCsmacd(6)",
                      "ceemHistoryEventType5": 0,
                      "ceemHistoryEventType6": 0,
                      "ceemHistoryEventType7": 0,
                      "ceemHistoryEventType8": 0
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-ceemHistoryEventEntry",
        "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": "/ceemHistoryEventTable/ceemHistoryEventEntry",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-EMBEDDED-EVENT-MGR-MIB:ceemHistoryEventTable/ceemHistoryEventEntry={ceemHistoryEventIndex}": {
      "get": {
        "summary": "Get ceemHistoryEventEntry entry",
        "description": "Retrieve specific ceemHistoryEventEntry entry by key from MIB",
        "tags": [
          "CISCO-EMBEDDED-EVENT-MGR-MIB"
        ],
        "parameters": [
          {
            "name": "ceemHistoryEventIndex",
            "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": {
                    "ceemHistoryEventIndex": {
                      "type": "integer",
                      "description": "A monotonically increasing non-zero integer uniquely\n            identifying a generated event.  When it reaches the \n            maximum value, the agent wraps the value back to 1 \n            and may flush all existing entries in the event table.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "ceemHistoryEventType1": {
                      "type": "integer",
                      "description": "The type of Embedded Event Manager event which was\n            detected. The value corresponds to an entry in the \n            ceemEventTable.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "ceemHistoryEventType2": {
                      "type": "integer",
                      "description": "The type of Embedded Event Manager event which was\n            detected. The value corresponds to an entry in the \n            ceemEventTable.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "ceemHistoryEventType3": {
                      "type": "integer",
                      "description": "The type of Embedded Event Manager event which was\n            detected. The value corresponds to an entry in the \n            ceemEventTable.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "ceemHistoryEventType4": {
                      "type": "integer",
                      "description": "The type of Embedded Event Manager event which was\n            detected. The value corresponds to an entry in the\n            ceemEventTable.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "ceemHistoryPolicyPath": {
                      "type": "string",
                      "description": "The file path on the router where the Embedded Event Manager\n            policy that was triggered is stored.  If the size of the \n            file path string is larger than 128, the end characters \n            will be truncated.",
                      "x-yang-type": "snmp-framework:SnmpAdminString"
                    },
                    "ceemHistoryPolicyName": {
                      "type": "string",
                      "description": "The name of the Embedded Event Manager policy that was\n            triggered because of an Embedded Event Manager event. The\n            name must be a valid Embedded Event Manager policy name. \n            It must be in the form of a valid Posix filename.",
                      "x-yang-type": "snmp-framework:SnmpAdminString"
                    },
                    "ceemHistoryPolicyExitStatus": {
                      "type": "integer",
                      "description": "The exit status of the Embedded Event Manager policy\n            execution.  This value corresponds to the Posix process \n            exit status.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "ceemHistoryPolicyIntData1": {
                      "type": "integer",
                      "description": "Arbitrary integer data that the Embedded Event Manager policy\n            can use. Use of this object is optional. If unused by\n            a policy, this object will not be instantiated for \n            that policy.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "ceemHistoryPolicyIntData2": {
                      "type": "integer",
                      "description": "Arbitrary integer data that the Embedded Event Manager policy\n            can use. Use of this object is optional. If unused by\n            a policy, this object will not be instantiated for \n            that policy.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "ceemHistoryPolicyStrData": {
                      "type": "string",
                      "description": "Arbitrary string data the Embedded Event Manager policy can\n            use.  Use of this object is optional.  If unused by\n            a policy, this object will not be instantiated for \n            that policy.",
                      "x-yang-type": "snmp-framework:SnmpAdminString"
                    },
                    "ceemHistoryNotifyType": {
                      "type": "string",
                      "description": "The notification type that was sent from the Embedded Event\n            Manager.  The valid values are server or policy.",
                      "x-yang-type": "CISCO-EMBEDDED-EVENT-MGR-MIB:NotifySource"
                    },
                    "ceemHistoryEventType5": {
                      "type": "integer",
                      "description": "The type of Embedded Event Manager event which was\n            detected. The value corresponds to an entry in the \n            ceemEventTable.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "ceemHistoryEventType6": {
                      "type": "integer",
                      "description": "The type of Embedded Event Manager event which was\n            detected. The value corresponds to an entry in the \n            ceemEventTable.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "ceemHistoryEventType7": {
                      "type": "integer",
                      "description": "The type of Embedded Event Manager event which was\n            detected. The value corresponds to an entry in the \n            ceemEventTable.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "ceemHistoryEventType8": {
                      "type": "integer",
                      "description": "The type of Embedded Event Manager event which was\n            detected. The value corresponds to an entry in the \n            ceemEventTable.",
                      "minimum": 0,
                      "maximum": 4294967295
                    }
                  }
                },
                "example": {
                  "CISCO-EMBEDDED-EVENT-MGR-MIB:ceemHistoryEventEntry": {
                    "ceemHistoryEventIndex": 1,
                    "ceemHistoryEventType1": 0,
                    "ceemHistoryEventType2": 0,
                    "ceemHistoryEventType3": 0,
                    "ceemHistoryEventType4": 0,
                    "ceemHistoryPolicyPath": "example-string",
                    "ceemHistoryPolicyName": "interface-1",
                    "ceemHistoryPolicyExitStatus": -2147483648,
                    "ceemHistoryPolicyIntData1": -2147483648,
                    "ceemHistoryPolicyIntData2": -2147483648,
                    "ceemHistoryPolicyStrData": "example-string",
                    "ceemHistoryNotifyType": "ethernetCsmacd(6)",
                    "ceemHistoryEventType5": 0,
                    "ceemHistoryEventType6": 0,
                    "ceemHistoryEventType7": 0,
                    "ceemHistoryEventType8": 0
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-ceemHistoryEventEntry-2"
      },
      "x-yang-path": "/ceemHistoryEventTable/ceemHistoryEventEntry={ceemHistoryEventIndex}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "ceemHistoryEventIndex"
      ]
    },
    "/data/CISCO-EMBEDDED-EVENT-MGR-MIB:ceemRegisteredPolicyTable": {
      "get": {
        "summary": "Get ceemRegisteredPolicyTable data",
        "description": "Retrieve ceemRegisteredPolicyTable operational data from MIB",
        "tags": [
          "CISCO-EMBEDDED-EVENT-MGR-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "description": "A table of Embedded Event Manager policies registered on a system.\n        The number of entries depends on the configuration of the system.  The \n        maximum number is implementation dependent.",
                  "properties": {
                    "ceemRegisteredPolicyEntry": {
                      "type": "array",
                      "description": "An entry in the table of Embedded Event Manager policies that are\n          registered.  It provides up to four event types to support complex \n          event specifications that are triggered when multiple events are \n          published within a certain period of time.  A row in this table \n          cannot be created or deleted by SNMP operations on columns of the \n          table.",
                      "items": {
                        "type": "object",
                        "properties": {
                          "ceemRegisteredPolicyIndex": {
                            "type": "integer",
                            "description": "A monotonically increasing non-zero integer uniquely\n            identifying a policy registration.  When it reaches the\n            maximum value, the agent wraps the value back to 1 upon \n            receiving the next policy registration.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "ceemRegisteredPolicyName": {
                            "type": "string",
                            "description": "The name of the Embedded Event Manager policy that was\n            registered.  The name must be a valid Embedded Event \n            Manager policy name. It must be in the form of a valid \n            Posix filename.",
                            "x-yang-type": "snmp-framework:SnmpAdminString"
                          },
                          "ceemRegisteredPolicyEventType1": {
                            "type": "integer",
                            "description": "The type of Embedded Event Manager event which was registered\n            by the policy. The value corresponds to an entry in the\n            ceemEventMapTable.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "ceemRegisteredPolicyEventType2": {
                            "type": "integer",
                            "description": "The type of Embedded Event Manager event which was registered\n            by the policy. The value corresponds to an entry in the\n            ceemEventMapTable.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "ceemRegisteredPolicyEventType3": {
                            "type": "integer",
                            "description": "The type of Embedded Event Manager event which was registered\n            by the policy. The value corresponds to an entry in the\n            ceemEventMapTable.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "ceemRegisteredPolicyEventType4": {
                            "type": "integer",
                            "description": "The type of Embedded Event Manager event which was registered\n            by the policy. The value corresponds to an entry in the\n            ceemEventMapTable.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "ceemRegisteredPolicyStatus": {
                            "type": "string",
                            "description": "This status indicates whether the policy is enabled or disabled."
                          },
                          "ceemRegisteredPolicyType": {
                            "type": "string",
                            "description": "This variable indicates whether this is a user or system policy."
                          },
                          "ceemRegisteredPolicyNotifFlag": {
                            "type": "boolean",
                            "description": "This flag indicates if an SNMP notification will be sent when\n            policy is triggered."
                          },
                          "ceemRegisteredPolicyRegTime": {
                            "type": "string",
                            "description": "The time the policy was registered.  It is stored as a\n            32-bit count of seconds since 0000 UTC, 1 January, 1970.",
                            "x-yang-type": "snmpv2-tc:DateAndTime"
                          },
                          "ceemRegisteredPolicyEnabledTime": {
                            "type": "string",
                            "description": "The time the policy was last enabled.  It is stored as a\n            32-bit count of seconds since 0000 UTC, 1 January, 1970.",
                            "x-yang-type": "snmpv2-tc:DateAndTime"
                          },
                          "ceemRegisteredPolicyRunTime": {
                            "type": "string",
                            "description": "The last time the policy was run.  It is stored as a\n            32-bit count of seconds since 0000 UTC, 1 January, 1970.",
                            "x-yang-type": "snmpv2-tc:DateAndTime"
                          },
                          "ceemRegisteredPolicyRunCount": {
                            "type": "integer",
                            "description": "The number of times the policy has been run.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "ceemRegisteredPolicyEventType5": {
                            "type": "integer",
                            "description": "The type of Embedded Event Manager event which was registered\n            by the policy. The value corresponds to an entry in the\n            ceemEventMapTable.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "ceemRegisteredPolicyEventType6": {
                            "type": "integer",
                            "description": "The type of Embedded Event Manager event which was registered\n            by the policy. The value corresponds to an entry in the\n            ceemEventMapTable.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "ceemRegisteredPolicyEventType7": {
                            "type": "integer",
                            "description": "The type of Embedded Event Manager event which was registered\n            by the policy. The value corresponds to an entry in the\n            ceemEventMapTable.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "ceemRegisteredPolicyEventType8": {
                            "type": "integer",
                            "description": "The type of Embedded Event Manager event which was registered\n            by the policy. The value corresponds to an entry in the\n            ceemEventMapTable.",
                            "minimum": 0,
                            "maximum": 4294967295
                          }
                        }
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-EMBEDDED-EVENT-MGR-MIB:ceemRegisteredPolicyTable": {
                    "ceemRegisteredPolicyEntry": [
                      {
                        "ceemRegisteredPolicyIndex": 1,
                        "ceemRegisteredPolicyName": "interface-1",
                        "ceemRegisteredPolicyEventType1": 0,
                        "ceemRegisteredPolicyEventType2": 0,
                        "ceemRegisteredPolicyEventType3": 0,
                        "ceemRegisteredPolicyEventType4": 0,
                        "ceemRegisteredPolicyStatus": "up(1)",
                        "ceemRegisteredPolicyType": "ethernetCsmacd(6)",
                        "ceemRegisteredPolicyNotifFlag": true,
                        "ceemRegisteredPolicyRegTime": "example-string",
                        "ceemRegisteredPolicyEnabledTime": "example-string",
                        "ceemRegisteredPolicyRunTime": "example-string",
                        "ceemRegisteredPolicyRunCount": 0,
                        "ceemRegisteredPolicyEventType5": 0,
                        "ceemRegisteredPolicyEventType6": 0,
                        "ceemRegisteredPolicyEventType7": 0,
                        "ceemRegisteredPolicyEventType8": 0
                      },
                      {
                        "ceemRegisteredPolicyIndex": 2,
                        "ceemRegisteredPolicyName": "interface-1",
                        "ceemRegisteredPolicyEventType1": 0,
                        "ceemRegisteredPolicyEventType2": 0,
                        "ceemRegisteredPolicyEventType3": 0,
                        "ceemRegisteredPolicyEventType4": 0,
                        "ceemRegisteredPolicyStatus": "up(1)",
                        "ceemRegisteredPolicyType": "ethernetCsmacd(6)",
                        "ceemRegisteredPolicyNotifFlag": true,
                        "ceemRegisteredPolicyRegTime": "example-string",
                        "ceemRegisteredPolicyEnabledTime": "example-string",
                        "ceemRegisteredPolicyRunTime": "example-string",
                        "ceemRegisteredPolicyRunCount": 0,
                        "ceemRegisteredPolicyEventType5": 0,
                        "ceemRegisteredPolicyEventType6": 0,
                        "ceemRegisteredPolicyEventType7": 0,
                        "ceemRegisteredPolicyEventType8": 0
                      },
                      {
                        "ceemRegisteredPolicyIndex": 3,
                        "ceemRegisteredPolicyName": "interface-1",
                        "ceemRegisteredPolicyEventType1": 0,
                        "ceemRegisteredPolicyEventType2": 0,
                        "ceemRegisteredPolicyEventType3": 0,
                        "ceemRegisteredPolicyEventType4": 0,
                        "ceemRegisteredPolicyStatus": "up(1)",
                        "ceemRegisteredPolicyType": "ethernetCsmacd(6)",
                        "ceemRegisteredPolicyNotifFlag": true,
                        "ceemRegisteredPolicyRegTime": "example-string",
                        "ceemRegisteredPolicyEnabledTime": "example-string",
                        "ceemRegisteredPolicyRunTime": "example-string",
                        "ceemRegisteredPolicyRunCount": 0,
                        "ceemRegisteredPolicyEventType5": 0,
                        "ceemRegisteredPolicyEventType6": 0,
                        "ceemRegisteredPolicyEventType7": 0,
                        "ceemRegisteredPolicyEventType8": 0
                      }
                    ]
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-ceemRegisteredPolicyTable",
        "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": "/ceemRegisteredPolicyTable",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-EMBEDDED-EVENT-MGR-MIB:ceemRegisteredPolicyTable/ceemRegisteredPolicyEntry": {
      "get": {
        "summary": "Get ceemRegisteredPolicyEntry list",
        "description": "Retrieve list of ceemRegisteredPolicyEntry entries from MIB",
        "tags": [
          "CISCO-EMBEDDED-EVENT-MGR-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "An entry in the table of Embedded Event Manager policies that are\n          registered.  It provides up to four event types to support complex \n          event specifications that are triggered when multiple events are \n          published within a certain period of time.  A row in this table \n          cannot be created or deleted by SNMP operations on columns of the \n          table.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "ceemRegisteredPolicyIndex": {
                        "type": "integer",
                        "description": "A monotonically increasing non-zero integer uniquely\n            identifying a policy registration.  When it reaches the\n            maximum value, the agent wraps the value back to 1 upon \n            receiving the next policy registration.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "ceemRegisteredPolicyName": {
                        "type": "string",
                        "description": "The name of the Embedded Event Manager policy that was\n            registered.  The name must be a valid Embedded Event \n            Manager policy name. It must be in the form of a valid \n            Posix filename.",
                        "x-yang-type": "snmp-framework:SnmpAdminString"
                      },
                      "ceemRegisteredPolicyEventType1": {
                        "type": "integer",
                        "description": "The type of Embedded Event Manager event which was registered\n            by the policy. The value corresponds to an entry in the\n            ceemEventMapTable.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "ceemRegisteredPolicyEventType2": {
                        "type": "integer",
                        "description": "The type of Embedded Event Manager event which was registered\n            by the policy. The value corresponds to an entry in the\n            ceemEventMapTable.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "ceemRegisteredPolicyEventType3": {
                        "type": "integer",
                        "description": "The type of Embedded Event Manager event which was registered\n            by the policy. The value corresponds to an entry in the\n            ceemEventMapTable.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "ceemRegisteredPolicyEventType4": {
                        "type": "integer",
                        "description": "The type of Embedded Event Manager event which was registered\n            by the policy. The value corresponds to an entry in the\n            ceemEventMapTable.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "ceemRegisteredPolicyStatus": {
                        "type": "string",
                        "description": "This status indicates whether the policy is enabled or disabled."
                      },
                      "ceemRegisteredPolicyType": {
                        "type": "string",
                        "description": "This variable indicates whether this is a user or system policy."
                      },
                      "ceemRegisteredPolicyNotifFlag": {
                        "type": "boolean",
                        "description": "This flag indicates if an SNMP notification will be sent when\n            policy is triggered."
                      },
                      "ceemRegisteredPolicyRegTime": {
                        "type": "string",
                        "description": "The time the policy was registered.  It is stored as a\n            32-bit count of seconds since 0000 UTC, 1 January, 1970.",
                        "x-yang-type": "snmpv2-tc:DateAndTime"
                      },
                      "ceemRegisteredPolicyEnabledTime": {
                        "type": "string",
                        "description": "The time the policy was last enabled.  It is stored as a\n            32-bit count of seconds since 0000 UTC, 1 January, 1970.",
                        "x-yang-type": "snmpv2-tc:DateAndTime"
                      },
                      "ceemRegisteredPolicyRunTime": {
                        "type": "string",
                        "description": "The last time the policy was run.  It is stored as a\n            32-bit count of seconds since 0000 UTC, 1 January, 1970.",
                        "x-yang-type": "snmpv2-tc:DateAndTime"
                      },
                      "ceemRegisteredPolicyRunCount": {
                        "type": "integer",
                        "description": "The number of times the policy has been run.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "ceemRegisteredPolicyEventType5": {
                        "type": "integer",
                        "description": "The type of Embedded Event Manager event which was registered\n            by the policy. The value corresponds to an entry in the\n            ceemEventMapTable.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "ceemRegisteredPolicyEventType6": {
                        "type": "integer",
                        "description": "The type of Embedded Event Manager event which was registered\n            by the policy. The value corresponds to an entry in the\n            ceemEventMapTable.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "ceemRegisteredPolicyEventType7": {
                        "type": "integer",
                        "description": "The type of Embedded Event Manager event which was registered\n            by the policy. The value corresponds to an entry in the\n            ceemEventMapTable.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "ceemRegisteredPolicyEventType8": {
                        "type": "integer",
                        "description": "The type of Embedded Event Manager event which was registered\n            by the policy. The value corresponds to an entry in the\n            ceemEventMapTable.",
                        "minimum": 0,
                        "maximum": 4294967295
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-EMBEDDED-EVENT-MGR-MIB:ceemRegisteredPolicyEntry": [
                    {
                      "ceemRegisteredPolicyIndex": 1,
                      "ceemRegisteredPolicyName": "interface-1",
                      "ceemRegisteredPolicyEventType1": 0,
                      "ceemRegisteredPolicyEventType2": 0,
                      "ceemRegisteredPolicyEventType3": 0,
                      "ceemRegisteredPolicyEventType4": 0,
                      "ceemRegisteredPolicyStatus": "up(1)",
                      "ceemRegisteredPolicyType": "ethernetCsmacd(6)",
                      "ceemRegisteredPolicyNotifFlag": true,
                      "ceemRegisteredPolicyRegTime": "example-string",
                      "ceemRegisteredPolicyEnabledTime": "example-string",
                      "ceemRegisteredPolicyRunTime": "example-string",
                      "ceemRegisteredPolicyRunCount": 0,
                      "ceemRegisteredPolicyEventType5": 0,
                      "ceemRegisteredPolicyEventType6": 0,
                      "ceemRegisteredPolicyEventType7": 0,
                      "ceemRegisteredPolicyEventType8": 0
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-ceemRegisteredPolicyEntry",
        "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": "/ceemRegisteredPolicyTable/ceemRegisteredPolicyEntry",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-EMBEDDED-EVENT-MGR-MIB:ceemRegisteredPolicyTable/ceemRegisteredPolicyEntry={ceemRegisteredPolicyIndex}": {
      "get": {
        "summary": "Get ceemRegisteredPolicyEntry entry",
        "description": "Retrieve specific ceemRegisteredPolicyEntry entry by key from MIB",
        "tags": [
          "CISCO-EMBEDDED-EVENT-MGR-MIB"
        ],
        "parameters": [
          {
            "name": "ceemRegisteredPolicyIndex",
            "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": {
                    "ceemRegisteredPolicyIndex": {
                      "type": "integer",
                      "description": "A monotonically increasing non-zero integer uniquely\n            identifying a policy registration.  When it reaches the\n            maximum value, the agent wraps the value back to 1 upon \n            receiving the next policy registration.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "ceemRegisteredPolicyName": {
                      "type": "string",
                      "description": "The name of the Embedded Event Manager policy that was\n            registered.  The name must be a valid Embedded Event \n            Manager policy name. It must be in the form of a valid \n            Posix filename.",
                      "x-yang-type": "snmp-framework:SnmpAdminString"
                    },
                    "ceemRegisteredPolicyEventType1": {
                      "type": "integer",
                      "description": "The type of Embedded Event Manager event which was registered\n            by the policy. The value corresponds to an entry in the\n            ceemEventMapTable.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "ceemRegisteredPolicyEventType2": {
                      "type": "integer",
                      "description": "The type of Embedded Event Manager event which was registered\n            by the policy. The value corresponds to an entry in the\n            ceemEventMapTable.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "ceemRegisteredPolicyEventType3": {
                      "type": "integer",
                      "description": "The type of Embedded Event Manager event which was registered\n            by the policy. The value corresponds to an entry in the\n            ceemEventMapTable.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "ceemRegisteredPolicyEventType4": {
                      "type": "integer",
                      "description": "The type of Embedded Event Manager event which was registered\n            by the policy. The value corresponds to an entry in the\n            ceemEventMapTable.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "ceemRegisteredPolicyStatus": {
                      "type": "string",
                      "description": "This status indicates whether the policy is enabled or disabled."
                    },
                    "ceemRegisteredPolicyType": {
                      "type": "string",
                      "description": "This variable indicates whether this is a user or system policy."
                    },
                    "ceemRegisteredPolicyNotifFlag": {
                      "type": "boolean",
                      "description": "This flag indicates if an SNMP notification will be sent when\n            policy is triggered."
                    },
                    "ceemRegisteredPolicyRegTime": {
                      "type": "string",
                      "description": "The time the policy was registered.  It is stored as a\n            32-bit count of seconds since 0000 UTC, 1 January, 1970.",
                      "x-yang-type": "snmpv2-tc:DateAndTime"
                    },
                    "ceemRegisteredPolicyEnabledTime": {
                      "type": "string",
                      "description": "The time the policy was last enabled.  It is stored as a\n            32-bit count of seconds since 0000 UTC, 1 January, 1970.",
                      "x-yang-type": "snmpv2-tc:DateAndTime"
                    },
                    "ceemRegisteredPolicyRunTime": {
                      "type": "string",
                      "description": "The last time the policy was run.  It is stored as a\n            32-bit count of seconds since 0000 UTC, 1 January, 1970.",
                      "x-yang-type": "snmpv2-tc:DateAndTime"
                    },
                    "ceemRegisteredPolicyRunCount": {
                      "type": "integer",
                      "description": "The number of times the policy has been run.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "ceemRegisteredPolicyEventType5": {
                      "type": "integer",
                      "description": "The type of Embedded Event Manager event which was registered\n            by the policy. The value corresponds to an entry in the\n            ceemEventMapTable.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "ceemRegisteredPolicyEventType6": {
                      "type": "integer",
                      "description": "The type of Embedded Event Manager event which was registered\n            by the policy. The value corresponds to an entry in the\n            ceemEventMapTable.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "ceemRegisteredPolicyEventType7": {
                      "type": "integer",
                      "description": "The type of Embedded Event Manager event which was registered\n            by the policy. The value corresponds to an entry in the\n            ceemEventMapTable.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "ceemRegisteredPolicyEventType8": {
                      "type": "integer",
                      "description": "The type of Embedded Event Manager event which was registered\n            by the policy. The value corresponds to an entry in the\n            ceemEventMapTable.",
                      "minimum": 0,
                      "maximum": 4294967295
                    }
                  }
                },
                "example": {
                  "CISCO-EMBEDDED-EVENT-MGR-MIB:ceemRegisteredPolicyEntry": {
                    "ceemRegisteredPolicyIndex": 1,
                    "ceemRegisteredPolicyName": "interface-1",
                    "ceemRegisteredPolicyEventType1": 0,
                    "ceemRegisteredPolicyEventType2": 0,
                    "ceemRegisteredPolicyEventType3": 0,
                    "ceemRegisteredPolicyEventType4": 0,
                    "ceemRegisteredPolicyStatus": "up(1)",
                    "ceemRegisteredPolicyType": "ethernetCsmacd(6)",
                    "ceemRegisteredPolicyNotifFlag": true,
                    "ceemRegisteredPolicyRegTime": "example-string",
                    "ceemRegisteredPolicyEnabledTime": "example-string",
                    "ceemRegisteredPolicyRunTime": "example-string",
                    "ceemRegisteredPolicyRunCount": 0,
                    "ceemRegisteredPolicyEventType5": 0,
                    "ceemRegisteredPolicyEventType6": 0,
                    "ceemRegisteredPolicyEventType7": 0,
                    "ceemRegisteredPolicyEventType8": 0
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-ceemRegisteredPolicyEntry-2"
      },
      "x-yang-path": "/ceemRegisteredPolicyTable/ceemRegisteredPolicyEntry={ceemRegisteredPolicyIndex}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "ceemRegisteredPolicyIndex"
      ]
    },
    "/data/CISCO-EMBEDDED-EVENT-MGR-MIB:ceemEventMapEntry": {
      "get": {
        "summary": "Get ceemEventMapEntry list",
        "description": "Retrieve list of ceemEventMapEntry entries from MIB",
        "tags": [
          "CISCO-EMBEDDED-EVENT-MGR-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "A mapping between an event type and an event description.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "ceemEventIndex": {
                        "type": "integer",
                        "description": "This object uniquely identifies an event.  Events\n            are not persisted across reloads.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "ceemEventName": {
                        "type": "string",
                        "description": "The name of the Embedded Event Manager event.",
                        "x-yang-type": "snmp-framework:SnmpAdminString"
                      },
                      "ceemEventDescrText": {
                        "type": "string",
                        "description": "This object specifies a human-readable\n            message describing information about the \n            Embedded Event Manager event.",
                        "x-yang-type": "snmp-framework:SnmpAdminString"
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-EMBEDDED-EVENT-MGR-MIB:ceemEventMapEntry": [
                    {
                      "ceemEventIndex": 1,
                      "ceemEventName": "interface-1",
                      "ceemEventDescrText": "GigabitEthernet1/0/1"
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-ceemEventMapEntry-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": "/ceemEventMapEntry",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-EMBEDDED-EVENT-MGR-MIB:ceemEventMapEntry={ceemEventIndex}": {
      "get": {
        "summary": "Get ceemEventMapEntry entry",
        "description": "Retrieve specific ceemEventMapEntry entry by key from MIB",
        "tags": [
          "CISCO-EMBEDDED-EVENT-MGR-MIB"
        ],
        "parameters": [
          {
            "name": "ceemEventIndex",
            "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": {
                    "ceemEventIndex": {
                      "type": "integer",
                      "description": "This object uniquely identifies an event.  Events\n            are not persisted across reloads.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "ceemEventName": {
                      "type": "string",
                      "description": "The name of the Embedded Event Manager event.",
                      "x-yang-type": "snmp-framework:SnmpAdminString"
                    },
                    "ceemEventDescrText": {
                      "type": "string",
                      "description": "This object specifies a human-readable\n            message describing information about the \n            Embedded Event Manager event.",
                      "x-yang-type": "snmp-framework:SnmpAdminString"
                    }
                  }
                },
                "example": {
                  "CISCO-EMBEDDED-EVENT-MGR-MIB:ceemEventMapEntry": {
                    "ceemEventIndex": 1,
                    "ceemEventName": "interface-1",
                    "ceemEventDescrText": "GigabitEthernet1/0/1"
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-ceemEventMapEntry-4"
      },
      "x-yang-path": "/ceemEventMapEntry={ceemEventIndex}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "ceemEventIndex"
      ]
    },
    "/data/CISCO-EMBEDDED-EVENT-MGR-MIB:ceemHistoryEventEntry": {
      "get": {
        "summary": "Get ceemHistoryEventEntry list",
        "description": "Retrieve list of ceemHistoryEventEntry entries from MIB",
        "tags": [
          "CISCO-EMBEDDED-EVENT-MGR-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "Information about an Embedded Event Manager event which has\n          been generated by this router.  It provides up to four event\n          types to support complex event specifications that are\n          triggered when multiple events are published within a certain\n          period of time.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "ceemHistoryEventIndex": {
                        "type": "integer",
                        "description": "A monotonically increasing non-zero integer uniquely\n            identifying a generated event.  When it reaches the \n            maximum value, the agent wraps the value back to 1 \n            and may flush all existing entries in the event table.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "ceemHistoryEventType1": {
                        "type": "integer",
                        "description": "The type of Embedded Event Manager event which was\n            detected. The value corresponds to an entry in the \n            ceemEventTable.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "ceemHistoryEventType2": {
                        "type": "integer",
                        "description": "The type of Embedded Event Manager event which was\n            detected. The value corresponds to an entry in the \n            ceemEventTable.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "ceemHistoryEventType3": {
                        "type": "integer",
                        "description": "The type of Embedded Event Manager event which was\n            detected. The value corresponds to an entry in the \n            ceemEventTable.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "ceemHistoryEventType4": {
                        "type": "integer",
                        "description": "The type of Embedded Event Manager event which was\n            detected. The value corresponds to an entry in the\n            ceemEventTable.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "ceemHistoryPolicyPath": {
                        "type": "string",
                        "description": "The file path on the router where the Embedded Event Manager\n            policy that was triggered is stored.  If the size of the \n            file path string is larger than 128, the end characters \n            will be truncated.",
                        "x-yang-type": "snmp-framework:SnmpAdminString"
                      },
                      "ceemHistoryPolicyName": {
                        "type": "string",
                        "description": "The name of the Embedded Event Manager policy that was\n            triggered because of an Embedded Event Manager event. The\n            name must be a valid Embedded Event Manager policy name. \n            It must be in the form of a valid Posix filename.",
                        "x-yang-type": "snmp-framework:SnmpAdminString"
                      },
                      "ceemHistoryPolicyExitStatus": {
                        "type": "integer",
                        "description": "The exit status of the Embedded Event Manager policy\n            execution.  This value corresponds to the Posix process \n            exit status.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "ceemHistoryPolicyIntData1": {
                        "type": "integer",
                        "description": "Arbitrary integer data that the Embedded Event Manager policy\n            can use. Use of this object is optional. If unused by\n            a policy, this object will not be instantiated for \n            that policy.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "ceemHistoryPolicyIntData2": {
                        "type": "integer",
                        "description": "Arbitrary integer data that the Embedded Event Manager policy\n            can use. Use of this object is optional. If unused by\n            a policy, this object will not be instantiated for \n            that policy.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "ceemHistoryPolicyStrData": {
                        "type": "string",
                        "description": "Arbitrary string data the Embedded Event Manager policy can\n            use.  Use of this object is optional.  If unused by\n            a policy, this object will not be instantiated for \n            that policy.",
                        "x-yang-type": "snmp-framework:SnmpAdminString"
                      },
                      "ceemHistoryNotifyType": {
                        "type": "string",
                        "description": "The notification type that was sent from the Embedded Event\n            Manager.  The valid values are server or policy.",
                        "x-yang-type": "CISCO-EMBEDDED-EVENT-MGR-MIB:NotifySource"
                      },
                      "ceemHistoryEventType5": {
                        "type": "integer",
                        "description": "The type of Embedded Event Manager event which was\n            detected. The value corresponds to an entry in the \n            ceemEventTable.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "ceemHistoryEventType6": {
                        "type": "integer",
                        "description": "The type of Embedded Event Manager event which was\n            detected. The value corresponds to an entry in the \n            ceemEventTable.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "ceemHistoryEventType7": {
                        "type": "integer",
                        "description": "The type of Embedded Event Manager event which was\n            detected. The value corresponds to an entry in the \n            ceemEventTable.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "ceemHistoryEventType8": {
                        "type": "integer",
                        "description": "The type of Embedded Event Manager event which was\n            detected. The value corresponds to an entry in the \n            ceemEventTable.",
                        "minimum": 0,
                        "maximum": 4294967295
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-EMBEDDED-EVENT-MGR-MIB:ceemHistoryEventEntry": [
                    {
                      "ceemHistoryEventIndex": 1,
                      "ceemHistoryEventType1": 0,
                      "ceemHistoryEventType2": 0,
                      "ceemHistoryEventType3": 0,
                      "ceemHistoryEventType4": 0,
                      "ceemHistoryPolicyPath": "example-string",
                      "ceemHistoryPolicyName": "interface-1",
                      "ceemHistoryPolicyExitStatus": -2147483648,
                      "ceemHistoryPolicyIntData1": -2147483648,
                      "ceemHistoryPolicyIntData2": -2147483648,
                      "ceemHistoryPolicyStrData": "example-string",
                      "ceemHistoryNotifyType": "ethernetCsmacd(6)",
                      "ceemHistoryEventType5": 0,
                      "ceemHistoryEventType6": 0,
                      "ceemHistoryEventType7": 0,
                      "ceemHistoryEventType8": 0
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-ceemHistoryEventEntry-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": "/ceemHistoryEventEntry",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-EMBEDDED-EVENT-MGR-MIB:ceemHistoryEventEntry={ceemHistoryEventIndex}": {
      "get": {
        "summary": "Get ceemHistoryEventEntry entry",
        "description": "Retrieve specific ceemHistoryEventEntry entry by key from MIB",
        "tags": [
          "CISCO-EMBEDDED-EVENT-MGR-MIB"
        ],
        "parameters": [
          {
            "name": "ceemHistoryEventIndex",
            "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": {
                    "ceemHistoryEventIndex": {
                      "type": "integer",
                      "description": "A monotonically increasing non-zero integer uniquely\n            identifying a generated event.  When it reaches the \n            maximum value, the agent wraps the value back to 1 \n            and may flush all existing entries in the event table.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "ceemHistoryEventType1": {
                      "type": "integer",
                      "description": "The type of Embedded Event Manager event which was\n            detected. The value corresponds to an entry in the \n            ceemEventTable.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "ceemHistoryEventType2": {
                      "type": "integer",
                      "description": "The type of Embedded Event Manager event which was\n            detected. The value corresponds to an entry in the \n            ceemEventTable.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "ceemHistoryEventType3": {
                      "type": "integer",
                      "description": "The type of Embedded Event Manager event which was\n            detected. The value corresponds to an entry in the \n            ceemEventTable.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "ceemHistoryEventType4": {
                      "type": "integer",
                      "description": "The type of Embedded Event Manager event which was\n            detected. The value corresponds to an entry in the\n            ceemEventTable.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "ceemHistoryPolicyPath": {
                      "type": "string",
                      "description": "The file path on the router where the Embedded Event Manager\n            policy that was triggered is stored.  If the size of the \n            file path string is larger than 128, the end characters \n            will be truncated.",
                      "x-yang-type": "snmp-framework:SnmpAdminString"
                    },
                    "ceemHistoryPolicyName": {
                      "type": "string",
                      "description": "The name of the Embedded Event Manager policy that was\n            triggered because of an Embedded Event Manager event. The\n            name must be a valid Embedded Event Manager policy name. \n            It must be in the form of a valid Posix filename.",
                      "x-yang-type": "snmp-framework:SnmpAdminString"
                    },
                    "ceemHistoryPolicyExitStatus": {
                      "type": "integer",
                      "description": "The exit status of the Embedded Event Manager policy\n            execution.  This value corresponds to the Posix process \n            exit status.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "ceemHistoryPolicyIntData1": {
                      "type": "integer",
                      "description": "Arbitrary integer data that the Embedded Event Manager policy\n            can use. Use of this object is optional. If unused by\n            a policy, this object will not be instantiated for \n            that policy.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "ceemHistoryPolicyIntData2": {
                      "type": "integer",
                      "description": "Arbitrary integer data that the Embedded Event Manager policy\n            can use. Use of this object is optional. If unused by\n            a policy, this object will not be instantiated for \n            that policy.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "ceemHistoryPolicyStrData": {
                      "type": "string",
                      "description": "Arbitrary string data the Embedded Event Manager policy can\n            use.  Use of this object is optional.  If unused by\n            a policy, this object will not be instantiated for \n            that policy.",
                      "x-yang-type": "snmp-framework:SnmpAdminString"
                    },
                    "ceemHistoryNotifyType": {
                      "type": "string",
                      "description": "The notification type that was sent from the Embedded Event\n            Manager.  The valid values are server or policy.",
                      "x-yang-type": "CISCO-EMBEDDED-EVENT-MGR-MIB:NotifySource"
                    },
                    "ceemHistoryEventType5": {
                      "type": "integer",
                      "description": "The type of Embedded Event Manager event which was\n            detected. The value corresponds to an entry in the \n            ceemEventTable.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "ceemHistoryEventType6": {
                      "type": "integer",
                      "description": "The type of Embedded Event Manager event which was\n            detected. The value corresponds to an entry in the \n            ceemEventTable.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "ceemHistoryEventType7": {
                      "type": "integer",
                      "description": "The type of Embedded Event Manager event which was\n            detected. The value corresponds to an entry in the \n            ceemEventTable.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "ceemHistoryEventType8": {
                      "type": "integer",
                      "description": "The type of Embedded Event Manager event which was\n            detected. The value corresponds to an entry in the \n            ceemEventTable.",
                      "minimum": 0,
                      "maximum": 4294967295
                    }
                  }
                },
                "example": {
                  "CISCO-EMBEDDED-EVENT-MGR-MIB:ceemHistoryEventEntry": {
                    "ceemHistoryEventIndex": 1,
                    "ceemHistoryEventType1": 0,
                    "ceemHistoryEventType2": 0,
                    "ceemHistoryEventType3": 0,
                    "ceemHistoryEventType4": 0,
                    "ceemHistoryPolicyPath": "example-string",
                    "ceemHistoryPolicyName": "interface-1",
                    "ceemHistoryPolicyExitStatus": -2147483648,
                    "ceemHistoryPolicyIntData1": -2147483648,
                    "ceemHistoryPolicyIntData2": -2147483648,
                    "ceemHistoryPolicyStrData": "example-string",
                    "ceemHistoryNotifyType": "ethernetCsmacd(6)",
                    "ceemHistoryEventType5": 0,
                    "ceemHistoryEventType6": 0,
                    "ceemHistoryEventType7": 0,
                    "ceemHistoryEventType8": 0
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-ceemHistoryEventEntry-4"
      },
      "x-yang-path": "/ceemHistoryEventEntry={ceemHistoryEventIndex}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "ceemHistoryEventIndex"
      ]
    },
    "/data/CISCO-EMBEDDED-EVENT-MGR-MIB:ceemRegisteredPolicyEntry": {
      "get": {
        "summary": "Get ceemRegisteredPolicyEntry list",
        "description": "Retrieve list of ceemRegisteredPolicyEntry entries from MIB",
        "tags": [
          "CISCO-EMBEDDED-EVENT-MGR-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "An entry in the table of Embedded Event Manager policies that are\n          registered.  It provides up to four event types to support complex \n          event specifications that are triggered when multiple events are \n          published within a certain period of time.  A row in this table \n          cannot be created or deleted by SNMP operations on columns of the \n          table.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "ceemRegisteredPolicyIndex": {
                        "type": "integer",
                        "description": "A monotonically increasing non-zero integer uniquely\n            identifying a policy registration.  When it reaches the\n            maximum value, the agent wraps the value back to 1 upon \n            receiving the next policy registration.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "ceemRegisteredPolicyName": {
                        "type": "string",
                        "description": "The name of the Embedded Event Manager policy that was\n            registered.  The name must be a valid Embedded Event \n            Manager policy name. It must be in the form of a valid \n            Posix filename.",
                        "x-yang-type": "snmp-framework:SnmpAdminString"
                      },
                      "ceemRegisteredPolicyEventType1": {
                        "type": "integer",
                        "description": "The type of Embedded Event Manager event which was registered\n            by the policy. The value corresponds to an entry in the\n            ceemEventMapTable.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "ceemRegisteredPolicyEventType2": {
                        "type": "integer",
                        "description": "The type of Embedded Event Manager event which was registered\n            by the policy. The value corresponds to an entry in the\n            ceemEventMapTable.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "ceemRegisteredPolicyEventType3": {
                        "type": "integer",
                        "description": "The type of Embedded Event Manager event which was registered\n            by the policy. The value corresponds to an entry in the\n            ceemEventMapTable.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "ceemRegisteredPolicyEventType4": {
                        "type": "integer",
                        "description": "The type of Embedded Event Manager event which was registered\n            by the policy. The value corresponds to an entry in the\n            ceemEventMapTable.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "ceemRegisteredPolicyStatus": {
                        "type": "string",
                        "description": "This status indicates whether the policy is enabled or disabled."
                      },
                      "ceemRegisteredPolicyType": {
                        "type": "string",
                        "description": "This variable indicates whether this is a user or system policy."
                      },
                      "ceemRegisteredPolicyNotifFlag": {
                        "type": "boolean",
                        "description": "This flag indicates if an SNMP notification will be sent when\n            policy is triggered."
                      },
                      "ceemRegisteredPolicyRegTime": {
                        "type": "string",
                        "description": "The time the policy was registered.  It is stored as a\n            32-bit count of seconds since 0000 UTC, 1 January, 1970.",
                        "x-yang-type": "snmpv2-tc:DateAndTime"
                      },
                      "ceemRegisteredPolicyEnabledTime": {
                        "type": "string",
                        "description": "The time the policy was last enabled.  It is stored as a\n            32-bit count of seconds since 0000 UTC, 1 January, 1970.",
                        "x-yang-type": "snmpv2-tc:DateAndTime"
                      },
                      "ceemRegisteredPolicyRunTime": {
                        "type": "string",
                        "description": "The last time the policy was run.  It is stored as a\n            32-bit count of seconds since 0000 UTC, 1 January, 1970.",
                        "x-yang-type": "snmpv2-tc:DateAndTime"
                      },
                      "ceemRegisteredPolicyRunCount": {
                        "type": "integer",
                        "description": "The number of times the policy has been run.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "ceemRegisteredPolicyEventType5": {
                        "type": "integer",
                        "description": "The type of Embedded Event Manager event which was registered\n            by the policy. The value corresponds to an entry in the\n            ceemEventMapTable.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "ceemRegisteredPolicyEventType6": {
                        "type": "integer",
                        "description": "The type of Embedded Event Manager event which was registered\n            by the policy. The value corresponds to an entry in the\n            ceemEventMapTable.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "ceemRegisteredPolicyEventType7": {
                        "type": "integer",
                        "description": "The type of Embedded Event Manager event which was registered\n            by the policy. The value corresponds to an entry in the\n            ceemEventMapTable.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "ceemRegisteredPolicyEventType8": {
                        "type": "integer",
                        "description": "The type of Embedded Event Manager event which was registered\n            by the policy. The value corresponds to an entry in the\n            ceemEventMapTable.",
                        "minimum": 0,
                        "maximum": 4294967295
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-EMBEDDED-EVENT-MGR-MIB:ceemRegisteredPolicyEntry": [
                    {
                      "ceemRegisteredPolicyIndex": 1,
                      "ceemRegisteredPolicyName": "interface-1",
                      "ceemRegisteredPolicyEventType1": 0,
                      "ceemRegisteredPolicyEventType2": 0,
                      "ceemRegisteredPolicyEventType3": 0,
                      "ceemRegisteredPolicyEventType4": 0,
                      "ceemRegisteredPolicyStatus": "up(1)",
                      "ceemRegisteredPolicyType": "ethernetCsmacd(6)",
                      "ceemRegisteredPolicyNotifFlag": true,
                      "ceemRegisteredPolicyRegTime": "example-string",
                      "ceemRegisteredPolicyEnabledTime": "example-string",
                      "ceemRegisteredPolicyRunTime": "example-string",
                      "ceemRegisteredPolicyRunCount": 0,
                      "ceemRegisteredPolicyEventType5": 0,
                      "ceemRegisteredPolicyEventType6": 0,
                      "ceemRegisteredPolicyEventType7": 0,
                      "ceemRegisteredPolicyEventType8": 0
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-ceemRegisteredPolicyEntry-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": "/ceemRegisteredPolicyEntry",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-EMBEDDED-EVENT-MGR-MIB:ceemRegisteredPolicyEntry={ceemRegisteredPolicyIndex}": {
      "get": {
        "summary": "Get ceemRegisteredPolicyEntry entry",
        "description": "Retrieve specific ceemRegisteredPolicyEntry entry by key from MIB",
        "tags": [
          "CISCO-EMBEDDED-EVENT-MGR-MIB"
        ],
        "parameters": [
          {
            "name": "ceemRegisteredPolicyIndex",
            "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": {
                    "ceemRegisteredPolicyIndex": {
                      "type": "integer",
                      "description": "A monotonically increasing non-zero integer uniquely\n            identifying a policy registration.  When it reaches the\n            maximum value, the agent wraps the value back to 1 upon \n            receiving the next policy registration.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "ceemRegisteredPolicyName": {
                      "type": "string",
                      "description": "The name of the Embedded Event Manager policy that was\n            registered.  The name must be a valid Embedded Event \n            Manager policy name. It must be in the form of a valid \n            Posix filename.",
                      "x-yang-type": "snmp-framework:SnmpAdminString"
                    },
                    "ceemRegisteredPolicyEventType1": {
                      "type": "integer",
                      "description": "The type of Embedded Event Manager event which was registered\n            by the policy. The value corresponds to an entry in the\n            ceemEventMapTable.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "ceemRegisteredPolicyEventType2": {
                      "type": "integer",
                      "description": "The type of Embedded Event Manager event which was registered\n            by the policy. The value corresponds to an entry in the\n            ceemEventMapTable.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "ceemRegisteredPolicyEventType3": {
                      "type": "integer",
                      "description": "The type of Embedded Event Manager event which was registered\n            by the policy. The value corresponds to an entry in the\n            ceemEventMapTable.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "ceemRegisteredPolicyEventType4": {
                      "type": "integer",
                      "description": "The type of Embedded Event Manager event which was registered\n            by the policy. The value corresponds to an entry in the\n            ceemEventMapTable.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "ceemRegisteredPolicyStatus": {
                      "type": "string",
                      "description": "This status indicates whether the policy is enabled or disabled."
                    },
                    "ceemRegisteredPolicyType": {
                      "type": "string",
                      "description": "This variable indicates whether this is a user or system policy."
                    },
                    "ceemRegisteredPolicyNotifFlag": {
                      "type": "boolean",
                      "description": "This flag indicates if an SNMP notification will be sent when\n            policy is triggered."
                    },
                    "ceemRegisteredPolicyRegTime": {
                      "type": "string",
                      "description": "The time the policy was registered.  It is stored as a\n            32-bit count of seconds since 0000 UTC, 1 January, 1970.",
                      "x-yang-type": "snmpv2-tc:DateAndTime"
                    },
                    "ceemRegisteredPolicyEnabledTime": {
                      "type": "string",
                      "description": "The time the policy was last enabled.  It is stored as a\n            32-bit count of seconds since 0000 UTC, 1 January, 1970.",
                      "x-yang-type": "snmpv2-tc:DateAndTime"
                    },
                    "ceemRegisteredPolicyRunTime": {
                      "type": "string",
                      "description": "The last time the policy was run.  It is stored as a\n            32-bit count of seconds since 0000 UTC, 1 January, 1970.",
                      "x-yang-type": "snmpv2-tc:DateAndTime"
                    },
                    "ceemRegisteredPolicyRunCount": {
                      "type": "integer",
                      "description": "The number of times the policy has been run.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "ceemRegisteredPolicyEventType5": {
                      "type": "integer",
                      "description": "The type of Embedded Event Manager event which was registered\n            by the policy. The value corresponds to an entry in the\n            ceemEventMapTable.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "ceemRegisteredPolicyEventType6": {
                      "type": "integer",
                      "description": "The type of Embedded Event Manager event which was registered\n            by the policy. The value corresponds to an entry in the\n            ceemEventMapTable.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "ceemRegisteredPolicyEventType7": {
                      "type": "integer",
                      "description": "The type of Embedded Event Manager event which was registered\n            by the policy. The value corresponds to an entry in the\n            ceemEventMapTable.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "ceemRegisteredPolicyEventType8": {
                      "type": "integer",
                      "description": "The type of Embedded Event Manager event which was registered\n            by the policy. The value corresponds to an entry in the\n            ceemEventMapTable.",
                      "minimum": 0,
                      "maximum": 4294967295
                    }
                  }
                },
                "example": {
                  "CISCO-EMBEDDED-EVENT-MGR-MIB:ceemRegisteredPolicyEntry": {
                    "ceemRegisteredPolicyIndex": 1,
                    "ceemRegisteredPolicyName": "interface-1",
                    "ceemRegisteredPolicyEventType1": 0,
                    "ceemRegisteredPolicyEventType2": 0,
                    "ceemRegisteredPolicyEventType3": 0,
                    "ceemRegisteredPolicyEventType4": 0,
                    "ceemRegisteredPolicyStatus": "up(1)",
                    "ceemRegisteredPolicyType": "ethernetCsmacd(6)",
                    "ceemRegisteredPolicyNotifFlag": true,
                    "ceemRegisteredPolicyRegTime": "example-string",
                    "ceemRegisteredPolicyEnabledTime": "example-string",
                    "ceemRegisteredPolicyRunTime": "example-string",
                    "ceemRegisteredPolicyRunCount": 0,
                    "ceemRegisteredPolicyEventType5": 0,
                    "ceemRegisteredPolicyEventType6": 0,
                    "ceemRegisteredPolicyEventType7": 0,
                    "ceemRegisteredPolicyEventType8": 0
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-ceemRegisteredPolicyEntry-4"
      },
      "x-yang-path": "/ceemRegisteredPolicyEntry={ceemRegisteredPolicyIndex}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "ceemRegisteredPolicyIndex"
      ]
    }
  },
  "components": {
    "schemas": {
      "CISCO-EMBEDDED-EVENT-MGR-MIB_CISCO-EMBEDDED-EVENT-MGR-MIB": {
        "type": "object",
        "description": "The maximum number of entries that can be held in\n          ceemHistoryEventTable.",
        "properties": {
          "ceemEventMapEntry": {
            "type": "array",
            "description": "A mapping between an event type and an event description.",
            "items": {
              "type": "object",
              "properties": {
                "ceemEventIndex": {
                  "type": "integer",
                  "description": "This object uniquely identifies an event.  Events\n            are not persisted across reloads.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "ceemEventName": {
                  "type": "string",
                  "description": "The name of the Embedded Event Manager event.",
                  "x-yang-type": "snmp-framework:SnmpAdminString",
                  "readOnly": true
                },
                "ceemEventDescrText": {
                  "type": "string",
                  "description": "This object specifies a human-readable\n            message describing information about the \n            Embedded Event Manager event.",
                  "x-yang-type": "snmp-framework:SnmpAdminString",
                  "readOnly": true
                }
              }
            },
            "readOnly": true
          },
          "ceemHistoryEventEntry": {
            "type": "array",
            "description": "Information about an Embedded Event Manager event which has\n          been generated by this router.  It provides up to four event\n          types to support complex event specifications that are\n          triggered when multiple events are published within a certain\n          period of time.",
            "items": {
              "type": "object",
              "properties": {
                "ceemHistoryEventIndex": {
                  "type": "integer",
                  "description": "A monotonically increasing non-zero integer uniquely\n            identifying a generated event.  When it reaches the \n            maximum value, the agent wraps the value back to 1 \n            and may flush all existing entries in the event table.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "ceemHistoryEventType1": {
                  "type": "integer",
                  "description": "The type of Embedded Event Manager event which was\n            detected. The value corresponds to an entry in the \n            ceemEventTable.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "ceemHistoryEventType2": {
                  "type": "integer",
                  "description": "The type of Embedded Event Manager event which was\n            detected. The value corresponds to an entry in the \n            ceemEventTable.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "ceemHistoryEventType3": {
                  "type": "integer",
                  "description": "The type of Embedded Event Manager event which was\n            detected. The value corresponds to an entry in the \n            ceemEventTable.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "ceemHistoryEventType4": {
                  "type": "integer",
                  "description": "The type of Embedded Event Manager event which was\n            detected. The value corresponds to an entry in the\n            ceemEventTable.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "ceemHistoryPolicyPath": {
                  "type": "string",
                  "description": "The file path on the router where the Embedded Event Manager\n            policy that was triggered is stored.  If the size of the \n            file path string is larger than 128, the end characters \n            will be truncated.",
                  "x-yang-type": "snmp-framework:SnmpAdminString",
                  "readOnly": true
                },
                "ceemHistoryPolicyName": {
                  "type": "string",
                  "description": "The name of the Embedded Event Manager policy that was\n            triggered because of an Embedded Event Manager event. The\n            name must be a valid Embedded Event Manager policy name. \n            It must be in the form of a valid Posix filename.",
                  "x-yang-type": "snmp-framework:SnmpAdminString",
                  "readOnly": true
                },
                "ceemHistoryPolicyExitStatus": {
                  "type": "integer",
                  "description": "The exit status of the Embedded Event Manager policy\n            execution.  This value corresponds to the Posix process \n            exit status.",
                  "minimum": -2147483648,
                  "maximum": 2147483647,
                  "readOnly": true
                },
                "ceemHistoryPolicyIntData1": {
                  "type": "integer",
                  "description": "Arbitrary integer data that the Embedded Event Manager policy\n            can use. Use of this object is optional. If unused by\n            a policy, this object will not be instantiated for \n            that policy.",
                  "minimum": -2147483648,
                  "maximum": 2147483647,
                  "readOnly": true
                },
                "ceemHistoryPolicyIntData2": {
                  "type": "integer",
                  "description": "Arbitrary integer data that the Embedded Event Manager policy\n            can use. Use of this object is optional. If unused by\n            a policy, this object will not be instantiated for \n            that policy.",
                  "minimum": -2147483648,
                  "maximum": 2147483647,
                  "readOnly": true
                },
                "ceemHistoryPolicyStrData": {
                  "type": "string",
                  "description": "Arbitrary string data the Embedded Event Manager policy can\n            use.  Use of this object is optional.  If unused by\n            a policy, this object will not be instantiated for \n            that policy.",
                  "x-yang-type": "snmp-framework:SnmpAdminString",
                  "readOnly": true
                },
                "ceemHistoryNotifyType": {
                  "type": "string",
                  "description": "The notification type that was sent from the Embedded Event\n            Manager.  The valid values are server or policy.",
                  "x-yang-type": "CISCO-EMBEDDED-EVENT-MGR-MIB:NotifySource",
                  "readOnly": true
                },
                "ceemHistoryEventType5": {
                  "type": "integer",
                  "description": "The type of Embedded Event Manager event which was\n            detected. The value corresponds to an entry in the \n            ceemEventTable.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "ceemHistoryEventType6": {
                  "type": "integer",
                  "description": "The type of Embedded Event Manager event which was\n            detected. The value corresponds to an entry in the \n            ceemEventTable.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "ceemHistoryEventType7": {
                  "type": "integer",
                  "description": "The type of Embedded Event Manager event which was\n            detected. The value corresponds to an entry in the \n            ceemEventTable.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "ceemHistoryEventType8": {
                  "type": "integer",
                  "description": "The type of Embedded Event Manager event which was\n            detected. The value corresponds to an entry in the \n            ceemEventTable.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                }
              }
            },
            "readOnly": true
          },
          "ceemRegisteredPolicyEntry": {
            "type": "array",
            "description": "An entry in the table of Embedded Event Manager policies that are\n          registered.  It provides up to four event types to support complex \n          event specifications that are triggered when multiple events are \n          published within a certain period of time.  A row in this table \n          cannot be created or deleted by SNMP operations on columns of the \n          table.",
            "items": {
              "type": "object",
              "properties": {
                "ceemRegisteredPolicyIndex": {
                  "type": "integer",
                  "description": "A monotonically increasing non-zero integer uniquely\n            identifying a policy registration.  When it reaches the\n            maximum value, the agent wraps the value back to 1 upon \n            receiving the next policy registration.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "ceemRegisteredPolicyName": {
                  "type": "string",
                  "description": "The name of the Embedded Event Manager policy that was\n            registered.  The name must be a valid Embedded Event \n            Manager policy name. It must be in the form of a valid \n            Posix filename.",
                  "x-yang-type": "snmp-framework:SnmpAdminString",
                  "readOnly": true
                },
                "ceemRegisteredPolicyEventType1": {
                  "type": "integer",
                  "description": "The type of Embedded Event Manager event which was registered\n            by the policy. The value corresponds to an entry in the\n            ceemEventMapTable.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "ceemRegisteredPolicyEventType2": {
                  "type": "integer",
                  "description": "The type of Embedded Event Manager event which was registered\n            by the policy. The value corresponds to an entry in the\n            ceemEventMapTable.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "ceemRegisteredPolicyEventType3": {
                  "type": "integer",
                  "description": "The type of Embedded Event Manager event which was registered\n            by the policy. The value corresponds to an entry in the\n            ceemEventMapTable.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "ceemRegisteredPolicyEventType4": {
                  "type": "integer",
                  "description": "The type of Embedded Event Manager event which was registered\n            by the policy. The value corresponds to an entry in the\n            ceemEventMapTable.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "ceemRegisteredPolicyStatus": {
                  "type": "string",
                  "description": "This status indicates whether the policy is enabled or disabled.",
                  "readOnly": true
                },
                "ceemRegisteredPolicyType": {
                  "type": "string",
                  "description": "This variable indicates whether this is a user or system policy.",
                  "readOnly": true
                },
                "ceemRegisteredPolicyNotifFlag": {
                  "type": "boolean",
                  "description": "This flag indicates if an SNMP notification will be sent when\n            policy is triggered.",
                  "readOnly": true
                },
                "ceemRegisteredPolicyRegTime": {
                  "type": "string",
                  "description": "The time the policy was registered.  It is stored as a\n            32-bit count of seconds since 0000 UTC, 1 January, 1970.",
                  "x-yang-type": "snmpv2-tc:DateAndTime",
                  "readOnly": true
                },
                "ceemRegisteredPolicyEnabledTime": {
                  "type": "string",
                  "description": "The time the policy was last enabled.  It is stored as a\n            32-bit count of seconds since 0000 UTC, 1 January, 1970.",
                  "x-yang-type": "snmpv2-tc:DateAndTime",
                  "readOnly": true
                },
                "ceemRegisteredPolicyRunTime": {
                  "type": "string",
                  "description": "The last time the policy was run.  It is stored as a\n            32-bit count of seconds since 0000 UTC, 1 January, 1970.",
                  "x-yang-type": "snmpv2-tc:DateAndTime",
                  "readOnly": true
                },
                "ceemRegisteredPolicyRunCount": {
                  "type": "integer",
                  "description": "The number of times the policy has been run.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "ceemRegisteredPolicyEventType5": {
                  "type": "integer",
                  "description": "The type of Embedded Event Manager event which was registered\n            by the policy. The value corresponds to an entry in the\n            ceemEventMapTable.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "ceemRegisteredPolicyEventType6": {
                  "type": "integer",
                  "description": "The type of Embedded Event Manager event which was registered\n            by the policy. The value corresponds to an entry in the\n            ceemEventMapTable.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "ceemRegisteredPolicyEventType7": {
                  "type": "integer",
                  "description": "The type of Embedded Event Manager event which was registered\n            by the policy. The value corresponds to an entry in the\n            ceemEventMapTable.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "ceemRegisteredPolicyEventType8": {
                  "type": "integer",
                  "description": "The type of Embedded Event Manager event which was registered\n            by the policy. The value corresponds to an entry in the\n            ceemEventMapTable.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                }
              }
            },
            "readOnly": true
          },
          "ceemHistory": {
            "type": "object",
            "description": "The maximum number of entries that can be held in\n          ceemHistoryEventTable.",
            "properties": {
              "ceemHistoryMaxEventEntries": {
                "type": "integer",
                "description": "The maximum number of entries that can be held in\n          ceemHistoryEventTable.",
                "minimum": -2147483648,
                "maximum": 2147483647,
                "readOnly": true
              },
              "ceemHistoryLastEventEntry": {
                "type": "integer",
                "description": "Index of last entry created in ceemHistoryEventTable.",
                "minimum": 0,
                "maximum": 4294967295,
                "readOnly": true
              }
            },
            "readOnly": true
          },
          "ceemEventMapTable": {
            "type": "object",
            "description": "A table containing information about ceemEventIndex\n        value mapping.  Each conceptual row specifies a \n        unique mapping between a ceemEventIndex value, and a \n        Embedded Event Manager event type.  Rows are added \n        dynamically as the Embedded Event Manager server learns\n        of new event types.  This occurs when Embedded Event \n        Manager Event Detectors register with the Embedded \n        Event Manager server.",
            "properties": {
              "ceemEventMapEntry": {
                "type": "array",
                "description": "A mapping between an event type and an event description.",
                "items": {
                  "type": "object",
                  "properties": {
                    "ceemEventIndex": {
                      "type": "integer",
                      "description": "This object uniquely identifies an event.  Events\n            are not persisted across reloads.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "ceemEventName": {
                      "type": "string",
                      "description": "The name of the Embedded Event Manager event.",
                      "x-yang-type": "snmp-framework:SnmpAdminString",
                      "readOnly": true
                    },
                    "ceemEventDescrText": {
                      "type": "string",
                      "description": "This object specifies a human-readable\n            message describing information about the \n            Embedded Event Manager event.",
                      "x-yang-type": "snmp-framework:SnmpAdminString",
                      "readOnly": true
                    }
                  }
                },
                "readOnly": true
              }
            },
            "readOnly": true
          },
          "ceemHistoryEventTable": {
            "type": "object",
            "description": "ceemHistoryEventTable",
            "properties": {
              "ceemHistoryEventEntry": {
                "type": "array",
                "description": "Information about an Embedded Event Manager event which has\n          been generated by this router.  It provides up to four event\n          types to support complex event specifications that are\n          triggered when multiple events are published within a certain\n          period of time.",
                "items": {
                  "type": "object",
                  "properties": {
                    "ceemHistoryEventIndex": {
                      "type": "integer",
                      "description": "A monotonically increasing non-zero integer uniquely\n            identifying a generated event.  When it reaches the \n            maximum value, the agent wraps the value back to 1 \n            and may flush all existing entries in the event table.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "ceemHistoryEventType1": {
                      "type": "integer",
                      "description": "The type of Embedded Event Manager event which was\n            detected. The value corresponds to an entry in the \n            ceemEventTable.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "ceemHistoryEventType2": {
                      "type": "integer",
                      "description": "The type of Embedded Event Manager event which was\n            detected. The value corresponds to an entry in the \n            ceemEventTable.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "ceemHistoryEventType3": {
                      "type": "integer",
                      "description": "The type of Embedded Event Manager event which was\n            detected. The value corresponds to an entry in the \n            ceemEventTable.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "ceemHistoryEventType4": {
                      "type": "integer",
                      "description": "The type of Embedded Event Manager event which was\n            detected. The value corresponds to an entry in the\n            ceemEventTable.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "ceemHistoryPolicyPath": {
                      "type": "string",
                      "description": "The file path on the router where the Embedded Event Manager\n            policy that was triggered is stored.  If the size of the \n            file path string is larger than 128, the end characters \n            will be truncated.",
                      "x-yang-type": "snmp-framework:SnmpAdminString",
                      "readOnly": true
                    },
                    "ceemHistoryPolicyName": {
                      "type": "string",
                      "description": "The name of the Embedded Event Manager policy that was\n            triggered because of an Embedded Event Manager event. The\n            name must be a valid Embedded Event Manager policy name. \n            It must be in the form of a valid Posix filename.",
                      "x-yang-type": "snmp-framework:SnmpAdminString",
                      "readOnly": true
                    },
                    "ceemHistoryPolicyExitStatus": {
                      "type": "integer",
                      "description": "The exit status of the Embedded Event Manager policy\n            execution.  This value corresponds to the Posix process \n            exit status.",
                      "minimum": -2147483648,
                      "maximum": 2147483647,
                      "readOnly": true
                    },
                    "ceemHistoryPolicyIntData1": {
                      "type": "integer",
                      "description": "Arbitrary integer data that the Embedded Event Manager policy\n            can use. Use of this object is optional. If unused by\n            a policy, this object will not be instantiated for \n            that policy.",
                      "minimum": -2147483648,
                      "maximum": 2147483647,
                      "readOnly": true
                    },
                    "ceemHistoryPolicyIntData2": {
                      "type": "integer",
                      "description": "Arbitrary integer data that the Embedded Event Manager policy\n            can use. Use of this object is optional. If unused by\n            a policy, this object will not be instantiated for \n            that policy.",
                      "minimum": -2147483648,
                      "maximum": 2147483647,
                      "readOnly": true
                    },
                    "ceemHistoryPolicyStrData": {
                      "type": "string",
                      "description": "Arbitrary string data the Embedded Event Manager policy can\n            use.  Use of this object is optional.  If unused by\n            a policy, this object will not be instantiated for \n            that policy.",
                      "x-yang-type": "snmp-framework:SnmpAdminString",
                      "readOnly": true
                    },
                    "ceemHistoryNotifyType": {
                      "type": "string",
                      "description": "The notification type that was sent from the Embedded Event\n            Manager.  The valid values are server or policy.",
                      "x-yang-type": "CISCO-EMBEDDED-EVENT-MGR-MIB:NotifySource",
                      "readOnly": true
                    },
                    "ceemHistoryEventType5": {
                      "type": "integer",
                      "description": "The type of Embedded Event Manager event which was\n            detected. The value corresponds to an entry in the \n            ceemEventTable.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "ceemHistoryEventType6": {
                      "type": "integer",
                      "description": "The type of Embedded Event Manager event which was\n            detected. The value corresponds to an entry in the \n            ceemEventTable.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "ceemHistoryEventType7": {
                      "type": "integer",
                      "description": "The type of Embedded Event Manager event which was\n            detected. The value corresponds to an entry in the \n            ceemEventTable.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "ceemHistoryEventType8": {
                      "type": "integer",
                      "description": "The type of Embedded Event Manager event which was\n            detected. The value corresponds to an entry in the \n            ceemEventTable.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    }
                  }
                },
                "readOnly": true
              }
            },
            "readOnly": true
          },
          "ceemRegisteredPolicyTable": {
            "type": "object",
            "description": "A table of Embedded Event Manager policies registered on a system.\n        The number of entries depends on the configuration of the system.  The \n        maximum number is implementation dependent.",
            "properties": {
              "ceemRegisteredPolicyEntry": {
                "type": "array",
                "description": "An entry in the table of Embedded Event Manager policies that are\n          registered.  It provides up to four event types to support complex \n          event specifications that are triggered when multiple events are \n          published within a certain period of time.  A row in this table \n          cannot be created or deleted by SNMP operations on columns of the \n          table.",
                "items": {
                  "type": "object",
                  "properties": {
                    "ceemRegisteredPolicyIndex": {
                      "type": "integer",
                      "description": "A monotonically increasing non-zero integer uniquely\n            identifying a policy registration.  When it reaches the\n            maximum value, the agent wraps the value back to 1 upon \n            receiving the next policy registration.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "ceemRegisteredPolicyName": {
                      "type": "string",
                      "description": "The name of the Embedded Event Manager policy that was\n            registered.  The name must be a valid Embedded Event \n            Manager policy name. It must be in the form of a valid \n            Posix filename.",
                      "x-yang-type": "snmp-framework:SnmpAdminString",
                      "readOnly": true
                    },
                    "ceemRegisteredPolicyEventType1": {
                      "type": "integer",
                      "description": "The type of Embedded Event Manager event which was registered\n            by the policy. The value corresponds to an entry in the\n            ceemEventMapTable.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "ceemRegisteredPolicyEventType2": {
                      "type": "integer",
                      "description": "The type of Embedded Event Manager event which was registered\n            by the policy. The value corresponds to an entry in the\n            ceemEventMapTable.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "ceemRegisteredPolicyEventType3": {
                      "type": "integer",
                      "description": "The type of Embedded Event Manager event which was registered\n            by the policy. The value corresponds to an entry in the\n            ceemEventMapTable.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "ceemRegisteredPolicyEventType4": {
                      "type": "integer",
                      "description": "The type of Embedded Event Manager event which was registered\n            by the policy. The value corresponds to an entry in the\n            ceemEventMapTable.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "ceemRegisteredPolicyStatus": {
                      "type": "string",
                      "description": "This status indicates whether the policy is enabled or disabled.",
                      "readOnly": true
                    },
                    "ceemRegisteredPolicyType": {
                      "type": "string",
                      "description": "This variable indicates whether this is a user or system policy.",
                      "readOnly": true
                    },
                    "ceemRegisteredPolicyNotifFlag": {
                      "type": "boolean",
                      "description": "This flag indicates if an SNMP notification will be sent when\n            policy is triggered.",
                      "readOnly": true
                    },
                    "ceemRegisteredPolicyRegTime": {
                      "type": "string",
                      "description": "The time the policy was registered.  It is stored as a\n            32-bit count of seconds since 0000 UTC, 1 January, 1970.",
                      "x-yang-type": "snmpv2-tc:DateAndTime",
                      "readOnly": true
                    },
                    "ceemRegisteredPolicyEnabledTime": {
                      "type": "string",
                      "description": "The time the policy was last enabled.  It is stored as a\n            32-bit count of seconds since 0000 UTC, 1 January, 1970.",
                      "x-yang-type": "snmpv2-tc:DateAndTime",
                      "readOnly": true
                    },
                    "ceemRegisteredPolicyRunTime": {
                      "type": "string",
                      "description": "The last time the policy was run.  It is stored as a\n            32-bit count of seconds since 0000 UTC, 1 January, 1970.",
                      "x-yang-type": "snmpv2-tc:DateAndTime",
                      "readOnly": true
                    },
                    "ceemRegisteredPolicyRunCount": {
                      "type": "integer",
                      "description": "The number of times the policy has been run.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "ceemRegisteredPolicyEventType5": {
                      "type": "integer",
                      "description": "The type of Embedded Event Manager event which was registered\n            by the policy. The value corresponds to an entry in the\n            ceemEventMapTable.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "ceemRegisteredPolicyEventType6": {
                      "type": "integer",
                      "description": "The type of Embedded Event Manager event which was registered\n            by the policy. The value corresponds to an entry in the\n            ceemEventMapTable.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "ceemRegisteredPolicyEventType7": {
                      "type": "integer",
                      "description": "The type of Embedded Event Manager event which was registered\n            by the policy. The value corresponds to an entry in the\n            ceemEventMapTable.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "ceemRegisteredPolicyEventType8": {
                      "type": "integer",
                      "description": "The type of Embedded Event Manager event which was registered\n            by the policy. The value corresponds to an entry in the\n            ceemEventMapTable.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    }
                  }
                },
                "readOnly": true
              }
            },
            "readOnly": true
          }
        }
      },
      "CISCO-EMBEDDED-EVENT-MGR-MIB_object-1": {
        "type": "object",
        "description": "object-1",
        "properties": {
          "ceemHistoryEventIndex": {
            "type": "string",
            "description": "ceemHistoryEventIndex",
            "x-yang-type": "leafref",
            "readOnly": true
          },
          "ceemHistoryEventType1": {
            "type": "string",
            "description": "ceemHistoryEventType1",
            "x-yang-type": "leafref",
            "readOnly": true
          }
        }
      },
      "CISCO-EMBEDDED-EVENT-MGR-MIB_object-2": {
        "type": "object",
        "description": "object-2",
        "properties": {
          "ceemHistoryEventIndex": {
            "type": "string",
            "description": "ceemHistoryEventIndex",
            "x-yang-type": "leafref",
            "readOnly": true
          },
          "ceemHistoryEventType2": {
            "type": "string",
            "description": "ceemHistoryEventType2",
            "x-yang-type": "leafref",
            "readOnly": true
          }
        }
      },
      "CISCO-EMBEDDED-EVENT-MGR-MIB_object-3": {
        "type": "object",
        "description": "object-3",
        "properties": {
          "ceemHistoryEventIndex": {
            "type": "string",
            "description": "ceemHistoryEventIndex",
            "x-yang-type": "leafref",
            "readOnly": true
          },
          "ceemHistoryEventType3": {
            "type": "string",
            "description": "ceemHistoryEventType3",
            "x-yang-type": "leafref",
            "readOnly": true
          }
        }
      },
      "CISCO-EMBEDDED-EVENT-MGR-MIB_object-4": {
        "type": "object",
        "description": "object-4",
        "properties": {
          "ceemHistoryEventIndex": {
            "type": "string",
            "description": "ceemHistoryEventIndex",
            "x-yang-type": "leafref",
            "readOnly": true
          },
          "ceemHistoryEventType4": {
            "type": "string",
            "description": "ceemHistoryEventType4",
            "x-yang-type": "leafref",
            "readOnly": true
          }
        }
      },
      "CISCO-EMBEDDED-EVENT-MGR-MIB_object-5": {
        "type": "object",
        "description": "object-5",
        "properties": {
          "ceemHistoryEventIndex": {
            "type": "string",
            "description": "ceemHistoryEventIndex",
            "x-yang-type": "leafref",
            "readOnly": true
          },
          "ceemHistoryPolicyPath": {
            "type": "string",
            "description": "ceemHistoryPolicyPath",
            "x-yang-type": "leafref",
            "readOnly": true
          }
        }
      },
      "CISCO-EMBEDDED-EVENT-MGR-MIB_object-6": {
        "type": "object",
        "description": "object-6",
        "properties": {
          "ceemHistoryEventIndex": {
            "type": "string",
            "description": "ceemHistoryEventIndex",
            "x-yang-type": "leafref",
            "readOnly": true
          },
          "ceemHistoryPolicyName": {
            "type": "string",
            "description": "ceemHistoryPolicyName",
            "x-yang-type": "leafref",
            "readOnly": true
          }
        }
      },
      "CISCO-EMBEDDED-EVENT-MGR-MIB_object-7": {
        "type": "object",
        "description": "object-7",
        "properties": {
          "ceemHistoryEventIndex": {
            "type": "string",
            "description": "ceemHistoryEventIndex",
            "x-yang-type": "leafref",
            "readOnly": true
          },
          "ceemHistoryPolicyIntData1": {
            "type": "string",
            "description": "ceemHistoryPolicyIntData1",
            "x-yang-type": "leafref",
            "readOnly": true
          }
        }
      },
      "CISCO-EMBEDDED-EVENT-MGR-MIB_object-8": {
        "type": "object",
        "description": "object-8",
        "properties": {
          "ceemHistoryEventIndex": {
            "type": "string",
            "description": "ceemHistoryEventIndex",
            "x-yang-type": "leafref",
            "readOnly": true
          },
          "ceemHistoryPolicyIntData2": {
            "type": "string",
            "description": "ceemHistoryPolicyIntData2",
            "x-yang-type": "leafref",
            "readOnly": true
          }
        }
      },
      "CISCO-EMBEDDED-EVENT-MGR-MIB_object-9": {
        "type": "object",
        "description": "object-9",
        "properties": {
          "ceemHistoryEventIndex": {
            "type": "string",
            "description": "ceemHistoryEventIndex",
            "x-yang-type": "leafref",
            "readOnly": true
          },
          "ceemHistoryPolicyStrData": {
            "type": "string",
            "description": "ceemHistoryPolicyStrData",
            "x-yang-type": "leafref",
            "readOnly": true
          }
        }
      },
      "CISCO-EMBEDDED-EVENT-MGR-MIB_ceemEventMapEntry": {
        "type": "array",
        "description": "A mapping between an event type and an event description.",
        "items": {
          "type": "object",
          "properties": {
            "ceemEventIndex": {
              "type": "integer",
              "description": "This object uniquely identifies an event.  Events\n            are not persisted across reloads.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "ceemEventName": {
              "type": "string",
              "description": "The name of the Embedded Event Manager event.",
              "x-yang-type": "snmp-framework:SnmpAdminString",
              "readOnly": true
            },
            "ceemEventDescrText": {
              "type": "string",
              "description": "This object specifies a human-readable\n            message describing information about the \n            Embedded Event Manager event.",
              "x-yang-type": "snmp-framework:SnmpAdminString",
              "readOnly": true
            }
          }
        }
      },
      "CISCO-EMBEDDED-EVENT-MGR-MIB_ceemHistoryEventEntry": {
        "type": "array",
        "description": "Information about an Embedded Event Manager event which has\n          been generated by this router.  It provides up to four event\n          types to support complex event specifications that are\n          triggered when multiple events are published within a certain\n          period of time.",
        "items": {
          "type": "object",
          "properties": {
            "ceemHistoryEventIndex": {
              "type": "integer",
              "description": "A monotonically increasing non-zero integer uniquely\n            identifying a generated event.  When it reaches the \n            maximum value, the agent wraps the value back to 1 \n            and may flush all existing entries in the event table.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "ceemHistoryEventType1": {
              "type": "integer",
              "description": "The type of Embedded Event Manager event which was\n            detected. The value corresponds to an entry in the \n            ceemEventTable.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "ceemHistoryEventType2": {
              "type": "integer",
              "description": "The type of Embedded Event Manager event which was\n            detected. The value corresponds to an entry in the \n            ceemEventTable.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "ceemHistoryEventType3": {
              "type": "integer",
              "description": "The type of Embedded Event Manager event which was\n            detected. The value corresponds to an entry in the \n            ceemEventTable.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "ceemHistoryEventType4": {
              "type": "integer",
              "description": "The type of Embedded Event Manager event which was\n            detected. The value corresponds to an entry in the\n            ceemEventTable.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "ceemHistoryPolicyPath": {
              "type": "string",
              "description": "The file path on the router where the Embedded Event Manager\n            policy that was triggered is stored.  If the size of the \n            file path string is larger than 128, the end characters \n            will be truncated.",
              "x-yang-type": "snmp-framework:SnmpAdminString",
              "readOnly": true
            },
            "ceemHistoryPolicyName": {
              "type": "string",
              "description": "The name of the Embedded Event Manager policy that was\n            triggered because of an Embedded Event Manager event. The\n            name must be a valid Embedded Event Manager policy name. \n            It must be in the form of a valid Posix filename.",
              "x-yang-type": "snmp-framework:SnmpAdminString",
              "readOnly": true
            },
            "ceemHistoryPolicyExitStatus": {
              "type": "integer",
              "description": "The exit status of the Embedded Event Manager policy\n            execution.  This value corresponds to the Posix process \n            exit status.",
              "minimum": -2147483648,
              "maximum": 2147483647,
              "readOnly": true
            },
            "ceemHistoryPolicyIntData1": {
              "type": "integer",
              "description": "Arbitrary integer data that the Embedded Event Manager policy\n            can use. Use of this object is optional. If unused by\n            a policy, this object will not be instantiated for \n            that policy.",
              "minimum": -2147483648,
              "maximum": 2147483647,
              "readOnly": true
            },
            "ceemHistoryPolicyIntData2": {
              "type": "integer",
              "description": "Arbitrary integer data that the Embedded Event Manager policy\n            can use. Use of this object is optional. If unused by\n            a policy, this object will not be instantiated for \n            that policy.",
              "minimum": -2147483648,
              "maximum": 2147483647,
              "readOnly": true
            },
            "ceemHistoryPolicyStrData": {
              "type": "string",
              "description": "Arbitrary string data the Embedded Event Manager policy can\n            use.  Use of this object is optional.  If unused by\n            a policy, this object will not be instantiated for \n            that policy.",
              "x-yang-type": "snmp-framework:SnmpAdminString",
              "readOnly": true
            },
            "ceemHistoryNotifyType": {
              "type": "string",
              "description": "The notification type that was sent from the Embedded Event\n            Manager.  The valid values are server or policy.",
              "x-yang-type": "CISCO-EMBEDDED-EVENT-MGR-MIB:NotifySource",
              "readOnly": true
            },
            "ceemHistoryEventType5": {
              "type": "integer",
              "description": "The type of Embedded Event Manager event which was\n            detected. The value corresponds to an entry in the \n            ceemEventTable.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "ceemHistoryEventType6": {
              "type": "integer",
              "description": "The type of Embedded Event Manager event which was\n            detected. The value corresponds to an entry in the \n            ceemEventTable.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "ceemHistoryEventType7": {
              "type": "integer",
              "description": "The type of Embedded Event Manager event which was\n            detected. The value corresponds to an entry in the \n            ceemEventTable.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "ceemHistoryEventType8": {
              "type": "integer",
              "description": "The type of Embedded Event Manager event which was\n            detected. The value corresponds to an entry in the \n            ceemEventTable.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            }
          }
        }
      },
      "CISCO-EMBEDDED-EVENT-MGR-MIB_ceemRegisteredPolicyEntry": {
        "type": "array",
        "description": "An entry in the table of Embedded Event Manager policies that are\n          registered.  It provides up to four event types to support complex \n          event specifications that are triggered when multiple events are \n          published within a certain period of time.  A row in this table \n          cannot be created or deleted by SNMP operations on columns of the \n          table.",
        "items": {
          "type": "object",
          "properties": {
            "ceemRegisteredPolicyIndex": {
              "type": "integer",
              "description": "A monotonically increasing non-zero integer uniquely\n            identifying a policy registration.  When it reaches the\n            maximum value, the agent wraps the value back to 1 upon \n            receiving the next policy registration.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "ceemRegisteredPolicyName": {
              "type": "string",
              "description": "The name of the Embedded Event Manager policy that was\n            registered.  The name must be a valid Embedded Event \n            Manager policy name. It must be in the form of a valid \n            Posix filename.",
              "x-yang-type": "snmp-framework:SnmpAdminString",
              "readOnly": true
            },
            "ceemRegisteredPolicyEventType1": {
              "type": "integer",
              "description": "The type of Embedded Event Manager event which was registered\n            by the policy. The value corresponds to an entry in the\n            ceemEventMapTable.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "ceemRegisteredPolicyEventType2": {
              "type": "integer",
              "description": "The type of Embedded Event Manager event which was registered\n            by the policy. The value corresponds to an entry in the\n            ceemEventMapTable.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "ceemRegisteredPolicyEventType3": {
              "type": "integer",
              "description": "The type of Embedded Event Manager event which was registered\n            by the policy. The value corresponds to an entry in the\n            ceemEventMapTable.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "ceemRegisteredPolicyEventType4": {
              "type": "integer",
              "description": "The type of Embedded Event Manager event which was registered\n            by the policy. The value corresponds to an entry in the\n            ceemEventMapTable.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "ceemRegisteredPolicyStatus": {
              "type": "string",
              "description": "This status indicates whether the policy is enabled or disabled.",
              "readOnly": true
            },
            "ceemRegisteredPolicyType": {
              "type": "string",
              "description": "This variable indicates whether this is a user or system policy.",
              "readOnly": true
            },
            "ceemRegisteredPolicyNotifFlag": {
              "type": "boolean",
              "description": "This flag indicates if an SNMP notification will be sent when\n            policy is triggered.",
              "readOnly": true
            },
            "ceemRegisteredPolicyRegTime": {
              "type": "string",
              "description": "The time the policy was registered.  It is stored as a\n            32-bit count of seconds since 0000 UTC, 1 January, 1970.",
              "x-yang-type": "snmpv2-tc:DateAndTime",
              "readOnly": true
            },
            "ceemRegisteredPolicyEnabledTime": {
              "type": "string",
              "description": "The time the policy was last enabled.  It is stored as a\n            32-bit count of seconds since 0000 UTC, 1 January, 1970.",
              "x-yang-type": "snmpv2-tc:DateAndTime",
              "readOnly": true
            },
            "ceemRegisteredPolicyRunTime": {
              "type": "string",
              "description": "The last time the policy was run.  It is stored as a\n            32-bit count of seconds since 0000 UTC, 1 January, 1970.",
              "x-yang-type": "snmpv2-tc:DateAndTime",
              "readOnly": true
            },
            "ceemRegisteredPolicyRunCount": {
              "type": "integer",
              "description": "The number of times the policy has been run.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "ceemRegisteredPolicyEventType5": {
              "type": "integer",
              "description": "The type of Embedded Event Manager event which was registered\n            by the policy. The value corresponds to an entry in the\n            ceemEventMapTable.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "ceemRegisteredPolicyEventType6": {
              "type": "integer",
              "description": "The type of Embedded Event Manager event which was registered\n            by the policy. The value corresponds to an entry in the\n            ceemEventMapTable.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "ceemRegisteredPolicyEventType7": {
              "type": "integer",
              "description": "The type of Embedded Event Manager event which was registered\n            by the policy. The value corresponds to an entry in the\n            ceemEventMapTable.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "ceemRegisteredPolicyEventType8": {
              "type": "integer",
              "description": "The type of Embedded Event Manager event which was registered\n            by the policy. The value corresponds to an entry in the\n            ceemEventMapTable.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            }
          }
        }
      },
      "restconf-error": {
        "type": "object",
        "description": "Standard RESTCONF error response (RFC 8040 Section 7.1)",
        "properties": {
          "ietf-restconf:errors": {
            "type": "object",
            "properties": {
              "error": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {
                    "error-type": {
                      "type": "string",
                      "enum": [
                        "transport",
                        "rpc",
                        "protocol",
                        "application"
                      ],
                      "description": "Layer where the error occurred"
                    },
                    "error-tag": {
                      "type": "string",
                      "description": "Enumerated error tag (e.g. invalid-value, data-missing, access-denied)"
                    },
                    "error-severity": {
                      "type": "string",
                      "enum": [
                        "error",
                        "warning"
                      ],
                      "description": "Error severity"
                    },
                    "error-app-tag": {
                      "type": "string",
                      "description": "Application-specific error tag"
                    },
                    "error-path": {
                      "type": "string",
                      "description": "YANG instance-identifier of the error node"
                    },
                    "error-message": {
                      "type": "string",
                      "description": "Human-readable error description"
                    }
                  },
                  "required": [
                    "error-type",
                    "error-tag"
                  ]
                }
              }
            }
          }
        },
        "example": {
          "ietf-restconf:errors": {
            "error": [
              {
                "error-type": "protocol",
                "error-tag": "invalid-value",
                "error-severity": "error",
                "error-message": "Invalid input parameter"
              }
            ]
          }
        }
      }
    },
    "securitySchemes": {
      "basicAuth": {
        "type": "http",
        "scheme": "basic"
      }
    }
  },
  "security": [
    {
      "basicAuth": []
    }
  ],
  "tags": [
    {
      "name": "CISCO-EMBEDDED-EVENT-MGR-MIB",
      "description": "MIB operations for CISCO-EMBEDDED-EVENT-MGR-MIB"
    }
  ],
  "externalDocs": {
    "description": "Cisco SNMP Object Navigator",
    "url": "https://snmp.cloudapps.cisco.com/Support/IOS/do/BrowseMIB.do"
  }
}
