{
  "openapi": "3.0.0",
  "info": {
    "title": "CISCO-VOICE-DIAL-CONTROL-MIB MIB API",
    "version": "1.0.0",
    "description": "SNMP MIB translated to YANG data model\n\n⚠️ **IMPORTANT - MIB DATA ACCESS**:\nThis YANG model exists for SMIv2-to-YANG translation purposes, but MIB data on IOS-XE devices is primarily accessed via **SNMP protocol**, not RESTCONF.\n\n**RESTCONF Limitation**: Many MIB paths may return 404 errors via RESTCONF `/data` endpoints because the device exposes MIB data through SNMP, not the YANG datastore.\n\n**Recommended Access Methods**:\n- Use SNMP (v2c/v3) to query MIB data directly\n- Use NETCONF `<get>` operations for devices supporting YANG-modeled MIB access\n- Check device capabilities: some newer IOS-XE versions may support limited RESTCONF access to specific MIBs\n\n**YANG Model Purpose**: These YANG models define the structure of SNMP MIBs in YANG format for tooling compatibility, but do not guarantee RESTCONF data availability.\n\n\n**📊 YANG Tree:** [View CISCO-VOICE-DIAL-CONTROL-MIB structure](https://jeremycohoe.github.io/cisco-ios-xe-openapi-swagger/yang-trees/CISCO-VOICE-DIAL-CONTROL-MIB.html)",
    "contact": {
      "name": "Cisco DevNet",
      "url": "https://developer.cisco.com"
    },
    "x-yang-module": "CISCO-VOICE-DIAL-CONTROL-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-VOICE-DIAL-CONTROL-MIB:cvGeneralConfiguration": {
      "get": {
        "summary": "Get cvGeneralConfiguration data",
        "description": "Retrieve cvGeneralConfiguration operational data from MIB",
        "tags": [
          "CISCO-VOICE-DIAL-CONTROL-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "description": "cvGeneralConfiguration",
                  "properties": {
                    "cvGeneralPoorQoVNotificationEnable": {
                      "type": "boolean",
                      "description": "This object indicates whether cvdcPoorQoVNotification (or\n          the newer cvdcPoorQoVNotificationRev1) traps should be\n          generated for a poor quality of voice calls.\n          \n          If the value of this object is 'true',\n          cvdcPoorQoVNotification (or the newer\n          cvdcPoorQoVNotificationRev1) traps will be generated\n          for all voice over IP peers when a poor quality of voice\n          call condition is detected after the voice gateway call\n          disconnection.  If the value of this object is 'false',\n          cvdcPoorQoVNotification (or the newer\n          cvdcPoorQoVNotificationRev1) traps will be generated only\n          for calls for which the\n          cvVoIPPeerCfgPoorQoVNotificationEnable object of voice\n          over IP peers having set to 'true'."
                    },
                    "cvGeneralFallbackNotificationEnable": {
                      "type": "boolean",
                      "description": "This object indicates whether cvdcFallbackNotification\n          traps should be generated for fallback.\n          If the value of this object is 'true',\n          cvdcFallbackNotification traps will be generated\n          for all voice over IP peers."
                    },
                    "cvGeneralDSCPPolicyNotificationEnable": {
                      "type": "boolean",
                      "description": "This object indicates whether cvdcPolicyViolationNotification\n          traps should be generated for a RPH to DSCP mapping violation\n          for SIP voice calls.\n          \n          If the value of this object is 'true',\n          cvdcPolicyViolationNotification traps will be generated for SIP\n          voice over IP peers when a RPH to DSCP violation condition is\n          detected .  If the value of this object is 'false',\n          cvdcPolicyViolationNotification traps will be generated only\n          for calls for which the \n          cvVoIPPeerCfgDSCPPolicyNotificationEnable object of voice\n          over IP peers having set to 'true'."
                    },
                    "cvGeneralMediaPolicyNotificationEnable": {
                      "type": "boolean",
                      "description": "This object indicates whether cvdcPolicyViolationNotification\n          traps should be generated for Media violation\n          for SIP voice calls.\n          \n          If the value of this object is 'true',\n          cvdcPolicyViolationNotification traps will be generated for SIP\n          voice over IP peers when media violation condition is\n          detected .  If the value of this object is 'false',\n          cvdcPolicyViolationNotification traps will be generated only\n          for calls for which the \n          cvVoIPPeerCfgMediaPolicyNotificationEnable object of voice\n          over IP peers having set to 'true'."
                    }
                  }
                },
                "example": {
                  "CISCO-VOICE-DIAL-CONTROL-MIB:cvGeneralConfiguration": {
                    "cvGeneralPoorQoVNotificationEnable": true,
                    "cvGeneralFallbackNotificationEnable": true,
                    "cvGeneralDSCPPolicyNotificationEnable": true,
                    "cvGeneralMediaPolicyNotificationEnable": true
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cvGeneralConfiguration",
        "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": "/cvGeneralConfiguration",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-VOICE-DIAL-CONTROL-MIB:cvGatewayCallActive": {
      "get": {
        "summary": "Get cvGatewayCallActive data",
        "description": "Retrieve cvGatewayCallActive operational data from MIB",
        "tags": [
          "CISCO-VOICE-DIAL-CONTROL-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "description": "The current number of DS0 interfaces used for the\n          active calls.",
                  "properties": {
                    "cvCallActiveDS0s": {
                      "type": "integer",
                      "description": "The current number of DS0 interfaces used for the\n          active calls.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cvCallActiveDS0sHighThreshold": {
                      "type": "integer",
                      "description": "A high threshold used to determine when to generate the\n          cvdcActiveDS0sHighNotification. This object \n          represents the percentage of active DS0s in total number \n          of DS0s.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cvCallActiveDS0sLowThreshold": {
                      "type": "integer",
                      "description": "A low threshold used to determine when to generate the\n          cvdcActiveDS0sLowNotification notification. This object \n          represents the percentage of active DS0s in total number \n          of DS0s.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cvCallActiveDS0sHighNotifyEnable": {
                      "type": "boolean",
                      "description": "Specifies whether or not cvdcActiveDS0sHighNotification\n          should be generated.\n          \n          'true' : Indicates that the cvdcActiveDS0sHighNotification\n                   generation is enabled.\n          \n          'false': Indicates that cvdcActiveDS0sHighNotification\n                   generation is disabled."
                    },
                    "cvCallActiveDS0sLowNotifyEnable": {
                      "type": "boolean",
                      "description": "Specifies whether or not cvdcActiveDS0sLowNotification\n          should be generated.\n          \n          'true' : Indicates that the cvdcActiveDS0sLowNotification\n                   generation is enabled.\n          \n          'false': Indicates that cvdcActiveDS0sLowNotification\n                   generation is disabled."
                    }
                  }
                },
                "example": {
                  "CISCO-VOICE-DIAL-CONTROL-MIB:cvGatewayCallActive": {
                    "cvCallActiveDS0s": 0,
                    "cvCallActiveDS0sHighThreshold": 0,
                    "cvCallActiveDS0sLowThreshold": 0,
                    "cvCallActiveDS0sHighNotifyEnable": true,
                    "cvCallActiveDS0sLowNotifyEnable": true
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cvGatewayCallActive",
        "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": "/cvGatewayCallActive",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-VOICE-DIAL-CONTROL-MIB:cvCallVolume": {
      "get": {
        "summary": "Get cvCallVolume data",
        "description": "Retrieve cvCallVolume operational data from MIB",
        "tags": [
          "CISCO-VOICE-DIAL-CONTROL-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "description": "This object represents the total number of\n          active call legs in the voice gateway.",
                  "properties": {
                    "cvCallVolConnTotalActiveConnections": {
                      "type": "integer",
                      "description": "This object represents the total number of\n          active call legs in the voice gateway.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cvCallVolConnMaxCallConnectionLicenese": {
                      "type": "integer",
                      "description": "This object represents the licensed call capacity\n          for a voice gateway.  If the value is 0, no \n          licensing is done and the gateway can be \n          accomodate as many calls depending on its capability.",
                      "minimum": 0,
                      "maximum": 4294967295
                    }
                  }
                },
                "example": {
                  "CISCO-VOICE-DIAL-CONTROL-MIB:cvCallVolume": {
                    "cvCallVolConnTotalActiveConnections": 0,
                    "cvCallVolConnMaxCallConnectionLicenese": 0
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cvCallVolume",
        "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": "/cvCallVolume",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-VOICE-DIAL-CONTROL-MIB:cvCallRateMonitor": {
      "get": {
        "summary": "Get cvCallRateMonitor data",
        "description": "Retrieve cvCallRateMonitor operational data from MIB",
        "tags": [
          "CISCO-VOICE-DIAL-CONTROL-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "description": "This object represents the state of call-monitoring.\n          A value of 'true' indicates that call-monitoring \n          is enabled.  A value of 'false' indicates that \n          call-monitoring is disabled.",
                  "properties": {
                    "cvCallRateMonitorEnable": {
                      "type": "boolean",
                      "description": "This object represents the state of call-monitoring.\n          A value of 'true' indicates that call-monitoring \n          is enabled.  A value of 'false' indicates that \n          call-monitoring is disabled."
                    },
                    "cvCallRateMonitorTime": {
                      "type": "integer",
                      "description": "This object represents the interval for\n          which the gateway monitors the call-rate.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cvCallRate": {
                      "type": "integer",
                      "description": "This object represents the total number of\n          calls handled by the gateway during the \n          monitored time.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cvCallRateHiWaterMark": {
                      "type": "integer",
                      "description": "This object represents the high water mark\n          for the number of calls handled by the \n          gateway in an unit interval of \n          cvCallRateMonitorTime, from the time \n          the call-monitoring is enabled.",
                      "minimum": 0,
                      "maximum": 4294967295
                    }
                  }
                },
                "example": {
                  "CISCO-VOICE-DIAL-CONTROL-MIB:cvCallRateMonitor": {
                    "cvCallRateMonitorEnable": true,
                    "cvCallRateMonitorTime": 0,
                    "cvCallRate": 0,
                    "cvCallRateHiWaterMark": 0
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cvCallRateMonitor",
        "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": "/cvCallRateMonitor",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-VOICE-DIAL-CONTROL-MIB:cvCallVolumeStatsHistory": {
      "get": {
        "summary": "Get cvCallVolumeStatsHistory data",
        "description": "Retrieve cvCallVolumeStatsHistory operational data from MIB",
        "tags": [
          "CISCO-VOICE-DIAL-CONTROL-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "description": "This Object specifies the thresold duration in seconds.\n          cvCallDurationStatsTable will monitor all the calls below this \n          threshold.\n          \n          Decresing the value of the threshold will reset this table.",
                  "properties": {
                    "cvCallDurationStatsThreshold": {
                      "type": "integer",
                      "description": "This Object specifies the thresold duration in seconds.\n          cvCallDurationStatsTable will monitor all the calls below this \n          threshold.\n          \n          Decresing the value of the threshold will reset this table.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cvCallVolumeWMTableSize": {
                      "type": "integer",
                      "description": "This Object specifies the number of entries the watermark table\n          will maintain.\n          \n          This value will decide the number of elements in\n          cvCallRateWMTable,\n          cvCallLegRateWMTable, cvActiveCallWMTable and\n          cvSipMsgRateWMTable.",
                      "minimum": 0,
                      "maximum": 4294967295
                    }
                  }
                },
                "example": {
                  "CISCO-VOICE-DIAL-CONTROL-MIB:cvCallVolumeStatsHistory": {
                    "cvCallDurationStatsThreshold": 0,
                    "cvCallVolumeWMTableSize": 0
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cvCallVolumeStatsHistory",
        "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": "/cvCallVolumeStatsHistory",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-VOICE-DIAL-CONTROL-MIB:cvPeerCfgTable": {
      "get": {
        "summary": "Get cvPeerCfgTable data",
        "description": "Retrieve cvPeerCfgTable operational data from MIB",
        "tags": [
          "CISCO-VOICE-DIAL-CONTROL-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "description": "The table contains the Voice Generic Peer information that\n        is used to create an ifIndexed row with an appropriate\n        ifType that is associated with the cvPeerCfgType and\n        cvPeerCfgPeerType objects.",
                  "properties": {
                    "cvPeerCfgEntry": {
                      "type": "array",
                      "description": "cvPeerCfgEntry",
                      "items": {
                        "type": "object",
                        "properties": {
                          "cvPeerCfgIndex": {
                            "type": "integer",
                            "description": "An arbitrary index that uniquely identifies a generic\n            voice peer.",
                            "minimum": -2147483648,
                            "maximum": 2147483647
                          },
                          "cvPeerCfgIfIndex": {
                            "type": "string",
                            "description": "The ifIndex of the peer associated ifEntry. The ifIndex\n            appears after the associated ifEntry is created\n            successfully.\n            This ifIndex will be used to access the objects in the\n            Voice over Telephony or Voice over IP peer specific table.\n            In addition, the ifIndex is also used to access the\n            associated peer configuration entry of the IETF Dial\n            Control MIB. If the peer associated ifEntry had not been\n            created, then this object has a value of zero.",
                            "x-yang-type": "if-mib:InterfaceIndexOrZero"
                          },
                          "cvPeerCfgType": {
                            "type": "string",
                            "description": "Specifies the type of voice related encapsulation.\n            voice - voice encapsulation (voiceEncap ifType) on the\n                    telephony network.\n            voip  - VoIP encapsulation (voiceOverIp ifType) on the IP\n                    network.\n            mmail - Media Mail over IP encapsulation (mediaMailOverIp\n                    ifType) on the IP network.\n            voatm - VoATM encapsulation (voiceOverATM ifType) on the\n                    ATM network.\n            vofr  - VoFR encapsulation (voiceOverFR ifType) on the\n                    Frame Relay network."
                          },
                          "cvPeerCfgRowStatus": {
                            "type": "string",
                            "description": "This object is used to create a new row or modify or\n            delete an existing row in this table.",
                            "x-yang-type": "snmpv2-tc:RowStatus"
                          },
                          "cvPeerCfgPeerType": {
                            "type": "string",
                            "description": "Specifies the type of a peer.\n            voice - peer in voice type to be defined in a voice\n                    gateway for voice calls. \n            data  - peer in data type to be defined in gateway\n                    that supports universal ports for modem/data\n                    calls and integrated ports for data calls."
                          }
                        }
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-VOICE-DIAL-CONTROL-MIB:cvPeerCfgTable": {
                    "cvPeerCfgEntry": [
                      {
                        "cvPeerCfgIndex": 1,
                        "cvPeerCfgIfIndex": "1",
                        "cvPeerCfgType": "ethernetCsmacd(6)",
                        "cvPeerCfgRowStatus": "up(1)",
                        "cvPeerCfgPeerType": "ethernetCsmacd(6)"
                      },
                      {
                        "cvPeerCfgIndex": 2,
                        "cvPeerCfgIfIndex": "2",
                        "cvPeerCfgType": "ethernetCsmacd(6)",
                        "cvPeerCfgRowStatus": "up(1)",
                        "cvPeerCfgPeerType": "ethernetCsmacd(6)"
                      },
                      {
                        "cvPeerCfgIndex": 3,
                        "cvPeerCfgIfIndex": "3",
                        "cvPeerCfgType": "ethernetCsmacd(6)",
                        "cvPeerCfgRowStatus": "up(1)",
                        "cvPeerCfgPeerType": "ethernetCsmacd(6)"
                      }
                    ]
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cvPeerCfgTable",
        "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": "/cvPeerCfgTable",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-VOICE-DIAL-CONTROL-MIB:cvPeerCfgTable/cvPeerCfgEntry": {
      "get": {
        "summary": "Get cvPeerCfgEntry list",
        "description": "Retrieve list of cvPeerCfgEntry entries from MIB",
        "tags": [
          "CISCO-VOICE-DIAL-CONTROL-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "cvPeerCfgEntry",
                  "items": {
                    "type": "object",
                    "properties": {
                      "cvPeerCfgIndex": {
                        "type": "integer",
                        "description": "An arbitrary index that uniquely identifies a generic\n            voice peer.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "cvPeerCfgIfIndex": {
                        "type": "string",
                        "description": "The ifIndex of the peer associated ifEntry. The ifIndex\n            appears after the associated ifEntry is created\n            successfully.\n            This ifIndex will be used to access the objects in the\n            Voice over Telephony or Voice over IP peer specific table.\n            In addition, the ifIndex is also used to access the\n            associated peer configuration entry of the IETF Dial\n            Control MIB. If the peer associated ifEntry had not been\n            created, then this object has a value of zero.",
                        "x-yang-type": "if-mib:InterfaceIndexOrZero"
                      },
                      "cvPeerCfgType": {
                        "type": "string",
                        "description": "Specifies the type of voice related encapsulation.\n            voice - voice encapsulation (voiceEncap ifType) on the\n                    telephony network.\n            voip  - VoIP encapsulation (voiceOverIp ifType) on the IP\n                    network.\n            mmail - Media Mail over IP encapsulation (mediaMailOverIp\n                    ifType) on the IP network.\n            voatm - VoATM encapsulation (voiceOverATM ifType) on the\n                    ATM network.\n            vofr  - VoFR encapsulation (voiceOverFR ifType) on the\n                    Frame Relay network."
                      },
                      "cvPeerCfgRowStatus": {
                        "type": "string",
                        "description": "This object is used to create a new row or modify or\n            delete an existing row in this table.",
                        "x-yang-type": "snmpv2-tc:RowStatus"
                      },
                      "cvPeerCfgPeerType": {
                        "type": "string",
                        "description": "Specifies the type of a peer.\n            voice - peer in voice type to be defined in a voice\n                    gateway for voice calls. \n            data  - peer in data type to be defined in gateway\n                    that supports universal ports for modem/data\n                    calls and integrated ports for data calls."
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-VOICE-DIAL-CONTROL-MIB:cvPeerCfgEntry": [
                    {
                      "cvPeerCfgIndex": 1,
                      "cvPeerCfgIfIndex": "example-string",
                      "cvPeerCfgType": "ethernetCsmacd(6)",
                      "cvPeerCfgRowStatus": "up(1)",
                      "cvPeerCfgPeerType": "ethernetCsmacd(6)"
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cvPeerCfgEntry",
        "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": "/cvPeerCfgTable/cvPeerCfgEntry",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-VOICE-DIAL-CONTROL-MIB:cvPeerCfgTable/cvPeerCfgEntry={cvPeerCfgIndex}": {
      "get": {
        "summary": "Get cvPeerCfgEntry entry",
        "description": "Retrieve specific cvPeerCfgEntry entry by key from MIB",
        "tags": [
          "CISCO-VOICE-DIAL-CONTROL-MIB"
        ],
        "parameters": [
          {
            "name": "cvPeerCfgIndex",
            "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": {
                    "cvPeerCfgIndex": {
                      "type": "integer",
                      "description": "An arbitrary index that uniquely identifies a generic\n            voice peer.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "cvPeerCfgIfIndex": {
                      "type": "string",
                      "description": "The ifIndex of the peer associated ifEntry. The ifIndex\n            appears after the associated ifEntry is created\n            successfully.\n            This ifIndex will be used to access the objects in the\n            Voice over Telephony or Voice over IP peer specific table.\n            In addition, the ifIndex is also used to access the\n            associated peer configuration entry of the IETF Dial\n            Control MIB. If the peer associated ifEntry had not been\n            created, then this object has a value of zero.",
                      "x-yang-type": "if-mib:InterfaceIndexOrZero"
                    },
                    "cvPeerCfgType": {
                      "type": "string",
                      "description": "Specifies the type of voice related encapsulation.\n            voice - voice encapsulation (voiceEncap ifType) on the\n                    telephony network.\n            voip  - VoIP encapsulation (voiceOverIp ifType) on the IP\n                    network.\n            mmail - Media Mail over IP encapsulation (mediaMailOverIp\n                    ifType) on the IP network.\n            voatm - VoATM encapsulation (voiceOverATM ifType) on the\n                    ATM network.\n            vofr  - VoFR encapsulation (voiceOverFR ifType) on the\n                    Frame Relay network."
                    },
                    "cvPeerCfgRowStatus": {
                      "type": "string",
                      "description": "This object is used to create a new row or modify or\n            delete an existing row in this table.",
                      "x-yang-type": "snmpv2-tc:RowStatus"
                    },
                    "cvPeerCfgPeerType": {
                      "type": "string",
                      "description": "Specifies the type of a peer.\n            voice - peer in voice type to be defined in a voice\n                    gateway for voice calls. \n            data  - peer in data type to be defined in gateway\n                    that supports universal ports for modem/data\n                    calls and integrated ports for data calls."
                    }
                  }
                },
                "example": {
                  "CISCO-VOICE-DIAL-CONTROL-MIB:cvPeerCfgEntry": {
                    "cvPeerCfgIndex": 1,
                    "cvPeerCfgIfIndex": "example-string",
                    "cvPeerCfgType": "ethernetCsmacd(6)",
                    "cvPeerCfgRowStatus": "up(1)",
                    "cvPeerCfgPeerType": "ethernetCsmacd(6)"
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cvPeerCfgEntry-2"
      },
      "x-yang-path": "/cvPeerCfgTable/cvPeerCfgEntry={cvPeerCfgIndex}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "cvPeerCfgIndex"
      ]
    },
    "/data/CISCO-VOICE-DIAL-CONTROL-MIB:cvVoicePeerCfgTable": {
      "get": {
        "summary": "Get cvVoicePeerCfgTable data",
        "description": "Retrieve cvVoicePeerCfgTable operational data from MIB",
        "tags": [
          "CISCO-VOICE-DIAL-CONTROL-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "description": "The table contains the Voice over Telephony peer specific\n        information that is required to accept voice calls or to\n        which it will place them or perform various loopback tests\n        via interface.",
                  "properties": {
                    "cvVoicePeerCfgEntry": {
                      "type": "array",
                      "description": "A single Voice specific Peer. One entry per voice\n          encapsulation.\n          The entry is created when its associated 'voiceEncap(103)'\n          encapsulation ifEntry is created.\n          This entry is deleted when its associated ifEntry is\n          deleted.",
                      "items": {
                        "type": "object",
                        "properties": {
                          "ifIndex": {
                            "type": "string",
                            "description": "ifIndex",
                            "x-yang-type": "leafref"
                          },
                          "cvVoicePeerCfgSessionTarget": {
                            "type": "string",
                            "description": "The object specifies the session target of the peer.\n            Session Targets definitions:\n            The session target has the syntax used by the IETF service\n            location protocol. The syntax is as follows:\n            \n            mapping-type:type-specific-syntax\n            \n            the mapping-type specifies a scheme for mapping the\n            matching dial string to a session target.\n            \n            The valid Mapping type definitions for the peer are as\n            follows:\n            loopback - Syntax: loopback:where\n               'where' string is defined as follows:\n               compressed - loopback is performed on compressed voice\n                            as close to the CODEC which processes the\n                            data as possible.\n               uncompressed - loopback is performed on the PCM or\n                            analog voice as close to the telephony\n                            endpoint as possible.\n            \n            Local loopback case:\n            uncompressed - the PCM voice coming into the DSP is simply\n                turned around and sent back out, allowing testing of\n                the transmit--> receive paths in the telephony\n                endpoint.\n            compressed - the compressed voice coming out of the CODEC is\n                turned around on the DSP module and fed back into the\n                decompressor through the jitter buffer. In addition to\n                the telephony endpoint, this tests both the encode and\n                decode paths without involving data paths or packet\n                handling on the host router.\n            \n            Remote loopback case:\n            compressed - RTP packets received from the network are\n                decapsulated and passed to the DSP board. Instead of\n                feeding these into the CODEC for decompression, they\n                are immediately sent back to the session application\n                as if they had originated locally and been compressed.\n            uncompressed - In addition to the above, the voice samples\n                are sent all the way through the CODEC and then turned\n                around instead of being sent to the telephony\n                endpoint",
                            "x-yang-type": "snmpv2-tc:DisplayString"
                          },
                          "cvVoicePeerCfgDialDigitsPrefix": {
                            "type": "string",
                            "description": "The object specifies the prefix of the dial digits for the\n            peer. The dial digits prefix is sent to telephony\n            interface before the real phone number when the system\n            places the outgoing call to the voice encapsulation peer\n            over telephony interface.",
                            "x-yang-type": "snmpv2-tc:DisplayString"
                          },
                          "cvVoicePeerCfgDIDCallEnable": {
                            "type": "boolean",
                            "description": "The object enables/disables the DID call treatment for\n            incoming DNIS digits.\n            true  - treat the incoming DNIS digits as if the digits\n                    are received from DID trunk.\n            false - Disable DID call treatment for incoming DNIS\n                    digits."
                          },
                          "cvVoicePeerCfgCasGroup": {
                            "type": "string",
                            "description": "The object specifies the CAS group number of a CAS\n            capable T1/E1  that is in the dialCtlPeerCfgLowerIf object\n            of RFC2128.\n            This object can be set to a valid CAS group number only if\n            the dialCtlPeerCfgLowerIf contains a valid ifIndex for a\n            CAS capable T1/E1. The object must set to -1 before the\n            value of the  dialCtlPeerCfgLowerIf object of RFC2128 can\n            be changed.",
                            "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvCasGroup"
                          },
                          "cvVoicePeerCfgRegisterE164": {
                            "type": "boolean",
                            "description": "This object specifies that the E.164 number specified in\n            the dialCtlPeerCfgOriginateAddress field of the associated\n            dialCtlPeerCfgTable entry be registered as an extension \n            phone number of this gateway for H323 gatekeeper and/or \n            SIP registrar."
                          },
                          "cvVoicePeerCfgForwardDigits": {
                            "type": "integer",
                            "description": "This object specifies the number of dialed digits to\n            forward to the remote destination in the setup message.\n            The object can take the value:\n                0-32 number of right justified digits to forward\n                -1 default\n                -2 forward extra digits i.e those over and above\n                   those needed to match to the destination pattern\n                -3 forward all digits",
                            "minimum": -2147483648,
                            "maximum": 2147483647
                          },
                          "cvVoicePeerCfgEchoCancellerTest": {
                            "type": "string",
                            "description": "This object specifies which, if any, test to run in the\n            echo canceller when a call from the network is connected.\n            echoCancellerTestNone    - do not run a test.\n            echoCancellerG168Test2A  - run ITU-T G.168 Test 2A.\n            echoCancellerG168Test2B  - run ITU-T G.168 Test 2B.\n            echoCancellerG168Test2Ca - run ITU-T G.168 Test 2C(a).\n            echoCancellerG168Test2Cb - run ITU-T G.168 Test 2C(b).\n            echoCancellerG168Test3A  - run ITU-T G.168 Test 3A.\n            echoCancellerG168Test3B  - run ITU-T G.168 Test 3B.\n            echoCancellerG168Test3C  - run ITU-T G.168 Test 3C.\n            echoCancellerG168Test4   - run ITU-T G.168 Test 4.\n            echoCancellerG168Test5   - run ITU-T G.168 Test 5.\n            echoCancellerG168Test6   - run ITU-T G.168 Test 6.\n            echoCancellerG168Test7   - run ITU-T G.168 Test 7.\n            echoCancellerG168Test9   - run ITU-T G.168 Test 9."
                          }
                        }
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-VOICE-DIAL-CONTROL-MIB:cvVoicePeerCfgTable": {
                    "cvVoicePeerCfgEntry": [
                      {
                        "ifIndex": "1",
                        "cvVoicePeerCfgSessionTarget": "example-string",
                        "cvVoicePeerCfgDialDigitsPrefix": "example-string",
                        "cvVoicePeerCfgDIDCallEnable": true,
                        "cvVoicePeerCfgCasGroup": "example-string",
                        "cvVoicePeerCfgRegisterE164": true,
                        "cvVoicePeerCfgForwardDigits": -2147483648,
                        "cvVoicePeerCfgEchoCancellerTest": "example-string"
                      },
                      {
                        "ifIndex": "2",
                        "cvVoicePeerCfgSessionTarget": "example-string",
                        "cvVoicePeerCfgDialDigitsPrefix": "example-string",
                        "cvVoicePeerCfgDIDCallEnable": true,
                        "cvVoicePeerCfgCasGroup": "example-string",
                        "cvVoicePeerCfgRegisterE164": true,
                        "cvVoicePeerCfgForwardDigits": -2147483648,
                        "cvVoicePeerCfgEchoCancellerTest": "example-string"
                      },
                      {
                        "ifIndex": "3",
                        "cvVoicePeerCfgSessionTarget": "example-string",
                        "cvVoicePeerCfgDialDigitsPrefix": "example-string",
                        "cvVoicePeerCfgDIDCallEnable": true,
                        "cvVoicePeerCfgCasGroup": "example-string",
                        "cvVoicePeerCfgRegisterE164": true,
                        "cvVoicePeerCfgForwardDigits": -2147483648,
                        "cvVoicePeerCfgEchoCancellerTest": "example-string"
                      }
                    ]
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cvVoicePeerCfgTable",
        "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": "/cvVoicePeerCfgTable",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-VOICE-DIAL-CONTROL-MIB:cvVoicePeerCfgTable/cvVoicePeerCfgEntry": {
      "get": {
        "summary": "Get cvVoicePeerCfgEntry list",
        "description": "Retrieve list of cvVoicePeerCfgEntry entries from MIB",
        "tags": [
          "CISCO-VOICE-DIAL-CONTROL-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "A single Voice specific Peer. One entry per voice\n          encapsulation.\n          The entry is created when its associated 'voiceEncap(103)'\n          encapsulation ifEntry is created.\n          This entry is deleted when its associated ifEntry is\n          deleted.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "ifIndex": {
                        "type": "string",
                        "description": "ifIndex",
                        "x-yang-type": "leafref"
                      },
                      "cvVoicePeerCfgSessionTarget": {
                        "type": "string",
                        "description": "The object specifies the session target of the peer.\n            Session Targets definitions:\n            The session target has the syntax used by the IETF service\n            location protocol. The syntax is as follows:\n            \n            mapping-type:type-specific-syntax\n            \n            the mapping-type specifies a scheme for mapping the\n            matching dial string to a session target.\n            \n            The valid Mapping type definitions for the peer are as\n            follows:\n            loopback - Syntax: loopback:where\n               'where' string is defined as follows:\n               compressed - loopback is performed on compressed voice\n                            as close to the CODEC which processes the\n                            data as possible.\n               uncompressed - loopback is performed on the PCM or\n                            analog voice as close to the telephony\n                            endpoint as possible.\n            \n            Local loopback case:\n            uncompressed - the PCM voice coming into the DSP is simply\n                turned around and sent back out, allowing testing of\n                the transmit--> receive paths in the telephony\n                endpoint.\n            compressed - the compressed voice coming out of the CODEC is\n                turned around on the DSP module and fed back into the\n                decompressor through the jitter buffer. In addition to\n                the telephony endpoint, this tests both the encode and\n                decode paths without involving data paths or packet\n                handling on the host router.\n            \n            Remote loopback case:\n            compressed - RTP packets received from the network are\n                decapsulated and passed to the DSP board. Instead of\n                feeding these into the CODEC for decompression, they\n                are immediately sent back to the session application\n                as if they had originated locally and been compressed.\n            uncompressed - In addition to the above, the voice samples\n                are sent all the way through the CODEC and then turned\n                around instead of being sent to the telephony\n                endpoint",
                        "x-yang-type": "snmpv2-tc:DisplayString"
                      },
                      "cvVoicePeerCfgDialDigitsPrefix": {
                        "type": "string",
                        "description": "The object specifies the prefix of the dial digits for the\n            peer. The dial digits prefix is sent to telephony\n            interface before the real phone number when the system\n            places the outgoing call to the voice encapsulation peer\n            over telephony interface.",
                        "x-yang-type": "snmpv2-tc:DisplayString"
                      },
                      "cvVoicePeerCfgDIDCallEnable": {
                        "type": "boolean",
                        "description": "The object enables/disables the DID call treatment for\n            incoming DNIS digits.\n            true  - treat the incoming DNIS digits as if the digits\n                    are received from DID trunk.\n            false - Disable DID call treatment for incoming DNIS\n                    digits."
                      },
                      "cvVoicePeerCfgCasGroup": {
                        "type": "string",
                        "description": "The object specifies the CAS group number of a CAS\n            capable T1/E1  that is in the dialCtlPeerCfgLowerIf object\n            of RFC2128.\n            This object can be set to a valid CAS group number only if\n            the dialCtlPeerCfgLowerIf contains a valid ifIndex for a\n            CAS capable T1/E1. The object must set to -1 before the\n            value of the  dialCtlPeerCfgLowerIf object of RFC2128 can\n            be changed.",
                        "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvCasGroup"
                      },
                      "cvVoicePeerCfgRegisterE164": {
                        "type": "boolean",
                        "description": "This object specifies that the E.164 number specified in\n            the dialCtlPeerCfgOriginateAddress field of the associated\n            dialCtlPeerCfgTable entry be registered as an extension \n            phone number of this gateway for H323 gatekeeper and/or \n            SIP registrar."
                      },
                      "cvVoicePeerCfgForwardDigits": {
                        "type": "integer",
                        "description": "This object specifies the number of dialed digits to\n            forward to the remote destination in the setup message.\n            The object can take the value:\n                0-32 number of right justified digits to forward\n                -1 default\n                -2 forward extra digits i.e those over and above\n                   those needed to match to the destination pattern\n                -3 forward all digits",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "cvVoicePeerCfgEchoCancellerTest": {
                        "type": "string",
                        "description": "This object specifies which, if any, test to run in the\n            echo canceller when a call from the network is connected.\n            echoCancellerTestNone    - do not run a test.\n            echoCancellerG168Test2A  - run ITU-T G.168 Test 2A.\n            echoCancellerG168Test2B  - run ITU-T G.168 Test 2B.\n            echoCancellerG168Test2Ca - run ITU-T G.168 Test 2C(a).\n            echoCancellerG168Test2Cb - run ITU-T G.168 Test 2C(b).\n            echoCancellerG168Test3A  - run ITU-T G.168 Test 3A.\n            echoCancellerG168Test3B  - run ITU-T G.168 Test 3B.\n            echoCancellerG168Test3C  - run ITU-T G.168 Test 3C.\n            echoCancellerG168Test4   - run ITU-T G.168 Test 4.\n            echoCancellerG168Test5   - run ITU-T G.168 Test 5.\n            echoCancellerG168Test6   - run ITU-T G.168 Test 6.\n            echoCancellerG168Test7   - run ITU-T G.168 Test 7.\n            echoCancellerG168Test9   - run ITU-T G.168 Test 9."
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-VOICE-DIAL-CONTROL-MIB:cvVoicePeerCfgEntry": [
                    {
                      "ifIndex": "example-string",
                      "cvVoicePeerCfgSessionTarget": "example-string",
                      "cvVoicePeerCfgDialDigitsPrefix": "example-string",
                      "cvVoicePeerCfgDIDCallEnable": true,
                      "cvVoicePeerCfgCasGroup": "example-string",
                      "cvVoicePeerCfgRegisterE164": true,
                      "cvVoicePeerCfgForwardDigits": -2147483648,
                      "cvVoicePeerCfgEchoCancellerTest": "example-string"
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cvVoicePeerCfgEntry",
        "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": "/cvVoicePeerCfgTable/cvVoicePeerCfgEntry",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-VOICE-DIAL-CONTROL-MIB:cvVoicePeerCfgTable/cvVoicePeerCfgEntry={ifIndex}": {
      "get": {
        "summary": "Get cvVoicePeerCfgEntry entry",
        "description": "Retrieve specific cvVoicePeerCfgEntry entry by key from MIB",
        "tags": [
          "CISCO-VOICE-DIAL-CONTROL-MIB"
        ],
        "parameters": [
          {
            "name": "ifIndex",
            "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": {
                    "ifIndex": {
                      "type": "string",
                      "description": "ifIndex",
                      "x-yang-type": "leafref"
                    },
                    "cvVoicePeerCfgSessionTarget": {
                      "type": "string",
                      "description": "The object specifies the session target of the peer.\n            Session Targets definitions:\n            The session target has the syntax used by the IETF service\n            location protocol. The syntax is as follows:\n            \n            mapping-type:type-specific-syntax\n            \n            the mapping-type specifies a scheme for mapping the\n            matching dial string to a session target.\n            \n            The valid Mapping type definitions for the peer are as\n            follows:\n            loopback - Syntax: loopback:where\n               'where' string is defined as follows:\n               compressed - loopback is performed on compressed voice\n                            as close to the CODEC which processes the\n                            data as possible.\n               uncompressed - loopback is performed on the PCM or\n                            analog voice as close to the telephony\n                            endpoint as possible.\n            \n            Local loopback case:\n            uncompressed - the PCM voice coming into the DSP is simply\n                turned around and sent back out, allowing testing of\n                the transmit--> receive paths in the telephony\n                endpoint.\n            compressed - the compressed voice coming out of the CODEC is\n                turned around on the DSP module and fed back into the\n                decompressor through the jitter buffer. In addition to\n                the telephony endpoint, this tests both the encode and\n                decode paths without involving data paths or packet\n                handling on the host router.\n            \n            Remote loopback case:\n            compressed - RTP packets received from the network are\n                decapsulated and passed to the DSP board. Instead of\n                feeding these into the CODEC for decompression, they\n                are immediately sent back to the session application\n                as if they had originated locally and been compressed.\n            uncompressed - In addition to the above, the voice samples\n                are sent all the way through the CODEC and then turned\n                around instead of being sent to the telephony\n                endpoint",
                      "x-yang-type": "snmpv2-tc:DisplayString"
                    },
                    "cvVoicePeerCfgDialDigitsPrefix": {
                      "type": "string",
                      "description": "The object specifies the prefix of the dial digits for the\n            peer. The dial digits prefix is sent to telephony\n            interface before the real phone number when the system\n            places the outgoing call to the voice encapsulation peer\n            over telephony interface.",
                      "x-yang-type": "snmpv2-tc:DisplayString"
                    },
                    "cvVoicePeerCfgDIDCallEnable": {
                      "type": "boolean",
                      "description": "The object enables/disables the DID call treatment for\n            incoming DNIS digits.\n            true  - treat the incoming DNIS digits as if the digits\n                    are received from DID trunk.\n            false - Disable DID call treatment for incoming DNIS\n                    digits."
                    },
                    "cvVoicePeerCfgCasGroup": {
                      "type": "string",
                      "description": "The object specifies the CAS group number of a CAS\n            capable T1/E1  that is in the dialCtlPeerCfgLowerIf object\n            of RFC2128.\n            This object can be set to a valid CAS group number only if\n            the dialCtlPeerCfgLowerIf contains a valid ifIndex for a\n            CAS capable T1/E1. The object must set to -1 before the\n            value of the  dialCtlPeerCfgLowerIf object of RFC2128 can\n            be changed.",
                      "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvCasGroup"
                    },
                    "cvVoicePeerCfgRegisterE164": {
                      "type": "boolean",
                      "description": "This object specifies that the E.164 number specified in\n            the dialCtlPeerCfgOriginateAddress field of the associated\n            dialCtlPeerCfgTable entry be registered as an extension \n            phone number of this gateway for H323 gatekeeper and/or \n            SIP registrar."
                    },
                    "cvVoicePeerCfgForwardDigits": {
                      "type": "integer",
                      "description": "This object specifies the number of dialed digits to\n            forward to the remote destination in the setup message.\n            The object can take the value:\n                0-32 number of right justified digits to forward\n                -1 default\n                -2 forward extra digits i.e those over and above\n                   those needed to match to the destination pattern\n                -3 forward all digits",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "cvVoicePeerCfgEchoCancellerTest": {
                      "type": "string",
                      "description": "This object specifies which, if any, test to run in the\n            echo canceller when a call from the network is connected.\n            echoCancellerTestNone    - do not run a test.\n            echoCancellerG168Test2A  - run ITU-T G.168 Test 2A.\n            echoCancellerG168Test2B  - run ITU-T G.168 Test 2B.\n            echoCancellerG168Test2Ca - run ITU-T G.168 Test 2C(a).\n            echoCancellerG168Test2Cb - run ITU-T G.168 Test 2C(b).\n            echoCancellerG168Test3A  - run ITU-T G.168 Test 3A.\n            echoCancellerG168Test3B  - run ITU-T G.168 Test 3B.\n            echoCancellerG168Test3C  - run ITU-T G.168 Test 3C.\n            echoCancellerG168Test4   - run ITU-T G.168 Test 4.\n            echoCancellerG168Test5   - run ITU-T G.168 Test 5.\n            echoCancellerG168Test6   - run ITU-T G.168 Test 6.\n            echoCancellerG168Test7   - run ITU-T G.168 Test 7.\n            echoCancellerG168Test9   - run ITU-T G.168 Test 9."
                    }
                  }
                },
                "example": {
                  "CISCO-VOICE-DIAL-CONTROL-MIB:cvVoicePeerCfgEntry": {
                    "ifIndex": "example-string",
                    "cvVoicePeerCfgSessionTarget": "example-string",
                    "cvVoicePeerCfgDialDigitsPrefix": "example-string",
                    "cvVoicePeerCfgDIDCallEnable": true,
                    "cvVoicePeerCfgCasGroup": "example-string",
                    "cvVoicePeerCfgRegisterE164": true,
                    "cvVoicePeerCfgForwardDigits": -2147483648,
                    "cvVoicePeerCfgEchoCancellerTest": "example-string"
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cvVoicePeerCfgEntry-2"
      },
      "x-yang-path": "/cvVoicePeerCfgTable/cvVoicePeerCfgEntry={ifIndex}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "ifIndex"
      ]
    },
    "/data/CISCO-VOICE-DIAL-CONTROL-MIB:cvVoIPPeerCfgTable": {
      "get": {
        "summary": "Get cvVoIPPeerCfgTable data",
        "description": "Retrieve cvVoIPPeerCfgTable operational data from MIB",
        "tags": [
          "CISCO-VOICE-DIAL-CONTROL-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "description": "The table contains the Voice over IP (VoIP) peer specific\n        information that is required to accept voice calls or to\n        which it will place them via IP backbone with the\n        specified session protocol in cvVoIPPeerCfgSessionProtocol.",
                  "properties": {
                    "cvVoIPPeerCfgEntry": {
                      "type": "array",
                      "description": "A single VoIP specific Peer. One entry per VoIP\n          encapsulation.\n          The entry is created when its associated 'voiceOverIp(104)'\n          encapsulation ifEntry is created.\n          This entry is deleted when its associated ifEntry is\n          deleted.",
                      "items": {
                        "type": "object",
                        "properties": {
                          "ifIndex": {
                            "type": "string",
                            "description": "ifIndex",
                            "x-yang-type": "leafref"
                          },
                          "cvVoIPPeerCfgSessionProtocol": {
                            "type": "string",
                            "description": "The object specifies the session protocol to be used\n            for Internet call between local and remote router via\n            IP backbone.",
                            "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvSessionProtocol"
                          },
                          "cvVoIPPeerCfgDesiredQoS": {
                            "type": "string",
                            "description": "The object specifies the user requested Quality of Service\n            for the call.",
                            "x-yang-type": "int-serv:QosService"
                          },
                          "cvVoIPPeerCfgMinAcceptableQoS": {
                            "type": "string",
                            "description": "The object specifies the minimally acceptable Quality of\n            Service for the call.",
                            "x-yang-type": "int-serv:QosService"
                          },
                          "cvVoIPPeerCfgSessionTarget": {
                            "type": "string",
                            "description": "The object specifies the session target of the peer.\n            Session Targets definitions:\n            The session target has the syntax used by the IETF service\n            location protocol. The syntax is as follows:\n            \n            mapping-type:type-specific-syntax\n            \n            the mapping-type specifies a scheme for mapping the\n            matching dial string to a session target. The\n            type-specific-syntax is exactly that, something that the\n            particular mapping scheme can understand.\n            For example,\n            Session target           Meaning\n            ipv4:171.68.13.55:1006   The session target is the IP\n                                     version 4 address of 171.68.13.55\n                                     and port 1006.\n            dns:pots.cisco.com:1661  The session target is the IP host\n                                     with dns name pots.cisco.com, and\n                                     port 1661.\n            ras                      The session target is the\n                                     gatekeeper with RAS (Registration\n                                     , Admission,  Status protocol).\n            settlement               The session target is the\n                                     settlement server.\n            enum:1                   The session target is the enum \n                                     profile match table 1.\n            \n            The valid Mapping type definitions for the peer are as\n            follows:\n            ipv4       - Syntax: ipv4:w.x.y.z:port or  ipv4:w.x.y.z\n            dns        - Syntax: dns:host.domain:port or\n                                 dns:host.domain\n            ras        - Syntax: ras\n            settlement - Syntax: settlement\n            enum       - Syntax: enum:\n            \n            loopback - Syntax: loopback:where\n               'where' string is defined as follows:\n               rtp - loopback is performed at the transport protocol\n                     level.\n            \n            Local loopback case:\n            rtp - the session application sets up an RTP stream to\n                itself (i.e. actually allocates a port pair and opens\n                the appropriate UDP sockets). It then does the full\n                RTP encapsulation, sends the packets to the loopback\n                IP address, receives the RTP packets, and hands the\n                compressed voice back to the CODEC. This tests the\n                entire local processing path, both transmit and\n                receive, in the router, as well as all of the above\n                paths.\n            \n            Remote loopback case:\n            rtp: RTP packets received from the network are decapsulated and\n                 immediately re-encapsulated in the outbound RTP\n                 stream, using the same media clock (i.e. timestamp)\n                 as the received packet. They are then sent back to\n                 the remote source router as if the voice had\n                 originated on a telephony port on the local router.",
                            "x-yang-type": "snmpv2-tc:DisplayString"
                          },
                          "cvVoIPPeerCfgCoderRate": {
                            "type": "string",
                            "description": "This object specifies the most desirable codec of speech\n            for the VoIP peer.",
                            "x-yang-type": "cisco-voice:CvcSpeechCoderRate"
                          },
                          "cvVoIPPeerCfgFaxRate": {
                            "type": "string",
                            "description": "This object specifies the default transmit rate of FAX\n            the VoIP peer. If the value of this object is 'none',\n            then the Fax relay feature is disabled; otherwise the Fax\n            relay feature is enabled.",
                            "x-yang-type": "cisco-voice:CvcFaxTransmitRate"
                          },
                          "cvVoIPPeerCfgVADEnable": {
                            "type": "boolean",
                            "description": "This object specifies whether or not the VAD (Voice\n            Activity Detection) voice data is continuously transmitted\n            to IP backbone."
                          },
                          "cvVoIPPeerCfgExpectFactor": {
                            "type": "integer",
                            "description": "This object specifies the user requested Expectation\n            Factor of voice quality for the call via this peer.",
                            "minimum": -2147483648,
                            "maximum": 2147483647
                          },
                          "cvVoIPPeerCfgIcpif": {
                            "type": "integer",
                            "description": "This object specifies the user requested Calculated\n            Planning Impairment Factor (Icpif) for the call via this\n            peer.",
                            "minimum": -2147483648,
                            "maximum": 2147483647
                          },
                          "cvVoIPPeerCfgPoorQoVNotificationEnable": {
                            "type": "boolean",
                            "description": "This object specifies whether cvdcPoorQoVNotification (or\n            the newer cvdcPoorQoVNotificationRev1) traps should be\n            generated for the call that is associated with this\n            peer."
                          },
                          "cvVoIPPeerCfgUDPChecksumEnable": {
                            "type": "boolean",
                            "description": "This object specifies whether the outgoing voice related\n            UDP packet contains a valid checksum value.\n            true  - enable the checksum of outgoing voice UDP packets\n            false - disable the checksum of outgoing voice UDP packets"
                          },
                          "cvVoIPPeerCfgIPPrecedence": {
                            "type": "integer",
                            "description": "This object specifies the value to be stored in the IP\n            Precedence field of voice packets, with values ranging\n            from 0 (normal precedence) through 7 (network control),\n            allowing the managed system to set the importance of each\n            voice packet for delivering them to the destination peer.",
                            "minimum": -2147483648,
                            "maximum": 2147483647
                          },
                          "cvVoIPPeerCfgTechPrefix": {
                            "type": "string",
                            "description": "This object specifies the technology prefix of the peer,\n            The technology prefix and the called party address\n            are passed in Admission Request (ARQ) to gatekeeper\n            for the called party address resolution during call setup.",
                            "x-yang-type": "snmpv2-tc:DisplayString"
                          },
                          "cvVoIPPeerCfgDigitRelay": {
                            "type": "string",
                            "description": "This object specifies the methods to transmit dial digits\n            (DTMF or MF digits) via IP network.\n            rtpCisco       - Enable capability to transmit dial digits\n                             with Cisco proprietary RTP payload type.\n            h245Signal     - Enable capability to transmit dtmf digits\n                             across the H.245 channel, via the signal\n                             field of the UserInputIndication message\n            h245Alphanumeric - Enable capability to transmit dtmf\n                             digit across the H.245 channel, via the\n                             string or alphanumeric fields of the\n                             UserInputIndication message\n            rtpNte         - Enable capability to transmit dial digits\n                             using Named Telephony Event per RFC 2833\n                             section 3.\n            sipNotify      - Enable capability to transmit dtmf\n                             digits using unsolicited SIP NOTIFY\n                             messages. This mechanism is only available\n                             for SIP dialpeers.\n            sipKpml        - Enable capability to transmit dtmf\n                             digits using KPML over SIP SUBSCRIBE\n                             and NOTIFY messages. This mechanism is\n                             only available for SIP dialpeers.\n            \n            \n            Modifying the value of cvVoIPPeerCfgSessionProtocol\n            can reset the digit-relay method associated bits value in\n            this object if the modified session protocol does not\n            support  these digit-relay methods."
                          },
                          "cvVoIPPeerCfgCoderBytes": {
                            "type": "integer",
                            "description": "This object specifies the size of the voice payload sample\n            to be produced by the coder specified in\n            cvVoIPPeerCfgCoderRate.\n            Each coder sample produces 10 bytes of voice payload. The\n            specified value will be rounded down to the nearest valid\n            size.\n            \n            A value of 0, specifies that the coder defined by\n            cvVoIPPeerCfgCoderRate should produce its default payload\n            size.",
                            "minimum": -2147483648,
                            "maximum": 2147483647
                          },
                          "cvVoIPPeerCfgFaxBytes": {
                            "type": "integer",
                            "description": "This object specifies the payload size to be produced by\n            the coder when it is generating fax data. A value of 0,\n            specifies that the coder specified in\n            cvVoIPCfgPeerCoderRate should produce its default fax\n            payload size.",
                            "minimum": -2147483648,
                            "maximum": 2147483647
                          },
                          "cvVoIPPeerCfgInBandSignaling": {
                            "type": "string",
                            "description": "This object specifies the type of in-band signaling that\n            will be used between the end points of the call. It is\n            used by the router to determine how to interpret ABCD\n            signaling bits sent as part of voice payload data.",
                            "x-yang-type": "cisco-voice:CvcInBandSignaling"
                          },
                          "cvVoIPPeerCfgMediaSetting": {
                            "type": "string",
                            "description": "This object specifies how the media is to be setup on\n            an IP-IP Gateway. Two choices are valid: flow-through\n            and flow-around. When in flow-through mode, which is the\n            default setting, the IP-IP Gateway will terminate and \n            then re-originate the media stream. When flow-around\n            is configured the Gateway will not be involved with the\n            media, since it will flow-around the Gateway and will\n            be established directly between the endpoints."
                          },
                          "cvVoIPPeerCfgDesiredQoSVideo": {
                            "type": "string",
                            "description": "The object specifies the user requested Quality of Service\n            for the video portion of the call.",
                            "x-yang-type": "int-serv:QosService"
                          },
                          "cvVoIPPeerCfgMinAcceptableQoSVideo": {
                            "type": "string",
                            "description": "The object specifies the minimally acceptable Quality of\n            Service for the video portion of the call.",
                            "x-yang-type": "int-serv:QosService"
                          },
                          "cvVoIPPeerCfgRedirectip2ip": {
                            "type": "boolean",
                            "description": "This object specifies the Inbound VoIP calls that match\n            an outbound VoIP dialpeer will be responded with a SIP \n            redirect(for inbound SIP) or H.450.3 call-forward(for \n            inbound H.323)."
                          },
                          "cvVoIPPeerCfgOctetAligned": {
                            "type": "boolean",
                            "description": "If the object has a value true(1) octet align operation\n            is used, and if the value is false(2), bandwidth efficient\n            operation is used. This object is not instantiated when\n            the object cvVoIPPeerCfgCoderRate is not equal to\n            gsmAmrNb enum."
                          },
                          "cvVoIPPeerCfgBitRates": {
                            "type": "string",
                            "description": "This object indicates modes of Bit rates. One or more\n            upto four modes can be configured at the same time as\n            bit rates can be changed dynamically for AMR-NB codec.\n            This object is not instantiated when the object\n            cvVoIPPeerCfgCoderRate is not equal to gsmAmrNb enum.",
                            "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvAmrNbBitRateMode"
                          },
                          "cvVoIPPeerCfgCRC": {
                            "type": "boolean",
                            "description": "If the object has a value of true(1), frame CRC will be\n            included in the payload and if the value is false(2),\n            frame CRC will not be included in the payload.\n            This object is applicable only when RTP frame type\n            is octet aligned. This object is not instantiated when\n            the object cvVoIPPeerCfgCoderRate is not equal to\n            gsmAmrNb enum."
                          },
                          "cvVoIPPeerCfgCoderMode": {
                            "type": "string",
                            "description": "This object indicates the iLBC codec mode to be used.\n            The value of this object is valid only if \n            cvVoIPPeerCfgCoderRate is equal to 'iLBC'.",
                            "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvIlbcFrameMode"
                          },
                          "cvVoIPPeerCfgCodingMode": {
                            "type": "string",
                            "description": "This object specifies the coding mode to be used. The object is\n            instantiated only if cvVoIPPeerCfgCoderRate is 'iSAC'. Following\n            coding modes are supported:\n            adaptive    (1) - adaptive mode where iSAC performs bandwidth  \n                              estimation and adapts to the available channel\n            \n                              bandwidth.\n            independent (2) - independent mode in which no bandwidth\n            estimation \n                              is performed."
                          },
                          "cvVoIPPeerCfgBitRate": {
                            "type": "integer",
                            "description": "This object specifies the target bit rate. The object is\n            instantiated only if cvVoIPPeerCfgCoderRate is 'iSAC'.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "cvVoIPPeerCfgFrameSize": {
                            "type": "string",
                            "description": "This object specifies the frame size used. The object is\n            instantiated only if cvVoIPPeerCfgCoderRate is 'iSAC'.\n            The frame size can be 30 ms or 60 ms, and it can be fixed for\n            all packets or vary depending on the configuration and bandwidth\n            estimation. Thus it can have the following values:\n            frameSize30      - initial frame size of 30 ms\n            frameSize60      - initial frame size of 60 ms\n            frameSize30fixed - fixed frame size 30 ms\n            frameSize60fixed - fixed frame size 60 ms"
                          },
                          "cvVoIPPeerCfgDSCPPolicyNotificationEnable": {
                            "type": "boolean",
                            "description": "This object specifies whether cvdcPolicyViolationNotification\n            traps should be generated for the call that is associated with\n            this peer for RPH to DSCP mapping and policing feature."
                          },
                          "cvVoIPPeerCfgMediaPolicyNotificationEnable": {
                            "type": "boolean",
                            "description": "This object specifies whether cvdcPolicyViolationNotification\n            traps should be generated for the call that is associated with\n            this peer for Media policing feature.."
                          }
                        }
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-VOICE-DIAL-CONTROL-MIB:cvVoIPPeerCfgTable": {
                    "cvVoIPPeerCfgEntry": [
                      {
                        "ifIndex": "1",
                        "cvVoIPPeerCfgSessionProtocol": "192.168.1.1",
                        "cvVoIPPeerCfgDesiredQoS": "192.168.1.1",
                        "cvVoIPPeerCfgMinAcceptableQoS": "192.168.1.1",
                        "cvVoIPPeerCfgSessionTarget": "192.168.1.1",
                        "cvVoIPPeerCfgCoderRate": "192.168.1.1",
                        "cvVoIPPeerCfgFaxRate": "192.168.1.1",
                        "cvVoIPPeerCfgVADEnable": true,
                        "cvVoIPPeerCfgExpectFactor": -2147483648,
                        "cvVoIPPeerCfgIcpif": -2147483648,
                        "cvVoIPPeerCfgPoorQoVNotificationEnable": true,
                        "cvVoIPPeerCfgUDPChecksumEnable": true,
                        "cvVoIPPeerCfgIPPrecedence": -2147483648,
                        "cvVoIPPeerCfgTechPrefix": "192.168.1.1",
                        "cvVoIPPeerCfgDigitRelay": "192.168.1.1",
                        "cvVoIPPeerCfgCoderBytes": -2147483648,
                        "cvVoIPPeerCfgFaxBytes": -2147483648,
                        "cvVoIPPeerCfgInBandSignaling": "192.168.1.1",
                        "cvVoIPPeerCfgMediaSetting": "192.168.1.1",
                        "cvVoIPPeerCfgDesiredQoSVideo": "192.168.1.1",
                        "cvVoIPPeerCfgMinAcceptableQoSVideo": "192.168.1.1",
                        "cvVoIPPeerCfgRedirectip2ip": true,
                        "cvVoIPPeerCfgOctetAligned": true,
                        "cvVoIPPeerCfgBitRates": "192.168.1.1",
                        "cvVoIPPeerCfgCRC": true,
                        "cvVoIPPeerCfgCoderMode": "192.168.1.1",
                        "cvVoIPPeerCfgCodingMode": "192.168.1.1",
                        "cvVoIPPeerCfgBitRate": 0,
                        "cvVoIPPeerCfgFrameSize": "192.168.1.1",
                        "cvVoIPPeerCfgDSCPPolicyNotificationEnable": true,
                        "cvVoIPPeerCfgMediaPolicyNotificationEnable": true
                      },
                      {
                        "ifIndex": "2",
                        "cvVoIPPeerCfgSessionProtocol": "192.168.1.1",
                        "cvVoIPPeerCfgDesiredQoS": "192.168.1.1",
                        "cvVoIPPeerCfgMinAcceptableQoS": "192.168.1.1",
                        "cvVoIPPeerCfgSessionTarget": "192.168.1.1",
                        "cvVoIPPeerCfgCoderRate": "192.168.1.1",
                        "cvVoIPPeerCfgFaxRate": "192.168.1.1",
                        "cvVoIPPeerCfgVADEnable": true,
                        "cvVoIPPeerCfgExpectFactor": -2147483648,
                        "cvVoIPPeerCfgIcpif": -2147483648,
                        "cvVoIPPeerCfgPoorQoVNotificationEnable": true,
                        "cvVoIPPeerCfgUDPChecksumEnable": true,
                        "cvVoIPPeerCfgIPPrecedence": -2147483648,
                        "cvVoIPPeerCfgTechPrefix": "192.168.1.1",
                        "cvVoIPPeerCfgDigitRelay": "192.168.1.1",
                        "cvVoIPPeerCfgCoderBytes": -2147483648,
                        "cvVoIPPeerCfgFaxBytes": -2147483648,
                        "cvVoIPPeerCfgInBandSignaling": "192.168.1.1",
                        "cvVoIPPeerCfgMediaSetting": "192.168.1.1",
                        "cvVoIPPeerCfgDesiredQoSVideo": "192.168.1.1",
                        "cvVoIPPeerCfgMinAcceptableQoSVideo": "192.168.1.1",
                        "cvVoIPPeerCfgRedirectip2ip": true,
                        "cvVoIPPeerCfgOctetAligned": true,
                        "cvVoIPPeerCfgBitRates": "192.168.1.1",
                        "cvVoIPPeerCfgCRC": true,
                        "cvVoIPPeerCfgCoderMode": "192.168.1.1",
                        "cvVoIPPeerCfgCodingMode": "192.168.1.1",
                        "cvVoIPPeerCfgBitRate": 0,
                        "cvVoIPPeerCfgFrameSize": "192.168.1.1",
                        "cvVoIPPeerCfgDSCPPolicyNotificationEnable": true,
                        "cvVoIPPeerCfgMediaPolicyNotificationEnable": true
                      },
                      {
                        "ifIndex": "3",
                        "cvVoIPPeerCfgSessionProtocol": "192.168.1.1",
                        "cvVoIPPeerCfgDesiredQoS": "192.168.1.1",
                        "cvVoIPPeerCfgMinAcceptableQoS": "192.168.1.1",
                        "cvVoIPPeerCfgSessionTarget": "192.168.1.1",
                        "cvVoIPPeerCfgCoderRate": "192.168.1.1",
                        "cvVoIPPeerCfgFaxRate": "192.168.1.1",
                        "cvVoIPPeerCfgVADEnable": true,
                        "cvVoIPPeerCfgExpectFactor": -2147483648,
                        "cvVoIPPeerCfgIcpif": -2147483648,
                        "cvVoIPPeerCfgPoorQoVNotificationEnable": true,
                        "cvVoIPPeerCfgUDPChecksumEnable": true,
                        "cvVoIPPeerCfgIPPrecedence": -2147483648,
                        "cvVoIPPeerCfgTechPrefix": "192.168.1.1",
                        "cvVoIPPeerCfgDigitRelay": "192.168.1.1",
                        "cvVoIPPeerCfgCoderBytes": -2147483648,
                        "cvVoIPPeerCfgFaxBytes": -2147483648,
                        "cvVoIPPeerCfgInBandSignaling": "192.168.1.1",
                        "cvVoIPPeerCfgMediaSetting": "192.168.1.1",
                        "cvVoIPPeerCfgDesiredQoSVideo": "192.168.1.1",
                        "cvVoIPPeerCfgMinAcceptableQoSVideo": "192.168.1.1",
                        "cvVoIPPeerCfgRedirectip2ip": true,
                        "cvVoIPPeerCfgOctetAligned": true,
                        "cvVoIPPeerCfgBitRates": "192.168.1.1",
                        "cvVoIPPeerCfgCRC": true,
                        "cvVoIPPeerCfgCoderMode": "192.168.1.1",
                        "cvVoIPPeerCfgCodingMode": "192.168.1.1",
                        "cvVoIPPeerCfgBitRate": 0,
                        "cvVoIPPeerCfgFrameSize": "192.168.1.1",
                        "cvVoIPPeerCfgDSCPPolicyNotificationEnable": true,
                        "cvVoIPPeerCfgMediaPolicyNotificationEnable": true
                      }
                    ]
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cvVoIPPeerCfgTable",
        "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": "/cvVoIPPeerCfgTable",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-VOICE-DIAL-CONTROL-MIB:cvVoIPPeerCfgTable/cvVoIPPeerCfgEntry": {
      "get": {
        "summary": "Get cvVoIPPeerCfgEntry list",
        "description": "Retrieve list of cvVoIPPeerCfgEntry entries from MIB",
        "tags": [
          "CISCO-VOICE-DIAL-CONTROL-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "A single VoIP specific Peer. One entry per VoIP\n          encapsulation.\n          The entry is created when its associated 'voiceOverIp(104)'\n          encapsulation ifEntry is created.\n          This entry is deleted when its associated ifEntry is\n          deleted.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "ifIndex": {
                        "type": "string",
                        "description": "ifIndex",
                        "x-yang-type": "leafref"
                      },
                      "cvVoIPPeerCfgSessionProtocol": {
                        "type": "string",
                        "description": "The object specifies the session protocol to be used\n            for Internet call between local and remote router via\n            IP backbone.",
                        "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvSessionProtocol"
                      },
                      "cvVoIPPeerCfgDesiredQoS": {
                        "type": "string",
                        "description": "The object specifies the user requested Quality of Service\n            for the call.",
                        "x-yang-type": "int-serv:QosService"
                      },
                      "cvVoIPPeerCfgMinAcceptableQoS": {
                        "type": "string",
                        "description": "The object specifies the minimally acceptable Quality of\n            Service for the call.",
                        "x-yang-type": "int-serv:QosService"
                      },
                      "cvVoIPPeerCfgSessionTarget": {
                        "type": "string",
                        "description": "The object specifies the session target of the peer.\n            Session Targets definitions:\n            The session target has the syntax used by the IETF service\n            location protocol. The syntax is as follows:\n            \n            mapping-type:type-specific-syntax\n            \n            the mapping-type specifies a scheme for mapping the\n            matching dial string to a session target. The\n            type-specific-syntax is exactly that, something that the\n            particular mapping scheme can understand.\n            For example,\n            Session target           Meaning\n            ipv4:171.68.13.55:1006   The session target is the IP\n                                     version 4 address of 171.68.13.55\n                                     and port 1006.\n            dns:pots.cisco.com:1661  The session target is the IP host\n                                     with dns name pots.cisco.com, and\n                                     port 1661.\n            ras                      The session target is the\n                                     gatekeeper with RAS (Registration\n                                     , Admission,  Status protocol).\n            settlement               The session target is the\n                                     settlement server.\n            enum:1                   The session target is the enum \n                                     profile match table 1.\n            \n            The valid Mapping type definitions for the peer are as\n            follows:\n            ipv4       - Syntax: ipv4:w.x.y.z:port or  ipv4:w.x.y.z\n            dns        - Syntax: dns:host.domain:port or\n                                 dns:host.domain\n            ras        - Syntax: ras\n            settlement - Syntax: settlement\n            enum       - Syntax: enum:\n            \n            loopback - Syntax: loopback:where\n               'where' string is defined as follows:\n               rtp - loopback is performed at the transport protocol\n                     level.\n            \n            Local loopback case:\n            rtp - the session application sets up an RTP stream to\n                itself (i.e. actually allocates a port pair and opens\n                the appropriate UDP sockets). It then does the full\n                RTP encapsulation, sends the packets to the loopback\n                IP address, receives the RTP packets, and hands the\n                compressed voice back to the CODEC. This tests the\n                entire local processing path, both transmit and\n                receive, in the router, as well as all of the above\n                paths.\n            \n            Remote loopback case:\n            rtp: RTP packets received from the network are decapsulated and\n                 immediately re-encapsulated in the outbound RTP\n                 stream, using the same media clock (i.e. timestamp)\n                 as the received packet. They are then sent back to\n                 the remote source router as if the voice had\n                 originated on a telephony port on the local router.",
                        "x-yang-type": "snmpv2-tc:DisplayString"
                      },
                      "cvVoIPPeerCfgCoderRate": {
                        "type": "string",
                        "description": "This object specifies the most desirable codec of speech\n            for the VoIP peer.",
                        "x-yang-type": "cisco-voice:CvcSpeechCoderRate"
                      },
                      "cvVoIPPeerCfgFaxRate": {
                        "type": "string",
                        "description": "This object specifies the default transmit rate of FAX\n            the VoIP peer. If the value of this object is 'none',\n            then the Fax relay feature is disabled; otherwise the Fax\n            relay feature is enabled.",
                        "x-yang-type": "cisco-voice:CvcFaxTransmitRate"
                      },
                      "cvVoIPPeerCfgVADEnable": {
                        "type": "boolean",
                        "description": "This object specifies whether or not the VAD (Voice\n            Activity Detection) voice data is continuously transmitted\n            to IP backbone."
                      },
                      "cvVoIPPeerCfgExpectFactor": {
                        "type": "integer",
                        "description": "This object specifies the user requested Expectation\n            Factor of voice quality for the call via this peer.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "cvVoIPPeerCfgIcpif": {
                        "type": "integer",
                        "description": "This object specifies the user requested Calculated\n            Planning Impairment Factor (Icpif) for the call via this\n            peer.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "cvVoIPPeerCfgPoorQoVNotificationEnable": {
                        "type": "boolean",
                        "description": "This object specifies whether cvdcPoorQoVNotification (or\n            the newer cvdcPoorQoVNotificationRev1) traps should be\n            generated for the call that is associated with this\n            peer."
                      },
                      "cvVoIPPeerCfgUDPChecksumEnable": {
                        "type": "boolean",
                        "description": "This object specifies whether the outgoing voice related\n            UDP packet contains a valid checksum value.\n            true  - enable the checksum of outgoing voice UDP packets\n            false - disable the checksum of outgoing voice UDP packets"
                      },
                      "cvVoIPPeerCfgIPPrecedence": {
                        "type": "integer",
                        "description": "This object specifies the value to be stored in the IP\n            Precedence field of voice packets, with values ranging\n            from 0 (normal precedence) through 7 (network control),\n            allowing the managed system to set the importance of each\n            voice packet for delivering them to the destination peer.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "cvVoIPPeerCfgTechPrefix": {
                        "type": "string",
                        "description": "This object specifies the technology prefix of the peer,\n            The technology prefix and the called party address\n            are passed in Admission Request (ARQ) to gatekeeper\n            for the called party address resolution during call setup.",
                        "x-yang-type": "snmpv2-tc:DisplayString"
                      },
                      "cvVoIPPeerCfgDigitRelay": {
                        "type": "string",
                        "description": "This object specifies the methods to transmit dial digits\n            (DTMF or MF digits) via IP network.\n            rtpCisco       - Enable capability to transmit dial digits\n                             with Cisco proprietary RTP payload type.\n            h245Signal     - Enable capability to transmit dtmf digits\n                             across the H.245 channel, via the signal\n                             field of the UserInputIndication message\n            h245Alphanumeric - Enable capability to transmit dtmf\n                             digit across the H.245 channel, via the\n                             string or alphanumeric fields of the\n                             UserInputIndication message\n            rtpNte         - Enable capability to transmit dial digits\n                             using Named Telephony Event per RFC 2833\n                             section 3.\n            sipNotify      - Enable capability to transmit dtmf\n                             digits using unsolicited SIP NOTIFY\n                             messages. This mechanism is only available\n                             for SIP dialpeers.\n            sipKpml        - Enable capability to transmit dtmf\n                             digits using KPML over SIP SUBSCRIBE\n                             and NOTIFY messages. This mechanism is\n                             only available for SIP dialpeers.\n            \n            \n            Modifying the value of cvVoIPPeerCfgSessionProtocol\n            can reset the digit-relay method associated bits value in\n            this object if the modified session protocol does not\n            support  these digit-relay methods."
                      },
                      "cvVoIPPeerCfgCoderBytes": {
                        "type": "integer",
                        "description": "This object specifies the size of the voice payload sample\n            to be produced by the coder specified in\n            cvVoIPPeerCfgCoderRate.\n            Each coder sample produces 10 bytes of voice payload. The\n            specified value will be rounded down to the nearest valid\n            size.\n            \n            A value of 0, specifies that the coder defined by\n            cvVoIPPeerCfgCoderRate should produce its default payload\n            size.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "cvVoIPPeerCfgFaxBytes": {
                        "type": "integer",
                        "description": "This object specifies the payload size to be produced by\n            the coder when it is generating fax data. A value of 0,\n            specifies that the coder specified in\n            cvVoIPCfgPeerCoderRate should produce its default fax\n            payload size.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "cvVoIPPeerCfgInBandSignaling": {
                        "type": "string",
                        "description": "This object specifies the type of in-band signaling that\n            will be used between the end points of the call. It is\n            used by the router to determine how to interpret ABCD\n            signaling bits sent as part of voice payload data.",
                        "x-yang-type": "cisco-voice:CvcInBandSignaling"
                      },
                      "cvVoIPPeerCfgMediaSetting": {
                        "type": "string",
                        "description": "This object specifies how the media is to be setup on\n            an IP-IP Gateway. Two choices are valid: flow-through\n            and flow-around. When in flow-through mode, which is the\n            default setting, the IP-IP Gateway will terminate and \n            then re-originate the media stream. When flow-around\n            is configured the Gateway will not be involved with the\n            media, since it will flow-around the Gateway and will\n            be established directly between the endpoints."
                      },
                      "cvVoIPPeerCfgDesiredQoSVideo": {
                        "type": "string",
                        "description": "The object specifies the user requested Quality of Service\n            for the video portion of the call.",
                        "x-yang-type": "int-serv:QosService"
                      },
                      "cvVoIPPeerCfgMinAcceptableQoSVideo": {
                        "type": "string",
                        "description": "The object specifies the minimally acceptable Quality of\n            Service for the video portion of the call.",
                        "x-yang-type": "int-serv:QosService"
                      },
                      "cvVoIPPeerCfgRedirectip2ip": {
                        "type": "boolean",
                        "description": "This object specifies the Inbound VoIP calls that match\n            an outbound VoIP dialpeer will be responded with a SIP \n            redirect(for inbound SIP) or H.450.3 call-forward(for \n            inbound H.323)."
                      },
                      "cvVoIPPeerCfgOctetAligned": {
                        "type": "boolean",
                        "description": "If the object has a value true(1) octet align operation\n            is used, and if the value is false(2), bandwidth efficient\n            operation is used. This object is not instantiated when\n            the object cvVoIPPeerCfgCoderRate is not equal to\n            gsmAmrNb enum."
                      },
                      "cvVoIPPeerCfgBitRates": {
                        "type": "string",
                        "description": "This object indicates modes of Bit rates. One or more\n            upto four modes can be configured at the same time as\n            bit rates can be changed dynamically for AMR-NB codec.\n            This object is not instantiated when the object\n            cvVoIPPeerCfgCoderRate is not equal to gsmAmrNb enum.",
                        "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvAmrNbBitRateMode"
                      },
                      "cvVoIPPeerCfgCRC": {
                        "type": "boolean",
                        "description": "If the object has a value of true(1), frame CRC will be\n            included in the payload and if the value is false(2),\n            frame CRC will not be included in the payload.\n            This object is applicable only when RTP frame type\n            is octet aligned. This object is not instantiated when\n            the object cvVoIPPeerCfgCoderRate is not equal to\n            gsmAmrNb enum."
                      },
                      "cvVoIPPeerCfgCoderMode": {
                        "type": "string",
                        "description": "This object indicates the iLBC codec mode to be used.\n            The value of this object is valid only if \n            cvVoIPPeerCfgCoderRate is equal to 'iLBC'.",
                        "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvIlbcFrameMode"
                      },
                      "cvVoIPPeerCfgCodingMode": {
                        "type": "string",
                        "description": "This object specifies the coding mode to be used. The object is\n            instantiated only if cvVoIPPeerCfgCoderRate is 'iSAC'. Following\n            coding modes are supported:\n            adaptive    (1) - adaptive mode where iSAC performs bandwidth  \n                              estimation and adapts to the available channel\n            \n                              bandwidth.\n            independent (2) - independent mode in which no bandwidth\n            estimation \n                              is performed."
                      },
                      "cvVoIPPeerCfgBitRate": {
                        "type": "integer",
                        "description": "This object specifies the target bit rate. The object is\n            instantiated only if cvVoIPPeerCfgCoderRate is 'iSAC'.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cvVoIPPeerCfgFrameSize": {
                        "type": "string",
                        "description": "This object specifies the frame size used. The object is\n            instantiated only if cvVoIPPeerCfgCoderRate is 'iSAC'.\n            The frame size can be 30 ms or 60 ms, and it can be fixed for\n            all packets or vary depending on the configuration and bandwidth\n            estimation. Thus it can have the following values:\n            frameSize30      - initial frame size of 30 ms\n            frameSize60      - initial frame size of 60 ms\n            frameSize30fixed - fixed frame size 30 ms\n            frameSize60fixed - fixed frame size 60 ms"
                      },
                      "cvVoIPPeerCfgDSCPPolicyNotificationEnable": {
                        "type": "boolean",
                        "description": "This object specifies whether cvdcPolicyViolationNotification\n            traps should be generated for the call that is associated with\n            this peer for RPH to DSCP mapping and policing feature."
                      },
                      "cvVoIPPeerCfgMediaPolicyNotificationEnable": {
                        "type": "boolean",
                        "description": "This object specifies whether cvdcPolicyViolationNotification\n            traps should be generated for the call that is associated with\n            this peer for Media policing feature.."
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-VOICE-DIAL-CONTROL-MIB:cvVoIPPeerCfgEntry": [
                    {
                      "ifIndex": "example-string",
                      "cvVoIPPeerCfgSessionProtocol": "192.168.1.1",
                      "cvVoIPPeerCfgDesiredQoS": "192.168.1.1",
                      "cvVoIPPeerCfgMinAcceptableQoS": "192.168.1.1",
                      "cvVoIPPeerCfgSessionTarget": "192.168.1.1",
                      "cvVoIPPeerCfgCoderRate": "192.168.1.1",
                      "cvVoIPPeerCfgFaxRate": "192.168.1.1",
                      "cvVoIPPeerCfgVADEnable": true,
                      "cvVoIPPeerCfgExpectFactor": -2147483648,
                      "cvVoIPPeerCfgIcpif": -2147483648,
                      "cvVoIPPeerCfgPoorQoVNotificationEnable": true,
                      "cvVoIPPeerCfgUDPChecksumEnable": true,
                      "cvVoIPPeerCfgIPPrecedence": -2147483648,
                      "cvVoIPPeerCfgTechPrefix": "192.168.1.1",
                      "cvVoIPPeerCfgDigitRelay": "192.168.1.1",
                      "cvVoIPPeerCfgCoderBytes": -2147483648,
                      "cvVoIPPeerCfgFaxBytes": -2147483648,
                      "cvVoIPPeerCfgInBandSignaling": "192.168.1.1",
                      "cvVoIPPeerCfgMediaSetting": "192.168.1.1",
                      "cvVoIPPeerCfgDesiredQoSVideo": "192.168.1.1",
                      "cvVoIPPeerCfgMinAcceptableQoSVideo": "192.168.1.1",
                      "cvVoIPPeerCfgRedirectip2ip": true,
                      "cvVoIPPeerCfgOctetAligned": true,
                      "cvVoIPPeerCfgBitRates": "192.168.1.1",
                      "cvVoIPPeerCfgCRC": true,
                      "cvVoIPPeerCfgCoderMode": "192.168.1.1",
                      "cvVoIPPeerCfgCodingMode": "192.168.1.1",
                      "cvVoIPPeerCfgBitRate": 0,
                      "cvVoIPPeerCfgFrameSize": "192.168.1.1",
                      "cvVoIPPeerCfgDSCPPolicyNotificationEnable": true,
                      "cvVoIPPeerCfgMediaPolicyNotificationEnable": true
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cvVoIPPeerCfgEntry",
        "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": "/cvVoIPPeerCfgTable/cvVoIPPeerCfgEntry",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-VOICE-DIAL-CONTROL-MIB:cvVoIPPeerCfgTable/cvVoIPPeerCfgEntry={ifIndex}": {
      "get": {
        "summary": "Get cvVoIPPeerCfgEntry entry",
        "description": "Retrieve specific cvVoIPPeerCfgEntry entry by key from MIB",
        "tags": [
          "CISCO-VOICE-DIAL-CONTROL-MIB"
        ],
        "parameters": [
          {
            "name": "ifIndex",
            "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": {
                    "ifIndex": {
                      "type": "string",
                      "description": "ifIndex",
                      "x-yang-type": "leafref"
                    },
                    "cvVoIPPeerCfgSessionProtocol": {
                      "type": "string",
                      "description": "The object specifies the session protocol to be used\n            for Internet call between local and remote router via\n            IP backbone.",
                      "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvSessionProtocol"
                    },
                    "cvVoIPPeerCfgDesiredQoS": {
                      "type": "string",
                      "description": "The object specifies the user requested Quality of Service\n            for the call.",
                      "x-yang-type": "int-serv:QosService"
                    },
                    "cvVoIPPeerCfgMinAcceptableQoS": {
                      "type": "string",
                      "description": "The object specifies the minimally acceptable Quality of\n            Service for the call.",
                      "x-yang-type": "int-serv:QosService"
                    },
                    "cvVoIPPeerCfgSessionTarget": {
                      "type": "string",
                      "description": "The object specifies the session target of the peer.\n            Session Targets definitions:\n            The session target has the syntax used by the IETF service\n            location protocol. The syntax is as follows:\n            \n            mapping-type:type-specific-syntax\n            \n            the mapping-type specifies a scheme for mapping the\n            matching dial string to a session target. The\n            type-specific-syntax is exactly that, something that the\n            particular mapping scheme can understand.\n            For example,\n            Session target           Meaning\n            ipv4:171.68.13.55:1006   The session target is the IP\n                                     version 4 address of 171.68.13.55\n                                     and port 1006.\n            dns:pots.cisco.com:1661  The session target is the IP host\n                                     with dns name pots.cisco.com, and\n                                     port 1661.\n            ras                      The session target is the\n                                     gatekeeper with RAS (Registration\n                                     , Admission,  Status protocol).\n            settlement               The session target is the\n                                     settlement server.\n            enum:1                   The session target is the enum \n                                     profile match table 1.\n            \n            The valid Mapping type definitions for the peer are as\n            follows:\n            ipv4       - Syntax: ipv4:w.x.y.z:port or  ipv4:w.x.y.z\n            dns        - Syntax: dns:host.domain:port or\n                                 dns:host.domain\n            ras        - Syntax: ras\n            settlement - Syntax: settlement\n            enum       - Syntax: enum:\n            \n            loopback - Syntax: loopback:where\n               'where' string is defined as follows:\n               rtp - loopback is performed at the transport protocol\n                     level.\n            \n            Local loopback case:\n            rtp - the session application sets up an RTP stream to\n                itself (i.e. actually allocates a port pair and opens\n                the appropriate UDP sockets). It then does the full\n                RTP encapsulation, sends the packets to the loopback\n                IP address, receives the RTP packets, and hands the\n                compressed voice back to the CODEC. This tests the\n                entire local processing path, both transmit and\n                receive, in the router, as well as all of the above\n                paths.\n            \n            Remote loopback case:\n            rtp: RTP packets received from the network are decapsulated and\n                 immediately re-encapsulated in the outbound RTP\n                 stream, using the same media clock (i.e. timestamp)\n                 as the received packet. They are then sent back to\n                 the remote source router as if the voice had\n                 originated on a telephony port on the local router.",
                      "x-yang-type": "snmpv2-tc:DisplayString"
                    },
                    "cvVoIPPeerCfgCoderRate": {
                      "type": "string",
                      "description": "This object specifies the most desirable codec of speech\n            for the VoIP peer.",
                      "x-yang-type": "cisco-voice:CvcSpeechCoderRate"
                    },
                    "cvVoIPPeerCfgFaxRate": {
                      "type": "string",
                      "description": "This object specifies the default transmit rate of FAX\n            the VoIP peer. If the value of this object is 'none',\n            then the Fax relay feature is disabled; otherwise the Fax\n            relay feature is enabled.",
                      "x-yang-type": "cisco-voice:CvcFaxTransmitRate"
                    },
                    "cvVoIPPeerCfgVADEnable": {
                      "type": "boolean",
                      "description": "This object specifies whether or not the VAD (Voice\n            Activity Detection) voice data is continuously transmitted\n            to IP backbone."
                    },
                    "cvVoIPPeerCfgExpectFactor": {
                      "type": "integer",
                      "description": "This object specifies the user requested Expectation\n            Factor of voice quality for the call via this peer.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "cvVoIPPeerCfgIcpif": {
                      "type": "integer",
                      "description": "This object specifies the user requested Calculated\n            Planning Impairment Factor (Icpif) for the call via this\n            peer.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "cvVoIPPeerCfgPoorQoVNotificationEnable": {
                      "type": "boolean",
                      "description": "This object specifies whether cvdcPoorQoVNotification (or\n            the newer cvdcPoorQoVNotificationRev1) traps should be\n            generated for the call that is associated with this\n            peer."
                    },
                    "cvVoIPPeerCfgUDPChecksumEnable": {
                      "type": "boolean",
                      "description": "This object specifies whether the outgoing voice related\n            UDP packet contains a valid checksum value.\n            true  - enable the checksum of outgoing voice UDP packets\n            false - disable the checksum of outgoing voice UDP packets"
                    },
                    "cvVoIPPeerCfgIPPrecedence": {
                      "type": "integer",
                      "description": "This object specifies the value to be stored in the IP\n            Precedence field of voice packets, with values ranging\n            from 0 (normal precedence) through 7 (network control),\n            allowing the managed system to set the importance of each\n            voice packet for delivering them to the destination peer.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "cvVoIPPeerCfgTechPrefix": {
                      "type": "string",
                      "description": "This object specifies the technology prefix of the peer,\n            The technology prefix and the called party address\n            are passed in Admission Request (ARQ) to gatekeeper\n            for the called party address resolution during call setup.",
                      "x-yang-type": "snmpv2-tc:DisplayString"
                    },
                    "cvVoIPPeerCfgDigitRelay": {
                      "type": "string",
                      "description": "This object specifies the methods to transmit dial digits\n            (DTMF or MF digits) via IP network.\n            rtpCisco       - Enable capability to transmit dial digits\n                             with Cisco proprietary RTP payload type.\n            h245Signal     - Enable capability to transmit dtmf digits\n                             across the H.245 channel, via the signal\n                             field of the UserInputIndication message\n            h245Alphanumeric - Enable capability to transmit dtmf\n                             digit across the H.245 channel, via the\n                             string or alphanumeric fields of the\n                             UserInputIndication message\n            rtpNte         - Enable capability to transmit dial digits\n                             using Named Telephony Event per RFC 2833\n                             section 3.\n            sipNotify      - Enable capability to transmit dtmf\n                             digits using unsolicited SIP NOTIFY\n                             messages. This mechanism is only available\n                             for SIP dialpeers.\n            sipKpml        - Enable capability to transmit dtmf\n                             digits using KPML over SIP SUBSCRIBE\n                             and NOTIFY messages. This mechanism is\n                             only available for SIP dialpeers.\n            \n            \n            Modifying the value of cvVoIPPeerCfgSessionProtocol\n            can reset the digit-relay method associated bits value in\n            this object if the modified session protocol does not\n            support  these digit-relay methods."
                    },
                    "cvVoIPPeerCfgCoderBytes": {
                      "type": "integer",
                      "description": "This object specifies the size of the voice payload sample\n            to be produced by the coder specified in\n            cvVoIPPeerCfgCoderRate.\n            Each coder sample produces 10 bytes of voice payload. The\n            specified value will be rounded down to the nearest valid\n            size.\n            \n            A value of 0, specifies that the coder defined by\n            cvVoIPPeerCfgCoderRate should produce its default payload\n            size.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "cvVoIPPeerCfgFaxBytes": {
                      "type": "integer",
                      "description": "This object specifies the payload size to be produced by\n            the coder when it is generating fax data. A value of 0,\n            specifies that the coder specified in\n            cvVoIPCfgPeerCoderRate should produce its default fax\n            payload size.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "cvVoIPPeerCfgInBandSignaling": {
                      "type": "string",
                      "description": "This object specifies the type of in-band signaling that\n            will be used between the end points of the call. It is\n            used by the router to determine how to interpret ABCD\n            signaling bits sent as part of voice payload data.",
                      "x-yang-type": "cisco-voice:CvcInBandSignaling"
                    },
                    "cvVoIPPeerCfgMediaSetting": {
                      "type": "string",
                      "description": "This object specifies how the media is to be setup on\n            an IP-IP Gateway. Two choices are valid: flow-through\n            and flow-around. When in flow-through mode, which is the\n            default setting, the IP-IP Gateway will terminate and \n            then re-originate the media stream. When flow-around\n            is configured the Gateway will not be involved with the\n            media, since it will flow-around the Gateway and will\n            be established directly between the endpoints."
                    },
                    "cvVoIPPeerCfgDesiredQoSVideo": {
                      "type": "string",
                      "description": "The object specifies the user requested Quality of Service\n            for the video portion of the call.",
                      "x-yang-type": "int-serv:QosService"
                    },
                    "cvVoIPPeerCfgMinAcceptableQoSVideo": {
                      "type": "string",
                      "description": "The object specifies the minimally acceptable Quality of\n            Service for the video portion of the call.",
                      "x-yang-type": "int-serv:QosService"
                    },
                    "cvVoIPPeerCfgRedirectip2ip": {
                      "type": "boolean",
                      "description": "This object specifies the Inbound VoIP calls that match\n            an outbound VoIP dialpeer will be responded with a SIP \n            redirect(for inbound SIP) or H.450.3 call-forward(for \n            inbound H.323)."
                    },
                    "cvVoIPPeerCfgOctetAligned": {
                      "type": "boolean",
                      "description": "If the object has a value true(1) octet align operation\n            is used, and if the value is false(2), bandwidth efficient\n            operation is used. This object is not instantiated when\n            the object cvVoIPPeerCfgCoderRate is not equal to\n            gsmAmrNb enum."
                    },
                    "cvVoIPPeerCfgBitRates": {
                      "type": "string",
                      "description": "This object indicates modes of Bit rates. One or more\n            upto four modes can be configured at the same time as\n            bit rates can be changed dynamically for AMR-NB codec.\n            This object is not instantiated when the object\n            cvVoIPPeerCfgCoderRate is not equal to gsmAmrNb enum.",
                      "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvAmrNbBitRateMode"
                    },
                    "cvVoIPPeerCfgCRC": {
                      "type": "boolean",
                      "description": "If the object has a value of true(1), frame CRC will be\n            included in the payload and if the value is false(2),\n            frame CRC will not be included in the payload.\n            This object is applicable only when RTP frame type\n            is octet aligned. This object is not instantiated when\n            the object cvVoIPPeerCfgCoderRate is not equal to\n            gsmAmrNb enum."
                    },
                    "cvVoIPPeerCfgCoderMode": {
                      "type": "string",
                      "description": "This object indicates the iLBC codec mode to be used.\n            The value of this object is valid only if \n            cvVoIPPeerCfgCoderRate is equal to 'iLBC'.",
                      "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvIlbcFrameMode"
                    },
                    "cvVoIPPeerCfgCodingMode": {
                      "type": "string",
                      "description": "This object specifies the coding mode to be used. The object is\n            instantiated only if cvVoIPPeerCfgCoderRate is 'iSAC'. Following\n            coding modes are supported:\n            adaptive    (1) - adaptive mode where iSAC performs bandwidth  \n                              estimation and adapts to the available channel\n            \n                              bandwidth.\n            independent (2) - independent mode in which no bandwidth\n            estimation \n                              is performed."
                    },
                    "cvVoIPPeerCfgBitRate": {
                      "type": "integer",
                      "description": "This object specifies the target bit rate. The object is\n            instantiated only if cvVoIPPeerCfgCoderRate is 'iSAC'.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cvVoIPPeerCfgFrameSize": {
                      "type": "string",
                      "description": "This object specifies the frame size used. The object is\n            instantiated only if cvVoIPPeerCfgCoderRate is 'iSAC'.\n            The frame size can be 30 ms or 60 ms, and it can be fixed for\n            all packets or vary depending on the configuration and bandwidth\n            estimation. Thus it can have the following values:\n            frameSize30      - initial frame size of 30 ms\n            frameSize60      - initial frame size of 60 ms\n            frameSize30fixed - fixed frame size 30 ms\n            frameSize60fixed - fixed frame size 60 ms"
                    },
                    "cvVoIPPeerCfgDSCPPolicyNotificationEnable": {
                      "type": "boolean",
                      "description": "This object specifies whether cvdcPolicyViolationNotification\n            traps should be generated for the call that is associated with\n            this peer for RPH to DSCP mapping and policing feature."
                    },
                    "cvVoIPPeerCfgMediaPolicyNotificationEnable": {
                      "type": "boolean",
                      "description": "This object specifies whether cvdcPolicyViolationNotification\n            traps should be generated for the call that is associated with\n            this peer for Media policing feature.."
                    }
                  }
                },
                "example": {
                  "CISCO-VOICE-DIAL-CONTROL-MIB:cvVoIPPeerCfgEntry": {
                    "ifIndex": "example-string",
                    "cvVoIPPeerCfgSessionProtocol": "192.168.1.1",
                    "cvVoIPPeerCfgDesiredQoS": "192.168.1.1",
                    "cvVoIPPeerCfgMinAcceptableQoS": "192.168.1.1",
                    "cvVoIPPeerCfgSessionTarget": "192.168.1.1",
                    "cvVoIPPeerCfgCoderRate": "192.168.1.1",
                    "cvVoIPPeerCfgFaxRate": "192.168.1.1",
                    "cvVoIPPeerCfgVADEnable": true,
                    "cvVoIPPeerCfgExpectFactor": -2147483648,
                    "cvVoIPPeerCfgIcpif": -2147483648,
                    "cvVoIPPeerCfgPoorQoVNotificationEnable": true,
                    "cvVoIPPeerCfgUDPChecksumEnable": true,
                    "cvVoIPPeerCfgIPPrecedence": -2147483648,
                    "cvVoIPPeerCfgTechPrefix": "192.168.1.1",
                    "cvVoIPPeerCfgDigitRelay": "192.168.1.1",
                    "cvVoIPPeerCfgCoderBytes": -2147483648,
                    "cvVoIPPeerCfgFaxBytes": -2147483648,
                    "cvVoIPPeerCfgInBandSignaling": "192.168.1.1",
                    "cvVoIPPeerCfgMediaSetting": "192.168.1.1",
                    "cvVoIPPeerCfgDesiredQoSVideo": "192.168.1.1",
                    "cvVoIPPeerCfgMinAcceptableQoSVideo": "192.168.1.1",
                    "cvVoIPPeerCfgRedirectip2ip": true,
                    "cvVoIPPeerCfgOctetAligned": true,
                    "cvVoIPPeerCfgBitRates": "192.168.1.1",
                    "cvVoIPPeerCfgCRC": true,
                    "cvVoIPPeerCfgCoderMode": "192.168.1.1",
                    "cvVoIPPeerCfgCodingMode": "192.168.1.1",
                    "cvVoIPPeerCfgBitRate": 0,
                    "cvVoIPPeerCfgFrameSize": "192.168.1.1",
                    "cvVoIPPeerCfgDSCPPolicyNotificationEnable": true,
                    "cvVoIPPeerCfgMediaPolicyNotificationEnable": true
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cvVoIPPeerCfgEntry-2"
      },
      "x-yang-path": "/cvVoIPPeerCfgTable/cvVoIPPeerCfgEntry={ifIndex}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "ifIndex"
      ]
    },
    "/data/CISCO-VOICE-DIAL-CONTROL-MIB:cvPeerCommonCfgTable": {
      "get": {
        "summary": "Get cvPeerCommonCfgTable data",
        "description": "Retrieve cvPeerCommonCfgTable operational data from MIB",
        "tags": [
          "CISCO-VOICE-DIAL-CONTROL-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "description": "The table contains the Voice specific peer common\n        configuration information that is required to accept voice\n        calls or to which it will place them or process the\n        incoming calls.",
                  "properties": {
                    "cvPeerCommonCfgEntry": {
                      "type": "array",
                      "description": "A single Voice specific Peer. One entry per voice related\n          encapsulation.\n          The entry is created when a voice related encapsulation\n          ifEntry is created.\n          This entry is deleted when its associated ifEntry is\n          deleted.",
                      "items": {
                        "type": "object",
                        "properties": {
                          "ifIndex": {
                            "type": "string",
                            "description": "ifIndex",
                            "x-yang-type": "leafref"
                          },
                          "cvPeerCommonCfgIncomingDnisDigits": {
                            "type": "string",
                            "description": "The object specifies the prefix of the incoming Dialed\n            Number Identification Service (DNIS) digits for the peer.\n            The DNIS digits prefix is used to match with the incoming\n            DNIS number for incoming call discrimination. If the\n            digits in this object are matched with incoming DNIS\n            number, the  associated dialCtlPeerCfgInfoType in RFC 2128\n            will be used as a call discriminator for differentiating\n            speech, data, fax, video or modem calls.",
                            "x-yang-type": "snmpv2-tc:DisplayString"
                          },
                          "cvPeerCommonCfgMaxConnections": {
                            "type": "integer",
                            "description": "The object specifies the maximum allowed connection\n            to/from the peer. A value of -1 disables the limit of\n            maximum connections.",
                            "minimum": -2147483648,
                            "maximum": 2147483647
                          },
                          "cvPeerCommonCfgApplicationName": {
                            "type": "string",
                            "description": "The object specifies the application to handle the incoming\n            call after the peer is selected.\n            If no application name is specified, then the default\n            session application will take care of the incoming call.",
                            "x-yang-type": "snmpv2-tc:DisplayString"
                          },
                          "cvPeerCommonCfgPreference": {
                            "type": "integer",
                            "description": "This object specifies the selection preference of a peer\n            when multiple peers are matched to the selection criteria.\n            The value of 0 has the lowest preference for peer\n            selection.",
                            "minimum": -2147483648,
                            "maximum": 2147483647
                          },
                          "cvPeerCommonCfgHuntStop": {
                            "type": "boolean",
                            "description": "This object specifies whether dialpeer hunting should stop\n            when this peer is reached."
                          },
                          "cvPeerCommonCfgDnisMappingName": {
                            "type": "string",
                            "description": "The object specifies a Dialer Number Identification\n            Service (DNIS) map name for the Voice specific peer\n            entry specified in this row. A DNIS is a called party\n            number and they can be grouped and identified by DNIS\n            map.",
                            "x-yang-type": "cisco-voice-dnis:DnisMapname"
                          },
                          "cvPeerCommonCfgSourceCarrierId": {
                            "type": "string",
                            "description": "The object specifies the Source Carrier Id for the peer.\n            The Source Carrier Id is used to match with the Source\n            Carrier Id of a call. If the Source Carrier Id in this\n            object is matched with the Source Carrier Id of a call,\n            then the associated peer will be used to handle the call. \n            Only alphanumeric characters, '-' and '_' are allowed in\n            the string.",
                            "x-yang-type": "snmp-framework:SnmpAdminString"
                          },
                          "cvPeerCommonCfgTargetCarrierId": {
                            "type": "string",
                            "description": "The object specifies the Target Carrier Id for the peer.\n            The Target Carrier Id is used to match with the Target\n            Carrier Id of a call. If the Target Carrier Id in this\n            object is matched with the Target Carrier Id of a call,\n            then the associated peer will be used to handle the call.\n            Only alphanumeric characters, '-' and '_' are allowed in\n            the string.",
                            "x-yang-type": "snmp-framework:SnmpAdminString"
                          },
                          "cvPeerCommonCfgSourceTrunkGrpLabel": {
                            "type": "string",
                            "description": "The object specifies the Source Trunk Group Label for the\n            peer. The Source Trunk Group Label is used to match with\n            the Source Trunk Group Label of a call. If the Source\n            Trunk Group Label in this object is matched with the\n            Source Trunk Group Label of a call, then the associated\n            peer will be used to handle the call. \n            Only alphanumeric characters, '-' and '_' are allowed in\n            the string.",
                            "x-yang-type": "snmp-framework:SnmpAdminString"
                          },
                          "cvPeerCommonCfgTargetTrunkGrpLabel": {
                            "type": "string",
                            "description": "The object specifies the Target Trunk Group Label for the\n            peer. The Target Trunk Group Label is used to match with\n            the Target Trunk Group Label of a call. If the Target\n            Trunk Group Label in this object is matched with the\n            Target Trunk Group Label of a call, then the associated\n            peer will be used to handle the call.\n            Only alphanumeric characters, '-' and '_' are allowed in\n            the string.",
                            "x-yang-type": "snmp-framework:SnmpAdminString"
                          }
                        }
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-VOICE-DIAL-CONTROL-MIB:cvPeerCommonCfgTable": {
                    "cvPeerCommonCfgEntry": [
                      {
                        "ifIndex": "1",
                        "cvPeerCommonCfgIncomingDnisDigits": "example-string",
                        "cvPeerCommonCfgMaxConnections": -2147483648,
                        "cvPeerCommonCfgApplicationName": "interface-1",
                        "cvPeerCommonCfgPreference": -2147483648,
                        "cvPeerCommonCfgHuntStop": true,
                        "cvPeerCommonCfgDnisMappingName": "interface-1",
                        "cvPeerCommonCfgSourceCarrierId": "example-string",
                        "cvPeerCommonCfgTargetCarrierId": "example-string",
                        "cvPeerCommonCfgSourceTrunkGrpLabel": "example-string",
                        "cvPeerCommonCfgTargetTrunkGrpLabel": "example-string"
                      },
                      {
                        "ifIndex": "2",
                        "cvPeerCommonCfgIncomingDnisDigits": "example-string",
                        "cvPeerCommonCfgMaxConnections": -2147483648,
                        "cvPeerCommonCfgApplicationName": "interface-1",
                        "cvPeerCommonCfgPreference": -2147483648,
                        "cvPeerCommonCfgHuntStop": true,
                        "cvPeerCommonCfgDnisMappingName": "interface-1",
                        "cvPeerCommonCfgSourceCarrierId": "example-string",
                        "cvPeerCommonCfgTargetCarrierId": "example-string",
                        "cvPeerCommonCfgSourceTrunkGrpLabel": "example-string",
                        "cvPeerCommonCfgTargetTrunkGrpLabel": "example-string"
                      },
                      {
                        "ifIndex": "3",
                        "cvPeerCommonCfgIncomingDnisDigits": "example-string",
                        "cvPeerCommonCfgMaxConnections": -2147483648,
                        "cvPeerCommonCfgApplicationName": "interface-1",
                        "cvPeerCommonCfgPreference": -2147483648,
                        "cvPeerCommonCfgHuntStop": true,
                        "cvPeerCommonCfgDnisMappingName": "interface-1",
                        "cvPeerCommonCfgSourceCarrierId": "example-string",
                        "cvPeerCommonCfgTargetCarrierId": "example-string",
                        "cvPeerCommonCfgSourceTrunkGrpLabel": "example-string",
                        "cvPeerCommonCfgTargetTrunkGrpLabel": "example-string"
                      }
                    ]
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cvPeerCommonCfgTable",
        "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": "/cvPeerCommonCfgTable",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-VOICE-DIAL-CONTROL-MIB:cvPeerCommonCfgTable/cvPeerCommonCfgEntry": {
      "get": {
        "summary": "Get cvPeerCommonCfgEntry list",
        "description": "Retrieve list of cvPeerCommonCfgEntry entries from MIB",
        "tags": [
          "CISCO-VOICE-DIAL-CONTROL-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "A single Voice specific Peer. One entry per voice related\n          encapsulation.\n          The entry is created when a voice related encapsulation\n          ifEntry is created.\n          This entry is deleted when its associated ifEntry is\n          deleted.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "ifIndex": {
                        "type": "string",
                        "description": "ifIndex",
                        "x-yang-type": "leafref"
                      },
                      "cvPeerCommonCfgIncomingDnisDigits": {
                        "type": "string",
                        "description": "The object specifies the prefix of the incoming Dialed\n            Number Identification Service (DNIS) digits for the peer.\n            The DNIS digits prefix is used to match with the incoming\n            DNIS number for incoming call discrimination. If the\n            digits in this object are matched with incoming DNIS\n            number, the  associated dialCtlPeerCfgInfoType in RFC 2128\n            will be used as a call discriminator for differentiating\n            speech, data, fax, video or modem calls.",
                        "x-yang-type": "snmpv2-tc:DisplayString"
                      },
                      "cvPeerCommonCfgMaxConnections": {
                        "type": "integer",
                        "description": "The object specifies the maximum allowed connection\n            to/from the peer. A value of -1 disables the limit of\n            maximum connections.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "cvPeerCommonCfgApplicationName": {
                        "type": "string",
                        "description": "The object specifies the application to handle the incoming\n            call after the peer is selected.\n            If no application name is specified, then the default\n            session application will take care of the incoming call.",
                        "x-yang-type": "snmpv2-tc:DisplayString"
                      },
                      "cvPeerCommonCfgPreference": {
                        "type": "integer",
                        "description": "This object specifies the selection preference of a peer\n            when multiple peers are matched to the selection criteria.\n            The value of 0 has the lowest preference for peer\n            selection.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "cvPeerCommonCfgHuntStop": {
                        "type": "boolean",
                        "description": "This object specifies whether dialpeer hunting should stop\n            when this peer is reached."
                      },
                      "cvPeerCommonCfgDnisMappingName": {
                        "type": "string",
                        "description": "The object specifies a Dialer Number Identification\n            Service (DNIS) map name for the Voice specific peer\n            entry specified in this row. A DNIS is a called party\n            number and they can be grouped and identified by DNIS\n            map.",
                        "x-yang-type": "cisco-voice-dnis:DnisMapname"
                      },
                      "cvPeerCommonCfgSourceCarrierId": {
                        "type": "string",
                        "description": "The object specifies the Source Carrier Id for the peer.\n            The Source Carrier Id is used to match with the Source\n            Carrier Id of a call. If the Source Carrier Id in this\n            object is matched with the Source Carrier Id of a call,\n            then the associated peer will be used to handle the call. \n            Only alphanumeric characters, '-' and '_' are allowed in\n            the string.",
                        "x-yang-type": "snmp-framework:SnmpAdminString"
                      },
                      "cvPeerCommonCfgTargetCarrierId": {
                        "type": "string",
                        "description": "The object specifies the Target Carrier Id for the peer.\n            The Target Carrier Id is used to match with the Target\n            Carrier Id of a call. If the Target Carrier Id in this\n            object is matched with the Target Carrier Id of a call,\n            then the associated peer will be used to handle the call.\n            Only alphanumeric characters, '-' and '_' are allowed in\n            the string.",
                        "x-yang-type": "snmp-framework:SnmpAdminString"
                      },
                      "cvPeerCommonCfgSourceTrunkGrpLabel": {
                        "type": "string",
                        "description": "The object specifies the Source Trunk Group Label for the\n            peer. The Source Trunk Group Label is used to match with\n            the Source Trunk Group Label of a call. If the Source\n            Trunk Group Label in this object is matched with the\n            Source Trunk Group Label of a call, then the associated\n            peer will be used to handle the call. \n            Only alphanumeric characters, '-' and '_' are allowed in\n            the string.",
                        "x-yang-type": "snmp-framework:SnmpAdminString"
                      },
                      "cvPeerCommonCfgTargetTrunkGrpLabel": {
                        "type": "string",
                        "description": "The object specifies the Target Trunk Group Label for the\n            peer. The Target Trunk Group Label is used to match with\n            the Target Trunk Group Label of a call. If the Target\n            Trunk Group Label in this object is matched with the\n            Target Trunk Group Label of a call, then the associated\n            peer will be used to handle the call.\n            Only alphanumeric characters, '-' and '_' are allowed in\n            the string.",
                        "x-yang-type": "snmp-framework:SnmpAdminString"
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-VOICE-DIAL-CONTROL-MIB:cvPeerCommonCfgEntry": [
                    {
                      "ifIndex": "example-string",
                      "cvPeerCommonCfgIncomingDnisDigits": "example-string",
                      "cvPeerCommonCfgMaxConnections": -2147483648,
                      "cvPeerCommonCfgApplicationName": "interface-1",
                      "cvPeerCommonCfgPreference": -2147483648,
                      "cvPeerCommonCfgHuntStop": true,
                      "cvPeerCommonCfgDnisMappingName": "interface-1",
                      "cvPeerCommonCfgSourceCarrierId": "example-string",
                      "cvPeerCommonCfgTargetCarrierId": "example-string",
                      "cvPeerCommonCfgSourceTrunkGrpLabel": "example-string",
                      "cvPeerCommonCfgTargetTrunkGrpLabel": "example-string"
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cvPeerCommonCfgEntry",
        "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": "/cvPeerCommonCfgTable/cvPeerCommonCfgEntry",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-VOICE-DIAL-CONTROL-MIB:cvPeerCommonCfgTable/cvPeerCommonCfgEntry={ifIndex}": {
      "get": {
        "summary": "Get cvPeerCommonCfgEntry entry",
        "description": "Retrieve specific cvPeerCommonCfgEntry entry by key from MIB",
        "tags": [
          "CISCO-VOICE-DIAL-CONTROL-MIB"
        ],
        "parameters": [
          {
            "name": "ifIndex",
            "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": {
                    "ifIndex": {
                      "type": "string",
                      "description": "ifIndex",
                      "x-yang-type": "leafref"
                    },
                    "cvPeerCommonCfgIncomingDnisDigits": {
                      "type": "string",
                      "description": "The object specifies the prefix of the incoming Dialed\n            Number Identification Service (DNIS) digits for the peer.\n            The DNIS digits prefix is used to match with the incoming\n            DNIS number for incoming call discrimination. If the\n            digits in this object are matched with incoming DNIS\n            number, the  associated dialCtlPeerCfgInfoType in RFC 2128\n            will be used as a call discriminator for differentiating\n            speech, data, fax, video or modem calls.",
                      "x-yang-type": "snmpv2-tc:DisplayString"
                    },
                    "cvPeerCommonCfgMaxConnections": {
                      "type": "integer",
                      "description": "The object specifies the maximum allowed connection\n            to/from the peer. A value of -1 disables the limit of\n            maximum connections.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "cvPeerCommonCfgApplicationName": {
                      "type": "string",
                      "description": "The object specifies the application to handle the incoming\n            call after the peer is selected.\n            If no application name is specified, then the default\n            session application will take care of the incoming call.",
                      "x-yang-type": "snmpv2-tc:DisplayString"
                    },
                    "cvPeerCommonCfgPreference": {
                      "type": "integer",
                      "description": "This object specifies the selection preference of a peer\n            when multiple peers are matched to the selection criteria.\n            The value of 0 has the lowest preference for peer\n            selection.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "cvPeerCommonCfgHuntStop": {
                      "type": "boolean",
                      "description": "This object specifies whether dialpeer hunting should stop\n            when this peer is reached."
                    },
                    "cvPeerCommonCfgDnisMappingName": {
                      "type": "string",
                      "description": "The object specifies a Dialer Number Identification\n            Service (DNIS) map name for the Voice specific peer\n            entry specified in this row. A DNIS is a called party\n            number and they can be grouped and identified by DNIS\n            map.",
                      "x-yang-type": "cisco-voice-dnis:DnisMapname"
                    },
                    "cvPeerCommonCfgSourceCarrierId": {
                      "type": "string",
                      "description": "The object specifies the Source Carrier Id for the peer.\n            The Source Carrier Id is used to match with the Source\n            Carrier Id of a call. If the Source Carrier Id in this\n            object is matched with the Source Carrier Id of a call,\n            then the associated peer will be used to handle the call. \n            Only alphanumeric characters, '-' and '_' are allowed in\n            the string.",
                      "x-yang-type": "snmp-framework:SnmpAdminString"
                    },
                    "cvPeerCommonCfgTargetCarrierId": {
                      "type": "string",
                      "description": "The object specifies the Target Carrier Id for the peer.\n            The Target Carrier Id is used to match with the Target\n            Carrier Id of a call. If the Target Carrier Id in this\n            object is matched with the Target Carrier Id of a call,\n            then the associated peer will be used to handle the call.\n            Only alphanumeric characters, '-' and '_' are allowed in\n            the string.",
                      "x-yang-type": "snmp-framework:SnmpAdminString"
                    },
                    "cvPeerCommonCfgSourceTrunkGrpLabel": {
                      "type": "string",
                      "description": "The object specifies the Source Trunk Group Label for the\n            peer. The Source Trunk Group Label is used to match with\n            the Source Trunk Group Label of a call. If the Source\n            Trunk Group Label in this object is matched with the\n            Source Trunk Group Label of a call, then the associated\n            peer will be used to handle the call. \n            Only alphanumeric characters, '-' and '_' are allowed in\n            the string.",
                      "x-yang-type": "snmp-framework:SnmpAdminString"
                    },
                    "cvPeerCommonCfgTargetTrunkGrpLabel": {
                      "type": "string",
                      "description": "The object specifies the Target Trunk Group Label for the\n            peer. The Target Trunk Group Label is used to match with\n            the Target Trunk Group Label of a call. If the Target\n            Trunk Group Label in this object is matched with the\n            Target Trunk Group Label of a call, then the associated\n            peer will be used to handle the call.\n            Only alphanumeric characters, '-' and '_' are allowed in\n            the string.",
                      "x-yang-type": "snmp-framework:SnmpAdminString"
                    }
                  }
                },
                "example": {
                  "CISCO-VOICE-DIAL-CONTROL-MIB:cvPeerCommonCfgEntry": {
                    "ifIndex": "example-string",
                    "cvPeerCommonCfgIncomingDnisDigits": "example-string",
                    "cvPeerCommonCfgMaxConnections": -2147483648,
                    "cvPeerCommonCfgApplicationName": "interface-1",
                    "cvPeerCommonCfgPreference": -2147483648,
                    "cvPeerCommonCfgHuntStop": true,
                    "cvPeerCommonCfgDnisMappingName": "interface-1",
                    "cvPeerCommonCfgSourceCarrierId": "example-string",
                    "cvPeerCommonCfgTargetCarrierId": "example-string",
                    "cvPeerCommonCfgSourceTrunkGrpLabel": "example-string",
                    "cvPeerCommonCfgTargetTrunkGrpLabel": "example-string"
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cvPeerCommonCfgEntry-2"
      },
      "x-yang-path": "/cvPeerCommonCfgTable/cvPeerCommonCfgEntry={ifIndex}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "ifIndex"
      ]
    },
    "/data/CISCO-VOICE-DIAL-CONTROL-MIB:cvCallActiveTable": {
      "get": {
        "summary": "Get cvCallActiveTable data",
        "description": "Retrieve cvCallActiveTable operational data from MIB",
        "tags": [
          "CISCO-VOICE-DIAL-CONTROL-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "description": "This table is the voice extension to the call active table\n        of IETF Dial Control MIB. It contains voice encapsulation\n        call leg information that is derived from the statistics\n        of lower layer telephony interface.",
                  "properties": {
                    "cvCallActiveEntry": {
                      "type": "array",
                      "description": "cvCallActiveEntry",
                      "items": {
                        "type": "object",
                        "properties": {
                          "callActiveSetupTime": {
                            "type": "string",
                            "description": "callActiveSetupTime",
                            "x-yang-type": "leafref"
                          },
                          "callActiveIndex": {
                            "type": "string",
                            "description": "callActiveIndex",
                            "x-yang-type": "leafref"
                          },
                          "cvCallActiveConnectionId": {
                            "type": "string",
                            "description": "The global connection identifier for the\n            active telephony leg of the call.",
                            "x-yang-type": "cisco-voice:CvcGUid"
                          },
                          "cvCallActiveTxDuration": {
                            "type": "string",
                            "description": "Duration of Transmit path open from this peer to the\n            voice gateway for the call leg. This counter object will\n            lock at the maximum value which is approximately two\n            days.",
                            "x-yang-type": "dial-control:AbsoluteCounter32"
                          },
                          "cvCallActiveVoiceTxDuration": {
                            "type": "string",
                            "description": "Duration of voice transmitted from this peer to voice\n            gateway for this call leg. The Voice Utilization Rate can\n            be obtained by dividing this by cvCallActiveTXDuration\n            object. This counter object will lock at the maximum\n            value which is approximately two days.",
                            "x-yang-type": "dial-control:AbsoluteCounter32"
                          },
                          "cvCallActiveFaxTxDuration": {
                            "type": "string",
                            "description": "Duration of fax transmitted from this peer to voice gateway\n            for this call leg. The FAX Utilization Rate can be\n            obtained by dividing this by cvCallActiveTXDuration\n            object. This counter object will lock at the maximum\n            value which is approximately two days.",
                            "x-yang-type": "dial-control:AbsoluteCounter32"
                          },
                          "cvCallActiveCoderTypeRate": {
                            "type": "string",
                            "description": "The negotiated coder rate. It specifies the transmit rate of\n            voice/fax compression to its associated call leg for the\n            call.",
                            "x-yang-type": "cisco-voice:CvcCoderTypeRate"
                          },
                          "cvCallActiveNoiseLevel": {
                            "type": "integer",
                            "description": "The object contains the active noise level for the call\n            leg.",
                            "minimum": -2147483648,
                            "maximum": 2147483647
                          },
                          "cvCallActiveACOMLevel": {
                            "type": "integer",
                            "description": "The object contains the sum of Echo Return Loss (ERL),\n            cancellation loss (Echo Return Loss Enhancement) and\n            nonlinear processing loss for the call leg.\n            The value -1 indicates the level can not be determined or\n            level detection is disabled.",
                            "minimum": -2147483648,
                            "maximum": 2147483647
                          },
                          "cvCallActiveOutSignalLevel": {
                            "type": "integer",
                            "description": "The object contains the active output signal level to\n            telephony interface that is used by the call leg.",
                            "minimum": -2147483648,
                            "maximum": 2147483647
                          },
                          "cvCallActiveInSignalLevel": {
                            "type": "integer",
                            "description": "The object contains the active input signal level from\n            telephony interface that is used by the call leg.",
                            "minimum": -2147483648,
                            "maximum": 2147483647
                          },
                          "cvCallActiveERLLevel": {
                            "type": "integer",
                            "description": "The object contains the current Echo Return Loss (ERL)\n            level for the call leg.\n            The value -1 indicates the level can not be determined or\n            level detection is disabled.",
                            "minimum": -2147483648,
                            "maximum": 2147483647
                          },
                          "cvCallActiveSessionTarget": {
                            "type": "string",
                            "description": "The object specifies the session target of the peer that\n            is used for the call leg. This object is set with the\n            information in the call associated\n            cvVoicePeerCfgSessionTarget object when the call is\n            connected.",
                            "x-yang-type": "snmpv2-tc:DisplayString"
                          },
                          "cvCallActiveImgPageCount": {
                            "type": "string",
                            "description": "The number of FAX related image pages are received or\n            transmitted via the peer for the call leg.",
                            "x-yang-type": "dial-control:AbsoluteCounter32"
                          },
                          "cvCallActiveCallingName": {
                            "type": "string",
                            "description": "The calling party name of the call. If the name is\n            not available, then it will have a length of zero.",
                            "x-yang-type": "snmp-framework:SnmpAdminString"
                          },
                          "cvCallActiveCallerIDBlock": {
                            "type": "boolean",
                            "description": "The object indicates whether or not the caller ID feature\n            is blocked for this call."
                          },
                          "cvCallActiveEcanReflectorLocation": {
                            "type": "integer",
                            "description": "The location in milliseconds of the largest amplitude\n            reflector detected by the echo canceller for this call. \n            The value 0 indicates there is no reflector or the \n            information is not available.",
                            "minimum": -2147483648,
                            "maximum": 2147483647
                          },
                          "cvCallActiveAccountCode": {
                            "type": "string",
                            "description": "The object indicates the account code input to the call.\n            It could be used for call screen or by down stream server\n            for billing purpose.\n            The value of empty string indicates no account code input.",
                            "x-yang-type": "snmp-framework:SnmpAdminString"
                          },
                          "cvCallActiveERLLevelRev1": {
                            "type": "integer",
                            "description": "The object contains the current Echo Return Loss (ERL)\n            level for the call leg.\n            The value -1 indicates the level can not be determined or\n            level detection is disabled.",
                            "minimum": -2147483648,
                            "maximum": 2147483647
                          },
                          "cvCallActiveCallId": {
                            "type": "integer",
                            "description": "This object represents the call identifier\n            for the active telephony leg of the call.",
                            "minimum": 0,
                            "maximum": 4294967295
                          }
                        }
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-VOICE-DIAL-CONTROL-MIB:cvCallActiveTable": {
                    "cvCallActiveEntry": [
                      {
                        "callActiveSetupTime": "example-string",
                        "callActiveIndex": "1",
                        "cvCallActiveConnectionId": "example-string",
                        "cvCallActiveTxDuration": "example-string",
                        "cvCallActiveVoiceTxDuration": "example-string",
                        "cvCallActiveFaxTxDuration": "example-string",
                        "cvCallActiveCoderTypeRate": "ethernetCsmacd(6)",
                        "cvCallActiveNoiseLevel": -2147483648,
                        "cvCallActiveACOMLevel": -2147483648,
                        "cvCallActiveOutSignalLevel": -2147483648,
                        "cvCallActiveInSignalLevel": -2147483648,
                        "cvCallActiveERLLevel": -2147483648,
                        "cvCallActiveSessionTarget": "example-string",
                        "cvCallActiveImgPageCount": "example-string",
                        "cvCallActiveCallingName": "interface-1",
                        "cvCallActiveCallerIDBlock": true,
                        "cvCallActiveEcanReflectorLocation": -2147483648,
                        "cvCallActiveAccountCode": "example-string",
                        "cvCallActiveERLLevelRev1": -2147483648,
                        "cvCallActiveCallId": 0
                      },
                      {
                        "callActiveSetupTime": "example-string",
                        "callActiveIndex": "2",
                        "cvCallActiveConnectionId": "example-string",
                        "cvCallActiveTxDuration": "example-string",
                        "cvCallActiveVoiceTxDuration": "example-string",
                        "cvCallActiveFaxTxDuration": "example-string",
                        "cvCallActiveCoderTypeRate": "ethernetCsmacd(6)",
                        "cvCallActiveNoiseLevel": -2147483648,
                        "cvCallActiveACOMLevel": -2147483648,
                        "cvCallActiveOutSignalLevel": -2147483648,
                        "cvCallActiveInSignalLevel": -2147483648,
                        "cvCallActiveERLLevel": -2147483648,
                        "cvCallActiveSessionTarget": "example-string",
                        "cvCallActiveImgPageCount": "example-string",
                        "cvCallActiveCallingName": "interface-1",
                        "cvCallActiveCallerIDBlock": true,
                        "cvCallActiveEcanReflectorLocation": -2147483648,
                        "cvCallActiveAccountCode": "example-string",
                        "cvCallActiveERLLevelRev1": -2147483648,
                        "cvCallActiveCallId": 0
                      },
                      {
                        "callActiveSetupTime": "example-string",
                        "callActiveIndex": "3",
                        "cvCallActiveConnectionId": "example-string",
                        "cvCallActiveTxDuration": "example-string",
                        "cvCallActiveVoiceTxDuration": "example-string",
                        "cvCallActiveFaxTxDuration": "example-string",
                        "cvCallActiveCoderTypeRate": "ethernetCsmacd(6)",
                        "cvCallActiveNoiseLevel": -2147483648,
                        "cvCallActiveACOMLevel": -2147483648,
                        "cvCallActiveOutSignalLevel": -2147483648,
                        "cvCallActiveInSignalLevel": -2147483648,
                        "cvCallActiveERLLevel": -2147483648,
                        "cvCallActiveSessionTarget": "example-string",
                        "cvCallActiveImgPageCount": "example-string",
                        "cvCallActiveCallingName": "interface-1",
                        "cvCallActiveCallerIDBlock": true,
                        "cvCallActiveEcanReflectorLocation": -2147483648,
                        "cvCallActiveAccountCode": "example-string",
                        "cvCallActiveERLLevelRev1": -2147483648,
                        "cvCallActiveCallId": 0
                      }
                    ]
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cvCallActiveTable",
        "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": "/cvCallActiveTable",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-VOICE-DIAL-CONTROL-MIB:cvCallActiveTable/cvCallActiveEntry": {
      "get": {
        "summary": "Get cvCallActiveEntry list",
        "description": "Retrieve list of cvCallActiveEntry entries from MIB",
        "tags": [
          "CISCO-VOICE-DIAL-CONTROL-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "cvCallActiveEntry",
                  "items": {
                    "type": "object",
                    "properties": {
                      "callActiveSetupTime": {
                        "type": "string",
                        "description": "callActiveSetupTime",
                        "x-yang-type": "leafref"
                      },
                      "callActiveIndex": {
                        "type": "string",
                        "description": "callActiveIndex",
                        "x-yang-type": "leafref"
                      },
                      "cvCallActiveConnectionId": {
                        "type": "string",
                        "description": "The global connection identifier for the\n            active telephony leg of the call.",
                        "x-yang-type": "cisco-voice:CvcGUid"
                      },
                      "cvCallActiveTxDuration": {
                        "type": "string",
                        "description": "Duration of Transmit path open from this peer to the\n            voice gateway for the call leg. This counter object will\n            lock at the maximum value which is approximately two\n            days.",
                        "x-yang-type": "dial-control:AbsoluteCounter32"
                      },
                      "cvCallActiveVoiceTxDuration": {
                        "type": "string",
                        "description": "Duration of voice transmitted from this peer to voice\n            gateway for this call leg. The Voice Utilization Rate can\n            be obtained by dividing this by cvCallActiveTXDuration\n            object. This counter object will lock at the maximum\n            value which is approximately two days.",
                        "x-yang-type": "dial-control:AbsoluteCounter32"
                      },
                      "cvCallActiveFaxTxDuration": {
                        "type": "string",
                        "description": "Duration of fax transmitted from this peer to voice gateway\n            for this call leg. The FAX Utilization Rate can be\n            obtained by dividing this by cvCallActiveTXDuration\n            object. This counter object will lock at the maximum\n            value which is approximately two days.",
                        "x-yang-type": "dial-control:AbsoluteCounter32"
                      },
                      "cvCallActiveCoderTypeRate": {
                        "type": "string",
                        "description": "The negotiated coder rate. It specifies the transmit rate of\n            voice/fax compression to its associated call leg for the\n            call.",
                        "x-yang-type": "cisco-voice:CvcCoderTypeRate"
                      },
                      "cvCallActiveNoiseLevel": {
                        "type": "integer",
                        "description": "The object contains the active noise level for the call\n            leg.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "cvCallActiveACOMLevel": {
                        "type": "integer",
                        "description": "The object contains the sum of Echo Return Loss (ERL),\n            cancellation loss (Echo Return Loss Enhancement) and\n            nonlinear processing loss for the call leg.\n            The value -1 indicates the level can not be determined or\n            level detection is disabled.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "cvCallActiveOutSignalLevel": {
                        "type": "integer",
                        "description": "The object contains the active output signal level to\n            telephony interface that is used by the call leg.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "cvCallActiveInSignalLevel": {
                        "type": "integer",
                        "description": "The object contains the active input signal level from\n            telephony interface that is used by the call leg.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "cvCallActiveERLLevel": {
                        "type": "integer",
                        "description": "The object contains the current Echo Return Loss (ERL)\n            level for the call leg.\n            The value -1 indicates the level can not be determined or\n            level detection is disabled.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "cvCallActiveSessionTarget": {
                        "type": "string",
                        "description": "The object specifies the session target of the peer that\n            is used for the call leg. This object is set with the\n            information in the call associated\n            cvVoicePeerCfgSessionTarget object when the call is\n            connected.",
                        "x-yang-type": "snmpv2-tc:DisplayString"
                      },
                      "cvCallActiveImgPageCount": {
                        "type": "string",
                        "description": "The number of FAX related image pages are received or\n            transmitted via the peer for the call leg.",
                        "x-yang-type": "dial-control:AbsoluteCounter32"
                      },
                      "cvCallActiveCallingName": {
                        "type": "string",
                        "description": "The calling party name of the call. If the name is\n            not available, then it will have a length of zero.",
                        "x-yang-type": "snmp-framework:SnmpAdminString"
                      },
                      "cvCallActiveCallerIDBlock": {
                        "type": "boolean",
                        "description": "The object indicates whether or not the caller ID feature\n            is blocked for this call."
                      },
                      "cvCallActiveEcanReflectorLocation": {
                        "type": "integer",
                        "description": "The location in milliseconds of the largest amplitude\n            reflector detected by the echo canceller for this call. \n            The value 0 indicates there is no reflector or the \n            information is not available.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "cvCallActiveAccountCode": {
                        "type": "string",
                        "description": "The object indicates the account code input to the call.\n            It could be used for call screen or by down stream server\n            for billing purpose.\n            The value of empty string indicates no account code input.",
                        "x-yang-type": "snmp-framework:SnmpAdminString"
                      },
                      "cvCallActiveERLLevelRev1": {
                        "type": "integer",
                        "description": "The object contains the current Echo Return Loss (ERL)\n            level for the call leg.\n            The value -1 indicates the level can not be determined or\n            level detection is disabled.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "cvCallActiveCallId": {
                        "type": "integer",
                        "description": "This object represents the call identifier\n            for the active telephony leg of the call.",
                        "minimum": 0,
                        "maximum": 4294967295
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-VOICE-DIAL-CONTROL-MIB:cvCallActiveEntry": [
                    {
                      "callActiveSetupTime": "example-string",
                      "callActiveIndex": "example-string",
                      "cvCallActiveConnectionId": "example-string",
                      "cvCallActiveTxDuration": "example-string",
                      "cvCallActiveVoiceTxDuration": "example-string",
                      "cvCallActiveFaxTxDuration": "example-string",
                      "cvCallActiveCoderTypeRate": "ethernetCsmacd(6)",
                      "cvCallActiveNoiseLevel": -2147483648,
                      "cvCallActiveACOMLevel": -2147483648,
                      "cvCallActiveOutSignalLevel": -2147483648,
                      "cvCallActiveInSignalLevel": -2147483648,
                      "cvCallActiveERLLevel": -2147483648,
                      "cvCallActiveSessionTarget": "example-string",
                      "cvCallActiveImgPageCount": "example-string",
                      "cvCallActiveCallingName": "interface-1",
                      "cvCallActiveCallerIDBlock": true,
                      "cvCallActiveEcanReflectorLocation": -2147483648,
                      "cvCallActiveAccountCode": "example-string",
                      "cvCallActiveERLLevelRev1": -2147483648,
                      "cvCallActiveCallId": 0
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cvCallActiveEntry",
        "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": "/cvCallActiveTable/cvCallActiveEntry",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-VOICE-DIAL-CONTROL-MIB:cvVoIPCallActiveTable": {
      "get": {
        "summary": "Get cvVoIPCallActiveTable data",
        "description": "Retrieve cvVoIPCallActiveTable operational data from MIB",
        "tags": [
          "CISCO-VOICE-DIAL-CONTROL-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "description": "This table is the VoIP extension to the call active table of\n        IETF Dial Control MIB. It contains VoIP call leg\n        information about specific VoIP call destination and the\n        selected QoS for the call leg.",
                  "properties": {
                    "cvVoIPCallActiveEntry": {
                      "type": "array",
                      "description": "cvVoIPCallActiveEntry",
                      "items": {
                        "type": "object",
                        "properties": {
                          "callActiveSetupTime": {
                            "type": "string",
                            "description": "callActiveSetupTime",
                            "x-yang-type": "leafref"
                          },
                          "callActiveIndex": {
                            "type": "string",
                            "description": "callActiveIndex",
                            "x-yang-type": "leafref"
                          },
                          "cvVoIPCallActiveConnectionId": {
                            "type": "string",
                            "description": "The global connection identifier for\n            the active VoIP leg of the call.",
                            "x-yang-type": "cisco-voice:CvcGUid"
                          },
                          "cvVoIPCallActiveRemoteIPAddress": {
                            "type": "string",
                            "description": "Remote system IP address for the VoIP call.",
                            "format": "inet:ipv4-address"
                          },
                          "cvVoIPCallActiveRemoteUDPPort": {
                            "type": "integer",
                            "description": "Remote system UDP listener port to which to transmit voice\n            packets.",
                            "minimum": -2147483648,
                            "maximum": 2147483647
                          },
                          "cvVoIPCallActiveRoundTripDelay": {
                            "type": "integer",
                            "description": "The voice packet round trip delay between local and\n            the remote system on the IP backbone during the call.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "cvVoIPCallActiveSelectedQoS": {
                            "type": "string",
                            "description": "The selected RSVP QoS for the voice call.",
                            "x-yang-type": "int-serv:QosService"
                          },
                          "cvVoIPCallActiveSessionProtocol": {
                            "type": "string",
                            "description": "The object specifies the session protocol to be used\n            for Internet call between local and remote router via\n            IP backbone.",
                            "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvSessionProtocol"
                          },
                          "cvVoIPCallActiveSessionTarget": {
                            "type": "string",
                            "description": "The object specifies the session target of the peer that\n            is used for the call. This object is set with the\n            information in the call associated\n            cvVoIPPeerCfgSessionTarget object when the voice over IP\n            call is connected.",
                            "x-yang-type": "snmpv2-tc:DisplayString"
                          },
                          "cvVoIPCallActiveOnTimeRvPlayout": {
                            "type": "string",
                            "description": "Duration of voice playout from data received on time for\n            this call. This plus the durations for the GapFills in the\n            following entries gives the Total Voice Playout Duration\n            for Active Voice.\n            This does not include duration for which no data was sent by the\n            Transmit end as voice signal, e.g., silence suppression\n            and fax signal. The On Time Playout Rate can be computed\n            by dividing this entry by the Total Voice Playout Duration.\n            This counter object will lock at the maximum value which\n            is approximately two days.",
                            "x-yang-type": "dial-control:AbsoluteCounter32"
                          },
                          "cvVoIPCallActiveGapFillWithSilence": {
                            "type": "string",
                            "description": "Duration of voice signal replaced with signal played out\n            during silence due to voice data not received on time\n            (or lost) from voice gateway this call. This counter\n            object will lock at the maximum value which is\n            approximately two days.",
                            "x-yang-type": "dial-control:AbsoluteCounter32"
                          },
                          "cvVoIPCallActiveGapFillWithPrediction": {
                            "type": "string",
                            "description": "Duration of voice signal played out with signal synthesized\n            from parameters or samples of data preceding in time due\n            to voice data not received on time (or lost) from voice\n            gateway for this call. An example of such playout is\n            frame-erasure or frame-concealment strategies in G.729 and\n            G.723.1 compression algorithms. This counter object will\n            lock at the maximum value which is approximately two days.",
                            "x-yang-type": "dial-control:AbsoluteCounter32"
                          },
                          "cvVoIPCallActiveGapFillWithInterpolation": {
                            "type": "string",
                            "description": "Duration of voice signal played out with signal synthesized\n            from parameters or samples of data preceding and following\n            in time due to voice data not received on time (or lost)\n            from voice gateway for this call. This counter object\n            will lock at the maximum value which is approximately two\n            days.",
                            "x-yang-type": "dial-control:AbsoluteCounter32"
                          },
                          "cvVoIPCallActiveGapFillWithRedundancy": {
                            "type": "string",
                            "description": "Duration of voice signal played out with signal synthesized\n            from redundancy parameters available due to voice data not\n            received on time (or lost) from voice gateway for this call.\n            This counter object will lock at the maximum value which\n            is approximately two days.",
                            "x-yang-type": "dial-control:AbsoluteCounter32"
                          },
                          "cvVoIPCallActiveHiWaterPlayoutDelay": {
                            "type": "string",
                            "description": "The high water mark Voice Playout FIFO Delay during\n            the voice call. This counter object will lock at the\n            maximum value which is approximately two days.",
                            "x-yang-type": "dial-control:AbsoluteCounter32"
                          },
                          "cvVoIPCallActiveLoWaterPlayoutDelay": {
                            "type": "integer",
                            "description": "The low water mark Voice Playout FIFO Delay during\n            the voice call.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "cvVoIPCallActiveReceiveDelay": {
                            "type": "integer",
                            "description": "The average Playout FIFO Delay plus the decoder delay\n            during the voice call.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "cvVoIPCallActiveVADEnable": {
                            "type": "boolean",
                            "description": "The object indicates whether or not the VAD (Voice Activity\n            Detection) was enabled for the voice call."
                          },
                          "cvVoIPCallActiveCoderTypeRate": {
                            "type": "string",
                            "description": "The negotiated coder rate. It specifies the transmit rate of\n            voice/fax compression to its associated call leg for the\n            call. This rate is different from the configuration rate\n            because of rate negotiation during the call.",
                            "x-yang-type": "cisco-voice:CvcCoderTypeRate"
                          },
                          "cvVoIPCallActiveLostPackets": {
                            "type": "string",
                            "description": "The number of lost voice packets during the call.",
                            "x-yang-type": "dial-control:AbsoluteCounter32"
                          },
                          "cvVoIPCallActiveEarlyPackets": {
                            "type": "string",
                            "description": "The number of received voice packets that\n            arrived too early to store in jitter buffer\n            during the call.",
                            "x-yang-type": "dial-control:AbsoluteCounter32"
                          },
                          "cvVoIPCallActiveLatePackets": {
                            "type": "string",
                            "description": "The number of received voice packets that\n            arrived too late to playout with CODEC (Coder/Decoder)\n            during the call.",
                            "x-yang-type": "dial-control:AbsoluteCounter32"
                          },
                          "cvVoIPCallActiveUsername": {
                            "type": "string",
                            "description": "The textual identifier of the calling party (user) of the\n            call. If the username is not available, then the value of\n            this object will have a length of zero.",
                            "x-yang-type": "snmp-framework:SnmpAdminString"
                          },
                          "cvVoIPCallActiveProtocolCallId": {
                            "type": "string",
                            "description": "The protocol-specific call identifier for the VoIP call.",
                            "format": "binary"
                          },
                          "cvVoIPCallActiveRemSigIPAddrT": {
                            "type": "string",
                            "description": "This object specifies the type of address contained in\n            the associated instance of cvVoIPCallActiveRemSigIPAddr.",
                            "x-yang-type": "inet-address:InetAddressType"
                          },
                          "cvVoIPCallActiveRemSigIPAddr": {
                            "type": "string",
                            "description": "Remote signalling IP address for the VoIP call.",
                            "x-yang-type": "inet-address:InetAddress"
                          },
                          "cvVoIPCallActiveRemSigPort": {
                            "type": "integer",
                            "description": "Remote signalling listener port to which to transmit\n            voice packets.",
                            "minimum": -2147483648,
                            "maximum": 2147483647
                          },
                          "cvVoIPCallActiveRemMediaIPAddrT": {
                            "type": "string",
                            "description": "This object specifies the type of address contained in\n            the associated instance of\n            cvVoIPCallActiveRemMediaIPAddr.",
                            "x-yang-type": "inet-address:InetAddressType"
                          },
                          "cvVoIPCallActiveRemMediaIPAddr": {
                            "type": "string",
                            "description": "Remote media end point IP address for the VoIP call.",
                            "x-yang-type": "inet-address:InetAddress"
                          },
                          "cvVoIPCallActiveRemMediaPort": {
                            "type": "integer",
                            "description": "Remote media end point listener port to which to transmit\n            voice packets.",
                            "minimum": -2147483648,
                            "maximum": 2147483647
                          },
                          "cvVoIPCallActiveSRTPEnable": {
                            "type": "boolean",
                            "description": "The object indicates whether or not the SRTP (Secured RTP)\n            was enabled for the voice call."
                          },
                          "cvVoIPCallActiveOctetAligned": {
                            "type": "boolean",
                            "description": "If the object has a value true(1) octet align operation\n            is used, and if the value is false(2), bandwidth efficient\n            operation is used. This object is not instantiated when\n            the object cvVoIPCallActiveCoderTypeRate is not equal to\n            gsmAmrNb enum."
                          },
                          "cvVoIPCallActiveBitRates": {
                            "type": "string",
                            "description": "This object indicates modes of Bit rates.\n            This object is not instantiated when the object\n            cvVoIPCallActiveCoderTypeRate is not equal to\n            gsmAmrNb enum.",
                            "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvAmrNbBitRateMode"
                          },
                          "cvVoIPCallActiveModeChgPeriod": {
                            "type": "integer",
                            "description": "The object indicates the interval (N frame-blocks) at which\n            codec mode changes are allowed. This object is not\n            instantiated when the object cvVoIPCallActiveCoderTypeRate\n            is not equal to gsmAmrNb enum.",
                            "minimum": -2147483648,
                            "maximum": 2147483647
                          },
                          "cvVoIPCallActiveModeChgNeighbor": {
                            "type": "boolean",
                            "description": "If the object has a value of true(1), mode changes will be\n            made to only neighboring modes set to\n            cvVoIPCallActiveBitRates object. If the value is false(2),\n            mode changes will be allowed to any modes set to\n            cvVoIPCallActiveBitRates object. This object is not\n            instantiated when the object cvVoIPCallActiveCoderTypeRate\n            is not equal to gsmAmrNb enum."
                          },
                          "cvVoIPCallActiveMaxPtime": {
                            "type": "integer",
                            "description": "The object indicates the maximum amount of media that\n            can be encapsulated in a payload. Supported value is\n            20 msec. This object is not instantiated when the\n            object cvVoIPCallActiveCoderTypeRate is not equal to\n            gsmAmrNb enum.",
                            "minimum": -2147483648,
                            "maximum": 2147483647
                          },
                          "cvVoIPCallActiveCRC": {
                            "type": "boolean",
                            "description": "If the object has a value of true(1), frame CRC will be\n            included in the payload and if the value is false(2),\n            frame CRC will not be included in the payload.\n            This object is applicable only when RTP frame type\n            is octet aligned. This object is not instantiated when\n            the object cvVoIPCallActiveCoderTypeRate is not equal to\n            gsmAmrNb enum."
                          },
                          "cvVoIPCallActiveRobustSorting": {
                            "type": "boolean",
                            "description": "If the object has a value of true(1), payload employs\n            robust sorting and if the value is false(2), payload\n            does not employ robust sorting. This object is applicable\n            only when RTP frame type is octet aligned. This object\n            is not instantiated when the object\n            cvVoIPCallActiveCoderTypeRate is not equal to gsmAmrNb\n            enum."
                          },
                          "cvVoIPCallActiveEncap": {
                            "type": "string",
                            "description": "The object indicates the RTP encapsulation type.\n            Supported RTP encapsulation type is RFC3267.\n            This object is not instantiated when the object\n            cvVoIPCallActiveCoderTypeRate is not equal to\n            gsmAmrNb enum.",
                            "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvAmrNbRtpEncap"
                          },
                          "cvVoIPCallActiveInterleaving": {
                            "type": "integer",
                            "description": "The object indicates the maximum number of frame-blocks\n            allowed in an interleaving group. It indicates that\n            frame-block level interleaving will be used for that\n            session. If this object is not set, interleaving\n            is not used. This object is applicable only when\n            RTP frame type is octet aligned. This object is not\n            instantiated when the object cvVoIPCallActiveCoderTypeRate\n            is not equal to gsmAmrNb enum.",
                            "minimum": -2147483648,
                            "maximum": 2147483647
                          },
                          "cvVoIPCallActivePtime": {
                            "type": "integer",
                            "description": "The object indicates the length of the time in milliseconds\n            represented by the media of the packet. Supported value is\n            20 milliseconds. This object is not instantiated when the\n            object cvVoIPCallActiveCoderTypeRate is not equal to\n            gsmAmrNb enum.",
                            "minimum": -2147483648,
                            "maximum": 2147483647
                          },
                          "cvVoIPCallActiveChannels": {
                            "type": "integer",
                            "description": "The object indicates the number of audio channels.\n            Supported value is 1. This object is not instantiated\n            when the object cvVoIPCallActiveCoderTypeRate is not equal\n            to gsmAmrNb enum.",
                            "minimum": -2147483648,
                            "maximum": 2147483647
                          },
                          "cvVoIPCallActiveCoderMode": {
                            "type": "string",
                            "description": "The object indicates the iLBC codec mode.\n            The value of this object is valid only if \n            cvVoIPCallActiveCoderTypeRate is equal to \n            'iLBC'.",
                            "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvIlbcFrameMode"
                          },
                          "cvVoIPCallActiveCallId": {
                            "type": "integer",
                            "description": "This object represents the call identifier\n            for the active VoIP leg of the call.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "cvVoIPCallActiveCallReferenceId": {
                            "type": "string",
                            "description": "The call reference ID associates the video call entry and voice\n            call entry of the same endpoint.  An audio-only call may or may\n            not have a valid call reference ID (i.e. value greater than\n            zero), but in both cases, there will not be a video call entry\n            associated with it.  \n            \n            For a video call, the video-specific information  is stored in a\n            call entry in cVideoSessionActive of CISCO-VIDEO-SESSION-MIB, in\n            which the call reference ID is also identified.",
                            "x-yang-type": "cisco-voice:CvcCallReferenceIdOrZero"
                          },
                          "ccVoIPCallActivePolicyName": {
                            "type": "string",
                            "description": "This object holds the policy name. It could be media\n            policy, DSCP policy etc.",
                            "x-yang-type": "snmpv2-tc:DisplayString"
                          },
                          "cvVoIPCallActiveReversedDirectionPeerAddress": {
                            "type": "string",
                            "description": "This object store the reversed direction peer address  If the\n            address is not available, then it will have a length of zero.\n            \n            If the call is ingress then it contains called number and if the\n            call is egress then it contains calling number.",
                            "x-yang-type": "snmpv2-tc:DisplayString"
                          },
                          "cvVoIPCallActiveSessionId": {
                            "type": "integer",
                            "description": "This object indicates the active session ID assigned by the\n            call manager to identify call legs that belong to the same call\n            session.",
                            "minimum": 0,
                            "maximum": 4294967295
                          }
                        }
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-VOICE-DIAL-CONTROL-MIB:cvVoIPCallActiveTable": {
                    "cvVoIPCallActiveEntry": [
                      {
                        "callActiveSetupTime": "example-string",
                        "callActiveIndex": "1",
                        "cvVoIPCallActiveConnectionId": "192.168.1.1",
                        "cvVoIPCallActiveRemoteIPAddress": "192.168.1.1",
                        "cvVoIPCallActiveRemoteUDPPort": -2147483648,
                        "cvVoIPCallActiveRoundTripDelay": 0,
                        "cvVoIPCallActiveSelectedQoS": "192.168.1.1",
                        "cvVoIPCallActiveSessionProtocol": "192.168.1.1",
                        "cvVoIPCallActiveSessionTarget": "192.168.1.1",
                        "cvVoIPCallActiveOnTimeRvPlayout": "192.168.1.1",
                        "cvVoIPCallActiveGapFillWithSilence": "192.168.1.1",
                        "cvVoIPCallActiveGapFillWithPrediction": "192.168.1.1",
                        "cvVoIPCallActiveGapFillWithInterpolation": "192.168.1.1",
                        "cvVoIPCallActiveGapFillWithRedundancy": "192.168.1.1",
                        "cvVoIPCallActiveHiWaterPlayoutDelay": "192.168.1.1",
                        "cvVoIPCallActiveLoWaterPlayoutDelay": 0,
                        "cvVoIPCallActiveReceiveDelay": 0,
                        "cvVoIPCallActiveVADEnable": true,
                        "cvVoIPCallActiveCoderTypeRate": "192.168.1.1",
                        "cvVoIPCallActiveLostPackets": "192.168.1.1",
                        "cvVoIPCallActiveEarlyPackets": "192.168.1.1",
                        "cvVoIPCallActiveLatePackets": "192.168.1.1",
                        "cvVoIPCallActiveUsername": "192.168.1.1",
                        "cvVoIPCallActiveProtocolCallId": "192.168.1.1",
                        "cvVoIPCallActiveRemSigIPAddrT": "192.168.1.1",
                        "cvVoIPCallActiveRemSigIPAddr": "192.168.1.1",
                        "cvVoIPCallActiveRemSigPort": -2147483648,
                        "cvVoIPCallActiveRemMediaIPAddrT": "192.168.1.1",
                        "cvVoIPCallActiveRemMediaIPAddr": "192.168.1.1",
                        "cvVoIPCallActiveRemMediaPort": -2147483648,
                        "cvVoIPCallActiveSRTPEnable": true,
                        "cvVoIPCallActiveOctetAligned": true,
                        "cvVoIPCallActiveBitRates": "192.168.1.1",
                        "cvVoIPCallActiveModeChgPeriod": -2147483648,
                        "cvVoIPCallActiveModeChgNeighbor": true,
                        "cvVoIPCallActiveMaxPtime": -2147483648,
                        "cvVoIPCallActiveCRC": true,
                        "cvVoIPCallActiveRobustSorting": true,
                        "cvVoIPCallActiveEncap": "192.168.1.1",
                        "cvVoIPCallActiveInterleaving": -2147483648,
                        "cvVoIPCallActivePtime": -2147483648,
                        "cvVoIPCallActiveChannels": -2147483648,
                        "cvVoIPCallActiveCoderMode": "192.168.1.1",
                        "cvVoIPCallActiveCallId": 0,
                        "cvVoIPCallActiveCallReferenceId": "192.168.1.1",
                        "ccVoIPCallActivePolicyName": "192.168.1.1",
                        "cvVoIPCallActiveReversedDirectionPeerAddress": "192.168.1.1",
                        "cvVoIPCallActiveSessionId": 0
                      },
                      {
                        "callActiveSetupTime": "example-string",
                        "callActiveIndex": "2",
                        "cvVoIPCallActiveConnectionId": "192.168.1.1",
                        "cvVoIPCallActiveRemoteIPAddress": "192.168.1.1",
                        "cvVoIPCallActiveRemoteUDPPort": -2147483648,
                        "cvVoIPCallActiveRoundTripDelay": 0,
                        "cvVoIPCallActiveSelectedQoS": "192.168.1.1",
                        "cvVoIPCallActiveSessionProtocol": "192.168.1.1",
                        "cvVoIPCallActiveSessionTarget": "192.168.1.1",
                        "cvVoIPCallActiveOnTimeRvPlayout": "192.168.1.1",
                        "cvVoIPCallActiveGapFillWithSilence": "192.168.1.1",
                        "cvVoIPCallActiveGapFillWithPrediction": "192.168.1.1",
                        "cvVoIPCallActiveGapFillWithInterpolation": "192.168.1.1",
                        "cvVoIPCallActiveGapFillWithRedundancy": "192.168.1.1",
                        "cvVoIPCallActiveHiWaterPlayoutDelay": "192.168.1.1",
                        "cvVoIPCallActiveLoWaterPlayoutDelay": 0,
                        "cvVoIPCallActiveReceiveDelay": 0,
                        "cvVoIPCallActiveVADEnable": true,
                        "cvVoIPCallActiveCoderTypeRate": "192.168.1.1",
                        "cvVoIPCallActiveLostPackets": "192.168.1.1",
                        "cvVoIPCallActiveEarlyPackets": "192.168.1.1",
                        "cvVoIPCallActiveLatePackets": "192.168.1.1",
                        "cvVoIPCallActiveUsername": "192.168.1.1",
                        "cvVoIPCallActiveProtocolCallId": "192.168.1.1",
                        "cvVoIPCallActiveRemSigIPAddrT": "192.168.1.1",
                        "cvVoIPCallActiveRemSigIPAddr": "192.168.1.1",
                        "cvVoIPCallActiveRemSigPort": -2147483648,
                        "cvVoIPCallActiveRemMediaIPAddrT": "192.168.1.1",
                        "cvVoIPCallActiveRemMediaIPAddr": "192.168.1.1",
                        "cvVoIPCallActiveRemMediaPort": -2147483648,
                        "cvVoIPCallActiveSRTPEnable": true,
                        "cvVoIPCallActiveOctetAligned": true,
                        "cvVoIPCallActiveBitRates": "192.168.1.1",
                        "cvVoIPCallActiveModeChgPeriod": -2147483648,
                        "cvVoIPCallActiveModeChgNeighbor": true,
                        "cvVoIPCallActiveMaxPtime": -2147483648,
                        "cvVoIPCallActiveCRC": true,
                        "cvVoIPCallActiveRobustSorting": true,
                        "cvVoIPCallActiveEncap": "192.168.1.1",
                        "cvVoIPCallActiveInterleaving": -2147483648,
                        "cvVoIPCallActivePtime": -2147483648,
                        "cvVoIPCallActiveChannels": -2147483648,
                        "cvVoIPCallActiveCoderMode": "192.168.1.1",
                        "cvVoIPCallActiveCallId": 0,
                        "cvVoIPCallActiveCallReferenceId": "192.168.1.1",
                        "ccVoIPCallActivePolicyName": "192.168.1.1",
                        "cvVoIPCallActiveReversedDirectionPeerAddress": "192.168.1.1",
                        "cvVoIPCallActiveSessionId": 0
                      },
                      {
                        "callActiveSetupTime": "example-string",
                        "callActiveIndex": "3",
                        "cvVoIPCallActiveConnectionId": "192.168.1.1",
                        "cvVoIPCallActiveRemoteIPAddress": "192.168.1.1",
                        "cvVoIPCallActiveRemoteUDPPort": -2147483648,
                        "cvVoIPCallActiveRoundTripDelay": 0,
                        "cvVoIPCallActiveSelectedQoS": "192.168.1.1",
                        "cvVoIPCallActiveSessionProtocol": "192.168.1.1",
                        "cvVoIPCallActiveSessionTarget": "192.168.1.1",
                        "cvVoIPCallActiveOnTimeRvPlayout": "192.168.1.1",
                        "cvVoIPCallActiveGapFillWithSilence": "192.168.1.1",
                        "cvVoIPCallActiveGapFillWithPrediction": "192.168.1.1",
                        "cvVoIPCallActiveGapFillWithInterpolation": "192.168.1.1",
                        "cvVoIPCallActiveGapFillWithRedundancy": "192.168.1.1",
                        "cvVoIPCallActiveHiWaterPlayoutDelay": "192.168.1.1",
                        "cvVoIPCallActiveLoWaterPlayoutDelay": 0,
                        "cvVoIPCallActiveReceiveDelay": 0,
                        "cvVoIPCallActiveVADEnable": true,
                        "cvVoIPCallActiveCoderTypeRate": "192.168.1.1",
                        "cvVoIPCallActiveLostPackets": "192.168.1.1",
                        "cvVoIPCallActiveEarlyPackets": "192.168.1.1",
                        "cvVoIPCallActiveLatePackets": "192.168.1.1",
                        "cvVoIPCallActiveUsername": "192.168.1.1",
                        "cvVoIPCallActiveProtocolCallId": "192.168.1.1",
                        "cvVoIPCallActiveRemSigIPAddrT": "192.168.1.1",
                        "cvVoIPCallActiveRemSigIPAddr": "192.168.1.1",
                        "cvVoIPCallActiveRemSigPort": -2147483648,
                        "cvVoIPCallActiveRemMediaIPAddrT": "192.168.1.1",
                        "cvVoIPCallActiveRemMediaIPAddr": "192.168.1.1",
                        "cvVoIPCallActiveRemMediaPort": -2147483648,
                        "cvVoIPCallActiveSRTPEnable": true,
                        "cvVoIPCallActiveOctetAligned": true,
                        "cvVoIPCallActiveBitRates": "192.168.1.1",
                        "cvVoIPCallActiveModeChgPeriod": -2147483648,
                        "cvVoIPCallActiveModeChgNeighbor": true,
                        "cvVoIPCallActiveMaxPtime": -2147483648,
                        "cvVoIPCallActiveCRC": true,
                        "cvVoIPCallActiveRobustSorting": true,
                        "cvVoIPCallActiveEncap": "192.168.1.1",
                        "cvVoIPCallActiveInterleaving": -2147483648,
                        "cvVoIPCallActivePtime": -2147483648,
                        "cvVoIPCallActiveChannels": -2147483648,
                        "cvVoIPCallActiveCoderMode": "192.168.1.1",
                        "cvVoIPCallActiveCallId": 0,
                        "cvVoIPCallActiveCallReferenceId": "192.168.1.1",
                        "ccVoIPCallActivePolicyName": "192.168.1.1",
                        "cvVoIPCallActiveReversedDirectionPeerAddress": "192.168.1.1",
                        "cvVoIPCallActiveSessionId": 0
                      }
                    ]
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cvVoIPCallActiveTable",
        "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": "/cvVoIPCallActiveTable",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-VOICE-DIAL-CONTROL-MIB:cvVoIPCallActiveTable/cvVoIPCallActiveEntry": {
      "get": {
        "summary": "Get cvVoIPCallActiveEntry list",
        "description": "Retrieve list of cvVoIPCallActiveEntry entries from MIB",
        "tags": [
          "CISCO-VOICE-DIAL-CONTROL-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "cvVoIPCallActiveEntry",
                  "items": {
                    "type": "object",
                    "properties": {
                      "callActiveSetupTime": {
                        "type": "string",
                        "description": "callActiveSetupTime",
                        "x-yang-type": "leafref"
                      },
                      "callActiveIndex": {
                        "type": "string",
                        "description": "callActiveIndex",
                        "x-yang-type": "leafref"
                      },
                      "cvVoIPCallActiveConnectionId": {
                        "type": "string",
                        "description": "The global connection identifier for\n            the active VoIP leg of the call.",
                        "x-yang-type": "cisco-voice:CvcGUid"
                      },
                      "cvVoIPCallActiveRemoteIPAddress": {
                        "type": "string",
                        "description": "Remote system IP address for the VoIP call.",
                        "format": "inet:ipv4-address"
                      },
                      "cvVoIPCallActiveRemoteUDPPort": {
                        "type": "integer",
                        "description": "Remote system UDP listener port to which to transmit voice\n            packets.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "cvVoIPCallActiveRoundTripDelay": {
                        "type": "integer",
                        "description": "The voice packet round trip delay between local and\n            the remote system on the IP backbone during the call.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cvVoIPCallActiveSelectedQoS": {
                        "type": "string",
                        "description": "The selected RSVP QoS for the voice call.",
                        "x-yang-type": "int-serv:QosService"
                      },
                      "cvVoIPCallActiveSessionProtocol": {
                        "type": "string",
                        "description": "The object specifies the session protocol to be used\n            for Internet call between local and remote router via\n            IP backbone.",
                        "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvSessionProtocol"
                      },
                      "cvVoIPCallActiveSessionTarget": {
                        "type": "string",
                        "description": "The object specifies the session target of the peer that\n            is used for the call. This object is set with the\n            information in the call associated\n            cvVoIPPeerCfgSessionTarget object when the voice over IP\n            call is connected.",
                        "x-yang-type": "snmpv2-tc:DisplayString"
                      },
                      "cvVoIPCallActiveOnTimeRvPlayout": {
                        "type": "string",
                        "description": "Duration of voice playout from data received on time for\n            this call. This plus the durations for the GapFills in the\n            following entries gives the Total Voice Playout Duration\n            for Active Voice.\n            This does not include duration for which no data was sent by the\n            Transmit end as voice signal, e.g., silence suppression\n            and fax signal. The On Time Playout Rate can be computed\n            by dividing this entry by the Total Voice Playout Duration.\n            This counter object will lock at the maximum value which\n            is approximately two days.",
                        "x-yang-type": "dial-control:AbsoluteCounter32"
                      },
                      "cvVoIPCallActiveGapFillWithSilence": {
                        "type": "string",
                        "description": "Duration of voice signal replaced with signal played out\n            during silence due to voice data not received on time\n            (or lost) from voice gateway this call. This counter\n            object will lock at the maximum value which is\n            approximately two days.",
                        "x-yang-type": "dial-control:AbsoluteCounter32"
                      },
                      "cvVoIPCallActiveGapFillWithPrediction": {
                        "type": "string",
                        "description": "Duration of voice signal played out with signal synthesized\n            from parameters or samples of data preceding in time due\n            to voice data not received on time (or lost) from voice\n            gateway for this call. An example of such playout is\n            frame-erasure or frame-concealment strategies in G.729 and\n            G.723.1 compression algorithms. This counter object will\n            lock at the maximum value which is approximately two days.",
                        "x-yang-type": "dial-control:AbsoluteCounter32"
                      },
                      "cvVoIPCallActiveGapFillWithInterpolation": {
                        "type": "string",
                        "description": "Duration of voice signal played out with signal synthesized\n            from parameters or samples of data preceding and following\n            in time due to voice data not received on time (or lost)\n            from voice gateway for this call. This counter object\n            will lock at the maximum value which is approximately two\n            days.",
                        "x-yang-type": "dial-control:AbsoluteCounter32"
                      },
                      "cvVoIPCallActiveGapFillWithRedundancy": {
                        "type": "string",
                        "description": "Duration of voice signal played out with signal synthesized\n            from redundancy parameters available due to voice data not\n            received on time (or lost) from voice gateway for this call.\n            This counter object will lock at the maximum value which\n            is approximately two days.",
                        "x-yang-type": "dial-control:AbsoluteCounter32"
                      },
                      "cvVoIPCallActiveHiWaterPlayoutDelay": {
                        "type": "string",
                        "description": "The high water mark Voice Playout FIFO Delay during\n            the voice call. This counter object will lock at the\n            maximum value which is approximately two days.",
                        "x-yang-type": "dial-control:AbsoluteCounter32"
                      },
                      "cvVoIPCallActiveLoWaterPlayoutDelay": {
                        "type": "integer",
                        "description": "The low water mark Voice Playout FIFO Delay during\n            the voice call.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cvVoIPCallActiveReceiveDelay": {
                        "type": "integer",
                        "description": "The average Playout FIFO Delay plus the decoder delay\n            during the voice call.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cvVoIPCallActiveVADEnable": {
                        "type": "boolean",
                        "description": "The object indicates whether or not the VAD (Voice Activity\n            Detection) was enabled for the voice call."
                      },
                      "cvVoIPCallActiveCoderTypeRate": {
                        "type": "string",
                        "description": "The negotiated coder rate. It specifies the transmit rate of\n            voice/fax compression to its associated call leg for the\n            call. This rate is different from the configuration rate\n            because of rate negotiation during the call.",
                        "x-yang-type": "cisco-voice:CvcCoderTypeRate"
                      },
                      "cvVoIPCallActiveLostPackets": {
                        "type": "string",
                        "description": "The number of lost voice packets during the call.",
                        "x-yang-type": "dial-control:AbsoluteCounter32"
                      },
                      "cvVoIPCallActiveEarlyPackets": {
                        "type": "string",
                        "description": "The number of received voice packets that\n            arrived too early to store in jitter buffer\n            during the call.",
                        "x-yang-type": "dial-control:AbsoluteCounter32"
                      },
                      "cvVoIPCallActiveLatePackets": {
                        "type": "string",
                        "description": "The number of received voice packets that\n            arrived too late to playout with CODEC (Coder/Decoder)\n            during the call.",
                        "x-yang-type": "dial-control:AbsoluteCounter32"
                      },
                      "cvVoIPCallActiveUsername": {
                        "type": "string",
                        "description": "The textual identifier of the calling party (user) of the\n            call. If the username is not available, then the value of\n            this object will have a length of zero.",
                        "x-yang-type": "snmp-framework:SnmpAdminString"
                      },
                      "cvVoIPCallActiveProtocolCallId": {
                        "type": "string",
                        "description": "The protocol-specific call identifier for the VoIP call.",
                        "format": "binary"
                      },
                      "cvVoIPCallActiveRemSigIPAddrT": {
                        "type": "string",
                        "description": "This object specifies the type of address contained in\n            the associated instance of cvVoIPCallActiveRemSigIPAddr.",
                        "x-yang-type": "inet-address:InetAddressType"
                      },
                      "cvVoIPCallActiveRemSigIPAddr": {
                        "type": "string",
                        "description": "Remote signalling IP address for the VoIP call.",
                        "x-yang-type": "inet-address:InetAddress"
                      },
                      "cvVoIPCallActiveRemSigPort": {
                        "type": "integer",
                        "description": "Remote signalling listener port to which to transmit\n            voice packets.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "cvVoIPCallActiveRemMediaIPAddrT": {
                        "type": "string",
                        "description": "This object specifies the type of address contained in\n            the associated instance of\n            cvVoIPCallActiveRemMediaIPAddr.",
                        "x-yang-type": "inet-address:InetAddressType"
                      },
                      "cvVoIPCallActiveRemMediaIPAddr": {
                        "type": "string",
                        "description": "Remote media end point IP address for the VoIP call.",
                        "x-yang-type": "inet-address:InetAddress"
                      },
                      "cvVoIPCallActiveRemMediaPort": {
                        "type": "integer",
                        "description": "Remote media end point listener port to which to transmit\n            voice packets.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "cvVoIPCallActiveSRTPEnable": {
                        "type": "boolean",
                        "description": "The object indicates whether or not the SRTP (Secured RTP)\n            was enabled for the voice call."
                      },
                      "cvVoIPCallActiveOctetAligned": {
                        "type": "boolean",
                        "description": "If the object has a value true(1) octet align operation\n            is used, and if the value is false(2), bandwidth efficient\n            operation is used. This object is not instantiated when\n            the object cvVoIPCallActiveCoderTypeRate is not equal to\n            gsmAmrNb enum."
                      },
                      "cvVoIPCallActiveBitRates": {
                        "type": "string",
                        "description": "This object indicates modes of Bit rates.\n            This object is not instantiated when the object\n            cvVoIPCallActiveCoderTypeRate is not equal to\n            gsmAmrNb enum.",
                        "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvAmrNbBitRateMode"
                      },
                      "cvVoIPCallActiveModeChgPeriod": {
                        "type": "integer",
                        "description": "The object indicates the interval (N frame-blocks) at which\n            codec mode changes are allowed. This object is not\n            instantiated when the object cvVoIPCallActiveCoderTypeRate\n            is not equal to gsmAmrNb enum.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "cvVoIPCallActiveModeChgNeighbor": {
                        "type": "boolean",
                        "description": "If the object has a value of true(1), mode changes will be\n            made to only neighboring modes set to\n            cvVoIPCallActiveBitRates object. If the value is false(2),\n            mode changes will be allowed to any modes set to\n            cvVoIPCallActiveBitRates object. This object is not\n            instantiated when the object cvVoIPCallActiveCoderTypeRate\n            is not equal to gsmAmrNb enum."
                      },
                      "cvVoIPCallActiveMaxPtime": {
                        "type": "integer",
                        "description": "The object indicates the maximum amount of media that\n            can be encapsulated in a payload. Supported value is\n            20 msec. This object is not instantiated when the\n            object cvVoIPCallActiveCoderTypeRate is not equal to\n            gsmAmrNb enum.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "cvVoIPCallActiveCRC": {
                        "type": "boolean",
                        "description": "If the object has a value of true(1), frame CRC will be\n            included in the payload and if the value is false(2),\n            frame CRC will not be included in the payload.\n            This object is applicable only when RTP frame type\n            is octet aligned. This object is not instantiated when\n            the object cvVoIPCallActiveCoderTypeRate is not equal to\n            gsmAmrNb enum."
                      },
                      "cvVoIPCallActiveRobustSorting": {
                        "type": "boolean",
                        "description": "If the object has a value of true(1), payload employs\n            robust sorting and if the value is false(2), payload\n            does not employ robust sorting. This object is applicable\n            only when RTP frame type is octet aligned. This object\n            is not instantiated when the object\n            cvVoIPCallActiveCoderTypeRate is not equal to gsmAmrNb\n            enum."
                      },
                      "cvVoIPCallActiveEncap": {
                        "type": "string",
                        "description": "The object indicates the RTP encapsulation type.\n            Supported RTP encapsulation type is RFC3267.\n            This object is not instantiated when the object\n            cvVoIPCallActiveCoderTypeRate is not equal to\n            gsmAmrNb enum.",
                        "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvAmrNbRtpEncap"
                      },
                      "cvVoIPCallActiveInterleaving": {
                        "type": "integer",
                        "description": "The object indicates the maximum number of frame-blocks\n            allowed in an interleaving group. It indicates that\n            frame-block level interleaving will be used for that\n            session. If this object is not set, interleaving\n            is not used. This object is applicable only when\n            RTP frame type is octet aligned. This object is not\n            instantiated when the object cvVoIPCallActiveCoderTypeRate\n            is not equal to gsmAmrNb enum.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "cvVoIPCallActivePtime": {
                        "type": "integer",
                        "description": "The object indicates the length of the time in milliseconds\n            represented by the media of the packet. Supported value is\n            20 milliseconds. This object is not instantiated when the\n            object cvVoIPCallActiveCoderTypeRate is not equal to\n            gsmAmrNb enum.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "cvVoIPCallActiveChannels": {
                        "type": "integer",
                        "description": "The object indicates the number of audio channels.\n            Supported value is 1. This object is not instantiated\n            when the object cvVoIPCallActiveCoderTypeRate is not equal\n            to gsmAmrNb enum.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "cvVoIPCallActiveCoderMode": {
                        "type": "string",
                        "description": "The object indicates the iLBC codec mode.\n            The value of this object is valid only if \n            cvVoIPCallActiveCoderTypeRate is equal to \n            'iLBC'.",
                        "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvIlbcFrameMode"
                      },
                      "cvVoIPCallActiveCallId": {
                        "type": "integer",
                        "description": "This object represents the call identifier\n            for the active VoIP leg of the call.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cvVoIPCallActiveCallReferenceId": {
                        "type": "string",
                        "description": "The call reference ID associates the video call entry and voice\n            call entry of the same endpoint.  An audio-only call may or may\n            not have a valid call reference ID (i.e. value greater than\n            zero), but in both cases, there will not be a video call entry\n            associated with it.  \n            \n            For a video call, the video-specific information  is stored in a\n            call entry in cVideoSessionActive of CISCO-VIDEO-SESSION-MIB, in\n            which the call reference ID is also identified.",
                        "x-yang-type": "cisco-voice:CvcCallReferenceIdOrZero"
                      },
                      "ccVoIPCallActivePolicyName": {
                        "type": "string",
                        "description": "This object holds the policy name. It could be media\n            policy, DSCP policy etc.",
                        "x-yang-type": "snmpv2-tc:DisplayString"
                      },
                      "cvVoIPCallActiveReversedDirectionPeerAddress": {
                        "type": "string",
                        "description": "This object store the reversed direction peer address  If the\n            address is not available, then it will have a length of zero.\n            \n            If the call is ingress then it contains called number and if the\n            call is egress then it contains calling number.",
                        "x-yang-type": "snmpv2-tc:DisplayString"
                      },
                      "cvVoIPCallActiveSessionId": {
                        "type": "integer",
                        "description": "This object indicates the active session ID assigned by the\n            call manager to identify call legs that belong to the same call\n            session.",
                        "minimum": 0,
                        "maximum": 4294967295
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-VOICE-DIAL-CONTROL-MIB:cvVoIPCallActiveEntry": [
                    {
                      "callActiveSetupTime": "example-string",
                      "callActiveIndex": "example-string",
                      "cvVoIPCallActiveConnectionId": "192.168.1.1",
                      "cvVoIPCallActiveRemoteIPAddress": "192.168.1.1",
                      "cvVoIPCallActiveRemoteUDPPort": -2147483648,
                      "cvVoIPCallActiveRoundTripDelay": 0,
                      "cvVoIPCallActiveSelectedQoS": "192.168.1.1",
                      "cvVoIPCallActiveSessionProtocol": "192.168.1.1",
                      "cvVoIPCallActiveSessionTarget": "192.168.1.1",
                      "cvVoIPCallActiveOnTimeRvPlayout": "192.168.1.1",
                      "cvVoIPCallActiveGapFillWithSilence": "192.168.1.1",
                      "cvVoIPCallActiveGapFillWithPrediction": "192.168.1.1",
                      "cvVoIPCallActiveGapFillWithInterpolation": "192.168.1.1",
                      "cvVoIPCallActiveGapFillWithRedundancy": "192.168.1.1",
                      "cvVoIPCallActiveHiWaterPlayoutDelay": "192.168.1.1",
                      "cvVoIPCallActiveLoWaterPlayoutDelay": 0,
                      "cvVoIPCallActiveReceiveDelay": 0,
                      "cvVoIPCallActiveVADEnable": true,
                      "cvVoIPCallActiveCoderTypeRate": "192.168.1.1",
                      "cvVoIPCallActiveLostPackets": "192.168.1.1",
                      "cvVoIPCallActiveEarlyPackets": "192.168.1.1",
                      "cvVoIPCallActiveLatePackets": "192.168.1.1",
                      "cvVoIPCallActiveUsername": "192.168.1.1",
                      "cvVoIPCallActiveProtocolCallId": "192.168.1.1",
                      "cvVoIPCallActiveRemSigIPAddrT": "192.168.1.1",
                      "cvVoIPCallActiveRemSigIPAddr": "192.168.1.1",
                      "cvVoIPCallActiveRemSigPort": -2147483648,
                      "cvVoIPCallActiveRemMediaIPAddrT": "192.168.1.1",
                      "cvVoIPCallActiveRemMediaIPAddr": "192.168.1.1",
                      "cvVoIPCallActiveRemMediaPort": -2147483648,
                      "cvVoIPCallActiveSRTPEnable": true,
                      "cvVoIPCallActiveOctetAligned": true,
                      "cvVoIPCallActiveBitRates": "192.168.1.1",
                      "cvVoIPCallActiveModeChgPeriod": -2147483648,
                      "cvVoIPCallActiveModeChgNeighbor": true,
                      "cvVoIPCallActiveMaxPtime": -2147483648,
                      "cvVoIPCallActiveCRC": true,
                      "cvVoIPCallActiveRobustSorting": true,
                      "cvVoIPCallActiveEncap": "192.168.1.1",
                      "cvVoIPCallActiveInterleaving": -2147483648,
                      "cvVoIPCallActivePtime": -2147483648,
                      "cvVoIPCallActiveChannels": -2147483648,
                      "cvVoIPCallActiveCoderMode": "192.168.1.1",
                      "cvVoIPCallActiveCallId": 0,
                      "cvVoIPCallActiveCallReferenceId": "192.168.1.1",
                      "ccVoIPCallActivePolicyName": "192.168.1.1",
                      "cvVoIPCallActiveReversedDirectionPeerAddress": "192.168.1.1",
                      "cvVoIPCallActiveSessionId": 0
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cvVoIPCallActiveEntry",
        "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": "/cvVoIPCallActiveTable/cvVoIPCallActiveEntry",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-VOICE-DIAL-CONTROL-MIB:cvCallVolConnTable": {
      "get": {
        "summary": "Get cvCallVolConnTable data",
        "description": "Retrieve cvCallVolConnTable operational data from MIB",
        "tags": [
          "CISCO-VOICE-DIAL-CONTROL-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "description": "This table represents the number of active\n        call connections for each call connection type\n        in the voice gateway.",
                  "properties": {
                    "cvCallVolConnEntry": {
                      "type": "array",
                      "description": "An entry in the cvCallVolConnTable indicates\n          number of active calls for a call connection type\n          in the voice gateway.",
                      "items": {
                        "type": "object",
                        "properties": {
                          "cvCallVolConnIndex": {
                            "type": "string",
                            "description": "This object represents index to the\n            cvCallVolConnTable.",
                            "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvCallConnectionType"
                          },
                          "cvCallVolConnActiveConnection": {
                            "type": "integer",
                            "description": "This object represents the total number of\n            active calls for a connection type \n            in the voice gateway.",
                            "minimum": 0,
                            "maximum": 4294967295
                          }
                        }
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-VOICE-DIAL-CONTROL-MIB:cvCallVolConnTable": {
                    "cvCallVolConnEntry": [
                      {
                        "cvCallVolConnIndex": "1",
                        "cvCallVolConnActiveConnection": 0
                      },
                      {
                        "cvCallVolConnIndex": "2",
                        "cvCallVolConnActiveConnection": 0
                      },
                      {
                        "cvCallVolConnIndex": "3",
                        "cvCallVolConnActiveConnection": 0
                      }
                    ]
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cvCallVolConnTable",
        "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": "/cvCallVolConnTable",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-VOICE-DIAL-CONTROL-MIB:cvCallVolConnTable/cvCallVolConnEntry": {
      "get": {
        "summary": "Get cvCallVolConnEntry list",
        "description": "Retrieve list of cvCallVolConnEntry entries from MIB",
        "tags": [
          "CISCO-VOICE-DIAL-CONTROL-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "An entry in the cvCallVolConnTable indicates\n          number of active calls for a call connection type\n          in the voice gateway.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "cvCallVolConnIndex": {
                        "type": "string",
                        "description": "This object represents index to the\n            cvCallVolConnTable.",
                        "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvCallConnectionType"
                      },
                      "cvCallVolConnActiveConnection": {
                        "type": "integer",
                        "description": "This object represents the total number of\n            active calls for a connection type \n            in the voice gateway.",
                        "minimum": 0,
                        "maximum": 4294967295
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-VOICE-DIAL-CONTROL-MIB:cvCallVolConnEntry": [
                    {
                      "cvCallVolConnIndex": "example-string",
                      "cvCallVolConnActiveConnection": 0
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cvCallVolConnEntry",
        "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": "/cvCallVolConnTable/cvCallVolConnEntry",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-VOICE-DIAL-CONTROL-MIB:cvCallVolConnTable/cvCallVolConnEntry={cvCallVolConnIndex}": {
      "get": {
        "summary": "Get cvCallVolConnEntry entry",
        "description": "Retrieve specific cvCallVolConnEntry entry by key from MIB",
        "tags": [
          "CISCO-VOICE-DIAL-CONTROL-MIB"
        ],
        "parameters": [
          {
            "name": "cvCallVolConnIndex",
            "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": {
                    "cvCallVolConnIndex": {
                      "type": "string",
                      "description": "This object represents index to the\n            cvCallVolConnTable.",
                      "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvCallConnectionType"
                    },
                    "cvCallVolConnActiveConnection": {
                      "type": "integer",
                      "description": "This object represents the total number of\n            active calls for a connection type \n            in the voice gateway.",
                      "minimum": 0,
                      "maximum": 4294967295
                    }
                  }
                },
                "example": {
                  "CISCO-VOICE-DIAL-CONTROL-MIB:cvCallVolConnEntry": {
                    "cvCallVolConnIndex": "example-string",
                    "cvCallVolConnActiveConnection": 0
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cvCallVolConnEntry-2"
      },
      "x-yang-path": "/cvCallVolConnTable/cvCallVolConnEntry={cvCallVolConnIndex}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "cvCallVolConnIndex"
      ]
    },
    "/data/CISCO-VOICE-DIAL-CONTROL-MIB:cvCallVolIfTable": {
      "get": {
        "summary": "Get cvCallVolIfTable data",
        "description": "Retrieve cvCallVolIfTable operational data from MIB",
        "tags": [
          "CISCO-VOICE-DIAL-CONTROL-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "description": "This table represents the information about\n        the usage of an IP interface in a voice\n        gateway for voice media calls. This table\n        has a sparse-dependent relationship with  \n        ifTable. There exists an entry in this table, \n        for each of the  entries in ifTable where ifType \n        is one of 'ethernetCsmacd' and 'softwareLoopback'.",
                  "properties": {
                    "cvCallVolIfEntry": {
                      "type": "array",
                      "description": "Each entry represents a row in cvCallVolIfTable\n          and corresponds to the information about an IP \n          interface in the voice gateway.",
                      "items": {
                        "type": "object",
                        "properties": {
                          "ifIndex": {
                            "type": "string",
                            "description": "ifIndex",
                            "x-yang-type": "leafref"
                          },
                          "cvCallVolMediaIncomingCalls": {
                            "type": "integer",
                            "description": "This object represents the total number of\n            inbound active media calls through this IP \n            interface.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "cvCallVolMediaOutgoingCalls": {
                            "type": "integer",
                            "description": "This object represents the total number of\n            outbound active media calls through the IP \n            interface.",
                            "minimum": 0,
                            "maximum": 4294967295
                          }
                        }
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-VOICE-DIAL-CONTROL-MIB:cvCallVolIfTable": {
                    "cvCallVolIfEntry": [
                      {
                        "ifIndex": "1",
                        "cvCallVolMediaIncomingCalls": 0,
                        "cvCallVolMediaOutgoingCalls": 0
                      },
                      {
                        "ifIndex": "2",
                        "cvCallVolMediaIncomingCalls": 0,
                        "cvCallVolMediaOutgoingCalls": 0
                      },
                      {
                        "ifIndex": "3",
                        "cvCallVolMediaIncomingCalls": 0,
                        "cvCallVolMediaOutgoingCalls": 0
                      }
                    ]
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cvCallVolIfTable",
        "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": "/cvCallVolIfTable",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-VOICE-DIAL-CONTROL-MIB:cvCallVolIfTable/cvCallVolIfEntry": {
      "get": {
        "summary": "Get cvCallVolIfEntry list",
        "description": "Retrieve list of cvCallVolIfEntry entries from MIB",
        "tags": [
          "CISCO-VOICE-DIAL-CONTROL-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "Each entry represents a row in cvCallVolIfTable\n          and corresponds to the information about an IP \n          interface in the voice gateway.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "ifIndex": {
                        "type": "string",
                        "description": "ifIndex",
                        "x-yang-type": "leafref"
                      },
                      "cvCallVolMediaIncomingCalls": {
                        "type": "integer",
                        "description": "This object represents the total number of\n            inbound active media calls through this IP \n            interface.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cvCallVolMediaOutgoingCalls": {
                        "type": "integer",
                        "description": "This object represents the total number of\n            outbound active media calls through the IP \n            interface.",
                        "minimum": 0,
                        "maximum": 4294967295
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-VOICE-DIAL-CONTROL-MIB:cvCallVolIfEntry": [
                    {
                      "ifIndex": "example-string",
                      "cvCallVolMediaIncomingCalls": 0,
                      "cvCallVolMediaOutgoingCalls": 0
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cvCallVolIfEntry",
        "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": "/cvCallVolIfTable/cvCallVolIfEntry",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-VOICE-DIAL-CONTROL-MIB:cvCallVolIfTable/cvCallVolIfEntry={ifIndex}": {
      "get": {
        "summary": "Get cvCallVolIfEntry entry",
        "description": "Retrieve specific cvCallVolIfEntry entry by key from MIB",
        "tags": [
          "CISCO-VOICE-DIAL-CONTROL-MIB"
        ],
        "parameters": [
          {
            "name": "ifIndex",
            "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": {
                    "ifIndex": {
                      "type": "string",
                      "description": "ifIndex",
                      "x-yang-type": "leafref"
                    },
                    "cvCallVolMediaIncomingCalls": {
                      "type": "integer",
                      "description": "This object represents the total number of\n            inbound active media calls through this IP \n            interface.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cvCallVolMediaOutgoingCalls": {
                      "type": "integer",
                      "description": "This object represents the total number of\n            outbound active media calls through the IP \n            interface.",
                      "minimum": 0,
                      "maximum": 4294967295
                    }
                  }
                },
                "example": {
                  "CISCO-VOICE-DIAL-CONTROL-MIB:cvCallVolIfEntry": {
                    "ifIndex": "example-string",
                    "cvCallVolMediaIncomingCalls": 0,
                    "cvCallVolMediaOutgoingCalls": 0
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cvCallVolIfEntry-2"
      },
      "x-yang-path": "/cvCallVolIfTable/cvCallVolIfEntry={ifIndex}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "ifIndex"
      ]
    },
    "/data/CISCO-VOICE-DIAL-CONTROL-MIB:cvCallHistoryTable": {
      "get": {
        "summary": "Get cvCallHistoryTable data",
        "description": "Retrieve cvCallHistoryTable operational data from MIB",
        "tags": [
          "CISCO-VOICE-DIAL-CONTROL-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "description": "This table is the voice extension to the call history table\n        of IETF Dial Control MIB. It contains voice encapsulation\n        call leg information such as voice packet statistics,\n        coder usage and end to end bandwidth of the call leg.",
                  "properties": {
                    "cvCallHistoryEntry": {
                      "type": "array",
                      "description": "cvCallHistoryEntry",
                      "items": {
                        "type": "object",
                        "properties": {
                          "cCallHistoryIndex": {
                            "type": "string",
                            "description": "cCallHistoryIndex",
                            "x-yang-type": "leafref"
                          },
                          "cvCallHistoryConnectionId": {
                            "type": "string",
                            "description": "The global connection identifier for the\n            telephony leg, which was assigned to the call.",
                            "x-yang-type": "cisco-voice:CvcGUid"
                          },
                          "cvCallHistoryTxDuration": {
                            "type": "string",
                            "description": "Duration of Transmit path open from this peer to the\n            voice gateway for the call leg. This counter object will\n            lock at the maximum value which is approximately two\n            days.",
                            "x-yang-type": "dial-control:AbsoluteCounter32"
                          },
                          "cvCallHistoryVoiceTxDuration": {
                            "type": "string",
                            "description": "Duration for this call leg. The Voice Utilization Rate\n            can be obtained by dividing this by\n            cvCallHistoryTXDuration object. This counter object will\n            lock at the maximum value which is approximately two\n            days.",
                            "x-yang-type": "dial-control:AbsoluteCounter32"
                          },
                          "cvCallHistoryFaxTxDuration": {
                            "type": "string",
                            "description": "Duration of fax transmitted from this peer to voice\n            gateway for this call leg. The FAX Utilization Rate can be\n            obtained by dividing this by cvCallHistoryTXDuration\n            object. This counter object will lock at the maximum\n            value which is approximately two days.",
                            "x-yang-type": "dial-control:AbsoluteCounter32"
                          },
                          "cvCallHistoryCoderTypeRate": {
                            "type": "string",
                            "description": "The negotiated coder rate. It specifies the transmit rate\n            of voice/fax compression to its associated call leg for\n            the call.",
                            "x-yang-type": "cisco-voice:CvcCoderTypeRate"
                          },
                          "cvCallHistoryNoiseLevel": {
                            "type": "integer",
                            "description": "The object contains the average noise level for the call\n            leg.",
                            "minimum": -2147483648,
                            "maximum": 2147483647
                          },
                          "cvCallHistoryACOMLevel": {
                            "type": "integer",
                            "description": "The object contains the average ACOM level for the call\n            leg. The value -1 indicates the level can not be\n            determined or level detection is disabled.",
                            "minimum": -2147483648,
                            "maximum": 2147483647
                          },
                          "cvCallHistorySessionTarget": {
                            "type": "string",
                            "description": "The object specifies the session target of the peer that\n            is used for the call leg via telephony interface.",
                            "x-yang-type": "snmpv2-tc:DisplayString"
                          },
                          "cvCallHistoryImgPageCount": {
                            "type": "string",
                            "description": "The number of FAX related image pages are received or\n            transmitted via the peer for the call leg.",
                            "x-yang-type": "dial-control:AbsoluteCounter32"
                          },
                          "cvCallHistoryCallingName": {
                            "type": "string",
                            "description": "The calling party name of the call. If the name is\n            not available, then it will have a length of zero.",
                            "x-yang-type": "snmp-framework:SnmpAdminString"
                          },
                          "cvCallHistoryCallerIDBlock": {
                            "type": "boolean",
                            "description": "The object indicates whether or not the caller ID feature\n            is blocked for this call."
                          },
                          "cvCallHistoryAccountCode": {
                            "type": "string",
                            "description": "The object indicates the account code input to the call.\n            It could be used by down stream billing server.\n            The value of empty string indicates no account code input.",
                            "x-yang-type": "snmp-framework:SnmpAdminString"
                          },
                          "cvCallHistoryCallId": {
                            "type": "integer",
                            "description": "This object represents the call identifier for the\n            telephony leg, which was assigned to the call.",
                            "minimum": 0,
                            "maximum": 4294967295
                          }
                        }
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-VOICE-DIAL-CONTROL-MIB:cvCallHistoryTable": {
                    "cvCallHistoryEntry": [
                      {
                        "cCallHistoryIndex": "1",
                        "cvCallHistoryConnectionId": "example-string",
                        "cvCallHistoryTxDuration": "example-string",
                        "cvCallHistoryVoiceTxDuration": "example-string",
                        "cvCallHistoryFaxTxDuration": "example-string",
                        "cvCallHistoryCoderTypeRate": "ethernetCsmacd(6)",
                        "cvCallHistoryNoiseLevel": -2147483648,
                        "cvCallHistoryACOMLevel": -2147483648,
                        "cvCallHistorySessionTarget": "example-string",
                        "cvCallHistoryImgPageCount": "example-string",
                        "cvCallHistoryCallingName": "interface-1",
                        "cvCallHistoryCallerIDBlock": true,
                        "cvCallHistoryAccountCode": "example-string",
                        "cvCallHistoryCallId": 0
                      },
                      {
                        "cCallHistoryIndex": "2",
                        "cvCallHistoryConnectionId": "example-string",
                        "cvCallHistoryTxDuration": "example-string",
                        "cvCallHistoryVoiceTxDuration": "example-string",
                        "cvCallHistoryFaxTxDuration": "example-string",
                        "cvCallHistoryCoderTypeRate": "ethernetCsmacd(6)",
                        "cvCallHistoryNoiseLevel": -2147483648,
                        "cvCallHistoryACOMLevel": -2147483648,
                        "cvCallHistorySessionTarget": "example-string",
                        "cvCallHistoryImgPageCount": "example-string",
                        "cvCallHistoryCallingName": "interface-1",
                        "cvCallHistoryCallerIDBlock": true,
                        "cvCallHistoryAccountCode": "example-string",
                        "cvCallHistoryCallId": 0
                      },
                      {
                        "cCallHistoryIndex": "3",
                        "cvCallHistoryConnectionId": "example-string",
                        "cvCallHistoryTxDuration": "example-string",
                        "cvCallHistoryVoiceTxDuration": "example-string",
                        "cvCallHistoryFaxTxDuration": "example-string",
                        "cvCallHistoryCoderTypeRate": "ethernetCsmacd(6)",
                        "cvCallHistoryNoiseLevel": -2147483648,
                        "cvCallHistoryACOMLevel": -2147483648,
                        "cvCallHistorySessionTarget": "example-string",
                        "cvCallHistoryImgPageCount": "example-string",
                        "cvCallHistoryCallingName": "interface-1",
                        "cvCallHistoryCallerIDBlock": true,
                        "cvCallHistoryAccountCode": "example-string",
                        "cvCallHistoryCallId": 0
                      }
                    ]
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cvCallHistoryTable",
        "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": "/cvCallHistoryTable",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-VOICE-DIAL-CONTROL-MIB:cvCallHistoryTable/cvCallHistoryEntry": {
      "get": {
        "summary": "Get cvCallHistoryEntry list",
        "description": "Retrieve list of cvCallHistoryEntry entries from MIB",
        "tags": [
          "CISCO-VOICE-DIAL-CONTROL-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "cvCallHistoryEntry",
                  "items": {
                    "type": "object",
                    "properties": {
                      "cCallHistoryIndex": {
                        "type": "string",
                        "description": "cCallHistoryIndex",
                        "x-yang-type": "leafref"
                      },
                      "cvCallHistoryConnectionId": {
                        "type": "string",
                        "description": "The global connection identifier for the\n            telephony leg, which was assigned to the call.",
                        "x-yang-type": "cisco-voice:CvcGUid"
                      },
                      "cvCallHistoryTxDuration": {
                        "type": "string",
                        "description": "Duration of Transmit path open from this peer to the\n            voice gateway for the call leg. This counter object will\n            lock at the maximum value which is approximately two\n            days.",
                        "x-yang-type": "dial-control:AbsoluteCounter32"
                      },
                      "cvCallHistoryVoiceTxDuration": {
                        "type": "string",
                        "description": "Duration for this call leg. The Voice Utilization Rate\n            can be obtained by dividing this by\n            cvCallHistoryTXDuration object. This counter object will\n            lock at the maximum value which is approximately two\n            days.",
                        "x-yang-type": "dial-control:AbsoluteCounter32"
                      },
                      "cvCallHistoryFaxTxDuration": {
                        "type": "string",
                        "description": "Duration of fax transmitted from this peer to voice\n            gateway for this call leg. The FAX Utilization Rate can be\n            obtained by dividing this by cvCallHistoryTXDuration\n            object. This counter object will lock at the maximum\n            value which is approximately two days.",
                        "x-yang-type": "dial-control:AbsoluteCounter32"
                      },
                      "cvCallHistoryCoderTypeRate": {
                        "type": "string",
                        "description": "The negotiated coder rate. It specifies the transmit rate\n            of voice/fax compression to its associated call leg for\n            the call.",
                        "x-yang-type": "cisco-voice:CvcCoderTypeRate"
                      },
                      "cvCallHistoryNoiseLevel": {
                        "type": "integer",
                        "description": "The object contains the average noise level for the call\n            leg.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "cvCallHistoryACOMLevel": {
                        "type": "integer",
                        "description": "The object contains the average ACOM level for the call\n            leg. The value -1 indicates the level can not be\n            determined or level detection is disabled.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "cvCallHistorySessionTarget": {
                        "type": "string",
                        "description": "The object specifies the session target of the peer that\n            is used for the call leg via telephony interface.",
                        "x-yang-type": "snmpv2-tc:DisplayString"
                      },
                      "cvCallHistoryImgPageCount": {
                        "type": "string",
                        "description": "The number of FAX related image pages are received or\n            transmitted via the peer for the call leg.",
                        "x-yang-type": "dial-control:AbsoluteCounter32"
                      },
                      "cvCallHistoryCallingName": {
                        "type": "string",
                        "description": "The calling party name of the call. If the name is\n            not available, then it will have a length of zero.",
                        "x-yang-type": "snmp-framework:SnmpAdminString"
                      },
                      "cvCallHistoryCallerIDBlock": {
                        "type": "boolean",
                        "description": "The object indicates whether or not the caller ID feature\n            is blocked for this call."
                      },
                      "cvCallHistoryAccountCode": {
                        "type": "string",
                        "description": "The object indicates the account code input to the call.\n            It could be used by down stream billing server.\n            The value of empty string indicates no account code input.",
                        "x-yang-type": "snmp-framework:SnmpAdminString"
                      },
                      "cvCallHistoryCallId": {
                        "type": "integer",
                        "description": "This object represents the call identifier for the\n            telephony leg, which was assigned to the call.",
                        "minimum": 0,
                        "maximum": 4294967295
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-VOICE-DIAL-CONTROL-MIB:cvCallHistoryEntry": [
                    {
                      "cCallHistoryIndex": "example-string",
                      "cvCallHistoryConnectionId": "example-string",
                      "cvCallHistoryTxDuration": "example-string",
                      "cvCallHistoryVoiceTxDuration": "example-string",
                      "cvCallHistoryFaxTxDuration": "example-string",
                      "cvCallHistoryCoderTypeRate": "ethernetCsmacd(6)",
                      "cvCallHistoryNoiseLevel": -2147483648,
                      "cvCallHistoryACOMLevel": -2147483648,
                      "cvCallHistorySessionTarget": "example-string",
                      "cvCallHistoryImgPageCount": "example-string",
                      "cvCallHistoryCallingName": "interface-1",
                      "cvCallHistoryCallerIDBlock": true,
                      "cvCallHistoryAccountCode": "example-string",
                      "cvCallHistoryCallId": 0
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cvCallHistoryEntry",
        "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": "/cvCallHistoryTable/cvCallHistoryEntry",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-VOICE-DIAL-CONTROL-MIB:cvCallHistoryTable/cvCallHistoryEntry={cCallHistoryIndex}": {
      "get": {
        "summary": "Get cvCallHistoryEntry entry",
        "description": "Retrieve specific cvCallHistoryEntry entry by key from MIB",
        "tags": [
          "CISCO-VOICE-DIAL-CONTROL-MIB"
        ],
        "parameters": [
          {
            "name": "cCallHistoryIndex",
            "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": {
                    "cCallHistoryIndex": {
                      "type": "string",
                      "description": "cCallHistoryIndex",
                      "x-yang-type": "leafref"
                    },
                    "cvCallHistoryConnectionId": {
                      "type": "string",
                      "description": "The global connection identifier for the\n            telephony leg, which was assigned to the call.",
                      "x-yang-type": "cisco-voice:CvcGUid"
                    },
                    "cvCallHistoryTxDuration": {
                      "type": "string",
                      "description": "Duration of Transmit path open from this peer to the\n            voice gateway for the call leg. This counter object will\n            lock at the maximum value which is approximately two\n            days.",
                      "x-yang-type": "dial-control:AbsoluteCounter32"
                    },
                    "cvCallHistoryVoiceTxDuration": {
                      "type": "string",
                      "description": "Duration for this call leg. The Voice Utilization Rate\n            can be obtained by dividing this by\n            cvCallHistoryTXDuration object. This counter object will\n            lock at the maximum value which is approximately two\n            days.",
                      "x-yang-type": "dial-control:AbsoluteCounter32"
                    },
                    "cvCallHistoryFaxTxDuration": {
                      "type": "string",
                      "description": "Duration of fax transmitted from this peer to voice\n            gateway for this call leg. The FAX Utilization Rate can be\n            obtained by dividing this by cvCallHistoryTXDuration\n            object. This counter object will lock at the maximum\n            value which is approximately two days.",
                      "x-yang-type": "dial-control:AbsoluteCounter32"
                    },
                    "cvCallHistoryCoderTypeRate": {
                      "type": "string",
                      "description": "The negotiated coder rate. It specifies the transmit rate\n            of voice/fax compression to its associated call leg for\n            the call.",
                      "x-yang-type": "cisco-voice:CvcCoderTypeRate"
                    },
                    "cvCallHistoryNoiseLevel": {
                      "type": "integer",
                      "description": "The object contains the average noise level for the call\n            leg.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "cvCallHistoryACOMLevel": {
                      "type": "integer",
                      "description": "The object contains the average ACOM level for the call\n            leg. The value -1 indicates the level can not be\n            determined or level detection is disabled.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "cvCallHistorySessionTarget": {
                      "type": "string",
                      "description": "The object specifies the session target of the peer that\n            is used for the call leg via telephony interface.",
                      "x-yang-type": "snmpv2-tc:DisplayString"
                    },
                    "cvCallHistoryImgPageCount": {
                      "type": "string",
                      "description": "The number of FAX related image pages are received or\n            transmitted via the peer for the call leg.",
                      "x-yang-type": "dial-control:AbsoluteCounter32"
                    },
                    "cvCallHistoryCallingName": {
                      "type": "string",
                      "description": "The calling party name of the call. If the name is\n            not available, then it will have a length of zero.",
                      "x-yang-type": "snmp-framework:SnmpAdminString"
                    },
                    "cvCallHistoryCallerIDBlock": {
                      "type": "boolean",
                      "description": "The object indicates whether or not the caller ID feature\n            is blocked for this call."
                    },
                    "cvCallHistoryAccountCode": {
                      "type": "string",
                      "description": "The object indicates the account code input to the call.\n            It could be used by down stream billing server.\n            The value of empty string indicates no account code input.",
                      "x-yang-type": "snmp-framework:SnmpAdminString"
                    },
                    "cvCallHistoryCallId": {
                      "type": "integer",
                      "description": "This object represents the call identifier for the\n            telephony leg, which was assigned to the call.",
                      "minimum": 0,
                      "maximum": 4294967295
                    }
                  }
                },
                "example": {
                  "CISCO-VOICE-DIAL-CONTROL-MIB:cvCallHistoryEntry": {
                    "cCallHistoryIndex": "example-string",
                    "cvCallHistoryConnectionId": "example-string",
                    "cvCallHistoryTxDuration": "example-string",
                    "cvCallHistoryVoiceTxDuration": "example-string",
                    "cvCallHistoryFaxTxDuration": "example-string",
                    "cvCallHistoryCoderTypeRate": "ethernetCsmacd(6)",
                    "cvCallHistoryNoiseLevel": -2147483648,
                    "cvCallHistoryACOMLevel": -2147483648,
                    "cvCallHistorySessionTarget": "example-string",
                    "cvCallHistoryImgPageCount": "example-string",
                    "cvCallHistoryCallingName": "interface-1",
                    "cvCallHistoryCallerIDBlock": true,
                    "cvCallHistoryAccountCode": "example-string",
                    "cvCallHistoryCallId": 0
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cvCallHistoryEntry-2"
      },
      "x-yang-path": "/cvCallHistoryTable/cvCallHistoryEntry={cCallHistoryIndex}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "cCallHistoryIndex"
      ]
    },
    "/data/CISCO-VOICE-DIAL-CONTROL-MIB:cvVoIPCallHistoryTable": {
      "get": {
        "summary": "Get cvVoIPCallHistoryTable data",
        "description": "Retrieve cvVoIPCallHistoryTable operational data from MIB",
        "tags": [
          "CISCO-VOICE-DIAL-CONTROL-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "description": "This table is the VoIP extension to the call history table\n        of IETF Dial Control MIB. It contains VoIP call leg\n        information about specific VoIP call destination and the\n        selected QoS for the call leg.",
                  "properties": {
                    "cvVoIPCallHistoryEntry": {
                      "type": "array",
                      "description": "cvVoIPCallHistoryEntry",
                      "items": {
                        "type": "object",
                        "properties": {
                          "cCallHistoryIndex": {
                            "type": "string",
                            "description": "cCallHistoryIndex",
                            "x-yang-type": "leafref"
                          },
                          "cvVoIPCallHistoryConnectionId": {
                            "type": "string",
                            "description": "The global connection identifier for the\n            VoIP leg, which was assigned to the call.",
                            "x-yang-type": "cisco-voice:CvcGUid"
                          },
                          "cvVoIPCallHistoryRemoteIPAddress": {
                            "type": "string",
                            "description": "Remote system IP address for the call.",
                            "format": "inet:ipv4-address"
                          },
                          "cvVoIPCallHistoryRemoteUDPPort": {
                            "type": "integer",
                            "description": "Remote system UDP listener port to which to transmit voice\n            packets for the call.",
                            "minimum": -2147483648,
                            "maximum": 2147483647
                          },
                          "cvVoIPCallHistoryRoundTripDelay": {
                            "type": "integer",
                            "description": "The voice packet round trip delay between local and\n            the remote system on the IP backbone during the call.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "cvVoIPCallHistorySelectedQoS": {
                            "type": "string",
                            "description": "The selected RSVP QoS for the call.",
                            "x-yang-type": "int-serv:QosService"
                          },
                          "cvVoIPCallHistorySessionProtocol": {
                            "type": "string",
                            "description": "The object specifies the session protocol to be used\n            for Internet call between local and remote router via\n            IP backbone.",
                            "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvSessionProtocol"
                          },
                          "cvVoIPCallHistorySessionTarget": {
                            "type": "string",
                            "description": "The object specifies the session target of the peer that\n            is used for the Voice over IP call.",
                            "x-yang-type": "snmpv2-tc:DisplayString"
                          },
                          "cvVoIPCallHistoryOnTimeRvPlayout": {
                            "type": "string",
                            "description": "Duration of voice playout from data received on time for\n            this call. This plus the durations for the GapFills in the\n            following entries gives the Total Voice Playout Duration\n            for Active Voice.\n            This does not include duration for which no data was sent by the\n            Transmit end as voice signal, e.g., silence suppression\n            and fax signal. The On Time Playout Rate can be computed\n            by dividing this entry by the Total Voice Playout Duration.\n            This counter object will lock at the maximum value which\n            is approximately two days.",
                            "x-yang-type": "dial-control:AbsoluteCounter32"
                          },
                          "cvVoIPCallHistoryGapFillWithSilence": {
                            "type": "string",
                            "description": "Duration of voice signal replaced with signal played out\n            during silence due to voice data not received on time\n            (or lost) from voice gateway this call. This counter\n            object will lock at the maximum value which is\n            approximately two days.",
                            "x-yang-type": "dial-control:AbsoluteCounter32"
                          },
                          "cvVoIPCallHistoryGapFillWithPrediction": {
                            "type": "string",
                            "description": "Duration of voice signal played out with signal synthesized\n            from parameters or samples of data preceding in time due to\n            voice data not received on time (or lost) from voice gateway\n            for this call. An example of such playout is frame-erasure\n            or  frame-concealment strategies in G.729 and G.723.1\n            compression algorithms. This counter object will lock at\n            the maximum value which is approximately two days.",
                            "x-yang-type": "dial-control:AbsoluteCounter32"
                          },
                          "cvVoIPCallHistoryGapFillWithInterpolation": {
                            "type": "string",
                            "description": "Duration of voice signal played out with signal synthesized\n            from parameters or samples of data preceding and following\n            in time due to voice data not received on time (or lost)\n            from voice gateway for this call. This counter object\n            will lock at the maximum value which is approximately two\n            days.",
                            "x-yang-type": "dial-control:AbsoluteCounter32"
                          },
                          "cvVoIPCallHistoryGapFillWithRedundancy": {
                            "type": "string",
                            "description": "Duration of voice signal played out with signal synthesized\n            from redundancy parameters available due to voice data not\n            received on time (or lost) from voice gateway for this call.\n            This counter object will lock at the maximum value which\n            is approximately two days.",
                            "x-yang-type": "dial-control:AbsoluteCounter32"
                          },
                          "cvVoIPCallHistoryHiWaterPlayoutDelay": {
                            "type": "string",
                            "description": "The high water mark Voice Playout FIFO Delay during\n            the voice call. This counter object will lock at the\n            maximum value which is approximately two days.",
                            "x-yang-type": "dial-control:AbsoluteCounter32"
                          },
                          "cvVoIPCallHistoryLoWaterPlayoutDelay": {
                            "type": "integer",
                            "description": "The low water mark Voice Playout FIFO Delay during\n            the voice call.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "cvVoIPCallHistoryReceiveDelay": {
                            "type": "integer",
                            "description": "The average Playout FIFO Delay plus the decoder delay\n            during the voice call.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "cvVoIPCallHistoryVADEnable": {
                            "type": "boolean",
                            "description": "The object indicates whether or not the VAD (Voice Activity\n            Detection) was enabled for the voice call."
                          },
                          "cvVoIPCallHistoryCoderTypeRate": {
                            "type": "string",
                            "description": "The negotiated coder rate. It specifies the transmit rate of\n            voice/fax compression to its associated call leg for the\n            call. This rate is different from the configuration rate\n            because of rate negotiation during the call.",
                            "x-yang-type": "cisco-voice:CvcCoderTypeRate"
                          },
                          "cvVoIPCallHistoryIcpif": {
                            "type": "integer",
                            "description": "The Calculated Planning Impairment Factor (Icpif) of the\n            call  that is associated to this call leg.\n            The value in this object is computed by the following\n            equation.\n            Icpif of the call =\n            Itotal (total impairment value) of the call - A\n            (Expectation Factor) in the cvVoIPPeerCfgExpectFactor of\n            the call leg associated peer.\n            A value of -1 implies that Icpif was not calculated and is\n            meaningless for this call.",
                            "minimum": -2147483648,
                            "maximum": 2147483647
                          },
                          "cvVoIPCallHistoryLostPackets": {
                            "type": "string",
                            "description": "The number of lost voice packets during the call.",
                            "x-yang-type": "dial-control:AbsoluteCounter32"
                          },
                          "cvVoIPCallHistoryEarlyPackets": {
                            "type": "string",
                            "description": "The number of received voice packets that are\n            arrived too early to store in jitter buffer\n            during the call.",
                            "x-yang-type": "dial-control:AbsoluteCounter32"
                          },
                          "cvVoIPCallHistoryLatePackets": {
                            "type": "string",
                            "description": "The number of received voice packets that are\n            arrived too late to playout with CODEC (Coder/Decoder)\n            during the call.",
                            "x-yang-type": "dial-control:AbsoluteCounter32"
                          },
                          "cvVoIPCallHistoryUsername": {
                            "type": "string",
                            "description": "The textual identifier of the calling party (user) of the\n            call. If the username is not available, then the value of\n            this object will have a length of zero.",
                            "x-yang-type": "snmp-framework:SnmpAdminString"
                          },
                          "cvVoIPCallHistoryProtocolCallId": {
                            "type": "string",
                            "description": "The protocol-specific call identifier for the VoIP call.",
                            "format": "binary"
                          },
                          "cvVoIPCallHistoryRemSigIPAddrT": {
                            "type": "string",
                            "description": "This object specifies the type of address contained in\n            the associated instance of cvVoIPCallHistoryRemSigIPAddr.",
                            "x-yang-type": "inet-address:InetAddressType"
                          },
                          "cvVoIPCallHistoryRemSigIPAddr": {
                            "type": "string",
                            "description": "Remote signalling IP address for the VoIP call.",
                            "x-yang-type": "inet-address:InetAddress"
                          },
                          "cvVoIPCallHistoryRemSigPort": {
                            "type": "integer",
                            "description": "Remote signalling listener port to which to transmit\n            voice packets.",
                            "minimum": -2147483648,
                            "maximum": 2147483647
                          },
                          "cvVoIPCallHistoryRemMediaIPAddrT": {
                            "type": "string",
                            "description": "This object specifies the type of address contained in\n            the associated instance of\n            cvVoIPCallHistoryRemMediaIPAddr.",
                            "x-yang-type": "inet-address:InetAddressType"
                          },
                          "cvVoIPCallHistoryRemMediaIPAddr": {
                            "type": "string",
                            "description": "Remote media end point IP address for the VoIP call.",
                            "x-yang-type": "inet-address:InetAddress"
                          },
                          "cvVoIPCallHistoryRemMediaPort": {
                            "type": "integer",
                            "description": "Remote media end point listener port to which to transmit\n            voice packets.",
                            "minimum": -2147483648,
                            "maximum": 2147483647
                          },
                          "cvVoIPCallHistorySRTPEnable": {
                            "type": "boolean",
                            "description": "The object indicates whether or not the SRTP (Secured RTP)\n            was enabled for the voice call."
                          },
                          "cvVoIPCallHistoryFallbackIcpif": {
                            "type": "integer",
                            "description": "The Calculated Planning Impairment Factor (Icpif) of the\n            call  that is associated to this call leg.\n            The value in this object is computed by the following\n            equation.\n            Icpif of the fallback probe =\n            Itotal (total impairment value)  - configured fallback\n            (Expectation Factor).\n            A value of 0 implies that Icpif was not calculated and is\n            meaningless for this attempt.",
                            "minimum": -2147483648,
                            "maximum": 2147483647
                          },
                          "cvVoIPCallHistoryFallbackLoss": {
                            "type": "string",
                            "description": "FallbackLoss is the percentage of loss packets based on\n            the total packets sent.",
                            "x-yang-type": "dial-control:AbsoluteCounter32"
                          },
                          "cvVoIPCallHistoryFallbackDelay": {
                            "type": "integer",
                            "description": "The FallbackDelay is calculated as follows -\n            Take the sum of the round trips for all the probes, \n            divide by the number of probes, \n            and divide by two to get the one-way delay.  \n            Then add in jitter_in or jiter_out,\n            which ever is higher.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "cvVoIPCallHistoryOctetAligned": {
                            "type": "boolean",
                            "description": "If the object has a value true(1) octet align operation\n            is used, and if the value is false(2), bandwidth efficient\n            operation is used. This object is not instantiated when\n            the object cvVoIPCallHistoryCoderTypeRate is not equal to\n            gsmAmrNb enum."
                          },
                          "cvVoIPCallHistoryBitRates": {
                            "type": "string",
                            "description": "This object indicates modes of Bit rates.\n            This object is not instantiated when the object\n            cvVoIPCallHistoryCoderTypeRate is not equal to\n            gsmAmrNb enum.",
                            "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvAmrNbBitRateMode"
                          },
                          "cvVoIPCallHistoryModeChgPeriod": {
                            "type": "integer",
                            "description": "The object indicates the interval (N frame-blocks) at which\n            codec mode changes are allowed. This object is not\n            instantiated when the object cvVoIPCallHistoryCoderTypeRate\n            is not equal to gsmAmrNb enum.",
                            "minimum": -2147483648,
                            "maximum": 2147483647
                          },
                          "cvVoIPCallHistoryModeChgNeighbor": {
                            "type": "boolean",
                            "description": "If the object has a value of true(1), mode changes will be\n            made to only neighboring modes set to\n            cvVoIPCallHistoryBitRates object. If the value is false(2),\n            mode changes will be allowed to any modes set to\n            cvVoIPCallHistoryBitRates object. This object is not\n            instantiated when the object cvVoIPCallHistoryCoderTypeRate\n            is not equal to gsmAmrNb enum."
                          },
                          "cvVoIPCallHistoryMaxPtime": {
                            "type": "integer",
                            "description": "The object indicates the maximum amount of media that\n            can be encapsulated in a payload. Supported value is\n            20 msec. This object is not instantiated when the\n            object cvVoIPCallHistoryCoderTypeRate is not equal to\n            gsmAmrNb enum.",
                            "minimum": -2147483648,
                            "maximum": 2147483647
                          },
                          "cvVoIPCallHistoryCRC": {
                            "type": "boolean",
                            "description": "If the object has a value of true(1), frame CRC will be\n            included in the payload and if the value is false(2),\n            frame CRC will not be included in the payload.\n            This object is applicable only when RTP frame type\n            is octet aligned. This object is not instantiated when\n            the object cvVoIPCallHistoryCoderTypeRate is not equal to\n            gsmAmrNb enum."
                          },
                          "cvVoIPCallHistoryRobustSorting": {
                            "type": "boolean",
                            "description": "If the object has a value of true(1), payload employs\n            robust sorting and if the value is false(2), payload\n            does not employ robust sorting. This object is applicable\n            only when RTP frame type is octet aligned. This object\n            is not instantiated when the object\n            cvVoIPCallHistoryCoderTypeRate is not equal to gsmAmrNb\n            enum."
                          },
                          "cvVoIPCallHistoryEncap": {
                            "type": "string",
                            "description": "The object indicates the RTP encapsulation type.\n            Supported RTP encapsulation type is RFC3267.\n            This object is not instantiated when the object\n            cvVoIPCallHistoryCoderTypeRate is not equal to\n            gsmAmrNb enum.",
                            "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvAmrNbRtpEncap"
                          },
                          "cvVoIPCallHistoryInterleaving": {
                            "type": "integer",
                            "description": "The object indicates the maximum number of frame-blocks\n            allowed in an interleaving group. It indicates that\n            frame-block level interleaving will be used for that\n            session. If this object is not set, interleaving\n            is not used. This object is applicable only when\n            RTP frame type is octet aligned. This object is not\n            instantiated when the object cvVoIPCallHistoryCoderTypeRate\n            is not equal to gsmAmrNb enum.",
                            "minimum": -2147483648,
                            "maximum": 2147483647
                          },
                          "cvVoIPCallHistoryPtime": {
                            "type": "integer",
                            "description": "The object indicates the length of the time in milliseconds\n            represented by the media of the packet. Supported value is\n            20 milliseconds. This object is not instantiated when the\n            object cvVoIPCallHistoryCoderTypeRate is not equal to\n            gsmAmrNb enum.",
                            "minimum": -2147483648,
                            "maximum": 2147483647
                          },
                          "cvVoIPCallHistoryChannels": {
                            "type": "integer",
                            "description": "The object indicates the number of audio channels.\n            Supported value is 1. This object is not instantiated\n            when the object cvVoIPCallHistoryCoderTypeRate is not equal\n            to gsmAmrNb enum.",
                            "minimum": -2147483648,
                            "maximum": 2147483647
                          },
                          "cvVoIPCallHistoryCoderMode": {
                            "type": "string",
                            "description": "The object indicates the iLBC mode.\n            The value of this object is valid only if \n            cvVoIPCallHistoryCoderTypeRate is equal to \n            'iLBC'.",
                            "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvIlbcFrameMode"
                          },
                          "cvVoIPCallHistoryCallId": {
                            "type": "integer",
                            "description": "This object represents the call identifier for the\n            VoIP leg, which was assigned to the call.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "cvVoIPCallHistoryCallReferenceId": {
                            "type": "string",
                            "description": "The call reference ID associates the video call entry and voice\n            call entry of the same endpoint.  An audio-only call may or may\n            not have a valid call reference ID (i.e. value greater than\n            zero), but in both cases, there will not be a video call entry\n            associated with it. \n            \n            For a video call, the video-specific information  is stored in a\n            call entry in cVideoSessionActive of CISCO-VIDEO-SESSION-MIB, in\n            which the call reference ID is also identified.",
                            "x-yang-type": "cisco-voice:CvcCallReferenceIdOrZero"
                          },
                          "cvVoIPCallHistorySessionId": {
                            "type": "integer",
                            "description": "This object indicates the session ID assigned by the call\n            manager to identify call legs that belong to the same call\n            session.  This session ID (history) represents a completed call\n            session, whereas the active session ID\n            (cvVoIPCallActiveSessionId) represents an ongoing session.",
                            "minimum": 0,
                            "maximum": 4294967295
                          }
                        }
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-VOICE-DIAL-CONTROL-MIB:cvVoIPCallHistoryTable": {
                    "cvVoIPCallHistoryEntry": [
                      {
                        "cCallHistoryIndex": "1",
                        "cvVoIPCallHistoryConnectionId": "192.168.1.1",
                        "cvVoIPCallHistoryRemoteIPAddress": "192.168.1.1",
                        "cvVoIPCallHistoryRemoteUDPPort": -2147483648,
                        "cvVoIPCallHistoryRoundTripDelay": 0,
                        "cvVoIPCallHistorySelectedQoS": "192.168.1.1",
                        "cvVoIPCallHistorySessionProtocol": "192.168.1.1",
                        "cvVoIPCallHistorySessionTarget": "192.168.1.1",
                        "cvVoIPCallHistoryOnTimeRvPlayout": "192.168.1.1",
                        "cvVoIPCallHistoryGapFillWithSilence": "192.168.1.1",
                        "cvVoIPCallHistoryGapFillWithPrediction": "192.168.1.1",
                        "cvVoIPCallHistoryGapFillWithInterpolation": "192.168.1.1",
                        "cvVoIPCallHistoryGapFillWithRedundancy": "192.168.1.1",
                        "cvVoIPCallHistoryHiWaterPlayoutDelay": "192.168.1.1",
                        "cvVoIPCallHistoryLoWaterPlayoutDelay": 0,
                        "cvVoIPCallHistoryReceiveDelay": 0,
                        "cvVoIPCallHistoryVADEnable": true,
                        "cvVoIPCallHistoryCoderTypeRate": "192.168.1.1",
                        "cvVoIPCallHistoryIcpif": -2147483648,
                        "cvVoIPCallHistoryLostPackets": "192.168.1.1",
                        "cvVoIPCallHistoryEarlyPackets": "192.168.1.1",
                        "cvVoIPCallHistoryLatePackets": "192.168.1.1",
                        "cvVoIPCallHistoryUsername": "192.168.1.1",
                        "cvVoIPCallHistoryProtocolCallId": "192.168.1.1",
                        "cvVoIPCallHistoryRemSigIPAddrT": "192.168.1.1",
                        "cvVoIPCallHistoryRemSigIPAddr": "192.168.1.1",
                        "cvVoIPCallHistoryRemSigPort": -2147483648,
                        "cvVoIPCallHistoryRemMediaIPAddrT": "192.168.1.1",
                        "cvVoIPCallHistoryRemMediaIPAddr": "192.168.1.1",
                        "cvVoIPCallHistoryRemMediaPort": -2147483648,
                        "cvVoIPCallHistorySRTPEnable": true,
                        "cvVoIPCallHistoryFallbackIcpif": -2147483648,
                        "cvVoIPCallHistoryFallbackLoss": "192.168.1.1",
                        "cvVoIPCallHistoryFallbackDelay": 0,
                        "cvVoIPCallHistoryOctetAligned": true,
                        "cvVoIPCallHistoryBitRates": "192.168.1.1",
                        "cvVoIPCallHistoryModeChgPeriod": -2147483648,
                        "cvVoIPCallHistoryModeChgNeighbor": true,
                        "cvVoIPCallHistoryMaxPtime": -2147483648,
                        "cvVoIPCallHistoryCRC": true,
                        "cvVoIPCallHistoryRobustSorting": true,
                        "cvVoIPCallHistoryEncap": "192.168.1.1",
                        "cvVoIPCallHistoryInterleaving": -2147483648,
                        "cvVoIPCallHistoryPtime": -2147483648,
                        "cvVoIPCallHistoryChannels": -2147483648,
                        "cvVoIPCallHistoryCoderMode": "192.168.1.1",
                        "cvVoIPCallHistoryCallId": 0,
                        "cvVoIPCallHistoryCallReferenceId": "192.168.1.1",
                        "cvVoIPCallHistorySessionId": 0
                      },
                      {
                        "cCallHistoryIndex": "2",
                        "cvVoIPCallHistoryConnectionId": "192.168.1.1",
                        "cvVoIPCallHistoryRemoteIPAddress": "192.168.1.1",
                        "cvVoIPCallHistoryRemoteUDPPort": -2147483648,
                        "cvVoIPCallHistoryRoundTripDelay": 0,
                        "cvVoIPCallHistorySelectedQoS": "192.168.1.1",
                        "cvVoIPCallHistorySessionProtocol": "192.168.1.1",
                        "cvVoIPCallHistorySessionTarget": "192.168.1.1",
                        "cvVoIPCallHistoryOnTimeRvPlayout": "192.168.1.1",
                        "cvVoIPCallHistoryGapFillWithSilence": "192.168.1.1",
                        "cvVoIPCallHistoryGapFillWithPrediction": "192.168.1.1",
                        "cvVoIPCallHistoryGapFillWithInterpolation": "192.168.1.1",
                        "cvVoIPCallHistoryGapFillWithRedundancy": "192.168.1.1",
                        "cvVoIPCallHistoryHiWaterPlayoutDelay": "192.168.1.1",
                        "cvVoIPCallHistoryLoWaterPlayoutDelay": 0,
                        "cvVoIPCallHistoryReceiveDelay": 0,
                        "cvVoIPCallHistoryVADEnable": true,
                        "cvVoIPCallHistoryCoderTypeRate": "192.168.1.1",
                        "cvVoIPCallHistoryIcpif": -2147483648,
                        "cvVoIPCallHistoryLostPackets": "192.168.1.1",
                        "cvVoIPCallHistoryEarlyPackets": "192.168.1.1",
                        "cvVoIPCallHistoryLatePackets": "192.168.1.1",
                        "cvVoIPCallHistoryUsername": "192.168.1.1",
                        "cvVoIPCallHistoryProtocolCallId": "192.168.1.1",
                        "cvVoIPCallHistoryRemSigIPAddrT": "192.168.1.1",
                        "cvVoIPCallHistoryRemSigIPAddr": "192.168.1.1",
                        "cvVoIPCallHistoryRemSigPort": -2147483648,
                        "cvVoIPCallHistoryRemMediaIPAddrT": "192.168.1.1",
                        "cvVoIPCallHistoryRemMediaIPAddr": "192.168.1.1",
                        "cvVoIPCallHistoryRemMediaPort": -2147483648,
                        "cvVoIPCallHistorySRTPEnable": true,
                        "cvVoIPCallHistoryFallbackIcpif": -2147483648,
                        "cvVoIPCallHistoryFallbackLoss": "192.168.1.1",
                        "cvVoIPCallHistoryFallbackDelay": 0,
                        "cvVoIPCallHistoryOctetAligned": true,
                        "cvVoIPCallHistoryBitRates": "192.168.1.1",
                        "cvVoIPCallHistoryModeChgPeriod": -2147483648,
                        "cvVoIPCallHistoryModeChgNeighbor": true,
                        "cvVoIPCallHistoryMaxPtime": -2147483648,
                        "cvVoIPCallHistoryCRC": true,
                        "cvVoIPCallHistoryRobustSorting": true,
                        "cvVoIPCallHistoryEncap": "192.168.1.1",
                        "cvVoIPCallHistoryInterleaving": -2147483648,
                        "cvVoIPCallHistoryPtime": -2147483648,
                        "cvVoIPCallHistoryChannels": -2147483648,
                        "cvVoIPCallHistoryCoderMode": "192.168.1.1",
                        "cvVoIPCallHistoryCallId": 0,
                        "cvVoIPCallHistoryCallReferenceId": "192.168.1.1",
                        "cvVoIPCallHistorySessionId": 0
                      },
                      {
                        "cCallHistoryIndex": "3",
                        "cvVoIPCallHistoryConnectionId": "192.168.1.1",
                        "cvVoIPCallHistoryRemoteIPAddress": "192.168.1.1",
                        "cvVoIPCallHistoryRemoteUDPPort": -2147483648,
                        "cvVoIPCallHistoryRoundTripDelay": 0,
                        "cvVoIPCallHistorySelectedQoS": "192.168.1.1",
                        "cvVoIPCallHistorySessionProtocol": "192.168.1.1",
                        "cvVoIPCallHistorySessionTarget": "192.168.1.1",
                        "cvVoIPCallHistoryOnTimeRvPlayout": "192.168.1.1",
                        "cvVoIPCallHistoryGapFillWithSilence": "192.168.1.1",
                        "cvVoIPCallHistoryGapFillWithPrediction": "192.168.1.1",
                        "cvVoIPCallHistoryGapFillWithInterpolation": "192.168.1.1",
                        "cvVoIPCallHistoryGapFillWithRedundancy": "192.168.1.1",
                        "cvVoIPCallHistoryHiWaterPlayoutDelay": "192.168.1.1",
                        "cvVoIPCallHistoryLoWaterPlayoutDelay": 0,
                        "cvVoIPCallHistoryReceiveDelay": 0,
                        "cvVoIPCallHistoryVADEnable": true,
                        "cvVoIPCallHistoryCoderTypeRate": "192.168.1.1",
                        "cvVoIPCallHistoryIcpif": -2147483648,
                        "cvVoIPCallHistoryLostPackets": "192.168.1.1",
                        "cvVoIPCallHistoryEarlyPackets": "192.168.1.1",
                        "cvVoIPCallHistoryLatePackets": "192.168.1.1",
                        "cvVoIPCallHistoryUsername": "192.168.1.1",
                        "cvVoIPCallHistoryProtocolCallId": "192.168.1.1",
                        "cvVoIPCallHistoryRemSigIPAddrT": "192.168.1.1",
                        "cvVoIPCallHistoryRemSigIPAddr": "192.168.1.1",
                        "cvVoIPCallHistoryRemSigPort": -2147483648,
                        "cvVoIPCallHistoryRemMediaIPAddrT": "192.168.1.1",
                        "cvVoIPCallHistoryRemMediaIPAddr": "192.168.1.1",
                        "cvVoIPCallHistoryRemMediaPort": -2147483648,
                        "cvVoIPCallHistorySRTPEnable": true,
                        "cvVoIPCallHistoryFallbackIcpif": -2147483648,
                        "cvVoIPCallHistoryFallbackLoss": "192.168.1.1",
                        "cvVoIPCallHistoryFallbackDelay": 0,
                        "cvVoIPCallHistoryOctetAligned": true,
                        "cvVoIPCallHistoryBitRates": "192.168.1.1",
                        "cvVoIPCallHistoryModeChgPeriod": -2147483648,
                        "cvVoIPCallHistoryModeChgNeighbor": true,
                        "cvVoIPCallHistoryMaxPtime": -2147483648,
                        "cvVoIPCallHistoryCRC": true,
                        "cvVoIPCallHistoryRobustSorting": true,
                        "cvVoIPCallHistoryEncap": "192.168.1.1",
                        "cvVoIPCallHistoryInterleaving": -2147483648,
                        "cvVoIPCallHistoryPtime": -2147483648,
                        "cvVoIPCallHistoryChannels": -2147483648,
                        "cvVoIPCallHistoryCoderMode": "192.168.1.1",
                        "cvVoIPCallHistoryCallId": 0,
                        "cvVoIPCallHistoryCallReferenceId": "192.168.1.1",
                        "cvVoIPCallHistorySessionId": 0
                      }
                    ]
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cvVoIPCallHistoryTable",
        "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": "/cvVoIPCallHistoryTable",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-VOICE-DIAL-CONTROL-MIB:cvVoIPCallHistoryTable/cvVoIPCallHistoryEntry": {
      "get": {
        "summary": "Get cvVoIPCallHistoryEntry list",
        "description": "Retrieve list of cvVoIPCallHistoryEntry entries from MIB",
        "tags": [
          "CISCO-VOICE-DIAL-CONTROL-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "cvVoIPCallHistoryEntry",
                  "items": {
                    "type": "object",
                    "properties": {
                      "cCallHistoryIndex": {
                        "type": "string",
                        "description": "cCallHistoryIndex",
                        "x-yang-type": "leafref"
                      },
                      "cvVoIPCallHistoryConnectionId": {
                        "type": "string",
                        "description": "The global connection identifier for the\n            VoIP leg, which was assigned to the call.",
                        "x-yang-type": "cisco-voice:CvcGUid"
                      },
                      "cvVoIPCallHistoryRemoteIPAddress": {
                        "type": "string",
                        "description": "Remote system IP address for the call.",
                        "format": "inet:ipv4-address"
                      },
                      "cvVoIPCallHistoryRemoteUDPPort": {
                        "type": "integer",
                        "description": "Remote system UDP listener port to which to transmit voice\n            packets for the call.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "cvVoIPCallHistoryRoundTripDelay": {
                        "type": "integer",
                        "description": "The voice packet round trip delay between local and\n            the remote system on the IP backbone during the call.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cvVoIPCallHistorySelectedQoS": {
                        "type": "string",
                        "description": "The selected RSVP QoS for the call.",
                        "x-yang-type": "int-serv:QosService"
                      },
                      "cvVoIPCallHistorySessionProtocol": {
                        "type": "string",
                        "description": "The object specifies the session protocol to be used\n            for Internet call between local and remote router via\n            IP backbone.",
                        "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvSessionProtocol"
                      },
                      "cvVoIPCallHistorySessionTarget": {
                        "type": "string",
                        "description": "The object specifies the session target of the peer that\n            is used for the Voice over IP call.",
                        "x-yang-type": "snmpv2-tc:DisplayString"
                      },
                      "cvVoIPCallHistoryOnTimeRvPlayout": {
                        "type": "string",
                        "description": "Duration of voice playout from data received on time for\n            this call. This plus the durations for the GapFills in the\n            following entries gives the Total Voice Playout Duration\n            for Active Voice.\n            This does not include duration for which no data was sent by the\n            Transmit end as voice signal, e.g., silence suppression\n            and fax signal. The On Time Playout Rate can be computed\n            by dividing this entry by the Total Voice Playout Duration.\n            This counter object will lock at the maximum value which\n            is approximately two days.",
                        "x-yang-type": "dial-control:AbsoluteCounter32"
                      },
                      "cvVoIPCallHistoryGapFillWithSilence": {
                        "type": "string",
                        "description": "Duration of voice signal replaced with signal played out\n            during silence due to voice data not received on time\n            (or lost) from voice gateway this call. This counter\n            object will lock at the maximum value which is\n            approximately two days.",
                        "x-yang-type": "dial-control:AbsoluteCounter32"
                      },
                      "cvVoIPCallHistoryGapFillWithPrediction": {
                        "type": "string",
                        "description": "Duration of voice signal played out with signal synthesized\n            from parameters or samples of data preceding in time due to\n            voice data not received on time (or lost) from voice gateway\n            for this call. An example of such playout is frame-erasure\n            or  frame-concealment strategies in G.729 and G.723.1\n            compression algorithms. This counter object will lock at\n            the maximum value which is approximately two days.",
                        "x-yang-type": "dial-control:AbsoluteCounter32"
                      },
                      "cvVoIPCallHistoryGapFillWithInterpolation": {
                        "type": "string",
                        "description": "Duration of voice signal played out with signal synthesized\n            from parameters or samples of data preceding and following\n            in time due to voice data not received on time (or lost)\n            from voice gateway for this call. This counter object\n            will lock at the maximum value which is approximately two\n            days.",
                        "x-yang-type": "dial-control:AbsoluteCounter32"
                      },
                      "cvVoIPCallHistoryGapFillWithRedundancy": {
                        "type": "string",
                        "description": "Duration of voice signal played out with signal synthesized\n            from redundancy parameters available due to voice data not\n            received on time (or lost) from voice gateway for this call.\n            This counter object will lock at the maximum value which\n            is approximately two days.",
                        "x-yang-type": "dial-control:AbsoluteCounter32"
                      },
                      "cvVoIPCallHistoryHiWaterPlayoutDelay": {
                        "type": "string",
                        "description": "The high water mark Voice Playout FIFO Delay during\n            the voice call. This counter object will lock at the\n            maximum value which is approximately two days.",
                        "x-yang-type": "dial-control:AbsoluteCounter32"
                      },
                      "cvVoIPCallHistoryLoWaterPlayoutDelay": {
                        "type": "integer",
                        "description": "The low water mark Voice Playout FIFO Delay during\n            the voice call.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cvVoIPCallHistoryReceiveDelay": {
                        "type": "integer",
                        "description": "The average Playout FIFO Delay plus the decoder delay\n            during the voice call.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cvVoIPCallHistoryVADEnable": {
                        "type": "boolean",
                        "description": "The object indicates whether or not the VAD (Voice Activity\n            Detection) was enabled for the voice call."
                      },
                      "cvVoIPCallHistoryCoderTypeRate": {
                        "type": "string",
                        "description": "The negotiated coder rate. It specifies the transmit rate of\n            voice/fax compression to its associated call leg for the\n            call. This rate is different from the configuration rate\n            because of rate negotiation during the call.",
                        "x-yang-type": "cisco-voice:CvcCoderTypeRate"
                      },
                      "cvVoIPCallHistoryIcpif": {
                        "type": "integer",
                        "description": "The Calculated Planning Impairment Factor (Icpif) of the\n            call  that is associated to this call leg.\n            The value in this object is computed by the following\n            equation.\n            Icpif of the call =\n            Itotal (total impairment value) of the call - A\n            (Expectation Factor) in the cvVoIPPeerCfgExpectFactor of\n            the call leg associated peer.\n            A value of -1 implies that Icpif was not calculated and is\n            meaningless for this call.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "cvVoIPCallHistoryLostPackets": {
                        "type": "string",
                        "description": "The number of lost voice packets during the call.",
                        "x-yang-type": "dial-control:AbsoluteCounter32"
                      },
                      "cvVoIPCallHistoryEarlyPackets": {
                        "type": "string",
                        "description": "The number of received voice packets that are\n            arrived too early to store in jitter buffer\n            during the call.",
                        "x-yang-type": "dial-control:AbsoluteCounter32"
                      },
                      "cvVoIPCallHistoryLatePackets": {
                        "type": "string",
                        "description": "The number of received voice packets that are\n            arrived too late to playout with CODEC (Coder/Decoder)\n            during the call.",
                        "x-yang-type": "dial-control:AbsoluteCounter32"
                      },
                      "cvVoIPCallHistoryUsername": {
                        "type": "string",
                        "description": "The textual identifier of the calling party (user) of the\n            call. If the username is not available, then the value of\n            this object will have a length of zero.",
                        "x-yang-type": "snmp-framework:SnmpAdminString"
                      },
                      "cvVoIPCallHistoryProtocolCallId": {
                        "type": "string",
                        "description": "The protocol-specific call identifier for the VoIP call.",
                        "format": "binary"
                      },
                      "cvVoIPCallHistoryRemSigIPAddrT": {
                        "type": "string",
                        "description": "This object specifies the type of address contained in\n            the associated instance of cvVoIPCallHistoryRemSigIPAddr.",
                        "x-yang-type": "inet-address:InetAddressType"
                      },
                      "cvVoIPCallHistoryRemSigIPAddr": {
                        "type": "string",
                        "description": "Remote signalling IP address for the VoIP call.",
                        "x-yang-type": "inet-address:InetAddress"
                      },
                      "cvVoIPCallHistoryRemSigPort": {
                        "type": "integer",
                        "description": "Remote signalling listener port to which to transmit\n            voice packets.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "cvVoIPCallHistoryRemMediaIPAddrT": {
                        "type": "string",
                        "description": "This object specifies the type of address contained in\n            the associated instance of\n            cvVoIPCallHistoryRemMediaIPAddr.",
                        "x-yang-type": "inet-address:InetAddressType"
                      },
                      "cvVoIPCallHistoryRemMediaIPAddr": {
                        "type": "string",
                        "description": "Remote media end point IP address for the VoIP call.",
                        "x-yang-type": "inet-address:InetAddress"
                      },
                      "cvVoIPCallHistoryRemMediaPort": {
                        "type": "integer",
                        "description": "Remote media end point listener port to which to transmit\n            voice packets.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "cvVoIPCallHistorySRTPEnable": {
                        "type": "boolean",
                        "description": "The object indicates whether or not the SRTP (Secured RTP)\n            was enabled for the voice call."
                      },
                      "cvVoIPCallHistoryFallbackIcpif": {
                        "type": "integer",
                        "description": "The Calculated Planning Impairment Factor (Icpif) of the\n            call  that is associated to this call leg.\n            The value in this object is computed by the following\n            equation.\n            Icpif of the fallback probe =\n            Itotal (total impairment value)  - configured fallback\n            (Expectation Factor).\n            A value of 0 implies that Icpif was not calculated and is\n            meaningless for this attempt.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "cvVoIPCallHistoryFallbackLoss": {
                        "type": "string",
                        "description": "FallbackLoss is the percentage of loss packets based on\n            the total packets sent.",
                        "x-yang-type": "dial-control:AbsoluteCounter32"
                      },
                      "cvVoIPCallHistoryFallbackDelay": {
                        "type": "integer",
                        "description": "The FallbackDelay is calculated as follows -\n            Take the sum of the round trips for all the probes, \n            divide by the number of probes, \n            and divide by two to get the one-way delay.  \n            Then add in jitter_in or jiter_out,\n            which ever is higher.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cvVoIPCallHistoryOctetAligned": {
                        "type": "boolean",
                        "description": "If the object has a value true(1) octet align operation\n            is used, and if the value is false(2), bandwidth efficient\n            operation is used. This object is not instantiated when\n            the object cvVoIPCallHistoryCoderTypeRate is not equal to\n            gsmAmrNb enum."
                      },
                      "cvVoIPCallHistoryBitRates": {
                        "type": "string",
                        "description": "This object indicates modes of Bit rates.\n            This object is not instantiated when the object\n            cvVoIPCallHistoryCoderTypeRate is not equal to\n            gsmAmrNb enum.",
                        "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvAmrNbBitRateMode"
                      },
                      "cvVoIPCallHistoryModeChgPeriod": {
                        "type": "integer",
                        "description": "The object indicates the interval (N frame-blocks) at which\n            codec mode changes are allowed. This object is not\n            instantiated when the object cvVoIPCallHistoryCoderTypeRate\n            is not equal to gsmAmrNb enum.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "cvVoIPCallHistoryModeChgNeighbor": {
                        "type": "boolean",
                        "description": "If the object has a value of true(1), mode changes will be\n            made to only neighboring modes set to\n            cvVoIPCallHistoryBitRates object. If the value is false(2),\n            mode changes will be allowed to any modes set to\n            cvVoIPCallHistoryBitRates object. This object is not\n            instantiated when the object cvVoIPCallHistoryCoderTypeRate\n            is not equal to gsmAmrNb enum."
                      },
                      "cvVoIPCallHistoryMaxPtime": {
                        "type": "integer",
                        "description": "The object indicates the maximum amount of media that\n            can be encapsulated in a payload. Supported value is\n            20 msec. This object is not instantiated when the\n            object cvVoIPCallHistoryCoderTypeRate is not equal to\n            gsmAmrNb enum.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "cvVoIPCallHistoryCRC": {
                        "type": "boolean",
                        "description": "If the object has a value of true(1), frame CRC will be\n            included in the payload and if the value is false(2),\n            frame CRC will not be included in the payload.\n            This object is applicable only when RTP frame type\n            is octet aligned. This object is not instantiated when\n            the object cvVoIPCallHistoryCoderTypeRate is not equal to\n            gsmAmrNb enum."
                      },
                      "cvVoIPCallHistoryRobustSorting": {
                        "type": "boolean",
                        "description": "If the object has a value of true(1), payload employs\n            robust sorting and if the value is false(2), payload\n            does not employ robust sorting. This object is applicable\n            only when RTP frame type is octet aligned. This object\n            is not instantiated when the object\n            cvVoIPCallHistoryCoderTypeRate is not equal to gsmAmrNb\n            enum."
                      },
                      "cvVoIPCallHistoryEncap": {
                        "type": "string",
                        "description": "The object indicates the RTP encapsulation type.\n            Supported RTP encapsulation type is RFC3267.\n            This object is not instantiated when the object\n            cvVoIPCallHistoryCoderTypeRate is not equal to\n            gsmAmrNb enum.",
                        "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvAmrNbRtpEncap"
                      },
                      "cvVoIPCallHistoryInterleaving": {
                        "type": "integer",
                        "description": "The object indicates the maximum number of frame-blocks\n            allowed in an interleaving group. It indicates that\n            frame-block level interleaving will be used for that\n            session. If this object is not set, interleaving\n            is not used. This object is applicable only when\n            RTP frame type is octet aligned. This object is not\n            instantiated when the object cvVoIPCallHistoryCoderTypeRate\n            is not equal to gsmAmrNb enum.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "cvVoIPCallHistoryPtime": {
                        "type": "integer",
                        "description": "The object indicates the length of the time in milliseconds\n            represented by the media of the packet. Supported value is\n            20 milliseconds. This object is not instantiated when the\n            object cvVoIPCallHistoryCoderTypeRate is not equal to\n            gsmAmrNb enum.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "cvVoIPCallHistoryChannels": {
                        "type": "integer",
                        "description": "The object indicates the number of audio channels.\n            Supported value is 1. This object is not instantiated\n            when the object cvVoIPCallHistoryCoderTypeRate is not equal\n            to gsmAmrNb enum.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "cvVoIPCallHistoryCoderMode": {
                        "type": "string",
                        "description": "The object indicates the iLBC mode.\n            The value of this object is valid only if \n            cvVoIPCallHistoryCoderTypeRate is equal to \n            'iLBC'.",
                        "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvIlbcFrameMode"
                      },
                      "cvVoIPCallHistoryCallId": {
                        "type": "integer",
                        "description": "This object represents the call identifier for the\n            VoIP leg, which was assigned to the call.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cvVoIPCallHistoryCallReferenceId": {
                        "type": "string",
                        "description": "The call reference ID associates the video call entry and voice\n            call entry of the same endpoint.  An audio-only call may or may\n            not have a valid call reference ID (i.e. value greater than\n            zero), but in both cases, there will not be a video call entry\n            associated with it. \n            \n            For a video call, the video-specific information  is stored in a\n            call entry in cVideoSessionActive of CISCO-VIDEO-SESSION-MIB, in\n            which the call reference ID is also identified.",
                        "x-yang-type": "cisco-voice:CvcCallReferenceIdOrZero"
                      },
                      "cvVoIPCallHistorySessionId": {
                        "type": "integer",
                        "description": "This object indicates the session ID assigned by the call\n            manager to identify call legs that belong to the same call\n            session.  This session ID (history) represents a completed call\n            session, whereas the active session ID\n            (cvVoIPCallActiveSessionId) represents an ongoing session.",
                        "minimum": 0,
                        "maximum": 4294967295
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-VOICE-DIAL-CONTROL-MIB:cvVoIPCallHistoryEntry": [
                    {
                      "cCallHistoryIndex": "example-string",
                      "cvVoIPCallHistoryConnectionId": "192.168.1.1",
                      "cvVoIPCallHistoryRemoteIPAddress": "192.168.1.1",
                      "cvVoIPCallHistoryRemoteUDPPort": -2147483648,
                      "cvVoIPCallHistoryRoundTripDelay": 0,
                      "cvVoIPCallHistorySelectedQoS": "192.168.1.1",
                      "cvVoIPCallHistorySessionProtocol": "192.168.1.1",
                      "cvVoIPCallHistorySessionTarget": "192.168.1.1",
                      "cvVoIPCallHistoryOnTimeRvPlayout": "192.168.1.1",
                      "cvVoIPCallHistoryGapFillWithSilence": "192.168.1.1",
                      "cvVoIPCallHistoryGapFillWithPrediction": "192.168.1.1",
                      "cvVoIPCallHistoryGapFillWithInterpolation": "192.168.1.1",
                      "cvVoIPCallHistoryGapFillWithRedundancy": "192.168.1.1",
                      "cvVoIPCallHistoryHiWaterPlayoutDelay": "192.168.1.1",
                      "cvVoIPCallHistoryLoWaterPlayoutDelay": 0,
                      "cvVoIPCallHistoryReceiveDelay": 0,
                      "cvVoIPCallHistoryVADEnable": true,
                      "cvVoIPCallHistoryCoderTypeRate": "192.168.1.1",
                      "cvVoIPCallHistoryIcpif": -2147483648,
                      "cvVoIPCallHistoryLostPackets": "192.168.1.1",
                      "cvVoIPCallHistoryEarlyPackets": "192.168.1.1",
                      "cvVoIPCallHistoryLatePackets": "192.168.1.1",
                      "cvVoIPCallHistoryUsername": "192.168.1.1",
                      "cvVoIPCallHistoryProtocolCallId": "192.168.1.1",
                      "cvVoIPCallHistoryRemSigIPAddrT": "192.168.1.1",
                      "cvVoIPCallHistoryRemSigIPAddr": "192.168.1.1",
                      "cvVoIPCallHistoryRemSigPort": -2147483648,
                      "cvVoIPCallHistoryRemMediaIPAddrT": "192.168.1.1",
                      "cvVoIPCallHistoryRemMediaIPAddr": "192.168.1.1",
                      "cvVoIPCallHistoryRemMediaPort": -2147483648,
                      "cvVoIPCallHistorySRTPEnable": true,
                      "cvVoIPCallHistoryFallbackIcpif": -2147483648,
                      "cvVoIPCallHistoryFallbackLoss": "192.168.1.1",
                      "cvVoIPCallHistoryFallbackDelay": 0,
                      "cvVoIPCallHistoryOctetAligned": true,
                      "cvVoIPCallHistoryBitRates": "192.168.1.1",
                      "cvVoIPCallHistoryModeChgPeriod": -2147483648,
                      "cvVoIPCallHistoryModeChgNeighbor": true,
                      "cvVoIPCallHistoryMaxPtime": -2147483648,
                      "cvVoIPCallHistoryCRC": true,
                      "cvVoIPCallHistoryRobustSorting": true,
                      "cvVoIPCallHistoryEncap": "192.168.1.1",
                      "cvVoIPCallHistoryInterleaving": -2147483648,
                      "cvVoIPCallHistoryPtime": -2147483648,
                      "cvVoIPCallHistoryChannels": -2147483648,
                      "cvVoIPCallHistoryCoderMode": "192.168.1.1",
                      "cvVoIPCallHistoryCallId": 0,
                      "cvVoIPCallHistoryCallReferenceId": "192.168.1.1",
                      "cvVoIPCallHistorySessionId": 0
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cvVoIPCallHistoryEntry",
        "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": "/cvVoIPCallHistoryTable/cvVoIPCallHistoryEntry",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-VOICE-DIAL-CONTROL-MIB:cvVoIPCallHistoryTable/cvVoIPCallHistoryEntry={cCallHistoryIndex}": {
      "get": {
        "summary": "Get cvVoIPCallHistoryEntry entry",
        "description": "Retrieve specific cvVoIPCallHistoryEntry entry by key from MIB",
        "tags": [
          "CISCO-VOICE-DIAL-CONTROL-MIB"
        ],
        "parameters": [
          {
            "name": "cCallHistoryIndex",
            "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": {
                    "cCallHistoryIndex": {
                      "type": "string",
                      "description": "cCallHistoryIndex",
                      "x-yang-type": "leafref"
                    },
                    "cvVoIPCallHistoryConnectionId": {
                      "type": "string",
                      "description": "The global connection identifier for the\n            VoIP leg, which was assigned to the call.",
                      "x-yang-type": "cisco-voice:CvcGUid"
                    },
                    "cvVoIPCallHistoryRemoteIPAddress": {
                      "type": "string",
                      "description": "Remote system IP address for the call.",
                      "format": "inet:ipv4-address"
                    },
                    "cvVoIPCallHistoryRemoteUDPPort": {
                      "type": "integer",
                      "description": "Remote system UDP listener port to which to transmit voice\n            packets for the call.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "cvVoIPCallHistoryRoundTripDelay": {
                      "type": "integer",
                      "description": "The voice packet round trip delay between local and\n            the remote system on the IP backbone during the call.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cvVoIPCallHistorySelectedQoS": {
                      "type": "string",
                      "description": "The selected RSVP QoS for the call.",
                      "x-yang-type": "int-serv:QosService"
                    },
                    "cvVoIPCallHistorySessionProtocol": {
                      "type": "string",
                      "description": "The object specifies the session protocol to be used\n            for Internet call between local and remote router via\n            IP backbone.",
                      "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvSessionProtocol"
                    },
                    "cvVoIPCallHistorySessionTarget": {
                      "type": "string",
                      "description": "The object specifies the session target of the peer that\n            is used for the Voice over IP call.",
                      "x-yang-type": "snmpv2-tc:DisplayString"
                    },
                    "cvVoIPCallHistoryOnTimeRvPlayout": {
                      "type": "string",
                      "description": "Duration of voice playout from data received on time for\n            this call. This plus the durations for the GapFills in the\n            following entries gives the Total Voice Playout Duration\n            for Active Voice.\n            This does not include duration for which no data was sent by the\n            Transmit end as voice signal, e.g., silence suppression\n            and fax signal. The On Time Playout Rate can be computed\n            by dividing this entry by the Total Voice Playout Duration.\n            This counter object will lock at the maximum value which\n            is approximately two days.",
                      "x-yang-type": "dial-control:AbsoluteCounter32"
                    },
                    "cvVoIPCallHistoryGapFillWithSilence": {
                      "type": "string",
                      "description": "Duration of voice signal replaced with signal played out\n            during silence due to voice data not received on time\n            (or lost) from voice gateway this call. This counter\n            object will lock at the maximum value which is\n            approximately two days.",
                      "x-yang-type": "dial-control:AbsoluteCounter32"
                    },
                    "cvVoIPCallHistoryGapFillWithPrediction": {
                      "type": "string",
                      "description": "Duration of voice signal played out with signal synthesized\n            from parameters or samples of data preceding in time due to\n            voice data not received on time (or lost) from voice gateway\n            for this call. An example of such playout is frame-erasure\n            or  frame-concealment strategies in G.729 and G.723.1\n            compression algorithms. This counter object will lock at\n            the maximum value which is approximately two days.",
                      "x-yang-type": "dial-control:AbsoluteCounter32"
                    },
                    "cvVoIPCallHistoryGapFillWithInterpolation": {
                      "type": "string",
                      "description": "Duration of voice signal played out with signal synthesized\n            from parameters or samples of data preceding and following\n            in time due to voice data not received on time (or lost)\n            from voice gateway for this call. This counter object\n            will lock at the maximum value which is approximately two\n            days.",
                      "x-yang-type": "dial-control:AbsoluteCounter32"
                    },
                    "cvVoIPCallHistoryGapFillWithRedundancy": {
                      "type": "string",
                      "description": "Duration of voice signal played out with signal synthesized\n            from redundancy parameters available due to voice data not\n            received on time (or lost) from voice gateway for this call.\n            This counter object will lock at the maximum value which\n            is approximately two days.",
                      "x-yang-type": "dial-control:AbsoluteCounter32"
                    },
                    "cvVoIPCallHistoryHiWaterPlayoutDelay": {
                      "type": "string",
                      "description": "The high water mark Voice Playout FIFO Delay during\n            the voice call. This counter object will lock at the\n            maximum value which is approximately two days.",
                      "x-yang-type": "dial-control:AbsoluteCounter32"
                    },
                    "cvVoIPCallHistoryLoWaterPlayoutDelay": {
                      "type": "integer",
                      "description": "The low water mark Voice Playout FIFO Delay during\n            the voice call.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cvVoIPCallHistoryReceiveDelay": {
                      "type": "integer",
                      "description": "The average Playout FIFO Delay plus the decoder delay\n            during the voice call.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cvVoIPCallHistoryVADEnable": {
                      "type": "boolean",
                      "description": "The object indicates whether or not the VAD (Voice Activity\n            Detection) was enabled for the voice call."
                    },
                    "cvVoIPCallHistoryCoderTypeRate": {
                      "type": "string",
                      "description": "The negotiated coder rate. It specifies the transmit rate of\n            voice/fax compression to its associated call leg for the\n            call. This rate is different from the configuration rate\n            because of rate negotiation during the call.",
                      "x-yang-type": "cisco-voice:CvcCoderTypeRate"
                    },
                    "cvVoIPCallHistoryIcpif": {
                      "type": "integer",
                      "description": "The Calculated Planning Impairment Factor (Icpif) of the\n            call  that is associated to this call leg.\n            The value in this object is computed by the following\n            equation.\n            Icpif of the call =\n            Itotal (total impairment value) of the call - A\n            (Expectation Factor) in the cvVoIPPeerCfgExpectFactor of\n            the call leg associated peer.\n            A value of -1 implies that Icpif was not calculated and is\n            meaningless for this call.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "cvVoIPCallHistoryLostPackets": {
                      "type": "string",
                      "description": "The number of lost voice packets during the call.",
                      "x-yang-type": "dial-control:AbsoluteCounter32"
                    },
                    "cvVoIPCallHistoryEarlyPackets": {
                      "type": "string",
                      "description": "The number of received voice packets that are\n            arrived too early to store in jitter buffer\n            during the call.",
                      "x-yang-type": "dial-control:AbsoluteCounter32"
                    },
                    "cvVoIPCallHistoryLatePackets": {
                      "type": "string",
                      "description": "The number of received voice packets that are\n            arrived too late to playout with CODEC (Coder/Decoder)\n            during the call.",
                      "x-yang-type": "dial-control:AbsoluteCounter32"
                    },
                    "cvVoIPCallHistoryUsername": {
                      "type": "string",
                      "description": "The textual identifier of the calling party (user) of the\n            call. If the username is not available, then the value of\n            this object will have a length of zero.",
                      "x-yang-type": "snmp-framework:SnmpAdminString"
                    },
                    "cvVoIPCallHistoryProtocolCallId": {
                      "type": "string",
                      "description": "The protocol-specific call identifier for the VoIP call.",
                      "format": "binary"
                    },
                    "cvVoIPCallHistoryRemSigIPAddrT": {
                      "type": "string",
                      "description": "This object specifies the type of address contained in\n            the associated instance of cvVoIPCallHistoryRemSigIPAddr.",
                      "x-yang-type": "inet-address:InetAddressType"
                    },
                    "cvVoIPCallHistoryRemSigIPAddr": {
                      "type": "string",
                      "description": "Remote signalling IP address for the VoIP call.",
                      "x-yang-type": "inet-address:InetAddress"
                    },
                    "cvVoIPCallHistoryRemSigPort": {
                      "type": "integer",
                      "description": "Remote signalling listener port to which to transmit\n            voice packets.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "cvVoIPCallHistoryRemMediaIPAddrT": {
                      "type": "string",
                      "description": "This object specifies the type of address contained in\n            the associated instance of\n            cvVoIPCallHistoryRemMediaIPAddr.",
                      "x-yang-type": "inet-address:InetAddressType"
                    },
                    "cvVoIPCallHistoryRemMediaIPAddr": {
                      "type": "string",
                      "description": "Remote media end point IP address for the VoIP call.",
                      "x-yang-type": "inet-address:InetAddress"
                    },
                    "cvVoIPCallHistoryRemMediaPort": {
                      "type": "integer",
                      "description": "Remote media end point listener port to which to transmit\n            voice packets.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "cvVoIPCallHistorySRTPEnable": {
                      "type": "boolean",
                      "description": "The object indicates whether or not the SRTP (Secured RTP)\n            was enabled for the voice call."
                    },
                    "cvVoIPCallHistoryFallbackIcpif": {
                      "type": "integer",
                      "description": "The Calculated Planning Impairment Factor (Icpif) of the\n            call  that is associated to this call leg.\n            The value in this object is computed by the following\n            equation.\n            Icpif of the fallback probe =\n            Itotal (total impairment value)  - configured fallback\n            (Expectation Factor).\n            A value of 0 implies that Icpif was not calculated and is\n            meaningless for this attempt.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "cvVoIPCallHistoryFallbackLoss": {
                      "type": "string",
                      "description": "FallbackLoss is the percentage of loss packets based on\n            the total packets sent.",
                      "x-yang-type": "dial-control:AbsoluteCounter32"
                    },
                    "cvVoIPCallHistoryFallbackDelay": {
                      "type": "integer",
                      "description": "The FallbackDelay is calculated as follows -\n            Take the sum of the round trips for all the probes, \n            divide by the number of probes, \n            and divide by two to get the one-way delay.  \n            Then add in jitter_in or jiter_out,\n            which ever is higher.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cvVoIPCallHistoryOctetAligned": {
                      "type": "boolean",
                      "description": "If the object has a value true(1) octet align operation\n            is used, and if the value is false(2), bandwidth efficient\n            operation is used. This object is not instantiated when\n            the object cvVoIPCallHistoryCoderTypeRate is not equal to\n            gsmAmrNb enum."
                    },
                    "cvVoIPCallHistoryBitRates": {
                      "type": "string",
                      "description": "This object indicates modes of Bit rates.\n            This object is not instantiated when the object\n            cvVoIPCallHistoryCoderTypeRate is not equal to\n            gsmAmrNb enum.",
                      "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvAmrNbBitRateMode"
                    },
                    "cvVoIPCallHistoryModeChgPeriod": {
                      "type": "integer",
                      "description": "The object indicates the interval (N frame-blocks) at which\n            codec mode changes are allowed. This object is not\n            instantiated when the object cvVoIPCallHistoryCoderTypeRate\n            is not equal to gsmAmrNb enum.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "cvVoIPCallHistoryModeChgNeighbor": {
                      "type": "boolean",
                      "description": "If the object has a value of true(1), mode changes will be\n            made to only neighboring modes set to\n            cvVoIPCallHistoryBitRates object. If the value is false(2),\n            mode changes will be allowed to any modes set to\n            cvVoIPCallHistoryBitRates object. This object is not\n            instantiated when the object cvVoIPCallHistoryCoderTypeRate\n            is not equal to gsmAmrNb enum."
                    },
                    "cvVoIPCallHistoryMaxPtime": {
                      "type": "integer",
                      "description": "The object indicates the maximum amount of media that\n            can be encapsulated in a payload. Supported value is\n            20 msec. This object is not instantiated when the\n            object cvVoIPCallHistoryCoderTypeRate is not equal to\n            gsmAmrNb enum.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "cvVoIPCallHistoryCRC": {
                      "type": "boolean",
                      "description": "If the object has a value of true(1), frame CRC will be\n            included in the payload and if the value is false(2),\n            frame CRC will not be included in the payload.\n            This object is applicable only when RTP frame type\n            is octet aligned. This object is not instantiated when\n            the object cvVoIPCallHistoryCoderTypeRate is not equal to\n            gsmAmrNb enum."
                    },
                    "cvVoIPCallHistoryRobustSorting": {
                      "type": "boolean",
                      "description": "If the object has a value of true(1), payload employs\n            robust sorting and if the value is false(2), payload\n            does not employ robust sorting. This object is applicable\n            only when RTP frame type is octet aligned. This object\n            is not instantiated when the object\n            cvVoIPCallHistoryCoderTypeRate is not equal to gsmAmrNb\n            enum."
                    },
                    "cvVoIPCallHistoryEncap": {
                      "type": "string",
                      "description": "The object indicates the RTP encapsulation type.\n            Supported RTP encapsulation type is RFC3267.\n            This object is not instantiated when the object\n            cvVoIPCallHistoryCoderTypeRate is not equal to\n            gsmAmrNb enum.",
                      "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvAmrNbRtpEncap"
                    },
                    "cvVoIPCallHistoryInterleaving": {
                      "type": "integer",
                      "description": "The object indicates the maximum number of frame-blocks\n            allowed in an interleaving group. It indicates that\n            frame-block level interleaving will be used for that\n            session. If this object is not set, interleaving\n            is not used. This object is applicable only when\n            RTP frame type is octet aligned. This object is not\n            instantiated when the object cvVoIPCallHistoryCoderTypeRate\n            is not equal to gsmAmrNb enum.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "cvVoIPCallHistoryPtime": {
                      "type": "integer",
                      "description": "The object indicates the length of the time in milliseconds\n            represented by the media of the packet. Supported value is\n            20 milliseconds. This object is not instantiated when the\n            object cvVoIPCallHistoryCoderTypeRate is not equal to\n            gsmAmrNb enum.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "cvVoIPCallHistoryChannels": {
                      "type": "integer",
                      "description": "The object indicates the number of audio channels.\n            Supported value is 1. This object is not instantiated\n            when the object cvVoIPCallHistoryCoderTypeRate is not equal\n            to gsmAmrNb enum.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "cvVoIPCallHistoryCoderMode": {
                      "type": "string",
                      "description": "The object indicates the iLBC mode.\n            The value of this object is valid only if \n            cvVoIPCallHistoryCoderTypeRate is equal to \n            'iLBC'.",
                      "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvIlbcFrameMode"
                    },
                    "cvVoIPCallHistoryCallId": {
                      "type": "integer",
                      "description": "This object represents the call identifier for the\n            VoIP leg, which was assigned to the call.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cvVoIPCallHistoryCallReferenceId": {
                      "type": "string",
                      "description": "The call reference ID associates the video call entry and voice\n            call entry of the same endpoint.  An audio-only call may or may\n            not have a valid call reference ID (i.e. value greater than\n            zero), but in both cases, there will not be a video call entry\n            associated with it. \n            \n            For a video call, the video-specific information  is stored in a\n            call entry in cVideoSessionActive of CISCO-VIDEO-SESSION-MIB, in\n            which the call reference ID is also identified.",
                      "x-yang-type": "cisco-voice:CvcCallReferenceIdOrZero"
                    },
                    "cvVoIPCallHistorySessionId": {
                      "type": "integer",
                      "description": "This object indicates the session ID assigned by the call\n            manager to identify call legs that belong to the same call\n            session.  This session ID (history) represents a completed call\n            session, whereas the active session ID\n            (cvVoIPCallActiveSessionId) represents an ongoing session.",
                      "minimum": 0,
                      "maximum": 4294967295
                    }
                  }
                },
                "example": {
                  "CISCO-VOICE-DIAL-CONTROL-MIB:cvVoIPCallHistoryEntry": {
                    "cCallHistoryIndex": "example-string",
                    "cvVoIPCallHistoryConnectionId": "192.168.1.1",
                    "cvVoIPCallHistoryRemoteIPAddress": "192.168.1.1",
                    "cvVoIPCallHistoryRemoteUDPPort": -2147483648,
                    "cvVoIPCallHistoryRoundTripDelay": 0,
                    "cvVoIPCallHistorySelectedQoS": "192.168.1.1",
                    "cvVoIPCallHistorySessionProtocol": "192.168.1.1",
                    "cvVoIPCallHistorySessionTarget": "192.168.1.1",
                    "cvVoIPCallHistoryOnTimeRvPlayout": "192.168.1.1",
                    "cvVoIPCallHistoryGapFillWithSilence": "192.168.1.1",
                    "cvVoIPCallHistoryGapFillWithPrediction": "192.168.1.1",
                    "cvVoIPCallHistoryGapFillWithInterpolation": "192.168.1.1",
                    "cvVoIPCallHistoryGapFillWithRedundancy": "192.168.1.1",
                    "cvVoIPCallHistoryHiWaterPlayoutDelay": "192.168.1.1",
                    "cvVoIPCallHistoryLoWaterPlayoutDelay": 0,
                    "cvVoIPCallHistoryReceiveDelay": 0,
                    "cvVoIPCallHistoryVADEnable": true,
                    "cvVoIPCallHistoryCoderTypeRate": "192.168.1.1",
                    "cvVoIPCallHistoryIcpif": -2147483648,
                    "cvVoIPCallHistoryLostPackets": "192.168.1.1",
                    "cvVoIPCallHistoryEarlyPackets": "192.168.1.1",
                    "cvVoIPCallHistoryLatePackets": "192.168.1.1",
                    "cvVoIPCallHistoryUsername": "192.168.1.1",
                    "cvVoIPCallHistoryProtocolCallId": "192.168.1.1",
                    "cvVoIPCallHistoryRemSigIPAddrT": "192.168.1.1",
                    "cvVoIPCallHistoryRemSigIPAddr": "192.168.1.1",
                    "cvVoIPCallHistoryRemSigPort": -2147483648,
                    "cvVoIPCallHistoryRemMediaIPAddrT": "192.168.1.1",
                    "cvVoIPCallHistoryRemMediaIPAddr": "192.168.1.1",
                    "cvVoIPCallHistoryRemMediaPort": -2147483648,
                    "cvVoIPCallHistorySRTPEnable": true,
                    "cvVoIPCallHistoryFallbackIcpif": -2147483648,
                    "cvVoIPCallHistoryFallbackLoss": "192.168.1.1",
                    "cvVoIPCallHistoryFallbackDelay": 0,
                    "cvVoIPCallHistoryOctetAligned": true,
                    "cvVoIPCallHistoryBitRates": "192.168.1.1",
                    "cvVoIPCallHistoryModeChgPeriod": -2147483648,
                    "cvVoIPCallHistoryModeChgNeighbor": true,
                    "cvVoIPCallHistoryMaxPtime": -2147483648,
                    "cvVoIPCallHistoryCRC": true,
                    "cvVoIPCallHistoryRobustSorting": true,
                    "cvVoIPCallHistoryEncap": "192.168.1.1",
                    "cvVoIPCallHistoryInterleaving": -2147483648,
                    "cvVoIPCallHistoryPtime": -2147483648,
                    "cvVoIPCallHistoryChannels": -2147483648,
                    "cvVoIPCallHistoryCoderMode": "192.168.1.1",
                    "cvVoIPCallHistoryCallId": 0,
                    "cvVoIPCallHistoryCallReferenceId": "192.168.1.1",
                    "cvVoIPCallHistorySessionId": 0
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cvVoIPCallHistoryEntry-2"
      },
      "x-yang-path": "/cvVoIPCallHistoryTable/cvVoIPCallHistoryEntry={cCallHistoryIndex}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "cCallHistoryIndex"
      ]
    },
    "/data/CISCO-VOICE-DIAL-CONTROL-MIB:cvCallRateStatsTable": {
      "get": {
        "summary": "Get cvCallRateStatsTable data",
        "description": "Retrieve cvCallRateStatsTable operational data from MIB",
        "tags": [
          "CISCO-VOICE-DIAL-CONTROL-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "description": "This table represents voice call rate measurement in various\n        interval lengths defined by the \n        CvCallVolumeStatsIntvlType object.\n        \n        Each interval may contain one or more entries to allow for\n        detailed measurement to be collected.",
                  "properties": {
                    "cvCallRateStatsEntry": {
                      "type": "array",
                      "description": "This is a conceptual-row in cvCallRateStatsTable\n          This entry is created at the system initialization and is\n          updated at every epoch based on CvCallVolumeStatsIntvlType",
                      "items": {
                        "type": "object",
                        "properties": {
                          "cvCallRateStatsIntvlDurUnits": {
                            "type": "string",
                            "description": "The Object indexes in Call Rate Table to select one among three\n            interval-tables.\n            \n            The different types in this table are represented by \n            CvCallVolumeStatsIntvlType",
                            "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvCallVolumeStatsIntvlType"
                          },
                          "cvCallRateStatsIntvlDur": {
                            "type": "integer",
                            "description": "This is an index that references to the different past periods\n            in given in interval of call rate table.\n            This range is 1-60 for Seconds and Minutes table \n            wherein 1-72 for hours table.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "cvCallRateStatsMaxVal": {
                            "type": "integer",
                            "description": "This object indicates the maximum calls per second\n            that occured for the given period for the given interval.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "cvCallRateStatsAvgVal": {
                            "type": "integer",
                            "description": "This object indicates the average calls per second\n            that occured for the given period for the given interval.",
                            "minimum": 0,
                            "maximum": 4294967295
                          }
                        }
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-VOICE-DIAL-CONTROL-MIB:cvCallRateStatsTable": {
                    "cvCallRateStatsEntry": [
                      {
                        "cvCallRateStatsIntvlDurUnits": "example-string",
                        "cvCallRateStatsIntvlDur": 0,
                        "cvCallRateStatsMaxVal": 0,
                        "cvCallRateStatsAvgVal": 0
                      },
                      {
                        "cvCallRateStatsIntvlDurUnits": "example-string",
                        "cvCallRateStatsIntvlDur": 0,
                        "cvCallRateStatsMaxVal": 0,
                        "cvCallRateStatsAvgVal": 0
                      },
                      {
                        "cvCallRateStatsIntvlDurUnits": "example-string",
                        "cvCallRateStatsIntvlDur": 0,
                        "cvCallRateStatsMaxVal": 0,
                        "cvCallRateStatsAvgVal": 0
                      }
                    ]
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cvCallRateStatsTable",
        "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": "/cvCallRateStatsTable",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-VOICE-DIAL-CONTROL-MIB:cvCallRateStatsTable/cvCallRateStatsEntry": {
      "get": {
        "summary": "Get cvCallRateStatsEntry list",
        "description": "Retrieve list of cvCallRateStatsEntry entries from MIB",
        "tags": [
          "CISCO-VOICE-DIAL-CONTROL-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "This is a conceptual-row in cvCallRateStatsTable\n          This entry is created at the system initialization and is\n          updated at every epoch based on CvCallVolumeStatsIntvlType",
                  "items": {
                    "type": "object",
                    "properties": {
                      "cvCallRateStatsIntvlDurUnits": {
                        "type": "string",
                        "description": "The Object indexes in Call Rate Table to select one among three\n            interval-tables.\n            \n            The different types in this table are represented by \n            CvCallVolumeStatsIntvlType",
                        "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvCallVolumeStatsIntvlType"
                      },
                      "cvCallRateStatsIntvlDur": {
                        "type": "integer",
                        "description": "This is an index that references to the different past periods\n            in given in interval of call rate table.\n            This range is 1-60 for Seconds and Minutes table \n            wherein 1-72 for hours table.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cvCallRateStatsMaxVal": {
                        "type": "integer",
                        "description": "This object indicates the maximum calls per second\n            that occured for the given period for the given interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cvCallRateStatsAvgVal": {
                        "type": "integer",
                        "description": "This object indicates the average calls per second\n            that occured for the given period for the given interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-VOICE-DIAL-CONTROL-MIB:cvCallRateStatsEntry": [
                    {
                      "cvCallRateStatsIntvlDurUnits": "example-string",
                      "cvCallRateStatsIntvlDur": 0,
                      "cvCallRateStatsMaxVal": 0,
                      "cvCallRateStatsAvgVal": 0
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cvCallRateStatsEntry",
        "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": "/cvCallRateStatsTable/cvCallRateStatsEntry",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-VOICE-DIAL-CONTROL-MIB:cvCallLegRateStatsTable": {
      "get": {
        "summary": "Get cvCallLegRateStatsTable data",
        "description": "Retrieve cvCallLegRateStatsTable operational data from MIB",
        "tags": [
          "CISCO-VOICE-DIAL-CONTROL-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "description": "cvCallLegRateStatsTable table represents voice call leg rate\n        measurement in various interval lengths defined by \n        the CvCallVolumeStatsIntvlType object.\n        Each interval may contain one or more entries to allow for\n        detailed measurement to be collected.",
                  "properties": {
                    "cvCallLegRateStatsEntry": {
                      "type": "array",
                      "description": "This is a conceptual-row in cvCallLegRateStatsTable\n          This entry is created at the system initialization and is\n          updated at every epoch based on CvCallVolumeStatsIntvlType",
                      "items": {
                        "type": "object",
                        "properties": {
                          "cvCallLegRateStatsIntvlDurUnits": {
                            "type": "string",
                            "description": "The Object indexes in Call Leg Rate Table to select one among\n            three\n            interval-tables.\n            \n            The different types in this table are represented by \n            CvCallVolumeStatsIntvlType",
                            "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvCallVolumeStatsIntvlType"
                          },
                          "cvCallLegRateStatsIntvlDur": {
                            "type": "integer",
                            "description": "This is an index that references to the different past periods\n            in given in interval of call rate table.\n            This range is 1-60 for Seconds and Minutes table \n            wherein 1-72 for hours table.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "cvCallLegRateStatsMaxVal": {
                            "type": "integer",
                            "description": "This object indicates the maximum call-legs per second\n            that occured for the given period for the given interval.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "cvCallLegRateStatsAvgVal": {
                            "type": "integer",
                            "description": "This object indicates the average call-legs per second\n            that occured for the given period for the given interval.",
                            "minimum": 0,
                            "maximum": 4294967295
                          }
                        }
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-VOICE-DIAL-CONTROL-MIB:cvCallLegRateStatsTable": {
                    "cvCallLegRateStatsEntry": [
                      {
                        "cvCallLegRateStatsIntvlDurUnits": "example-string",
                        "cvCallLegRateStatsIntvlDur": 0,
                        "cvCallLegRateStatsMaxVal": 0,
                        "cvCallLegRateStatsAvgVal": 0
                      },
                      {
                        "cvCallLegRateStatsIntvlDurUnits": "example-string",
                        "cvCallLegRateStatsIntvlDur": 0,
                        "cvCallLegRateStatsMaxVal": 0,
                        "cvCallLegRateStatsAvgVal": 0
                      },
                      {
                        "cvCallLegRateStatsIntvlDurUnits": "example-string",
                        "cvCallLegRateStatsIntvlDur": 0,
                        "cvCallLegRateStatsMaxVal": 0,
                        "cvCallLegRateStatsAvgVal": 0
                      }
                    ]
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cvCallLegRateStatsTable",
        "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": "/cvCallLegRateStatsTable",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-VOICE-DIAL-CONTROL-MIB:cvCallLegRateStatsTable/cvCallLegRateStatsEntry": {
      "get": {
        "summary": "Get cvCallLegRateStatsEntry list",
        "description": "Retrieve list of cvCallLegRateStatsEntry entries from MIB",
        "tags": [
          "CISCO-VOICE-DIAL-CONTROL-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "This is a conceptual-row in cvCallLegRateStatsTable\n          This entry is created at the system initialization and is\n          updated at every epoch based on CvCallVolumeStatsIntvlType",
                  "items": {
                    "type": "object",
                    "properties": {
                      "cvCallLegRateStatsIntvlDurUnits": {
                        "type": "string",
                        "description": "The Object indexes in Call Leg Rate Table to select one among\n            three\n            interval-tables.\n            \n            The different types in this table are represented by \n            CvCallVolumeStatsIntvlType",
                        "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvCallVolumeStatsIntvlType"
                      },
                      "cvCallLegRateStatsIntvlDur": {
                        "type": "integer",
                        "description": "This is an index that references to the different past periods\n            in given in interval of call rate table.\n            This range is 1-60 for Seconds and Minutes table \n            wherein 1-72 for hours table.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cvCallLegRateStatsMaxVal": {
                        "type": "integer",
                        "description": "This object indicates the maximum call-legs per second\n            that occured for the given period for the given interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cvCallLegRateStatsAvgVal": {
                        "type": "integer",
                        "description": "This object indicates the average call-legs per second\n            that occured for the given period for the given interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-VOICE-DIAL-CONTROL-MIB:cvCallLegRateStatsEntry": [
                    {
                      "cvCallLegRateStatsIntvlDurUnits": "example-string",
                      "cvCallLegRateStatsIntvlDur": 0,
                      "cvCallLegRateStatsMaxVal": 0,
                      "cvCallLegRateStatsAvgVal": 0
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cvCallLegRateStatsEntry",
        "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": "/cvCallLegRateStatsTable/cvCallLegRateStatsEntry",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-VOICE-DIAL-CONTROL-MIB:cvActiveCallStatsTable": {
      "get": {
        "summary": "Get cvActiveCallStatsTable data",
        "description": "Retrieve cvActiveCallStatsTable operational data from MIB",
        "tags": [
          "CISCO-VOICE-DIAL-CONTROL-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "description": "This table represents the active voice calls in various\n        interval lengths defined by the \n        CvCallVolumeStatsIntvlType object.\n        \n        Each interval may contain one or more entries to allow for\n        detailed measurement to be collected.",
                  "properties": {
                    "cvActiveCallStatsEntry": {
                      "type": "array",
                      "description": "This is a conceptual-row in cvActiveCallStatsTable\n          This entry is created at the system initialization and is\n          updated at every epoch based on CvCallVolumeStatsIntvlType",
                      "items": {
                        "type": "object",
                        "properties": {
                          "cvActiveCallStatsIntvlDurUnits": {
                            "type": "string",
                            "description": "The Object indexes in Active Call Rate Table (con-current calls\n            table) to select one among three interval-tables.\n            \n            The different types in this table are represented by \n            CvCallVolumeStatsIntvlType",
                            "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvCallVolumeStatsIntvlType"
                          },
                          "cvActiveCallStatsIntvlDur": {
                            "type": "integer",
                            "description": "This is an index that references to the different past periods\n            in given in interval of active call table.\n            This range is 1-60 for Seconds and Minutes table \n            wherein 1-72 for hours table.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "cvActiveCallStatsMaxVal": {
                            "type": "integer",
                            "description": "This object indicates the maximum number of active call\n            that occured for the given period for the given interval.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "cvActiveCallStatsAvgVal": {
                            "type": "integer",
                            "description": "This object indicates the average number of active calls\n            that occured for the given period for the given interval.",
                            "minimum": 0,
                            "maximum": 4294967295
                          }
                        }
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-VOICE-DIAL-CONTROL-MIB:cvActiveCallStatsTable": {
                    "cvActiveCallStatsEntry": [
                      {
                        "cvActiveCallStatsIntvlDurUnits": "example-string",
                        "cvActiveCallStatsIntvlDur": 0,
                        "cvActiveCallStatsMaxVal": 0,
                        "cvActiveCallStatsAvgVal": 0
                      },
                      {
                        "cvActiveCallStatsIntvlDurUnits": "example-string",
                        "cvActiveCallStatsIntvlDur": 0,
                        "cvActiveCallStatsMaxVal": 0,
                        "cvActiveCallStatsAvgVal": 0
                      },
                      {
                        "cvActiveCallStatsIntvlDurUnits": "example-string",
                        "cvActiveCallStatsIntvlDur": 0,
                        "cvActiveCallStatsMaxVal": 0,
                        "cvActiveCallStatsAvgVal": 0
                      }
                    ]
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cvActiveCallStatsTable",
        "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": "/cvActiveCallStatsTable",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-VOICE-DIAL-CONTROL-MIB:cvActiveCallStatsTable/cvActiveCallStatsEntry": {
      "get": {
        "summary": "Get cvActiveCallStatsEntry list",
        "description": "Retrieve list of cvActiveCallStatsEntry entries from MIB",
        "tags": [
          "CISCO-VOICE-DIAL-CONTROL-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "This is a conceptual-row in cvActiveCallStatsTable\n          This entry is created at the system initialization and is\n          updated at every epoch based on CvCallVolumeStatsIntvlType",
                  "items": {
                    "type": "object",
                    "properties": {
                      "cvActiveCallStatsIntvlDurUnits": {
                        "type": "string",
                        "description": "The Object indexes in Active Call Rate Table (con-current calls\n            table) to select one among three interval-tables.\n            \n            The different types in this table are represented by \n            CvCallVolumeStatsIntvlType",
                        "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvCallVolumeStatsIntvlType"
                      },
                      "cvActiveCallStatsIntvlDur": {
                        "type": "integer",
                        "description": "This is an index that references to the different past periods\n            in given in interval of active call table.\n            This range is 1-60 for Seconds and Minutes table \n            wherein 1-72 for hours table.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cvActiveCallStatsMaxVal": {
                        "type": "integer",
                        "description": "This object indicates the maximum number of active call\n            that occured for the given period for the given interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cvActiveCallStatsAvgVal": {
                        "type": "integer",
                        "description": "This object indicates the average number of active calls\n            that occured for the given period for the given interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-VOICE-DIAL-CONTROL-MIB:cvActiveCallStatsEntry": [
                    {
                      "cvActiveCallStatsIntvlDurUnits": "example-string",
                      "cvActiveCallStatsIntvlDur": 0,
                      "cvActiveCallStatsMaxVal": 0,
                      "cvActiveCallStatsAvgVal": 0
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cvActiveCallStatsEntry",
        "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": "/cvActiveCallStatsTable/cvActiveCallStatsEntry",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-VOICE-DIAL-CONTROL-MIB:cvCallDurationStatsTable": {
      "get": {
        "summary": "Get cvCallDurationStatsTable data",
        "description": "Retrieve cvCallDurationStatsTable operational data from MIB",
        "tags": [
          "CISCO-VOICE-DIAL-CONTROL-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "description": "This table represents the number of calls below a specific\n        duration in various interval length defined by \n        the CvCallVolumeStatsIntvlType object.  \n        \n        The specific duration is configurable value of \n         cvCallDurationStatsThreshold object.\n        \n        Each interval may contain one or more entries to allow for \n        detailed measurement to be collected.",
                  "properties": {
                    "cvCallDurationStatsEntry": {
                      "type": "array",
                      "description": "This is a conceptual-row in cvCallDurationStatsTable\n          This entry is created at the system initialization and is\n          updated at every epoch based on CvCallVolumeStatsIntvlType",
                      "items": {
                        "type": "object",
                        "properties": {
                          "cvCallDurationStatsIntvlDurUnits": {
                            "type": "string",
                            "description": "The Object indexes in Call Duration Table to select one among\n            three interval-tables.\n            \n            The different types in this table are represented by \n            CvCallVolumeStatsIntvlType",
                            "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvCallVolumeStatsIntvlType"
                          },
                          "cvCallDurationStatsIntvlDur": {
                            "type": "integer",
                            "description": "This is an index that references to the different past periods\n            in given in interval of call Duration table.\n            This range is 1-60 for Seconds and Minutes table \n            wherein 1-72 for hours table.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "cvCallDurationStatsMaxVal": {
                            "type": "integer",
                            "description": "This object indicates the maximum number of calls having a\n            duration which is below the threshold for the given interval.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "cvCallDurationStatsAvgVal": {
                            "type": "integer",
                            "description": "This object indicates the average number of calls having a\n            duration which is below the threshold for the given interval.",
                            "minimum": 0,
                            "maximum": 4294967295
                          }
                        }
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-VOICE-DIAL-CONTROL-MIB:cvCallDurationStatsTable": {
                    "cvCallDurationStatsEntry": [
                      {
                        "cvCallDurationStatsIntvlDurUnits": "example-string",
                        "cvCallDurationStatsIntvlDur": 0,
                        "cvCallDurationStatsMaxVal": 0,
                        "cvCallDurationStatsAvgVal": 0
                      },
                      {
                        "cvCallDurationStatsIntvlDurUnits": "example-string",
                        "cvCallDurationStatsIntvlDur": 0,
                        "cvCallDurationStatsMaxVal": 0,
                        "cvCallDurationStatsAvgVal": 0
                      },
                      {
                        "cvCallDurationStatsIntvlDurUnits": "example-string",
                        "cvCallDurationStatsIntvlDur": 0,
                        "cvCallDurationStatsMaxVal": 0,
                        "cvCallDurationStatsAvgVal": 0
                      }
                    ]
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cvCallDurationStatsTable",
        "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": "/cvCallDurationStatsTable",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-VOICE-DIAL-CONTROL-MIB:cvCallDurationStatsTable/cvCallDurationStatsEntry": {
      "get": {
        "summary": "Get cvCallDurationStatsEntry list",
        "description": "Retrieve list of cvCallDurationStatsEntry entries from MIB",
        "tags": [
          "CISCO-VOICE-DIAL-CONTROL-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "This is a conceptual-row in cvCallDurationStatsTable\n          This entry is created at the system initialization and is\n          updated at every epoch based on CvCallVolumeStatsIntvlType",
                  "items": {
                    "type": "object",
                    "properties": {
                      "cvCallDurationStatsIntvlDurUnits": {
                        "type": "string",
                        "description": "The Object indexes in Call Duration Table to select one among\n            three interval-tables.\n            \n            The different types in this table are represented by \n            CvCallVolumeStatsIntvlType",
                        "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvCallVolumeStatsIntvlType"
                      },
                      "cvCallDurationStatsIntvlDur": {
                        "type": "integer",
                        "description": "This is an index that references to the different past periods\n            in given in interval of call Duration table.\n            This range is 1-60 for Seconds and Minutes table \n            wherein 1-72 for hours table.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cvCallDurationStatsMaxVal": {
                        "type": "integer",
                        "description": "This object indicates the maximum number of calls having a\n            duration which is below the threshold for the given interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cvCallDurationStatsAvgVal": {
                        "type": "integer",
                        "description": "This object indicates the average number of calls having a\n            duration which is below the threshold for the given interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-VOICE-DIAL-CONTROL-MIB:cvCallDurationStatsEntry": [
                    {
                      "cvCallDurationStatsIntvlDurUnits": "example-string",
                      "cvCallDurationStatsIntvlDur": 0,
                      "cvCallDurationStatsMaxVal": 0,
                      "cvCallDurationStatsAvgVal": 0
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cvCallDurationStatsEntry",
        "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": "/cvCallDurationStatsTable/cvCallDurationStatsEntry",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-VOICE-DIAL-CONTROL-MIB:cvSipMsgRateStatsTable": {
      "get": {
        "summary": "Get cvSipMsgRateStatsTable data",
        "description": "Retrieve cvSipMsgRateStatsTable operational data from MIB",
        "tags": [
          "CISCO-VOICE-DIAL-CONTROL-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "description": "This table represents the SIP message rate measurement in\n        various interval length defined by the \n        CvCallVolumeStatsIntvlType object.\n        \n        Each interval may contain one or more entries to allow for\n        detailed measurement to be collected",
                  "properties": {
                    "cvSipMsgRateStatsEntry": {
                      "type": "array",
                      "description": "This is a conceptual-row in cvSipMsgRateStatsTable\n          This entry is created at the system initialization and is\n          updated at every epoch based on CvCallVolumeStatsIntvlType",
                      "items": {
                        "type": "object",
                        "properties": {
                          "cvSipMsgRateStatsIntvlDurUnits": {
                            "type": "string",
                            "description": "The Object indexes in SIP Message Rate Table to select one\n            among three interval-tables.\n            \n            The different types in this table are represented by \n            CvCallVolumeStatsIntvlType",
                            "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvCallVolumeStatsIntvlType"
                          },
                          "cvSipMsgRateStatsIntvlDur": {
                            "type": "integer",
                            "description": "This is an index that references to the different past\n            periods in given in interval of SIP message rate table.\n            This range is 1-60 for Seconds and Minutes table \n            wherein 1-72 for hours table.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "cvSipMsgRateStatsMaxVal": {
                            "type": "integer",
                            "description": "This object indicates the maximum SIP messages  per second that\n            is received for the given interval.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "cvSipMsgRateStatsAvgVal": {
                            "type": "integer",
                            "description": "This object indicates the average SIP messages per second that\n            is received for the given interval.",
                            "minimum": 0,
                            "maximum": 4294967295
                          }
                        }
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-VOICE-DIAL-CONTROL-MIB:cvSipMsgRateStatsTable": {
                    "cvSipMsgRateStatsEntry": [
                      {
                        "cvSipMsgRateStatsIntvlDurUnits": "192.168.1.1",
                        "cvSipMsgRateStatsIntvlDur": 0,
                        "cvSipMsgRateStatsMaxVal": 0,
                        "cvSipMsgRateStatsAvgVal": 0
                      },
                      {
                        "cvSipMsgRateStatsIntvlDurUnits": "192.168.1.1",
                        "cvSipMsgRateStatsIntvlDur": 0,
                        "cvSipMsgRateStatsMaxVal": 0,
                        "cvSipMsgRateStatsAvgVal": 0
                      },
                      {
                        "cvSipMsgRateStatsIntvlDurUnits": "192.168.1.1",
                        "cvSipMsgRateStatsIntvlDur": 0,
                        "cvSipMsgRateStatsMaxVal": 0,
                        "cvSipMsgRateStatsAvgVal": 0
                      }
                    ]
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cvSipMsgRateStatsTable",
        "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": "/cvSipMsgRateStatsTable",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-VOICE-DIAL-CONTROL-MIB:cvSipMsgRateStatsTable/cvSipMsgRateStatsEntry": {
      "get": {
        "summary": "Get cvSipMsgRateStatsEntry list",
        "description": "Retrieve list of cvSipMsgRateStatsEntry entries from MIB",
        "tags": [
          "CISCO-VOICE-DIAL-CONTROL-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "This is a conceptual-row in cvSipMsgRateStatsTable\n          This entry is created at the system initialization and is\n          updated at every epoch based on CvCallVolumeStatsIntvlType",
                  "items": {
                    "type": "object",
                    "properties": {
                      "cvSipMsgRateStatsIntvlDurUnits": {
                        "type": "string",
                        "description": "The Object indexes in SIP Message Rate Table to select one\n            among three interval-tables.\n            \n            The different types in this table are represented by \n            CvCallVolumeStatsIntvlType",
                        "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvCallVolumeStatsIntvlType"
                      },
                      "cvSipMsgRateStatsIntvlDur": {
                        "type": "integer",
                        "description": "This is an index that references to the different past\n            periods in given in interval of SIP message rate table.\n            This range is 1-60 for Seconds and Minutes table \n            wherein 1-72 for hours table.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cvSipMsgRateStatsMaxVal": {
                        "type": "integer",
                        "description": "This object indicates the maximum SIP messages  per second that\n            is received for the given interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cvSipMsgRateStatsAvgVal": {
                        "type": "integer",
                        "description": "This object indicates the average SIP messages per second that\n            is received for the given interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-VOICE-DIAL-CONTROL-MIB:cvSipMsgRateStatsEntry": [
                    {
                      "cvSipMsgRateStatsIntvlDurUnits": "192.168.1.1",
                      "cvSipMsgRateStatsIntvlDur": 0,
                      "cvSipMsgRateStatsMaxVal": 0,
                      "cvSipMsgRateStatsAvgVal": 0
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cvSipMsgRateStatsEntry",
        "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": "/cvSipMsgRateStatsTable/cvSipMsgRateStatsEntry",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-VOICE-DIAL-CONTROL-MIB:cvCallRateWMTable": {
      "get": {
        "summary": "Get cvCallRateWMTable data",
        "description": "Retrieve cvCallRateWMTable operational data from MIB",
        "tags": [
          "CISCO-VOICE-DIAL-CONTROL-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "description": "This table represents high watermarks achieved\n        by call rate in various interval length defined \n        by CvCallVolumeWMIntvlType. \n        \n        Each interval may contain one or more entries to allow for \n        detailed measurement to be collected",
                  "properties": {
                    "cvCallRateWMEntry": {
                      "type": "array",
                      "description": "This is a conceptual-row in cvCallRateWMTable\n          This entry is created at the system initialization and is\n          updated whenever \n          a) This entry is obsolete OR\n          b) A new/higher entry is available.\n          These entries are reinitialised/added/deleted  if\n          cvCallVolumeWMTableSize is changed",
                      "items": {
                        "type": "object",
                        "properties": {
                          "cvCallRateWMIntvlDurUnits": {
                            "type": "string",
                            "description": "The Object indexes in call rate Water mark Table to select one\n            among four interval-tables.\n            \n            The different types in this table are represented by \n            CvCallVolumeWMIntvlType",
                            "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvCallVolumeWMIntvlType"
                          },
                          "cvCallRateWMIndex": {
                            "type": "integer",
                            "description": "This is an index that references to different peaks in\n            past period in call rate watermark table.\n            \n            The number of watermarks entries stored for each table are \n            based on cvCallVolumeWMTableSize",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "cvCallRateWMValue": {
                            "type": "integer",
                            "description": "This object indicates high watermark value achieved by the\n            calls per second for the given interval",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "cvCallRateWMts": {
                            "type": "string",
                            "description": "This object indicates date and Time when the high watermark\n            is achieved for calls per second for the given interval",
                            "x-yang-type": "snmpv2-tc:DateAndTime"
                          }
                        }
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-VOICE-DIAL-CONTROL-MIB:cvCallRateWMTable": {
                    "cvCallRateWMEntry": [
                      {
                        "cvCallRateWMIntvlDurUnits": "example-string",
                        "cvCallRateWMIndex": 1,
                        "cvCallRateWMValue": 0,
                        "cvCallRateWMts": "example-string"
                      },
                      {
                        "cvCallRateWMIntvlDurUnits": "example-string",
                        "cvCallRateWMIndex": 2,
                        "cvCallRateWMValue": 0,
                        "cvCallRateWMts": "example-string"
                      },
                      {
                        "cvCallRateWMIntvlDurUnits": "example-string",
                        "cvCallRateWMIndex": 3,
                        "cvCallRateWMValue": 0,
                        "cvCallRateWMts": "example-string"
                      }
                    ]
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cvCallRateWMTable",
        "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": "/cvCallRateWMTable",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-VOICE-DIAL-CONTROL-MIB:cvCallRateWMTable/cvCallRateWMEntry": {
      "get": {
        "summary": "Get cvCallRateWMEntry list",
        "description": "Retrieve list of cvCallRateWMEntry entries from MIB",
        "tags": [
          "CISCO-VOICE-DIAL-CONTROL-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "This is a conceptual-row in cvCallRateWMTable\n          This entry is created at the system initialization and is\n          updated whenever \n          a) This entry is obsolete OR\n          b) A new/higher entry is available.\n          These entries are reinitialised/added/deleted  if\n          cvCallVolumeWMTableSize is changed",
                  "items": {
                    "type": "object",
                    "properties": {
                      "cvCallRateWMIntvlDurUnits": {
                        "type": "string",
                        "description": "The Object indexes in call rate Water mark Table to select one\n            among four interval-tables.\n            \n            The different types in this table are represented by \n            CvCallVolumeWMIntvlType",
                        "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvCallVolumeWMIntvlType"
                      },
                      "cvCallRateWMIndex": {
                        "type": "integer",
                        "description": "This is an index that references to different peaks in\n            past period in call rate watermark table.\n            \n            The number of watermarks entries stored for each table are \n            based on cvCallVolumeWMTableSize",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cvCallRateWMValue": {
                        "type": "integer",
                        "description": "This object indicates high watermark value achieved by the\n            calls per second for the given interval",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cvCallRateWMts": {
                        "type": "string",
                        "description": "This object indicates date and Time when the high watermark\n            is achieved for calls per second for the given interval",
                        "x-yang-type": "snmpv2-tc:DateAndTime"
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-VOICE-DIAL-CONTROL-MIB:cvCallRateWMEntry": [
                    {
                      "cvCallRateWMIntvlDurUnits": "example-string",
                      "cvCallRateWMIndex": 1,
                      "cvCallRateWMValue": 0,
                      "cvCallRateWMts": "example-string"
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cvCallRateWMEntry",
        "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": "/cvCallRateWMTable/cvCallRateWMEntry",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-VOICE-DIAL-CONTROL-MIB:cvCallLegRateWMTable": {
      "get": {
        "summary": "Get cvCallLegRateWMTable data",
        "description": "Retrieve cvCallLegRateWMTable operational data from MIB",
        "tags": [
          "CISCO-VOICE-DIAL-CONTROL-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "description": "cvCallLegRateWMTable table represents high watermarks achieved\n        by call-leg rate in various interval length defined \n        by CvCallVolumeWMIntvlType. \n        \n        Each interval may contain one or more entries to allow for \n        detailed measurement to be collected",
                  "properties": {
                    "cvCallLegRateWMEntry": {
                      "type": "array",
                      "description": "This is a conceptual-row in cvCallLegRateWMTable\n          This entry is created at the system initialization and is\n          updated whenever \n          a) This entry is obsolete OR\n          b) A new/higher entry is available.\n          These entries are reinitialised/added/deleted  if\n          cvCallVolumeWMTableSize is changed",
                      "items": {
                        "type": "object",
                        "properties": {
                          "cvCallLegRateWMIntvlDurUnits": {
                            "type": "string",
                            "description": "The Object indexes in call leg rate Water mark Table to select\n            one\n            among four interval-tables.\n            \n            The different types in this table are represented by \n            CvCallVolumeWMIntvlType",
                            "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvCallVolumeWMIntvlType"
                          },
                          "cvCallLegRateWMIndex": {
                            "type": "integer",
                            "description": "This is an index that references to different peaks in\n            past period in call leg rate watermark table.\n            \n            The number of watermarks entries stored for each table are \n            based on cvCallVolumeWMTableSize",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "cvCallLegRateWMValue": {
                            "type": "integer",
                            "description": "This object indicates high watermark value achieved by the\n            call legs per second for the given interval",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "cvCallLegRateWMts": {
                            "type": "string",
                            "description": "This object indicates date and time when the high watermark\n            is achieved for call-legs per second for the given interval",
                            "x-yang-type": "snmpv2-tc:DateAndTime"
                          }
                        }
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-VOICE-DIAL-CONTROL-MIB:cvCallLegRateWMTable": {
                    "cvCallLegRateWMEntry": [
                      {
                        "cvCallLegRateWMIntvlDurUnits": "example-string",
                        "cvCallLegRateWMIndex": 1,
                        "cvCallLegRateWMValue": 0,
                        "cvCallLegRateWMts": "example-string"
                      },
                      {
                        "cvCallLegRateWMIntvlDurUnits": "example-string",
                        "cvCallLegRateWMIndex": 2,
                        "cvCallLegRateWMValue": 0,
                        "cvCallLegRateWMts": "example-string"
                      },
                      {
                        "cvCallLegRateWMIntvlDurUnits": "example-string",
                        "cvCallLegRateWMIndex": 3,
                        "cvCallLegRateWMValue": 0,
                        "cvCallLegRateWMts": "example-string"
                      }
                    ]
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cvCallLegRateWMTable",
        "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": "/cvCallLegRateWMTable",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-VOICE-DIAL-CONTROL-MIB:cvCallLegRateWMTable/cvCallLegRateWMEntry": {
      "get": {
        "summary": "Get cvCallLegRateWMEntry list",
        "description": "Retrieve list of cvCallLegRateWMEntry entries from MIB",
        "tags": [
          "CISCO-VOICE-DIAL-CONTROL-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "This is a conceptual-row in cvCallLegRateWMTable\n          This entry is created at the system initialization and is\n          updated whenever \n          a) This entry is obsolete OR\n          b) A new/higher entry is available.\n          These entries are reinitialised/added/deleted  if\n          cvCallVolumeWMTableSize is changed",
                  "items": {
                    "type": "object",
                    "properties": {
                      "cvCallLegRateWMIntvlDurUnits": {
                        "type": "string",
                        "description": "The Object indexes in call leg rate Water mark Table to select\n            one\n            among four interval-tables.\n            \n            The different types in this table are represented by \n            CvCallVolumeWMIntvlType",
                        "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvCallVolumeWMIntvlType"
                      },
                      "cvCallLegRateWMIndex": {
                        "type": "integer",
                        "description": "This is an index that references to different peaks in\n            past period in call leg rate watermark table.\n            \n            The number of watermarks entries stored for each table are \n            based on cvCallVolumeWMTableSize",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cvCallLegRateWMValue": {
                        "type": "integer",
                        "description": "This object indicates high watermark value achieved by the\n            call legs per second for the given interval",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cvCallLegRateWMts": {
                        "type": "string",
                        "description": "This object indicates date and time when the high watermark\n            is achieved for call-legs per second for the given interval",
                        "x-yang-type": "snmpv2-tc:DateAndTime"
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-VOICE-DIAL-CONTROL-MIB:cvCallLegRateWMEntry": [
                    {
                      "cvCallLegRateWMIntvlDurUnits": "example-string",
                      "cvCallLegRateWMIndex": 1,
                      "cvCallLegRateWMValue": 0,
                      "cvCallLegRateWMts": "example-string"
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cvCallLegRateWMEntry",
        "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": "/cvCallLegRateWMTable/cvCallLegRateWMEntry",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-VOICE-DIAL-CONTROL-MIB:cvActiveCallWMTable": {
      "get": {
        "summary": "Get cvActiveCallWMTable data",
        "description": "Retrieve cvActiveCallWMTable operational data from MIB",
        "tags": [
          "CISCO-VOICE-DIAL-CONTROL-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "description": "This table represents high watermarks achieved\n        by active calls in various interval length defined \n        by CvCallVolumeWMIntvlType. \n        \n        Each interval may contain one or more entries to allow \n        for detailed measurement to be collected.",
                  "properties": {
                    "cvActiveCallWMEntry": {
                      "type": "array",
                      "description": "This is a conceptual-row in cvActiveCallWMTable\n          This entry is created at the system initialization and is\n          updated whenever \n          a) This entry is obsolete OR\n          b) A new/higher entry is available.\n          These entries are reinitialised/added/deleted  if\n          cvCallVolumeWMTableSize is changed",
                      "items": {
                        "type": "object",
                        "properties": {
                          "cvActiveCallWMIntvlDurUnits": {
                            "type": "string",
                            "description": "The Object indexes in active call Water mark Table to select\n            one among four interval-tables.\n            \n            The different types in this table are represented by \n            CvCallVolumeWMIntvlType",
                            "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvCallVolumeWMIntvlType"
                          },
                          "cvActiveCallWMIndex": {
                            "type": "integer",
                            "description": "This is an index that references to different peaks in\n            past period in acive call watermark table.\n            \n            The number of watermarks entries stored for each table are \n            based on cvCallVolumeWMTableSize",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "cvActiveCallWMValue": {
                            "type": "integer",
                            "description": "This object indicates high watermark value achieved by the\n            active calls for the given interval",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "cvActiveCallWMts": {
                            "type": "string",
                            "description": "This object indicates date and time when the high watermark\n            is achieved for active calls for the given interval",
                            "x-yang-type": "snmpv2-tc:DateAndTime"
                          }
                        }
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-VOICE-DIAL-CONTROL-MIB:cvActiveCallWMTable": {
                    "cvActiveCallWMEntry": [
                      {
                        "cvActiveCallWMIntvlDurUnits": "example-string",
                        "cvActiveCallWMIndex": 1,
                        "cvActiveCallWMValue": 0,
                        "cvActiveCallWMts": "example-string"
                      },
                      {
                        "cvActiveCallWMIntvlDurUnits": "example-string",
                        "cvActiveCallWMIndex": 2,
                        "cvActiveCallWMValue": 0,
                        "cvActiveCallWMts": "example-string"
                      },
                      {
                        "cvActiveCallWMIntvlDurUnits": "example-string",
                        "cvActiveCallWMIndex": 3,
                        "cvActiveCallWMValue": 0,
                        "cvActiveCallWMts": "example-string"
                      }
                    ]
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cvActiveCallWMTable",
        "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": "/cvActiveCallWMTable",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-VOICE-DIAL-CONTROL-MIB:cvActiveCallWMTable/cvActiveCallWMEntry": {
      "get": {
        "summary": "Get cvActiveCallWMEntry list",
        "description": "Retrieve list of cvActiveCallWMEntry entries from MIB",
        "tags": [
          "CISCO-VOICE-DIAL-CONTROL-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "This is a conceptual-row in cvActiveCallWMTable\n          This entry is created at the system initialization and is\n          updated whenever \n          a) This entry is obsolete OR\n          b) A new/higher entry is available.\n          These entries are reinitialised/added/deleted  if\n          cvCallVolumeWMTableSize is changed",
                  "items": {
                    "type": "object",
                    "properties": {
                      "cvActiveCallWMIntvlDurUnits": {
                        "type": "string",
                        "description": "The Object indexes in active call Water mark Table to select\n            one among four interval-tables.\n            \n            The different types in this table are represented by \n            CvCallVolumeWMIntvlType",
                        "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvCallVolumeWMIntvlType"
                      },
                      "cvActiveCallWMIndex": {
                        "type": "integer",
                        "description": "This is an index that references to different peaks in\n            past period in acive call watermark table.\n            \n            The number of watermarks entries stored for each table are \n            based on cvCallVolumeWMTableSize",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cvActiveCallWMValue": {
                        "type": "integer",
                        "description": "This object indicates high watermark value achieved by the\n            active calls for the given interval",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cvActiveCallWMts": {
                        "type": "string",
                        "description": "This object indicates date and time when the high watermark\n            is achieved for active calls for the given interval",
                        "x-yang-type": "snmpv2-tc:DateAndTime"
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-VOICE-DIAL-CONTROL-MIB:cvActiveCallWMEntry": [
                    {
                      "cvActiveCallWMIntvlDurUnits": "example-string",
                      "cvActiveCallWMIndex": 1,
                      "cvActiveCallWMValue": 0,
                      "cvActiveCallWMts": "example-string"
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cvActiveCallWMEntry",
        "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": "/cvActiveCallWMTable/cvActiveCallWMEntry",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-VOICE-DIAL-CONTROL-MIB:cvSipMsgRateWMTable": {
      "get": {
        "summary": "Get cvSipMsgRateWMTable data",
        "description": "Retrieve cvSipMsgRateWMTable operational data from MIB",
        "tags": [
          "CISCO-VOICE-DIAL-CONTROL-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "description": "This table represents of high watermarks achieved\n        by SIP message rate in various interval length defined \n        by CvCallVolumeWMIntvlType. \n        \n        Each interval may contain one or more entries to allow for\n        detailed measurement to be collected",
                  "properties": {
                    "cvSipMsgRateWMEntry": {
                      "type": "array",
                      "description": "This is a conceptual-row in cvSipMsgRateWMTable.\n          This entry is created at the system initialization and is\n          updated whenever \n          a) This entry is obsolete OR\n          b) A new/higher entry is available.\n          These entries are reinitialised/added/deleted if\n          cvCallVolumeWMTableSize is changed",
                      "items": {
                        "type": "object",
                        "properties": {
                          "cvSipMsgRateWMIntvlDurUnits": {
                            "type": "string",
                            "description": "The Object indexes in SIP Message rate Water mark Table to\n            select one among four interval-tables.\n            \n            The different types in this table are represented by \n            CvCallVolumeWMIntvlType",
                            "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvCallVolumeWMIntvlType"
                          },
                          "cvSipMsgRateWMIndex": {
                            "type": "integer",
                            "description": "This is an index that references to different peaks in\n            past period in sip message rate watermark table.\n            \n            The number of watermarks entries stored for each table are \n            based on cvCallVolumeWMTableSize",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "cvSipMsgRateWMValue": {
                            "type": "integer",
                            "description": "This object indicates high watermark value achieved by the\n            SIP messages per second for the given interval",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "cvSipMsgRateWMts": {
                            "type": "string",
                            "description": "This object indicates date and time when the high watermark\n            is achieved for SIP messages per second for the given interval",
                            "x-yang-type": "snmpv2-tc:DateAndTime"
                          }
                        }
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-VOICE-DIAL-CONTROL-MIB:cvSipMsgRateWMTable": {
                    "cvSipMsgRateWMEntry": [
                      {
                        "cvSipMsgRateWMIntvlDurUnits": "192.168.1.1",
                        "cvSipMsgRateWMIndex": 1,
                        "cvSipMsgRateWMValue": 0,
                        "cvSipMsgRateWMts": "192.168.1.1"
                      },
                      {
                        "cvSipMsgRateWMIntvlDurUnits": "192.168.1.1",
                        "cvSipMsgRateWMIndex": 2,
                        "cvSipMsgRateWMValue": 0,
                        "cvSipMsgRateWMts": "192.168.1.1"
                      },
                      {
                        "cvSipMsgRateWMIntvlDurUnits": "192.168.1.1",
                        "cvSipMsgRateWMIndex": 3,
                        "cvSipMsgRateWMValue": 0,
                        "cvSipMsgRateWMts": "192.168.1.1"
                      }
                    ]
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cvSipMsgRateWMTable",
        "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": "/cvSipMsgRateWMTable",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-VOICE-DIAL-CONTROL-MIB:cvSipMsgRateWMTable/cvSipMsgRateWMEntry": {
      "get": {
        "summary": "Get cvSipMsgRateWMEntry list",
        "description": "Retrieve list of cvSipMsgRateWMEntry entries from MIB",
        "tags": [
          "CISCO-VOICE-DIAL-CONTROL-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "This is a conceptual-row in cvSipMsgRateWMTable.\n          This entry is created at the system initialization and is\n          updated whenever \n          a) This entry is obsolete OR\n          b) A new/higher entry is available.\n          These entries are reinitialised/added/deleted if\n          cvCallVolumeWMTableSize is changed",
                  "items": {
                    "type": "object",
                    "properties": {
                      "cvSipMsgRateWMIntvlDurUnits": {
                        "type": "string",
                        "description": "The Object indexes in SIP Message rate Water mark Table to\n            select one among four interval-tables.\n            \n            The different types in this table are represented by \n            CvCallVolumeWMIntvlType",
                        "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvCallVolumeWMIntvlType"
                      },
                      "cvSipMsgRateWMIndex": {
                        "type": "integer",
                        "description": "This is an index that references to different peaks in\n            past period in sip message rate watermark table.\n            \n            The number of watermarks entries stored for each table are \n            based on cvCallVolumeWMTableSize",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cvSipMsgRateWMValue": {
                        "type": "integer",
                        "description": "This object indicates high watermark value achieved by the\n            SIP messages per second for the given interval",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cvSipMsgRateWMts": {
                        "type": "string",
                        "description": "This object indicates date and time when the high watermark\n            is achieved for SIP messages per second for the given interval",
                        "x-yang-type": "snmpv2-tc:DateAndTime"
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-VOICE-DIAL-CONTROL-MIB:cvSipMsgRateWMEntry": [
                    {
                      "cvSipMsgRateWMIntvlDurUnits": "192.168.1.1",
                      "cvSipMsgRateWMIndex": 1,
                      "cvSipMsgRateWMValue": 0,
                      "cvSipMsgRateWMts": "192.168.1.1"
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cvSipMsgRateWMEntry",
        "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": "/cvSipMsgRateWMTable/cvSipMsgRateWMEntry",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-VOICE-DIAL-CONTROL-MIB:cvPeerCfgEntry": {
      "get": {
        "summary": "Get cvPeerCfgEntry list",
        "description": "Retrieve list of cvPeerCfgEntry entries from MIB",
        "tags": [
          "CISCO-VOICE-DIAL-CONTROL-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "cvPeerCfgEntry",
                  "items": {
                    "type": "object",
                    "properties": {
                      "cvPeerCfgIndex": {
                        "type": "integer",
                        "description": "An arbitrary index that uniquely identifies a generic\n            voice peer.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "cvPeerCfgIfIndex": {
                        "type": "string",
                        "description": "The ifIndex of the peer associated ifEntry. The ifIndex\n            appears after the associated ifEntry is created\n            successfully.\n            This ifIndex will be used to access the objects in the\n            Voice over Telephony or Voice over IP peer specific table.\n            In addition, the ifIndex is also used to access the\n            associated peer configuration entry of the IETF Dial\n            Control MIB. If the peer associated ifEntry had not been\n            created, then this object has a value of zero.",
                        "x-yang-type": "if-mib:InterfaceIndexOrZero"
                      },
                      "cvPeerCfgType": {
                        "type": "string",
                        "description": "Specifies the type of voice related encapsulation.\n            voice - voice encapsulation (voiceEncap ifType) on the\n                    telephony network.\n            voip  - VoIP encapsulation (voiceOverIp ifType) on the IP\n                    network.\n            mmail - Media Mail over IP encapsulation (mediaMailOverIp\n                    ifType) on the IP network.\n            voatm - VoATM encapsulation (voiceOverATM ifType) on the\n                    ATM network.\n            vofr  - VoFR encapsulation (voiceOverFR ifType) on the\n                    Frame Relay network."
                      },
                      "cvPeerCfgRowStatus": {
                        "type": "string",
                        "description": "This object is used to create a new row or modify or\n            delete an existing row in this table.",
                        "x-yang-type": "snmpv2-tc:RowStatus"
                      },
                      "cvPeerCfgPeerType": {
                        "type": "string",
                        "description": "Specifies the type of a peer.\n            voice - peer in voice type to be defined in a voice\n                    gateway for voice calls. \n            data  - peer in data type to be defined in gateway\n                    that supports universal ports for modem/data\n                    calls and integrated ports for data calls."
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-VOICE-DIAL-CONTROL-MIB:cvPeerCfgEntry": [
                    {
                      "cvPeerCfgIndex": 1,
                      "cvPeerCfgIfIndex": "example-string",
                      "cvPeerCfgType": "ethernetCsmacd(6)",
                      "cvPeerCfgRowStatus": "up(1)",
                      "cvPeerCfgPeerType": "ethernetCsmacd(6)"
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cvPeerCfgEntry-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": "/cvPeerCfgEntry",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-VOICE-DIAL-CONTROL-MIB:cvPeerCfgEntry={cvPeerCfgIndex}": {
      "get": {
        "summary": "Get cvPeerCfgEntry entry",
        "description": "Retrieve specific cvPeerCfgEntry entry by key from MIB",
        "tags": [
          "CISCO-VOICE-DIAL-CONTROL-MIB"
        ],
        "parameters": [
          {
            "name": "cvPeerCfgIndex",
            "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": {
                    "cvPeerCfgIndex": {
                      "type": "integer",
                      "description": "An arbitrary index that uniquely identifies a generic\n            voice peer.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "cvPeerCfgIfIndex": {
                      "type": "string",
                      "description": "The ifIndex of the peer associated ifEntry. The ifIndex\n            appears after the associated ifEntry is created\n            successfully.\n            This ifIndex will be used to access the objects in the\n            Voice over Telephony or Voice over IP peer specific table.\n            In addition, the ifIndex is also used to access the\n            associated peer configuration entry of the IETF Dial\n            Control MIB. If the peer associated ifEntry had not been\n            created, then this object has a value of zero.",
                      "x-yang-type": "if-mib:InterfaceIndexOrZero"
                    },
                    "cvPeerCfgType": {
                      "type": "string",
                      "description": "Specifies the type of voice related encapsulation.\n            voice - voice encapsulation (voiceEncap ifType) on the\n                    telephony network.\n            voip  - VoIP encapsulation (voiceOverIp ifType) on the IP\n                    network.\n            mmail - Media Mail over IP encapsulation (mediaMailOverIp\n                    ifType) on the IP network.\n            voatm - VoATM encapsulation (voiceOverATM ifType) on the\n                    ATM network.\n            vofr  - VoFR encapsulation (voiceOverFR ifType) on the\n                    Frame Relay network."
                    },
                    "cvPeerCfgRowStatus": {
                      "type": "string",
                      "description": "This object is used to create a new row or modify or\n            delete an existing row in this table.",
                      "x-yang-type": "snmpv2-tc:RowStatus"
                    },
                    "cvPeerCfgPeerType": {
                      "type": "string",
                      "description": "Specifies the type of a peer.\n            voice - peer in voice type to be defined in a voice\n                    gateway for voice calls. \n            data  - peer in data type to be defined in gateway\n                    that supports universal ports for modem/data\n                    calls and integrated ports for data calls."
                    }
                  }
                },
                "example": {
                  "CISCO-VOICE-DIAL-CONTROL-MIB:cvPeerCfgEntry": {
                    "cvPeerCfgIndex": 1,
                    "cvPeerCfgIfIndex": "example-string",
                    "cvPeerCfgType": "ethernetCsmacd(6)",
                    "cvPeerCfgRowStatus": "up(1)",
                    "cvPeerCfgPeerType": "ethernetCsmacd(6)"
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cvPeerCfgEntry-4"
      },
      "x-yang-path": "/cvPeerCfgEntry={cvPeerCfgIndex}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "cvPeerCfgIndex"
      ]
    },
    "/data/CISCO-VOICE-DIAL-CONTROL-MIB:cvVoicePeerCfgEntry": {
      "get": {
        "summary": "Get cvVoicePeerCfgEntry list",
        "description": "Retrieve list of cvVoicePeerCfgEntry entries from MIB",
        "tags": [
          "CISCO-VOICE-DIAL-CONTROL-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "A single Voice specific Peer. One entry per voice\n          encapsulation.\n          The entry is created when its associated 'voiceEncap(103)'\n          encapsulation ifEntry is created.\n          This entry is deleted when its associated ifEntry is\n          deleted.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "ifIndex": {
                        "type": "string",
                        "description": "ifIndex",
                        "x-yang-type": "leafref"
                      },
                      "cvVoicePeerCfgSessionTarget": {
                        "type": "string",
                        "description": "The object specifies the session target of the peer.\n            Session Targets definitions:\n            The session target has the syntax used by the IETF service\n            location protocol. The syntax is as follows:\n            \n            mapping-type:type-specific-syntax\n            \n            the mapping-type specifies a scheme for mapping the\n            matching dial string to a session target.\n            \n            The valid Mapping type definitions for the peer are as\n            follows:\n            loopback - Syntax: loopback:where\n               'where' string is defined as follows:\n               compressed - loopback is performed on compressed voice\n                            as close to the CODEC which processes the\n                            data as possible.\n               uncompressed - loopback is performed on the PCM or\n                            analog voice as close to the telephony\n                            endpoint as possible.\n            \n            Local loopback case:\n            uncompressed - the PCM voice coming into the DSP is simply\n                turned around and sent back out, allowing testing of\n                the transmit--> receive paths in the telephony\n                endpoint.\n            compressed - the compressed voice coming out of the CODEC is\n                turned around on the DSP module and fed back into the\n                decompressor through the jitter buffer. In addition to\n                the telephony endpoint, this tests both the encode and\n                decode paths without involving data paths or packet\n                handling on the host router.\n            \n            Remote loopback case:\n            compressed - RTP packets received from the network are\n                decapsulated and passed to the DSP board. Instead of\n                feeding these into the CODEC for decompression, they\n                are immediately sent back to the session application\n                as if they had originated locally and been compressed.\n            uncompressed - In addition to the above, the voice samples\n                are sent all the way through the CODEC and then turned\n                around instead of being sent to the telephony\n                endpoint",
                        "x-yang-type": "snmpv2-tc:DisplayString"
                      },
                      "cvVoicePeerCfgDialDigitsPrefix": {
                        "type": "string",
                        "description": "The object specifies the prefix of the dial digits for the\n            peer. The dial digits prefix is sent to telephony\n            interface before the real phone number when the system\n            places the outgoing call to the voice encapsulation peer\n            over telephony interface.",
                        "x-yang-type": "snmpv2-tc:DisplayString"
                      },
                      "cvVoicePeerCfgDIDCallEnable": {
                        "type": "boolean",
                        "description": "The object enables/disables the DID call treatment for\n            incoming DNIS digits.\n            true  - treat the incoming DNIS digits as if the digits\n                    are received from DID trunk.\n            false - Disable DID call treatment for incoming DNIS\n                    digits."
                      },
                      "cvVoicePeerCfgCasGroup": {
                        "type": "string",
                        "description": "The object specifies the CAS group number of a CAS\n            capable T1/E1  that is in the dialCtlPeerCfgLowerIf object\n            of RFC2128.\n            This object can be set to a valid CAS group number only if\n            the dialCtlPeerCfgLowerIf contains a valid ifIndex for a\n            CAS capable T1/E1. The object must set to -1 before the\n            value of the  dialCtlPeerCfgLowerIf object of RFC2128 can\n            be changed.",
                        "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvCasGroup"
                      },
                      "cvVoicePeerCfgRegisterE164": {
                        "type": "boolean",
                        "description": "This object specifies that the E.164 number specified in\n            the dialCtlPeerCfgOriginateAddress field of the associated\n            dialCtlPeerCfgTable entry be registered as an extension \n            phone number of this gateway for H323 gatekeeper and/or \n            SIP registrar."
                      },
                      "cvVoicePeerCfgForwardDigits": {
                        "type": "integer",
                        "description": "This object specifies the number of dialed digits to\n            forward to the remote destination in the setup message.\n            The object can take the value:\n                0-32 number of right justified digits to forward\n                -1 default\n                -2 forward extra digits i.e those over and above\n                   those needed to match to the destination pattern\n                -3 forward all digits",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "cvVoicePeerCfgEchoCancellerTest": {
                        "type": "string",
                        "description": "This object specifies which, if any, test to run in the\n            echo canceller when a call from the network is connected.\n            echoCancellerTestNone    - do not run a test.\n            echoCancellerG168Test2A  - run ITU-T G.168 Test 2A.\n            echoCancellerG168Test2B  - run ITU-T G.168 Test 2B.\n            echoCancellerG168Test2Ca - run ITU-T G.168 Test 2C(a).\n            echoCancellerG168Test2Cb - run ITU-T G.168 Test 2C(b).\n            echoCancellerG168Test3A  - run ITU-T G.168 Test 3A.\n            echoCancellerG168Test3B  - run ITU-T G.168 Test 3B.\n            echoCancellerG168Test3C  - run ITU-T G.168 Test 3C.\n            echoCancellerG168Test4   - run ITU-T G.168 Test 4.\n            echoCancellerG168Test5   - run ITU-T G.168 Test 5.\n            echoCancellerG168Test6   - run ITU-T G.168 Test 6.\n            echoCancellerG168Test7   - run ITU-T G.168 Test 7.\n            echoCancellerG168Test9   - run ITU-T G.168 Test 9."
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-VOICE-DIAL-CONTROL-MIB:cvVoicePeerCfgEntry": [
                    {
                      "ifIndex": "example-string",
                      "cvVoicePeerCfgSessionTarget": "example-string",
                      "cvVoicePeerCfgDialDigitsPrefix": "example-string",
                      "cvVoicePeerCfgDIDCallEnable": true,
                      "cvVoicePeerCfgCasGroup": "example-string",
                      "cvVoicePeerCfgRegisterE164": true,
                      "cvVoicePeerCfgForwardDigits": -2147483648,
                      "cvVoicePeerCfgEchoCancellerTest": "example-string"
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cvVoicePeerCfgEntry-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": "/cvVoicePeerCfgEntry",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-VOICE-DIAL-CONTROL-MIB:cvVoicePeerCfgEntry={ifIndex}": {
      "get": {
        "summary": "Get cvVoicePeerCfgEntry entry",
        "description": "Retrieve specific cvVoicePeerCfgEntry entry by key from MIB",
        "tags": [
          "CISCO-VOICE-DIAL-CONTROL-MIB"
        ],
        "parameters": [
          {
            "name": "ifIndex",
            "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": {
                    "ifIndex": {
                      "type": "string",
                      "description": "ifIndex",
                      "x-yang-type": "leafref"
                    },
                    "cvVoicePeerCfgSessionTarget": {
                      "type": "string",
                      "description": "The object specifies the session target of the peer.\n            Session Targets definitions:\n            The session target has the syntax used by the IETF service\n            location protocol. The syntax is as follows:\n            \n            mapping-type:type-specific-syntax\n            \n            the mapping-type specifies a scheme for mapping the\n            matching dial string to a session target.\n            \n            The valid Mapping type definitions for the peer are as\n            follows:\n            loopback - Syntax: loopback:where\n               'where' string is defined as follows:\n               compressed - loopback is performed on compressed voice\n                            as close to the CODEC which processes the\n                            data as possible.\n               uncompressed - loopback is performed on the PCM or\n                            analog voice as close to the telephony\n                            endpoint as possible.\n            \n            Local loopback case:\n            uncompressed - the PCM voice coming into the DSP is simply\n                turned around and sent back out, allowing testing of\n                the transmit--> receive paths in the telephony\n                endpoint.\n            compressed - the compressed voice coming out of the CODEC is\n                turned around on the DSP module and fed back into the\n                decompressor through the jitter buffer. In addition to\n                the telephony endpoint, this tests both the encode and\n                decode paths without involving data paths or packet\n                handling on the host router.\n            \n            Remote loopback case:\n            compressed - RTP packets received from the network are\n                decapsulated and passed to the DSP board. Instead of\n                feeding these into the CODEC for decompression, they\n                are immediately sent back to the session application\n                as if they had originated locally and been compressed.\n            uncompressed - In addition to the above, the voice samples\n                are sent all the way through the CODEC and then turned\n                around instead of being sent to the telephony\n                endpoint",
                      "x-yang-type": "snmpv2-tc:DisplayString"
                    },
                    "cvVoicePeerCfgDialDigitsPrefix": {
                      "type": "string",
                      "description": "The object specifies the prefix of the dial digits for the\n            peer. The dial digits prefix is sent to telephony\n            interface before the real phone number when the system\n            places the outgoing call to the voice encapsulation peer\n            over telephony interface.",
                      "x-yang-type": "snmpv2-tc:DisplayString"
                    },
                    "cvVoicePeerCfgDIDCallEnable": {
                      "type": "boolean",
                      "description": "The object enables/disables the DID call treatment for\n            incoming DNIS digits.\n            true  - treat the incoming DNIS digits as if the digits\n                    are received from DID trunk.\n            false - Disable DID call treatment for incoming DNIS\n                    digits."
                    },
                    "cvVoicePeerCfgCasGroup": {
                      "type": "string",
                      "description": "The object specifies the CAS group number of a CAS\n            capable T1/E1  that is in the dialCtlPeerCfgLowerIf object\n            of RFC2128.\n            This object can be set to a valid CAS group number only if\n            the dialCtlPeerCfgLowerIf contains a valid ifIndex for a\n            CAS capable T1/E1. The object must set to -1 before the\n            value of the  dialCtlPeerCfgLowerIf object of RFC2128 can\n            be changed.",
                      "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvCasGroup"
                    },
                    "cvVoicePeerCfgRegisterE164": {
                      "type": "boolean",
                      "description": "This object specifies that the E.164 number specified in\n            the dialCtlPeerCfgOriginateAddress field of the associated\n            dialCtlPeerCfgTable entry be registered as an extension \n            phone number of this gateway for H323 gatekeeper and/or \n            SIP registrar."
                    },
                    "cvVoicePeerCfgForwardDigits": {
                      "type": "integer",
                      "description": "This object specifies the number of dialed digits to\n            forward to the remote destination in the setup message.\n            The object can take the value:\n                0-32 number of right justified digits to forward\n                -1 default\n                -2 forward extra digits i.e those over and above\n                   those needed to match to the destination pattern\n                -3 forward all digits",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "cvVoicePeerCfgEchoCancellerTest": {
                      "type": "string",
                      "description": "This object specifies which, if any, test to run in the\n            echo canceller when a call from the network is connected.\n            echoCancellerTestNone    - do not run a test.\n            echoCancellerG168Test2A  - run ITU-T G.168 Test 2A.\n            echoCancellerG168Test2B  - run ITU-T G.168 Test 2B.\n            echoCancellerG168Test2Ca - run ITU-T G.168 Test 2C(a).\n            echoCancellerG168Test2Cb - run ITU-T G.168 Test 2C(b).\n            echoCancellerG168Test3A  - run ITU-T G.168 Test 3A.\n            echoCancellerG168Test3B  - run ITU-T G.168 Test 3B.\n            echoCancellerG168Test3C  - run ITU-T G.168 Test 3C.\n            echoCancellerG168Test4   - run ITU-T G.168 Test 4.\n            echoCancellerG168Test5   - run ITU-T G.168 Test 5.\n            echoCancellerG168Test6   - run ITU-T G.168 Test 6.\n            echoCancellerG168Test7   - run ITU-T G.168 Test 7.\n            echoCancellerG168Test9   - run ITU-T G.168 Test 9."
                    }
                  }
                },
                "example": {
                  "CISCO-VOICE-DIAL-CONTROL-MIB:cvVoicePeerCfgEntry": {
                    "ifIndex": "example-string",
                    "cvVoicePeerCfgSessionTarget": "example-string",
                    "cvVoicePeerCfgDialDigitsPrefix": "example-string",
                    "cvVoicePeerCfgDIDCallEnable": true,
                    "cvVoicePeerCfgCasGroup": "example-string",
                    "cvVoicePeerCfgRegisterE164": true,
                    "cvVoicePeerCfgForwardDigits": -2147483648,
                    "cvVoicePeerCfgEchoCancellerTest": "example-string"
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cvVoicePeerCfgEntry-4"
      },
      "x-yang-path": "/cvVoicePeerCfgEntry={ifIndex}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "ifIndex"
      ]
    },
    "/data/CISCO-VOICE-DIAL-CONTROL-MIB:cvVoIPPeerCfgEntry": {
      "get": {
        "summary": "Get cvVoIPPeerCfgEntry list",
        "description": "Retrieve list of cvVoIPPeerCfgEntry entries from MIB",
        "tags": [
          "CISCO-VOICE-DIAL-CONTROL-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "A single VoIP specific Peer. One entry per VoIP\n          encapsulation.\n          The entry is created when its associated 'voiceOverIp(104)'\n          encapsulation ifEntry is created.\n          This entry is deleted when its associated ifEntry is\n          deleted.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "ifIndex": {
                        "type": "string",
                        "description": "ifIndex",
                        "x-yang-type": "leafref"
                      },
                      "cvVoIPPeerCfgSessionProtocol": {
                        "type": "string",
                        "description": "The object specifies the session protocol to be used\n            for Internet call between local and remote router via\n            IP backbone.",
                        "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvSessionProtocol"
                      },
                      "cvVoIPPeerCfgDesiredQoS": {
                        "type": "string",
                        "description": "The object specifies the user requested Quality of Service\n            for the call.",
                        "x-yang-type": "int-serv:QosService"
                      },
                      "cvVoIPPeerCfgMinAcceptableQoS": {
                        "type": "string",
                        "description": "The object specifies the minimally acceptable Quality of\n            Service for the call.",
                        "x-yang-type": "int-serv:QosService"
                      },
                      "cvVoIPPeerCfgSessionTarget": {
                        "type": "string",
                        "description": "The object specifies the session target of the peer.\n            Session Targets definitions:\n            The session target has the syntax used by the IETF service\n            location protocol. The syntax is as follows:\n            \n            mapping-type:type-specific-syntax\n            \n            the mapping-type specifies a scheme for mapping the\n            matching dial string to a session target. The\n            type-specific-syntax is exactly that, something that the\n            particular mapping scheme can understand.\n            For example,\n            Session target           Meaning\n            ipv4:171.68.13.55:1006   The session target is the IP\n                                     version 4 address of 171.68.13.55\n                                     and port 1006.\n            dns:pots.cisco.com:1661  The session target is the IP host\n                                     with dns name pots.cisco.com, and\n                                     port 1661.\n            ras                      The session target is the\n                                     gatekeeper with RAS (Registration\n                                     , Admission,  Status protocol).\n            settlement               The session target is the\n                                     settlement server.\n            enum:1                   The session target is the enum \n                                     profile match table 1.\n            \n            The valid Mapping type definitions for the peer are as\n            follows:\n            ipv4       - Syntax: ipv4:w.x.y.z:port or  ipv4:w.x.y.z\n            dns        - Syntax: dns:host.domain:port or\n                                 dns:host.domain\n            ras        - Syntax: ras\n            settlement - Syntax: settlement\n            enum       - Syntax: enum:\n            \n            loopback - Syntax: loopback:where\n               'where' string is defined as follows:\n               rtp - loopback is performed at the transport protocol\n                     level.\n            \n            Local loopback case:\n            rtp - the session application sets up an RTP stream to\n                itself (i.e. actually allocates a port pair and opens\n                the appropriate UDP sockets). It then does the full\n                RTP encapsulation, sends the packets to the loopback\n                IP address, receives the RTP packets, and hands the\n                compressed voice back to the CODEC. This tests the\n                entire local processing path, both transmit and\n                receive, in the router, as well as all of the above\n                paths.\n            \n            Remote loopback case:\n            rtp: RTP packets received from the network are decapsulated and\n                 immediately re-encapsulated in the outbound RTP\n                 stream, using the same media clock (i.e. timestamp)\n                 as the received packet. They are then sent back to\n                 the remote source router as if the voice had\n                 originated on a telephony port on the local router.",
                        "x-yang-type": "snmpv2-tc:DisplayString"
                      },
                      "cvVoIPPeerCfgCoderRate": {
                        "type": "string",
                        "description": "This object specifies the most desirable codec of speech\n            for the VoIP peer.",
                        "x-yang-type": "cisco-voice:CvcSpeechCoderRate"
                      },
                      "cvVoIPPeerCfgFaxRate": {
                        "type": "string",
                        "description": "This object specifies the default transmit rate of FAX\n            the VoIP peer. If the value of this object is 'none',\n            then the Fax relay feature is disabled; otherwise the Fax\n            relay feature is enabled.",
                        "x-yang-type": "cisco-voice:CvcFaxTransmitRate"
                      },
                      "cvVoIPPeerCfgVADEnable": {
                        "type": "boolean",
                        "description": "This object specifies whether or not the VAD (Voice\n            Activity Detection) voice data is continuously transmitted\n            to IP backbone."
                      },
                      "cvVoIPPeerCfgExpectFactor": {
                        "type": "integer",
                        "description": "This object specifies the user requested Expectation\n            Factor of voice quality for the call via this peer.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "cvVoIPPeerCfgIcpif": {
                        "type": "integer",
                        "description": "This object specifies the user requested Calculated\n            Planning Impairment Factor (Icpif) for the call via this\n            peer.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "cvVoIPPeerCfgPoorQoVNotificationEnable": {
                        "type": "boolean",
                        "description": "This object specifies whether cvdcPoorQoVNotification (or\n            the newer cvdcPoorQoVNotificationRev1) traps should be\n            generated for the call that is associated with this\n            peer."
                      },
                      "cvVoIPPeerCfgUDPChecksumEnable": {
                        "type": "boolean",
                        "description": "This object specifies whether the outgoing voice related\n            UDP packet contains a valid checksum value.\n            true  - enable the checksum of outgoing voice UDP packets\n            false - disable the checksum of outgoing voice UDP packets"
                      },
                      "cvVoIPPeerCfgIPPrecedence": {
                        "type": "integer",
                        "description": "This object specifies the value to be stored in the IP\n            Precedence field of voice packets, with values ranging\n            from 0 (normal precedence) through 7 (network control),\n            allowing the managed system to set the importance of each\n            voice packet for delivering them to the destination peer.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "cvVoIPPeerCfgTechPrefix": {
                        "type": "string",
                        "description": "This object specifies the technology prefix of the peer,\n            The technology prefix and the called party address\n            are passed in Admission Request (ARQ) to gatekeeper\n            for the called party address resolution during call setup.",
                        "x-yang-type": "snmpv2-tc:DisplayString"
                      },
                      "cvVoIPPeerCfgDigitRelay": {
                        "type": "string",
                        "description": "This object specifies the methods to transmit dial digits\n            (DTMF or MF digits) via IP network.\n            rtpCisco       - Enable capability to transmit dial digits\n                             with Cisco proprietary RTP payload type.\n            h245Signal     - Enable capability to transmit dtmf digits\n                             across the H.245 channel, via the signal\n                             field of the UserInputIndication message\n            h245Alphanumeric - Enable capability to transmit dtmf\n                             digit across the H.245 channel, via the\n                             string or alphanumeric fields of the\n                             UserInputIndication message\n            rtpNte         - Enable capability to transmit dial digits\n                             using Named Telephony Event per RFC 2833\n                             section 3.\n            sipNotify      - Enable capability to transmit dtmf\n                             digits using unsolicited SIP NOTIFY\n                             messages. This mechanism is only available\n                             for SIP dialpeers.\n            sipKpml        - Enable capability to transmit dtmf\n                             digits using KPML over SIP SUBSCRIBE\n                             and NOTIFY messages. This mechanism is\n                             only available for SIP dialpeers.\n            \n            \n            Modifying the value of cvVoIPPeerCfgSessionProtocol\n            can reset the digit-relay method associated bits value in\n            this object if the modified session protocol does not\n            support  these digit-relay methods."
                      },
                      "cvVoIPPeerCfgCoderBytes": {
                        "type": "integer",
                        "description": "This object specifies the size of the voice payload sample\n            to be produced by the coder specified in\n            cvVoIPPeerCfgCoderRate.\n            Each coder sample produces 10 bytes of voice payload. The\n            specified value will be rounded down to the nearest valid\n            size.\n            \n            A value of 0, specifies that the coder defined by\n            cvVoIPPeerCfgCoderRate should produce its default payload\n            size.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "cvVoIPPeerCfgFaxBytes": {
                        "type": "integer",
                        "description": "This object specifies the payload size to be produced by\n            the coder when it is generating fax data. A value of 0,\n            specifies that the coder specified in\n            cvVoIPCfgPeerCoderRate should produce its default fax\n            payload size.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "cvVoIPPeerCfgInBandSignaling": {
                        "type": "string",
                        "description": "This object specifies the type of in-band signaling that\n            will be used between the end points of the call. It is\n            used by the router to determine how to interpret ABCD\n            signaling bits sent as part of voice payload data.",
                        "x-yang-type": "cisco-voice:CvcInBandSignaling"
                      },
                      "cvVoIPPeerCfgMediaSetting": {
                        "type": "string",
                        "description": "This object specifies how the media is to be setup on\n            an IP-IP Gateway. Two choices are valid: flow-through\n            and flow-around. When in flow-through mode, which is the\n            default setting, the IP-IP Gateway will terminate and \n            then re-originate the media stream. When flow-around\n            is configured the Gateway will not be involved with the\n            media, since it will flow-around the Gateway and will\n            be established directly between the endpoints."
                      },
                      "cvVoIPPeerCfgDesiredQoSVideo": {
                        "type": "string",
                        "description": "The object specifies the user requested Quality of Service\n            for the video portion of the call.",
                        "x-yang-type": "int-serv:QosService"
                      },
                      "cvVoIPPeerCfgMinAcceptableQoSVideo": {
                        "type": "string",
                        "description": "The object specifies the minimally acceptable Quality of\n            Service for the video portion of the call.",
                        "x-yang-type": "int-serv:QosService"
                      },
                      "cvVoIPPeerCfgRedirectip2ip": {
                        "type": "boolean",
                        "description": "This object specifies the Inbound VoIP calls that match\n            an outbound VoIP dialpeer will be responded with a SIP \n            redirect(for inbound SIP) or H.450.3 call-forward(for \n            inbound H.323)."
                      },
                      "cvVoIPPeerCfgOctetAligned": {
                        "type": "boolean",
                        "description": "If the object has a value true(1) octet align operation\n            is used, and if the value is false(2), bandwidth efficient\n            operation is used. This object is not instantiated when\n            the object cvVoIPPeerCfgCoderRate is not equal to\n            gsmAmrNb enum."
                      },
                      "cvVoIPPeerCfgBitRates": {
                        "type": "string",
                        "description": "This object indicates modes of Bit rates. One or more\n            upto four modes can be configured at the same time as\n            bit rates can be changed dynamically for AMR-NB codec.\n            This object is not instantiated when the object\n            cvVoIPPeerCfgCoderRate is not equal to gsmAmrNb enum.",
                        "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvAmrNbBitRateMode"
                      },
                      "cvVoIPPeerCfgCRC": {
                        "type": "boolean",
                        "description": "If the object has a value of true(1), frame CRC will be\n            included in the payload and if the value is false(2),\n            frame CRC will not be included in the payload.\n            This object is applicable only when RTP frame type\n            is octet aligned. This object is not instantiated when\n            the object cvVoIPPeerCfgCoderRate is not equal to\n            gsmAmrNb enum."
                      },
                      "cvVoIPPeerCfgCoderMode": {
                        "type": "string",
                        "description": "This object indicates the iLBC codec mode to be used.\n            The value of this object is valid only if \n            cvVoIPPeerCfgCoderRate is equal to 'iLBC'.",
                        "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvIlbcFrameMode"
                      },
                      "cvVoIPPeerCfgCodingMode": {
                        "type": "string",
                        "description": "This object specifies the coding mode to be used. The object is\n            instantiated only if cvVoIPPeerCfgCoderRate is 'iSAC'. Following\n            coding modes are supported:\n            adaptive    (1) - adaptive mode where iSAC performs bandwidth  \n                              estimation and adapts to the available channel\n            \n                              bandwidth.\n            independent (2) - independent mode in which no bandwidth\n            estimation \n                              is performed."
                      },
                      "cvVoIPPeerCfgBitRate": {
                        "type": "integer",
                        "description": "This object specifies the target bit rate. The object is\n            instantiated only if cvVoIPPeerCfgCoderRate is 'iSAC'.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cvVoIPPeerCfgFrameSize": {
                        "type": "string",
                        "description": "This object specifies the frame size used. The object is\n            instantiated only if cvVoIPPeerCfgCoderRate is 'iSAC'.\n            The frame size can be 30 ms or 60 ms, and it can be fixed for\n            all packets or vary depending on the configuration and bandwidth\n            estimation. Thus it can have the following values:\n            frameSize30      - initial frame size of 30 ms\n            frameSize60      - initial frame size of 60 ms\n            frameSize30fixed - fixed frame size 30 ms\n            frameSize60fixed - fixed frame size 60 ms"
                      },
                      "cvVoIPPeerCfgDSCPPolicyNotificationEnable": {
                        "type": "boolean",
                        "description": "This object specifies whether cvdcPolicyViolationNotification\n            traps should be generated for the call that is associated with\n            this peer for RPH to DSCP mapping and policing feature."
                      },
                      "cvVoIPPeerCfgMediaPolicyNotificationEnable": {
                        "type": "boolean",
                        "description": "This object specifies whether cvdcPolicyViolationNotification\n            traps should be generated for the call that is associated with\n            this peer for Media policing feature.."
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-VOICE-DIAL-CONTROL-MIB:cvVoIPPeerCfgEntry": [
                    {
                      "ifIndex": "example-string",
                      "cvVoIPPeerCfgSessionProtocol": "192.168.1.1",
                      "cvVoIPPeerCfgDesiredQoS": "192.168.1.1",
                      "cvVoIPPeerCfgMinAcceptableQoS": "192.168.1.1",
                      "cvVoIPPeerCfgSessionTarget": "192.168.1.1",
                      "cvVoIPPeerCfgCoderRate": "192.168.1.1",
                      "cvVoIPPeerCfgFaxRate": "192.168.1.1",
                      "cvVoIPPeerCfgVADEnable": true,
                      "cvVoIPPeerCfgExpectFactor": -2147483648,
                      "cvVoIPPeerCfgIcpif": -2147483648,
                      "cvVoIPPeerCfgPoorQoVNotificationEnable": true,
                      "cvVoIPPeerCfgUDPChecksumEnable": true,
                      "cvVoIPPeerCfgIPPrecedence": -2147483648,
                      "cvVoIPPeerCfgTechPrefix": "192.168.1.1",
                      "cvVoIPPeerCfgDigitRelay": "192.168.1.1",
                      "cvVoIPPeerCfgCoderBytes": -2147483648,
                      "cvVoIPPeerCfgFaxBytes": -2147483648,
                      "cvVoIPPeerCfgInBandSignaling": "192.168.1.1",
                      "cvVoIPPeerCfgMediaSetting": "192.168.1.1",
                      "cvVoIPPeerCfgDesiredQoSVideo": "192.168.1.1",
                      "cvVoIPPeerCfgMinAcceptableQoSVideo": "192.168.1.1",
                      "cvVoIPPeerCfgRedirectip2ip": true,
                      "cvVoIPPeerCfgOctetAligned": true,
                      "cvVoIPPeerCfgBitRates": "192.168.1.1",
                      "cvVoIPPeerCfgCRC": true,
                      "cvVoIPPeerCfgCoderMode": "192.168.1.1",
                      "cvVoIPPeerCfgCodingMode": "192.168.1.1",
                      "cvVoIPPeerCfgBitRate": 0,
                      "cvVoIPPeerCfgFrameSize": "192.168.1.1",
                      "cvVoIPPeerCfgDSCPPolicyNotificationEnable": true,
                      "cvVoIPPeerCfgMediaPolicyNotificationEnable": true
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cvVoIPPeerCfgEntry-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": "/cvVoIPPeerCfgEntry",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-VOICE-DIAL-CONTROL-MIB:cvVoIPPeerCfgEntry={ifIndex}": {
      "get": {
        "summary": "Get cvVoIPPeerCfgEntry entry",
        "description": "Retrieve specific cvVoIPPeerCfgEntry entry by key from MIB",
        "tags": [
          "CISCO-VOICE-DIAL-CONTROL-MIB"
        ],
        "parameters": [
          {
            "name": "ifIndex",
            "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": {
                    "ifIndex": {
                      "type": "string",
                      "description": "ifIndex",
                      "x-yang-type": "leafref"
                    },
                    "cvVoIPPeerCfgSessionProtocol": {
                      "type": "string",
                      "description": "The object specifies the session protocol to be used\n            for Internet call between local and remote router via\n            IP backbone.",
                      "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvSessionProtocol"
                    },
                    "cvVoIPPeerCfgDesiredQoS": {
                      "type": "string",
                      "description": "The object specifies the user requested Quality of Service\n            for the call.",
                      "x-yang-type": "int-serv:QosService"
                    },
                    "cvVoIPPeerCfgMinAcceptableQoS": {
                      "type": "string",
                      "description": "The object specifies the minimally acceptable Quality of\n            Service for the call.",
                      "x-yang-type": "int-serv:QosService"
                    },
                    "cvVoIPPeerCfgSessionTarget": {
                      "type": "string",
                      "description": "The object specifies the session target of the peer.\n            Session Targets definitions:\n            The session target has the syntax used by the IETF service\n            location protocol. The syntax is as follows:\n            \n            mapping-type:type-specific-syntax\n            \n            the mapping-type specifies a scheme for mapping the\n            matching dial string to a session target. The\n            type-specific-syntax is exactly that, something that the\n            particular mapping scheme can understand.\n            For example,\n            Session target           Meaning\n            ipv4:171.68.13.55:1006   The session target is the IP\n                                     version 4 address of 171.68.13.55\n                                     and port 1006.\n            dns:pots.cisco.com:1661  The session target is the IP host\n                                     with dns name pots.cisco.com, and\n                                     port 1661.\n            ras                      The session target is the\n                                     gatekeeper with RAS (Registration\n                                     , Admission,  Status protocol).\n            settlement               The session target is the\n                                     settlement server.\n            enum:1                   The session target is the enum \n                                     profile match table 1.\n            \n            The valid Mapping type definitions for the peer are as\n            follows:\n            ipv4       - Syntax: ipv4:w.x.y.z:port or  ipv4:w.x.y.z\n            dns        - Syntax: dns:host.domain:port or\n                                 dns:host.domain\n            ras        - Syntax: ras\n            settlement - Syntax: settlement\n            enum       - Syntax: enum:\n            \n            loopback - Syntax: loopback:where\n               'where' string is defined as follows:\n               rtp - loopback is performed at the transport protocol\n                     level.\n            \n            Local loopback case:\n            rtp - the session application sets up an RTP stream to\n                itself (i.e. actually allocates a port pair and opens\n                the appropriate UDP sockets). It then does the full\n                RTP encapsulation, sends the packets to the loopback\n                IP address, receives the RTP packets, and hands the\n                compressed voice back to the CODEC. This tests the\n                entire local processing path, both transmit and\n                receive, in the router, as well as all of the above\n                paths.\n            \n            Remote loopback case:\n            rtp: RTP packets received from the network are decapsulated and\n                 immediately re-encapsulated in the outbound RTP\n                 stream, using the same media clock (i.e. timestamp)\n                 as the received packet. They are then sent back to\n                 the remote source router as if the voice had\n                 originated on a telephony port on the local router.",
                      "x-yang-type": "snmpv2-tc:DisplayString"
                    },
                    "cvVoIPPeerCfgCoderRate": {
                      "type": "string",
                      "description": "This object specifies the most desirable codec of speech\n            for the VoIP peer.",
                      "x-yang-type": "cisco-voice:CvcSpeechCoderRate"
                    },
                    "cvVoIPPeerCfgFaxRate": {
                      "type": "string",
                      "description": "This object specifies the default transmit rate of FAX\n            the VoIP peer. If the value of this object is 'none',\n            then the Fax relay feature is disabled; otherwise the Fax\n            relay feature is enabled.",
                      "x-yang-type": "cisco-voice:CvcFaxTransmitRate"
                    },
                    "cvVoIPPeerCfgVADEnable": {
                      "type": "boolean",
                      "description": "This object specifies whether or not the VAD (Voice\n            Activity Detection) voice data is continuously transmitted\n            to IP backbone."
                    },
                    "cvVoIPPeerCfgExpectFactor": {
                      "type": "integer",
                      "description": "This object specifies the user requested Expectation\n            Factor of voice quality for the call via this peer.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "cvVoIPPeerCfgIcpif": {
                      "type": "integer",
                      "description": "This object specifies the user requested Calculated\n            Planning Impairment Factor (Icpif) for the call via this\n            peer.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "cvVoIPPeerCfgPoorQoVNotificationEnable": {
                      "type": "boolean",
                      "description": "This object specifies whether cvdcPoorQoVNotification (or\n            the newer cvdcPoorQoVNotificationRev1) traps should be\n            generated for the call that is associated with this\n            peer."
                    },
                    "cvVoIPPeerCfgUDPChecksumEnable": {
                      "type": "boolean",
                      "description": "This object specifies whether the outgoing voice related\n            UDP packet contains a valid checksum value.\n            true  - enable the checksum of outgoing voice UDP packets\n            false - disable the checksum of outgoing voice UDP packets"
                    },
                    "cvVoIPPeerCfgIPPrecedence": {
                      "type": "integer",
                      "description": "This object specifies the value to be stored in the IP\n            Precedence field of voice packets, with values ranging\n            from 0 (normal precedence) through 7 (network control),\n            allowing the managed system to set the importance of each\n            voice packet for delivering them to the destination peer.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "cvVoIPPeerCfgTechPrefix": {
                      "type": "string",
                      "description": "This object specifies the technology prefix of the peer,\n            The technology prefix and the called party address\n            are passed in Admission Request (ARQ) to gatekeeper\n            for the called party address resolution during call setup.",
                      "x-yang-type": "snmpv2-tc:DisplayString"
                    },
                    "cvVoIPPeerCfgDigitRelay": {
                      "type": "string",
                      "description": "This object specifies the methods to transmit dial digits\n            (DTMF or MF digits) via IP network.\n            rtpCisco       - Enable capability to transmit dial digits\n                             with Cisco proprietary RTP payload type.\n            h245Signal     - Enable capability to transmit dtmf digits\n                             across the H.245 channel, via the signal\n                             field of the UserInputIndication message\n            h245Alphanumeric - Enable capability to transmit dtmf\n                             digit across the H.245 channel, via the\n                             string or alphanumeric fields of the\n                             UserInputIndication message\n            rtpNte         - Enable capability to transmit dial digits\n                             using Named Telephony Event per RFC 2833\n                             section 3.\n            sipNotify      - Enable capability to transmit dtmf\n                             digits using unsolicited SIP NOTIFY\n                             messages. This mechanism is only available\n                             for SIP dialpeers.\n            sipKpml        - Enable capability to transmit dtmf\n                             digits using KPML over SIP SUBSCRIBE\n                             and NOTIFY messages. This mechanism is\n                             only available for SIP dialpeers.\n            \n            \n            Modifying the value of cvVoIPPeerCfgSessionProtocol\n            can reset the digit-relay method associated bits value in\n            this object if the modified session protocol does not\n            support  these digit-relay methods."
                    },
                    "cvVoIPPeerCfgCoderBytes": {
                      "type": "integer",
                      "description": "This object specifies the size of the voice payload sample\n            to be produced by the coder specified in\n            cvVoIPPeerCfgCoderRate.\n            Each coder sample produces 10 bytes of voice payload. The\n            specified value will be rounded down to the nearest valid\n            size.\n            \n            A value of 0, specifies that the coder defined by\n            cvVoIPPeerCfgCoderRate should produce its default payload\n            size.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "cvVoIPPeerCfgFaxBytes": {
                      "type": "integer",
                      "description": "This object specifies the payload size to be produced by\n            the coder when it is generating fax data. A value of 0,\n            specifies that the coder specified in\n            cvVoIPCfgPeerCoderRate should produce its default fax\n            payload size.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "cvVoIPPeerCfgInBandSignaling": {
                      "type": "string",
                      "description": "This object specifies the type of in-band signaling that\n            will be used between the end points of the call. It is\n            used by the router to determine how to interpret ABCD\n            signaling bits sent as part of voice payload data.",
                      "x-yang-type": "cisco-voice:CvcInBandSignaling"
                    },
                    "cvVoIPPeerCfgMediaSetting": {
                      "type": "string",
                      "description": "This object specifies how the media is to be setup on\n            an IP-IP Gateway. Two choices are valid: flow-through\n            and flow-around. When in flow-through mode, which is the\n            default setting, the IP-IP Gateway will terminate and \n            then re-originate the media stream. When flow-around\n            is configured the Gateway will not be involved with the\n            media, since it will flow-around the Gateway and will\n            be established directly between the endpoints."
                    },
                    "cvVoIPPeerCfgDesiredQoSVideo": {
                      "type": "string",
                      "description": "The object specifies the user requested Quality of Service\n            for the video portion of the call.",
                      "x-yang-type": "int-serv:QosService"
                    },
                    "cvVoIPPeerCfgMinAcceptableQoSVideo": {
                      "type": "string",
                      "description": "The object specifies the minimally acceptable Quality of\n            Service for the video portion of the call.",
                      "x-yang-type": "int-serv:QosService"
                    },
                    "cvVoIPPeerCfgRedirectip2ip": {
                      "type": "boolean",
                      "description": "This object specifies the Inbound VoIP calls that match\n            an outbound VoIP dialpeer will be responded with a SIP \n            redirect(for inbound SIP) or H.450.3 call-forward(for \n            inbound H.323)."
                    },
                    "cvVoIPPeerCfgOctetAligned": {
                      "type": "boolean",
                      "description": "If the object has a value true(1) octet align operation\n            is used, and if the value is false(2), bandwidth efficient\n            operation is used. This object is not instantiated when\n            the object cvVoIPPeerCfgCoderRate is not equal to\n            gsmAmrNb enum."
                    },
                    "cvVoIPPeerCfgBitRates": {
                      "type": "string",
                      "description": "This object indicates modes of Bit rates. One or more\n            upto four modes can be configured at the same time as\n            bit rates can be changed dynamically for AMR-NB codec.\n            This object is not instantiated when the object\n            cvVoIPPeerCfgCoderRate is not equal to gsmAmrNb enum.",
                      "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvAmrNbBitRateMode"
                    },
                    "cvVoIPPeerCfgCRC": {
                      "type": "boolean",
                      "description": "If the object has a value of true(1), frame CRC will be\n            included in the payload and if the value is false(2),\n            frame CRC will not be included in the payload.\n            This object is applicable only when RTP frame type\n            is octet aligned. This object is not instantiated when\n            the object cvVoIPPeerCfgCoderRate is not equal to\n            gsmAmrNb enum."
                    },
                    "cvVoIPPeerCfgCoderMode": {
                      "type": "string",
                      "description": "This object indicates the iLBC codec mode to be used.\n            The value of this object is valid only if \n            cvVoIPPeerCfgCoderRate is equal to 'iLBC'.",
                      "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvIlbcFrameMode"
                    },
                    "cvVoIPPeerCfgCodingMode": {
                      "type": "string",
                      "description": "This object specifies the coding mode to be used. The object is\n            instantiated only if cvVoIPPeerCfgCoderRate is 'iSAC'. Following\n            coding modes are supported:\n            adaptive    (1) - adaptive mode where iSAC performs bandwidth  \n                              estimation and adapts to the available channel\n            \n                              bandwidth.\n            independent (2) - independent mode in which no bandwidth\n            estimation \n                              is performed."
                    },
                    "cvVoIPPeerCfgBitRate": {
                      "type": "integer",
                      "description": "This object specifies the target bit rate. The object is\n            instantiated only if cvVoIPPeerCfgCoderRate is 'iSAC'.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cvVoIPPeerCfgFrameSize": {
                      "type": "string",
                      "description": "This object specifies the frame size used. The object is\n            instantiated only if cvVoIPPeerCfgCoderRate is 'iSAC'.\n            The frame size can be 30 ms or 60 ms, and it can be fixed for\n            all packets or vary depending on the configuration and bandwidth\n            estimation. Thus it can have the following values:\n            frameSize30      - initial frame size of 30 ms\n            frameSize60      - initial frame size of 60 ms\n            frameSize30fixed - fixed frame size 30 ms\n            frameSize60fixed - fixed frame size 60 ms"
                    },
                    "cvVoIPPeerCfgDSCPPolicyNotificationEnable": {
                      "type": "boolean",
                      "description": "This object specifies whether cvdcPolicyViolationNotification\n            traps should be generated for the call that is associated with\n            this peer for RPH to DSCP mapping and policing feature."
                    },
                    "cvVoIPPeerCfgMediaPolicyNotificationEnable": {
                      "type": "boolean",
                      "description": "This object specifies whether cvdcPolicyViolationNotification\n            traps should be generated for the call that is associated with\n            this peer for Media policing feature.."
                    }
                  }
                },
                "example": {
                  "CISCO-VOICE-DIAL-CONTROL-MIB:cvVoIPPeerCfgEntry": {
                    "ifIndex": "example-string",
                    "cvVoIPPeerCfgSessionProtocol": "192.168.1.1",
                    "cvVoIPPeerCfgDesiredQoS": "192.168.1.1",
                    "cvVoIPPeerCfgMinAcceptableQoS": "192.168.1.1",
                    "cvVoIPPeerCfgSessionTarget": "192.168.1.1",
                    "cvVoIPPeerCfgCoderRate": "192.168.1.1",
                    "cvVoIPPeerCfgFaxRate": "192.168.1.1",
                    "cvVoIPPeerCfgVADEnable": true,
                    "cvVoIPPeerCfgExpectFactor": -2147483648,
                    "cvVoIPPeerCfgIcpif": -2147483648,
                    "cvVoIPPeerCfgPoorQoVNotificationEnable": true,
                    "cvVoIPPeerCfgUDPChecksumEnable": true,
                    "cvVoIPPeerCfgIPPrecedence": -2147483648,
                    "cvVoIPPeerCfgTechPrefix": "192.168.1.1",
                    "cvVoIPPeerCfgDigitRelay": "192.168.1.1",
                    "cvVoIPPeerCfgCoderBytes": -2147483648,
                    "cvVoIPPeerCfgFaxBytes": -2147483648,
                    "cvVoIPPeerCfgInBandSignaling": "192.168.1.1",
                    "cvVoIPPeerCfgMediaSetting": "192.168.1.1",
                    "cvVoIPPeerCfgDesiredQoSVideo": "192.168.1.1",
                    "cvVoIPPeerCfgMinAcceptableQoSVideo": "192.168.1.1",
                    "cvVoIPPeerCfgRedirectip2ip": true,
                    "cvVoIPPeerCfgOctetAligned": true,
                    "cvVoIPPeerCfgBitRates": "192.168.1.1",
                    "cvVoIPPeerCfgCRC": true,
                    "cvVoIPPeerCfgCoderMode": "192.168.1.1",
                    "cvVoIPPeerCfgCodingMode": "192.168.1.1",
                    "cvVoIPPeerCfgBitRate": 0,
                    "cvVoIPPeerCfgFrameSize": "192.168.1.1",
                    "cvVoIPPeerCfgDSCPPolicyNotificationEnable": true,
                    "cvVoIPPeerCfgMediaPolicyNotificationEnable": true
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cvVoIPPeerCfgEntry-4"
      },
      "x-yang-path": "/cvVoIPPeerCfgEntry={ifIndex}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "ifIndex"
      ]
    },
    "/data/CISCO-VOICE-DIAL-CONTROL-MIB:cvPeerCommonCfgEntry": {
      "get": {
        "summary": "Get cvPeerCommonCfgEntry list",
        "description": "Retrieve list of cvPeerCommonCfgEntry entries from MIB",
        "tags": [
          "CISCO-VOICE-DIAL-CONTROL-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "A single Voice specific Peer. One entry per voice related\n          encapsulation.\n          The entry is created when a voice related encapsulation\n          ifEntry is created.\n          This entry is deleted when its associated ifEntry is\n          deleted.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "ifIndex": {
                        "type": "string",
                        "description": "ifIndex",
                        "x-yang-type": "leafref"
                      },
                      "cvPeerCommonCfgIncomingDnisDigits": {
                        "type": "string",
                        "description": "The object specifies the prefix of the incoming Dialed\n            Number Identification Service (DNIS) digits for the peer.\n            The DNIS digits prefix is used to match with the incoming\n            DNIS number for incoming call discrimination. If the\n            digits in this object are matched with incoming DNIS\n            number, the  associated dialCtlPeerCfgInfoType in RFC 2128\n            will be used as a call discriminator for differentiating\n            speech, data, fax, video or modem calls.",
                        "x-yang-type": "snmpv2-tc:DisplayString"
                      },
                      "cvPeerCommonCfgMaxConnections": {
                        "type": "integer",
                        "description": "The object specifies the maximum allowed connection\n            to/from the peer. A value of -1 disables the limit of\n            maximum connections.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "cvPeerCommonCfgApplicationName": {
                        "type": "string",
                        "description": "The object specifies the application to handle the incoming\n            call after the peer is selected.\n            If no application name is specified, then the default\n            session application will take care of the incoming call.",
                        "x-yang-type": "snmpv2-tc:DisplayString"
                      },
                      "cvPeerCommonCfgPreference": {
                        "type": "integer",
                        "description": "This object specifies the selection preference of a peer\n            when multiple peers are matched to the selection criteria.\n            The value of 0 has the lowest preference for peer\n            selection.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "cvPeerCommonCfgHuntStop": {
                        "type": "boolean",
                        "description": "This object specifies whether dialpeer hunting should stop\n            when this peer is reached."
                      },
                      "cvPeerCommonCfgDnisMappingName": {
                        "type": "string",
                        "description": "The object specifies a Dialer Number Identification\n            Service (DNIS) map name for the Voice specific peer\n            entry specified in this row. A DNIS is a called party\n            number and they can be grouped and identified by DNIS\n            map.",
                        "x-yang-type": "cisco-voice-dnis:DnisMapname"
                      },
                      "cvPeerCommonCfgSourceCarrierId": {
                        "type": "string",
                        "description": "The object specifies the Source Carrier Id for the peer.\n            The Source Carrier Id is used to match with the Source\n            Carrier Id of a call. If the Source Carrier Id in this\n            object is matched with the Source Carrier Id of a call,\n            then the associated peer will be used to handle the call. \n            Only alphanumeric characters, '-' and '_' are allowed in\n            the string.",
                        "x-yang-type": "snmp-framework:SnmpAdminString"
                      },
                      "cvPeerCommonCfgTargetCarrierId": {
                        "type": "string",
                        "description": "The object specifies the Target Carrier Id for the peer.\n            The Target Carrier Id is used to match with the Target\n            Carrier Id of a call. If the Target Carrier Id in this\n            object is matched with the Target Carrier Id of a call,\n            then the associated peer will be used to handle the call.\n            Only alphanumeric characters, '-' and '_' are allowed in\n            the string.",
                        "x-yang-type": "snmp-framework:SnmpAdminString"
                      },
                      "cvPeerCommonCfgSourceTrunkGrpLabel": {
                        "type": "string",
                        "description": "The object specifies the Source Trunk Group Label for the\n            peer. The Source Trunk Group Label is used to match with\n            the Source Trunk Group Label of a call. If the Source\n            Trunk Group Label in this object is matched with the\n            Source Trunk Group Label of a call, then the associated\n            peer will be used to handle the call. \n            Only alphanumeric characters, '-' and '_' are allowed in\n            the string.",
                        "x-yang-type": "snmp-framework:SnmpAdminString"
                      },
                      "cvPeerCommonCfgTargetTrunkGrpLabel": {
                        "type": "string",
                        "description": "The object specifies the Target Trunk Group Label for the\n            peer. The Target Trunk Group Label is used to match with\n            the Target Trunk Group Label of a call. If the Target\n            Trunk Group Label in this object is matched with the\n            Target Trunk Group Label of a call, then the associated\n            peer will be used to handle the call.\n            Only alphanumeric characters, '-' and '_' are allowed in\n            the string.",
                        "x-yang-type": "snmp-framework:SnmpAdminString"
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-VOICE-DIAL-CONTROL-MIB:cvPeerCommonCfgEntry": [
                    {
                      "ifIndex": "example-string",
                      "cvPeerCommonCfgIncomingDnisDigits": "example-string",
                      "cvPeerCommonCfgMaxConnections": -2147483648,
                      "cvPeerCommonCfgApplicationName": "interface-1",
                      "cvPeerCommonCfgPreference": -2147483648,
                      "cvPeerCommonCfgHuntStop": true,
                      "cvPeerCommonCfgDnisMappingName": "interface-1",
                      "cvPeerCommonCfgSourceCarrierId": "example-string",
                      "cvPeerCommonCfgTargetCarrierId": "example-string",
                      "cvPeerCommonCfgSourceTrunkGrpLabel": "example-string",
                      "cvPeerCommonCfgTargetTrunkGrpLabel": "example-string"
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cvPeerCommonCfgEntry-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": "/cvPeerCommonCfgEntry",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-VOICE-DIAL-CONTROL-MIB:cvPeerCommonCfgEntry={ifIndex}": {
      "get": {
        "summary": "Get cvPeerCommonCfgEntry entry",
        "description": "Retrieve specific cvPeerCommonCfgEntry entry by key from MIB",
        "tags": [
          "CISCO-VOICE-DIAL-CONTROL-MIB"
        ],
        "parameters": [
          {
            "name": "ifIndex",
            "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": {
                    "ifIndex": {
                      "type": "string",
                      "description": "ifIndex",
                      "x-yang-type": "leafref"
                    },
                    "cvPeerCommonCfgIncomingDnisDigits": {
                      "type": "string",
                      "description": "The object specifies the prefix of the incoming Dialed\n            Number Identification Service (DNIS) digits for the peer.\n            The DNIS digits prefix is used to match with the incoming\n            DNIS number for incoming call discrimination. If the\n            digits in this object are matched with incoming DNIS\n            number, the  associated dialCtlPeerCfgInfoType in RFC 2128\n            will be used as a call discriminator for differentiating\n            speech, data, fax, video or modem calls.",
                      "x-yang-type": "snmpv2-tc:DisplayString"
                    },
                    "cvPeerCommonCfgMaxConnections": {
                      "type": "integer",
                      "description": "The object specifies the maximum allowed connection\n            to/from the peer. A value of -1 disables the limit of\n            maximum connections.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "cvPeerCommonCfgApplicationName": {
                      "type": "string",
                      "description": "The object specifies the application to handle the incoming\n            call after the peer is selected.\n            If no application name is specified, then the default\n            session application will take care of the incoming call.",
                      "x-yang-type": "snmpv2-tc:DisplayString"
                    },
                    "cvPeerCommonCfgPreference": {
                      "type": "integer",
                      "description": "This object specifies the selection preference of a peer\n            when multiple peers are matched to the selection criteria.\n            The value of 0 has the lowest preference for peer\n            selection.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "cvPeerCommonCfgHuntStop": {
                      "type": "boolean",
                      "description": "This object specifies whether dialpeer hunting should stop\n            when this peer is reached."
                    },
                    "cvPeerCommonCfgDnisMappingName": {
                      "type": "string",
                      "description": "The object specifies a Dialer Number Identification\n            Service (DNIS) map name for the Voice specific peer\n            entry specified in this row. A DNIS is a called party\n            number and they can be grouped and identified by DNIS\n            map.",
                      "x-yang-type": "cisco-voice-dnis:DnisMapname"
                    },
                    "cvPeerCommonCfgSourceCarrierId": {
                      "type": "string",
                      "description": "The object specifies the Source Carrier Id for the peer.\n            The Source Carrier Id is used to match with the Source\n            Carrier Id of a call. If the Source Carrier Id in this\n            object is matched with the Source Carrier Id of a call,\n            then the associated peer will be used to handle the call. \n            Only alphanumeric characters, '-' and '_' are allowed in\n            the string.",
                      "x-yang-type": "snmp-framework:SnmpAdminString"
                    },
                    "cvPeerCommonCfgTargetCarrierId": {
                      "type": "string",
                      "description": "The object specifies the Target Carrier Id for the peer.\n            The Target Carrier Id is used to match with the Target\n            Carrier Id of a call. If the Target Carrier Id in this\n            object is matched with the Target Carrier Id of a call,\n            then the associated peer will be used to handle the call.\n            Only alphanumeric characters, '-' and '_' are allowed in\n            the string.",
                      "x-yang-type": "snmp-framework:SnmpAdminString"
                    },
                    "cvPeerCommonCfgSourceTrunkGrpLabel": {
                      "type": "string",
                      "description": "The object specifies the Source Trunk Group Label for the\n            peer. The Source Trunk Group Label is used to match with\n            the Source Trunk Group Label of a call. If the Source\n            Trunk Group Label in this object is matched with the\n            Source Trunk Group Label of a call, then the associated\n            peer will be used to handle the call. \n            Only alphanumeric characters, '-' and '_' are allowed in\n            the string.",
                      "x-yang-type": "snmp-framework:SnmpAdminString"
                    },
                    "cvPeerCommonCfgTargetTrunkGrpLabel": {
                      "type": "string",
                      "description": "The object specifies the Target Trunk Group Label for the\n            peer. The Target Trunk Group Label is used to match with\n            the Target Trunk Group Label of a call. If the Target\n            Trunk Group Label in this object is matched with the\n            Target Trunk Group Label of a call, then the associated\n            peer will be used to handle the call.\n            Only alphanumeric characters, '-' and '_' are allowed in\n            the string.",
                      "x-yang-type": "snmp-framework:SnmpAdminString"
                    }
                  }
                },
                "example": {
                  "CISCO-VOICE-DIAL-CONTROL-MIB:cvPeerCommonCfgEntry": {
                    "ifIndex": "example-string",
                    "cvPeerCommonCfgIncomingDnisDigits": "example-string",
                    "cvPeerCommonCfgMaxConnections": -2147483648,
                    "cvPeerCommonCfgApplicationName": "interface-1",
                    "cvPeerCommonCfgPreference": -2147483648,
                    "cvPeerCommonCfgHuntStop": true,
                    "cvPeerCommonCfgDnisMappingName": "interface-1",
                    "cvPeerCommonCfgSourceCarrierId": "example-string",
                    "cvPeerCommonCfgTargetCarrierId": "example-string",
                    "cvPeerCommonCfgSourceTrunkGrpLabel": "example-string",
                    "cvPeerCommonCfgTargetTrunkGrpLabel": "example-string"
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cvPeerCommonCfgEntry-4"
      },
      "x-yang-path": "/cvPeerCommonCfgEntry={ifIndex}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "ifIndex"
      ]
    },
    "/data/CISCO-VOICE-DIAL-CONTROL-MIB:cvCallActiveEntry": {
      "get": {
        "summary": "Get cvCallActiveEntry list",
        "description": "Retrieve list of cvCallActiveEntry entries from MIB",
        "tags": [
          "CISCO-VOICE-DIAL-CONTROL-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "cvCallActiveEntry",
                  "items": {
                    "type": "object",
                    "properties": {
                      "callActiveSetupTime": {
                        "type": "string",
                        "description": "callActiveSetupTime",
                        "x-yang-type": "leafref"
                      },
                      "callActiveIndex": {
                        "type": "string",
                        "description": "callActiveIndex",
                        "x-yang-type": "leafref"
                      },
                      "cvCallActiveConnectionId": {
                        "type": "string",
                        "description": "The global connection identifier for the\n            active telephony leg of the call.",
                        "x-yang-type": "cisco-voice:CvcGUid"
                      },
                      "cvCallActiveTxDuration": {
                        "type": "string",
                        "description": "Duration of Transmit path open from this peer to the\n            voice gateway for the call leg. This counter object will\n            lock at the maximum value which is approximately two\n            days.",
                        "x-yang-type": "dial-control:AbsoluteCounter32"
                      },
                      "cvCallActiveVoiceTxDuration": {
                        "type": "string",
                        "description": "Duration of voice transmitted from this peer to voice\n            gateway for this call leg. The Voice Utilization Rate can\n            be obtained by dividing this by cvCallActiveTXDuration\n            object. This counter object will lock at the maximum\n            value which is approximately two days.",
                        "x-yang-type": "dial-control:AbsoluteCounter32"
                      },
                      "cvCallActiveFaxTxDuration": {
                        "type": "string",
                        "description": "Duration of fax transmitted from this peer to voice gateway\n            for this call leg. The FAX Utilization Rate can be\n            obtained by dividing this by cvCallActiveTXDuration\n            object. This counter object will lock at the maximum\n            value which is approximately two days.",
                        "x-yang-type": "dial-control:AbsoluteCounter32"
                      },
                      "cvCallActiveCoderTypeRate": {
                        "type": "string",
                        "description": "The negotiated coder rate. It specifies the transmit rate of\n            voice/fax compression to its associated call leg for the\n            call.",
                        "x-yang-type": "cisco-voice:CvcCoderTypeRate"
                      },
                      "cvCallActiveNoiseLevel": {
                        "type": "integer",
                        "description": "The object contains the active noise level for the call\n            leg.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "cvCallActiveACOMLevel": {
                        "type": "integer",
                        "description": "The object contains the sum of Echo Return Loss (ERL),\n            cancellation loss (Echo Return Loss Enhancement) and\n            nonlinear processing loss for the call leg.\n            The value -1 indicates the level can not be determined or\n            level detection is disabled.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "cvCallActiveOutSignalLevel": {
                        "type": "integer",
                        "description": "The object contains the active output signal level to\n            telephony interface that is used by the call leg.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "cvCallActiveInSignalLevel": {
                        "type": "integer",
                        "description": "The object contains the active input signal level from\n            telephony interface that is used by the call leg.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "cvCallActiveERLLevel": {
                        "type": "integer",
                        "description": "The object contains the current Echo Return Loss (ERL)\n            level for the call leg.\n            The value -1 indicates the level can not be determined or\n            level detection is disabled.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "cvCallActiveSessionTarget": {
                        "type": "string",
                        "description": "The object specifies the session target of the peer that\n            is used for the call leg. This object is set with the\n            information in the call associated\n            cvVoicePeerCfgSessionTarget object when the call is\n            connected.",
                        "x-yang-type": "snmpv2-tc:DisplayString"
                      },
                      "cvCallActiveImgPageCount": {
                        "type": "string",
                        "description": "The number of FAX related image pages are received or\n            transmitted via the peer for the call leg.",
                        "x-yang-type": "dial-control:AbsoluteCounter32"
                      },
                      "cvCallActiveCallingName": {
                        "type": "string",
                        "description": "The calling party name of the call. If the name is\n            not available, then it will have a length of zero.",
                        "x-yang-type": "snmp-framework:SnmpAdminString"
                      },
                      "cvCallActiveCallerIDBlock": {
                        "type": "boolean",
                        "description": "The object indicates whether or not the caller ID feature\n            is blocked for this call."
                      },
                      "cvCallActiveEcanReflectorLocation": {
                        "type": "integer",
                        "description": "The location in milliseconds of the largest amplitude\n            reflector detected by the echo canceller for this call. \n            The value 0 indicates there is no reflector or the \n            information is not available.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "cvCallActiveAccountCode": {
                        "type": "string",
                        "description": "The object indicates the account code input to the call.\n            It could be used for call screen or by down stream server\n            for billing purpose.\n            The value of empty string indicates no account code input.",
                        "x-yang-type": "snmp-framework:SnmpAdminString"
                      },
                      "cvCallActiveERLLevelRev1": {
                        "type": "integer",
                        "description": "The object contains the current Echo Return Loss (ERL)\n            level for the call leg.\n            The value -1 indicates the level can not be determined or\n            level detection is disabled.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "cvCallActiveCallId": {
                        "type": "integer",
                        "description": "This object represents the call identifier\n            for the active telephony leg of the call.",
                        "minimum": 0,
                        "maximum": 4294967295
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-VOICE-DIAL-CONTROL-MIB:cvCallActiveEntry": [
                    {
                      "callActiveSetupTime": "example-string",
                      "callActiveIndex": "example-string",
                      "cvCallActiveConnectionId": "example-string",
                      "cvCallActiveTxDuration": "example-string",
                      "cvCallActiveVoiceTxDuration": "example-string",
                      "cvCallActiveFaxTxDuration": "example-string",
                      "cvCallActiveCoderTypeRate": "ethernetCsmacd(6)",
                      "cvCallActiveNoiseLevel": -2147483648,
                      "cvCallActiveACOMLevel": -2147483648,
                      "cvCallActiveOutSignalLevel": -2147483648,
                      "cvCallActiveInSignalLevel": -2147483648,
                      "cvCallActiveERLLevel": -2147483648,
                      "cvCallActiveSessionTarget": "example-string",
                      "cvCallActiveImgPageCount": "example-string",
                      "cvCallActiveCallingName": "interface-1",
                      "cvCallActiveCallerIDBlock": true,
                      "cvCallActiveEcanReflectorLocation": -2147483648,
                      "cvCallActiveAccountCode": "example-string",
                      "cvCallActiveERLLevelRev1": -2147483648,
                      "cvCallActiveCallId": 0
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cvCallActiveEntry-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": "/cvCallActiveEntry",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-VOICE-DIAL-CONTROL-MIB:cvVoIPCallActiveEntry": {
      "get": {
        "summary": "Get cvVoIPCallActiveEntry list",
        "description": "Retrieve list of cvVoIPCallActiveEntry entries from MIB",
        "tags": [
          "CISCO-VOICE-DIAL-CONTROL-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "cvVoIPCallActiveEntry",
                  "items": {
                    "type": "object",
                    "properties": {
                      "callActiveSetupTime": {
                        "type": "string",
                        "description": "callActiveSetupTime",
                        "x-yang-type": "leafref"
                      },
                      "callActiveIndex": {
                        "type": "string",
                        "description": "callActiveIndex",
                        "x-yang-type": "leafref"
                      },
                      "cvVoIPCallActiveConnectionId": {
                        "type": "string",
                        "description": "The global connection identifier for\n            the active VoIP leg of the call.",
                        "x-yang-type": "cisco-voice:CvcGUid"
                      },
                      "cvVoIPCallActiveRemoteIPAddress": {
                        "type": "string",
                        "description": "Remote system IP address for the VoIP call.",
                        "format": "inet:ipv4-address"
                      },
                      "cvVoIPCallActiveRemoteUDPPort": {
                        "type": "integer",
                        "description": "Remote system UDP listener port to which to transmit voice\n            packets.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "cvVoIPCallActiveRoundTripDelay": {
                        "type": "integer",
                        "description": "The voice packet round trip delay between local and\n            the remote system on the IP backbone during the call.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cvVoIPCallActiveSelectedQoS": {
                        "type": "string",
                        "description": "The selected RSVP QoS for the voice call.",
                        "x-yang-type": "int-serv:QosService"
                      },
                      "cvVoIPCallActiveSessionProtocol": {
                        "type": "string",
                        "description": "The object specifies the session protocol to be used\n            for Internet call between local and remote router via\n            IP backbone.",
                        "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvSessionProtocol"
                      },
                      "cvVoIPCallActiveSessionTarget": {
                        "type": "string",
                        "description": "The object specifies the session target of the peer that\n            is used for the call. This object is set with the\n            information in the call associated\n            cvVoIPPeerCfgSessionTarget object when the voice over IP\n            call is connected.",
                        "x-yang-type": "snmpv2-tc:DisplayString"
                      },
                      "cvVoIPCallActiveOnTimeRvPlayout": {
                        "type": "string",
                        "description": "Duration of voice playout from data received on time for\n            this call. This plus the durations for the GapFills in the\n            following entries gives the Total Voice Playout Duration\n            for Active Voice.\n            This does not include duration for which no data was sent by the\n            Transmit end as voice signal, e.g., silence suppression\n            and fax signal. The On Time Playout Rate can be computed\n            by dividing this entry by the Total Voice Playout Duration.\n            This counter object will lock at the maximum value which\n            is approximately two days.",
                        "x-yang-type": "dial-control:AbsoluteCounter32"
                      },
                      "cvVoIPCallActiveGapFillWithSilence": {
                        "type": "string",
                        "description": "Duration of voice signal replaced with signal played out\n            during silence due to voice data not received on time\n            (or lost) from voice gateway this call. This counter\n            object will lock at the maximum value which is\n            approximately two days.",
                        "x-yang-type": "dial-control:AbsoluteCounter32"
                      },
                      "cvVoIPCallActiveGapFillWithPrediction": {
                        "type": "string",
                        "description": "Duration of voice signal played out with signal synthesized\n            from parameters or samples of data preceding in time due\n            to voice data not received on time (or lost) from voice\n            gateway for this call. An example of such playout is\n            frame-erasure or frame-concealment strategies in G.729 and\n            G.723.1 compression algorithms. This counter object will\n            lock at the maximum value which is approximately two days.",
                        "x-yang-type": "dial-control:AbsoluteCounter32"
                      },
                      "cvVoIPCallActiveGapFillWithInterpolation": {
                        "type": "string",
                        "description": "Duration of voice signal played out with signal synthesized\n            from parameters or samples of data preceding and following\n            in time due to voice data not received on time (or lost)\n            from voice gateway for this call. This counter object\n            will lock at the maximum value which is approximately two\n            days.",
                        "x-yang-type": "dial-control:AbsoluteCounter32"
                      },
                      "cvVoIPCallActiveGapFillWithRedundancy": {
                        "type": "string",
                        "description": "Duration of voice signal played out with signal synthesized\n            from redundancy parameters available due to voice data not\n            received on time (or lost) from voice gateway for this call.\n            This counter object will lock at the maximum value which\n            is approximately two days.",
                        "x-yang-type": "dial-control:AbsoluteCounter32"
                      },
                      "cvVoIPCallActiveHiWaterPlayoutDelay": {
                        "type": "string",
                        "description": "The high water mark Voice Playout FIFO Delay during\n            the voice call. This counter object will lock at the\n            maximum value which is approximately two days.",
                        "x-yang-type": "dial-control:AbsoluteCounter32"
                      },
                      "cvVoIPCallActiveLoWaterPlayoutDelay": {
                        "type": "integer",
                        "description": "The low water mark Voice Playout FIFO Delay during\n            the voice call.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cvVoIPCallActiveReceiveDelay": {
                        "type": "integer",
                        "description": "The average Playout FIFO Delay plus the decoder delay\n            during the voice call.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cvVoIPCallActiveVADEnable": {
                        "type": "boolean",
                        "description": "The object indicates whether or not the VAD (Voice Activity\n            Detection) was enabled for the voice call."
                      },
                      "cvVoIPCallActiveCoderTypeRate": {
                        "type": "string",
                        "description": "The negotiated coder rate. It specifies the transmit rate of\n            voice/fax compression to its associated call leg for the\n            call. This rate is different from the configuration rate\n            because of rate negotiation during the call.",
                        "x-yang-type": "cisco-voice:CvcCoderTypeRate"
                      },
                      "cvVoIPCallActiveLostPackets": {
                        "type": "string",
                        "description": "The number of lost voice packets during the call.",
                        "x-yang-type": "dial-control:AbsoluteCounter32"
                      },
                      "cvVoIPCallActiveEarlyPackets": {
                        "type": "string",
                        "description": "The number of received voice packets that\n            arrived too early to store in jitter buffer\n            during the call.",
                        "x-yang-type": "dial-control:AbsoluteCounter32"
                      },
                      "cvVoIPCallActiveLatePackets": {
                        "type": "string",
                        "description": "The number of received voice packets that\n            arrived too late to playout with CODEC (Coder/Decoder)\n            during the call.",
                        "x-yang-type": "dial-control:AbsoluteCounter32"
                      },
                      "cvVoIPCallActiveUsername": {
                        "type": "string",
                        "description": "The textual identifier of the calling party (user) of the\n            call. If the username is not available, then the value of\n            this object will have a length of zero.",
                        "x-yang-type": "snmp-framework:SnmpAdminString"
                      },
                      "cvVoIPCallActiveProtocolCallId": {
                        "type": "string",
                        "description": "The protocol-specific call identifier for the VoIP call.",
                        "format": "binary"
                      },
                      "cvVoIPCallActiveRemSigIPAddrT": {
                        "type": "string",
                        "description": "This object specifies the type of address contained in\n            the associated instance of cvVoIPCallActiveRemSigIPAddr.",
                        "x-yang-type": "inet-address:InetAddressType"
                      },
                      "cvVoIPCallActiveRemSigIPAddr": {
                        "type": "string",
                        "description": "Remote signalling IP address for the VoIP call.",
                        "x-yang-type": "inet-address:InetAddress"
                      },
                      "cvVoIPCallActiveRemSigPort": {
                        "type": "integer",
                        "description": "Remote signalling listener port to which to transmit\n            voice packets.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "cvVoIPCallActiveRemMediaIPAddrT": {
                        "type": "string",
                        "description": "This object specifies the type of address contained in\n            the associated instance of\n            cvVoIPCallActiveRemMediaIPAddr.",
                        "x-yang-type": "inet-address:InetAddressType"
                      },
                      "cvVoIPCallActiveRemMediaIPAddr": {
                        "type": "string",
                        "description": "Remote media end point IP address for the VoIP call.",
                        "x-yang-type": "inet-address:InetAddress"
                      },
                      "cvVoIPCallActiveRemMediaPort": {
                        "type": "integer",
                        "description": "Remote media end point listener port to which to transmit\n            voice packets.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "cvVoIPCallActiveSRTPEnable": {
                        "type": "boolean",
                        "description": "The object indicates whether or not the SRTP (Secured RTP)\n            was enabled for the voice call."
                      },
                      "cvVoIPCallActiveOctetAligned": {
                        "type": "boolean",
                        "description": "If the object has a value true(1) octet align operation\n            is used, and if the value is false(2), bandwidth efficient\n            operation is used. This object is not instantiated when\n            the object cvVoIPCallActiveCoderTypeRate is not equal to\n            gsmAmrNb enum."
                      },
                      "cvVoIPCallActiveBitRates": {
                        "type": "string",
                        "description": "This object indicates modes of Bit rates.\n            This object is not instantiated when the object\n            cvVoIPCallActiveCoderTypeRate is not equal to\n            gsmAmrNb enum.",
                        "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvAmrNbBitRateMode"
                      },
                      "cvVoIPCallActiveModeChgPeriod": {
                        "type": "integer",
                        "description": "The object indicates the interval (N frame-blocks) at which\n            codec mode changes are allowed. This object is not\n            instantiated when the object cvVoIPCallActiveCoderTypeRate\n            is not equal to gsmAmrNb enum.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "cvVoIPCallActiveModeChgNeighbor": {
                        "type": "boolean",
                        "description": "If the object has a value of true(1), mode changes will be\n            made to only neighboring modes set to\n            cvVoIPCallActiveBitRates object. If the value is false(2),\n            mode changes will be allowed to any modes set to\n            cvVoIPCallActiveBitRates object. This object is not\n            instantiated when the object cvVoIPCallActiveCoderTypeRate\n            is not equal to gsmAmrNb enum."
                      },
                      "cvVoIPCallActiveMaxPtime": {
                        "type": "integer",
                        "description": "The object indicates the maximum amount of media that\n            can be encapsulated in a payload. Supported value is\n            20 msec. This object is not instantiated when the\n            object cvVoIPCallActiveCoderTypeRate is not equal to\n            gsmAmrNb enum.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "cvVoIPCallActiveCRC": {
                        "type": "boolean",
                        "description": "If the object has a value of true(1), frame CRC will be\n            included in the payload and if the value is false(2),\n            frame CRC will not be included in the payload.\n            This object is applicable only when RTP frame type\n            is octet aligned. This object is not instantiated when\n            the object cvVoIPCallActiveCoderTypeRate is not equal to\n            gsmAmrNb enum."
                      },
                      "cvVoIPCallActiveRobustSorting": {
                        "type": "boolean",
                        "description": "If the object has a value of true(1), payload employs\n            robust sorting and if the value is false(2), payload\n            does not employ robust sorting. This object is applicable\n            only when RTP frame type is octet aligned. This object\n            is not instantiated when the object\n            cvVoIPCallActiveCoderTypeRate is not equal to gsmAmrNb\n            enum."
                      },
                      "cvVoIPCallActiveEncap": {
                        "type": "string",
                        "description": "The object indicates the RTP encapsulation type.\n            Supported RTP encapsulation type is RFC3267.\n            This object is not instantiated when the object\n            cvVoIPCallActiveCoderTypeRate is not equal to\n            gsmAmrNb enum.",
                        "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvAmrNbRtpEncap"
                      },
                      "cvVoIPCallActiveInterleaving": {
                        "type": "integer",
                        "description": "The object indicates the maximum number of frame-blocks\n            allowed in an interleaving group. It indicates that\n            frame-block level interleaving will be used for that\n            session. If this object is not set, interleaving\n            is not used. This object is applicable only when\n            RTP frame type is octet aligned. This object is not\n            instantiated when the object cvVoIPCallActiveCoderTypeRate\n            is not equal to gsmAmrNb enum.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "cvVoIPCallActivePtime": {
                        "type": "integer",
                        "description": "The object indicates the length of the time in milliseconds\n            represented by the media of the packet. Supported value is\n            20 milliseconds. This object is not instantiated when the\n            object cvVoIPCallActiveCoderTypeRate is not equal to\n            gsmAmrNb enum.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "cvVoIPCallActiveChannels": {
                        "type": "integer",
                        "description": "The object indicates the number of audio channels.\n            Supported value is 1. This object is not instantiated\n            when the object cvVoIPCallActiveCoderTypeRate is not equal\n            to gsmAmrNb enum.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "cvVoIPCallActiveCoderMode": {
                        "type": "string",
                        "description": "The object indicates the iLBC codec mode.\n            The value of this object is valid only if \n            cvVoIPCallActiveCoderTypeRate is equal to \n            'iLBC'.",
                        "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvIlbcFrameMode"
                      },
                      "cvVoIPCallActiveCallId": {
                        "type": "integer",
                        "description": "This object represents the call identifier\n            for the active VoIP leg of the call.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cvVoIPCallActiveCallReferenceId": {
                        "type": "string",
                        "description": "The call reference ID associates the video call entry and voice\n            call entry of the same endpoint.  An audio-only call may or may\n            not have a valid call reference ID (i.e. value greater than\n            zero), but in both cases, there will not be a video call entry\n            associated with it.  \n            \n            For a video call, the video-specific information  is stored in a\n            call entry in cVideoSessionActive of CISCO-VIDEO-SESSION-MIB, in\n            which the call reference ID is also identified.",
                        "x-yang-type": "cisco-voice:CvcCallReferenceIdOrZero"
                      },
                      "ccVoIPCallActivePolicyName": {
                        "type": "string",
                        "description": "This object holds the policy name. It could be media\n            policy, DSCP policy etc.",
                        "x-yang-type": "snmpv2-tc:DisplayString"
                      },
                      "cvVoIPCallActiveReversedDirectionPeerAddress": {
                        "type": "string",
                        "description": "This object store the reversed direction peer address  If the\n            address is not available, then it will have a length of zero.\n            \n            If the call is ingress then it contains called number and if the\n            call is egress then it contains calling number.",
                        "x-yang-type": "snmpv2-tc:DisplayString"
                      },
                      "cvVoIPCallActiveSessionId": {
                        "type": "integer",
                        "description": "This object indicates the active session ID assigned by the\n            call manager to identify call legs that belong to the same call\n            session.",
                        "minimum": 0,
                        "maximum": 4294967295
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-VOICE-DIAL-CONTROL-MIB:cvVoIPCallActiveEntry": [
                    {
                      "callActiveSetupTime": "example-string",
                      "callActiveIndex": "example-string",
                      "cvVoIPCallActiveConnectionId": "192.168.1.1",
                      "cvVoIPCallActiveRemoteIPAddress": "192.168.1.1",
                      "cvVoIPCallActiveRemoteUDPPort": -2147483648,
                      "cvVoIPCallActiveRoundTripDelay": 0,
                      "cvVoIPCallActiveSelectedQoS": "192.168.1.1",
                      "cvVoIPCallActiveSessionProtocol": "192.168.1.1",
                      "cvVoIPCallActiveSessionTarget": "192.168.1.1",
                      "cvVoIPCallActiveOnTimeRvPlayout": "192.168.1.1",
                      "cvVoIPCallActiveGapFillWithSilence": "192.168.1.1",
                      "cvVoIPCallActiveGapFillWithPrediction": "192.168.1.1",
                      "cvVoIPCallActiveGapFillWithInterpolation": "192.168.1.1",
                      "cvVoIPCallActiveGapFillWithRedundancy": "192.168.1.1",
                      "cvVoIPCallActiveHiWaterPlayoutDelay": "192.168.1.1",
                      "cvVoIPCallActiveLoWaterPlayoutDelay": 0,
                      "cvVoIPCallActiveReceiveDelay": 0,
                      "cvVoIPCallActiveVADEnable": true,
                      "cvVoIPCallActiveCoderTypeRate": "192.168.1.1",
                      "cvVoIPCallActiveLostPackets": "192.168.1.1",
                      "cvVoIPCallActiveEarlyPackets": "192.168.1.1",
                      "cvVoIPCallActiveLatePackets": "192.168.1.1",
                      "cvVoIPCallActiveUsername": "192.168.1.1",
                      "cvVoIPCallActiveProtocolCallId": "192.168.1.1",
                      "cvVoIPCallActiveRemSigIPAddrT": "192.168.1.1",
                      "cvVoIPCallActiveRemSigIPAddr": "192.168.1.1",
                      "cvVoIPCallActiveRemSigPort": -2147483648,
                      "cvVoIPCallActiveRemMediaIPAddrT": "192.168.1.1",
                      "cvVoIPCallActiveRemMediaIPAddr": "192.168.1.1",
                      "cvVoIPCallActiveRemMediaPort": -2147483648,
                      "cvVoIPCallActiveSRTPEnable": true,
                      "cvVoIPCallActiveOctetAligned": true,
                      "cvVoIPCallActiveBitRates": "192.168.1.1",
                      "cvVoIPCallActiveModeChgPeriod": -2147483648,
                      "cvVoIPCallActiveModeChgNeighbor": true,
                      "cvVoIPCallActiveMaxPtime": -2147483648,
                      "cvVoIPCallActiveCRC": true,
                      "cvVoIPCallActiveRobustSorting": true,
                      "cvVoIPCallActiveEncap": "192.168.1.1",
                      "cvVoIPCallActiveInterleaving": -2147483648,
                      "cvVoIPCallActivePtime": -2147483648,
                      "cvVoIPCallActiveChannels": -2147483648,
                      "cvVoIPCallActiveCoderMode": "192.168.1.1",
                      "cvVoIPCallActiveCallId": 0,
                      "cvVoIPCallActiveCallReferenceId": "192.168.1.1",
                      "ccVoIPCallActivePolicyName": "192.168.1.1",
                      "cvVoIPCallActiveReversedDirectionPeerAddress": "192.168.1.1",
                      "cvVoIPCallActiveSessionId": 0
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cvVoIPCallActiveEntry-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": "/cvVoIPCallActiveEntry",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-VOICE-DIAL-CONTROL-MIB:cvCallVolConnEntry": {
      "get": {
        "summary": "Get cvCallVolConnEntry list",
        "description": "Retrieve list of cvCallVolConnEntry entries from MIB",
        "tags": [
          "CISCO-VOICE-DIAL-CONTROL-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "An entry in the cvCallVolConnTable indicates\n          number of active calls for a call connection type\n          in the voice gateway.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "cvCallVolConnIndex": {
                        "type": "string",
                        "description": "This object represents index to the\n            cvCallVolConnTable.",
                        "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvCallConnectionType"
                      },
                      "cvCallVolConnActiveConnection": {
                        "type": "integer",
                        "description": "This object represents the total number of\n            active calls for a connection type \n            in the voice gateway.",
                        "minimum": 0,
                        "maximum": 4294967295
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-VOICE-DIAL-CONTROL-MIB:cvCallVolConnEntry": [
                    {
                      "cvCallVolConnIndex": "example-string",
                      "cvCallVolConnActiveConnection": 0
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cvCallVolConnEntry-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": "/cvCallVolConnEntry",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-VOICE-DIAL-CONTROL-MIB:cvCallVolConnEntry={cvCallVolConnIndex}": {
      "get": {
        "summary": "Get cvCallVolConnEntry entry",
        "description": "Retrieve specific cvCallVolConnEntry entry by key from MIB",
        "tags": [
          "CISCO-VOICE-DIAL-CONTROL-MIB"
        ],
        "parameters": [
          {
            "name": "cvCallVolConnIndex",
            "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": {
                    "cvCallVolConnIndex": {
                      "type": "string",
                      "description": "This object represents index to the\n            cvCallVolConnTable.",
                      "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvCallConnectionType"
                    },
                    "cvCallVolConnActiveConnection": {
                      "type": "integer",
                      "description": "This object represents the total number of\n            active calls for a connection type \n            in the voice gateway.",
                      "minimum": 0,
                      "maximum": 4294967295
                    }
                  }
                },
                "example": {
                  "CISCO-VOICE-DIAL-CONTROL-MIB:cvCallVolConnEntry": {
                    "cvCallVolConnIndex": "example-string",
                    "cvCallVolConnActiveConnection": 0
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cvCallVolConnEntry-4"
      },
      "x-yang-path": "/cvCallVolConnEntry={cvCallVolConnIndex}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "cvCallVolConnIndex"
      ]
    },
    "/data/CISCO-VOICE-DIAL-CONTROL-MIB:cvCallVolIfEntry": {
      "get": {
        "summary": "Get cvCallVolIfEntry list",
        "description": "Retrieve list of cvCallVolIfEntry entries from MIB",
        "tags": [
          "CISCO-VOICE-DIAL-CONTROL-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "Each entry represents a row in cvCallVolIfTable\n          and corresponds to the information about an IP \n          interface in the voice gateway.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "ifIndex": {
                        "type": "string",
                        "description": "ifIndex",
                        "x-yang-type": "leafref"
                      },
                      "cvCallVolMediaIncomingCalls": {
                        "type": "integer",
                        "description": "This object represents the total number of\n            inbound active media calls through this IP \n            interface.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cvCallVolMediaOutgoingCalls": {
                        "type": "integer",
                        "description": "This object represents the total number of\n            outbound active media calls through the IP \n            interface.",
                        "minimum": 0,
                        "maximum": 4294967295
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-VOICE-DIAL-CONTROL-MIB:cvCallVolIfEntry": [
                    {
                      "ifIndex": "example-string",
                      "cvCallVolMediaIncomingCalls": 0,
                      "cvCallVolMediaOutgoingCalls": 0
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cvCallVolIfEntry-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": "/cvCallVolIfEntry",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-VOICE-DIAL-CONTROL-MIB:cvCallVolIfEntry={ifIndex}": {
      "get": {
        "summary": "Get cvCallVolIfEntry entry",
        "description": "Retrieve specific cvCallVolIfEntry entry by key from MIB",
        "tags": [
          "CISCO-VOICE-DIAL-CONTROL-MIB"
        ],
        "parameters": [
          {
            "name": "ifIndex",
            "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": {
                    "ifIndex": {
                      "type": "string",
                      "description": "ifIndex",
                      "x-yang-type": "leafref"
                    },
                    "cvCallVolMediaIncomingCalls": {
                      "type": "integer",
                      "description": "This object represents the total number of\n            inbound active media calls through this IP \n            interface.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cvCallVolMediaOutgoingCalls": {
                      "type": "integer",
                      "description": "This object represents the total number of\n            outbound active media calls through the IP \n            interface.",
                      "minimum": 0,
                      "maximum": 4294967295
                    }
                  }
                },
                "example": {
                  "CISCO-VOICE-DIAL-CONTROL-MIB:cvCallVolIfEntry": {
                    "ifIndex": "example-string",
                    "cvCallVolMediaIncomingCalls": 0,
                    "cvCallVolMediaOutgoingCalls": 0
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cvCallVolIfEntry-4"
      },
      "x-yang-path": "/cvCallVolIfEntry={ifIndex}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "ifIndex"
      ]
    },
    "/data/CISCO-VOICE-DIAL-CONTROL-MIB:cvCallHistoryEntry": {
      "get": {
        "summary": "Get cvCallHistoryEntry list",
        "description": "Retrieve list of cvCallHistoryEntry entries from MIB",
        "tags": [
          "CISCO-VOICE-DIAL-CONTROL-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "cvCallHistoryEntry",
                  "items": {
                    "type": "object",
                    "properties": {
                      "cCallHistoryIndex": {
                        "type": "string",
                        "description": "cCallHistoryIndex",
                        "x-yang-type": "leafref"
                      },
                      "cvCallHistoryConnectionId": {
                        "type": "string",
                        "description": "The global connection identifier for the\n            telephony leg, which was assigned to the call.",
                        "x-yang-type": "cisco-voice:CvcGUid"
                      },
                      "cvCallHistoryTxDuration": {
                        "type": "string",
                        "description": "Duration of Transmit path open from this peer to the\n            voice gateway for the call leg. This counter object will\n            lock at the maximum value which is approximately two\n            days.",
                        "x-yang-type": "dial-control:AbsoluteCounter32"
                      },
                      "cvCallHistoryVoiceTxDuration": {
                        "type": "string",
                        "description": "Duration for this call leg. The Voice Utilization Rate\n            can be obtained by dividing this by\n            cvCallHistoryTXDuration object. This counter object will\n            lock at the maximum value which is approximately two\n            days.",
                        "x-yang-type": "dial-control:AbsoluteCounter32"
                      },
                      "cvCallHistoryFaxTxDuration": {
                        "type": "string",
                        "description": "Duration of fax transmitted from this peer to voice\n            gateway for this call leg. The FAX Utilization Rate can be\n            obtained by dividing this by cvCallHistoryTXDuration\n            object. This counter object will lock at the maximum\n            value which is approximately two days.",
                        "x-yang-type": "dial-control:AbsoluteCounter32"
                      },
                      "cvCallHistoryCoderTypeRate": {
                        "type": "string",
                        "description": "The negotiated coder rate. It specifies the transmit rate\n            of voice/fax compression to its associated call leg for\n            the call.",
                        "x-yang-type": "cisco-voice:CvcCoderTypeRate"
                      },
                      "cvCallHistoryNoiseLevel": {
                        "type": "integer",
                        "description": "The object contains the average noise level for the call\n            leg.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "cvCallHistoryACOMLevel": {
                        "type": "integer",
                        "description": "The object contains the average ACOM level for the call\n            leg. The value -1 indicates the level can not be\n            determined or level detection is disabled.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "cvCallHistorySessionTarget": {
                        "type": "string",
                        "description": "The object specifies the session target of the peer that\n            is used for the call leg via telephony interface.",
                        "x-yang-type": "snmpv2-tc:DisplayString"
                      },
                      "cvCallHistoryImgPageCount": {
                        "type": "string",
                        "description": "The number of FAX related image pages are received or\n            transmitted via the peer for the call leg.",
                        "x-yang-type": "dial-control:AbsoluteCounter32"
                      },
                      "cvCallHistoryCallingName": {
                        "type": "string",
                        "description": "The calling party name of the call. If the name is\n            not available, then it will have a length of zero.",
                        "x-yang-type": "snmp-framework:SnmpAdminString"
                      },
                      "cvCallHistoryCallerIDBlock": {
                        "type": "boolean",
                        "description": "The object indicates whether or not the caller ID feature\n            is blocked for this call."
                      },
                      "cvCallHistoryAccountCode": {
                        "type": "string",
                        "description": "The object indicates the account code input to the call.\n            It could be used by down stream billing server.\n            The value of empty string indicates no account code input.",
                        "x-yang-type": "snmp-framework:SnmpAdminString"
                      },
                      "cvCallHistoryCallId": {
                        "type": "integer",
                        "description": "This object represents the call identifier for the\n            telephony leg, which was assigned to the call.",
                        "minimum": 0,
                        "maximum": 4294967295
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-VOICE-DIAL-CONTROL-MIB:cvCallHistoryEntry": [
                    {
                      "cCallHistoryIndex": "example-string",
                      "cvCallHistoryConnectionId": "example-string",
                      "cvCallHistoryTxDuration": "example-string",
                      "cvCallHistoryVoiceTxDuration": "example-string",
                      "cvCallHistoryFaxTxDuration": "example-string",
                      "cvCallHistoryCoderTypeRate": "ethernetCsmacd(6)",
                      "cvCallHistoryNoiseLevel": -2147483648,
                      "cvCallHistoryACOMLevel": -2147483648,
                      "cvCallHistorySessionTarget": "example-string",
                      "cvCallHistoryImgPageCount": "example-string",
                      "cvCallHistoryCallingName": "interface-1",
                      "cvCallHistoryCallerIDBlock": true,
                      "cvCallHistoryAccountCode": "example-string",
                      "cvCallHistoryCallId": 0
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cvCallHistoryEntry-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": "/cvCallHistoryEntry",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-VOICE-DIAL-CONTROL-MIB:cvCallHistoryEntry={cCallHistoryIndex}": {
      "get": {
        "summary": "Get cvCallHistoryEntry entry",
        "description": "Retrieve specific cvCallHistoryEntry entry by key from MIB",
        "tags": [
          "CISCO-VOICE-DIAL-CONTROL-MIB"
        ],
        "parameters": [
          {
            "name": "cCallHistoryIndex",
            "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": {
                    "cCallHistoryIndex": {
                      "type": "string",
                      "description": "cCallHistoryIndex",
                      "x-yang-type": "leafref"
                    },
                    "cvCallHistoryConnectionId": {
                      "type": "string",
                      "description": "The global connection identifier for the\n            telephony leg, which was assigned to the call.",
                      "x-yang-type": "cisco-voice:CvcGUid"
                    },
                    "cvCallHistoryTxDuration": {
                      "type": "string",
                      "description": "Duration of Transmit path open from this peer to the\n            voice gateway for the call leg. This counter object will\n            lock at the maximum value which is approximately two\n            days.",
                      "x-yang-type": "dial-control:AbsoluteCounter32"
                    },
                    "cvCallHistoryVoiceTxDuration": {
                      "type": "string",
                      "description": "Duration for this call leg. The Voice Utilization Rate\n            can be obtained by dividing this by\n            cvCallHistoryTXDuration object. This counter object will\n            lock at the maximum value which is approximately two\n            days.",
                      "x-yang-type": "dial-control:AbsoluteCounter32"
                    },
                    "cvCallHistoryFaxTxDuration": {
                      "type": "string",
                      "description": "Duration of fax transmitted from this peer to voice\n            gateway for this call leg. The FAX Utilization Rate can be\n            obtained by dividing this by cvCallHistoryTXDuration\n            object. This counter object will lock at the maximum\n            value which is approximately two days.",
                      "x-yang-type": "dial-control:AbsoluteCounter32"
                    },
                    "cvCallHistoryCoderTypeRate": {
                      "type": "string",
                      "description": "The negotiated coder rate. It specifies the transmit rate\n            of voice/fax compression to its associated call leg for\n            the call.",
                      "x-yang-type": "cisco-voice:CvcCoderTypeRate"
                    },
                    "cvCallHistoryNoiseLevel": {
                      "type": "integer",
                      "description": "The object contains the average noise level for the call\n            leg.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "cvCallHistoryACOMLevel": {
                      "type": "integer",
                      "description": "The object contains the average ACOM level for the call\n            leg. The value -1 indicates the level can not be\n            determined or level detection is disabled.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "cvCallHistorySessionTarget": {
                      "type": "string",
                      "description": "The object specifies the session target of the peer that\n            is used for the call leg via telephony interface.",
                      "x-yang-type": "snmpv2-tc:DisplayString"
                    },
                    "cvCallHistoryImgPageCount": {
                      "type": "string",
                      "description": "The number of FAX related image pages are received or\n            transmitted via the peer for the call leg.",
                      "x-yang-type": "dial-control:AbsoluteCounter32"
                    },
                    "cvCallHistoryCallingName": {
                      "type": "string",
                      "description": "The calling party name of the call. If the name is\n            not available, then it will have a length of zero.",
                      "x-yang-type": "snmp-framework:SnmpAdminString"
                    },
                    "cvCallHistoryCallerIDBlock": {
                      "type": "boolean",
                      "description": "The object indicates whether or not the caller ID feature\n            is blocked for this call."
                    },
                    "cvCallHistoryAccountCode": {
                      "type": "string",
                      "description": "The object indicates the account code input to the call.\n            It could be used by down stream billing server.\n            The value of empty string indicates no account code input.",
                      "x-yang-type": "snmp-framework:SnmpAdminString"
                    },
                    "cvCallHistoryCallId": {
                      "type": "integer",
                      "description": "This object represents the call identifier for the\n            telephony leg, which was assigned to the call.",
                      "minimum": 0,
                      "maximum": 4294967295
                    }
                  }
                },
                "example": {
                  "CISCO-VOICE-DIAL-CONTROL-MIB:cvCallHistoryEntry": {
                    "cCallHistoryIndex": "example-string",
                    "cvCallHistoryConnectionId": "example-string",
                    "cvCallHistoryTxDuration": "example-string",
                    "cvCallHistoryVoiceTxDuration": "example-string",
                    "cvCallHistoryFaxTxDuration": "example-string",
                    "cvCallHistoryCoderTypeRate": "ethernetCsmacd(6)",
                    "cvCallHistoryNoiseLevel": -2147483648,
                    "cvCallHistoryACOMLevel": -2147483648,
                    "cvCallHistorySessionTarget": "example-string",
                    "cvCallHistoryImgPageCount": "example-string",
                    "cvCallHistoryCallingName": "interface-1",
                    "cvCallHistoryCallerIDBlock": true,
                    "cvCallHistoryAccountCode": "example-string",
                    "cvCallHistoryCallId": 0
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cvCallHistoryEntry-4"
      },
      "x-yang-path": "/cvCallHistoryEntry={cCallHistoryIndex}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "cCallHistoryIndex"
      ]
    },
    "/data/CISCO-VOICE-DIAL-CONTROL-MIB:cvVoIPCallHistoryEntry": {
      "get": {
        "summary": "Get cvVoIPCallHistoryEntry list",
        "description": "Retrieve list of cvVoIPCallHistoryEntry entries from MIB",
        "tags": [
          "CISCO-VOICE-DIAL-CONTROL-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "cvVoIPCallHistoryEntry",
                  "items": {
                    "type": "object",
                    "properties": {
                      "cCallHistoryIndex": {
                        "type": "string",
                        "description": "cCallHistoryIndex",
                        "x-yang-type": "leafref"
                      },
                      "cvVoIPCallHistoryConnectionId": {
                        "type": "string",
                        "description": "The global connection identifier for the\n            VoIP leg, which was assigned to the call.",
                        "x-yang-type": "cisco-voice:CvcGUid"
                      },
                      "cvVoIPCallHistoryRemoteIPAddress": {
                        "type": "string",
                        "description": "Remote system IP address for the call.",
                        "format": "inet:ipv4-address"
                      },
                      "cvVoIPCallHistoryRemoteUDPPort": {
                        "type": "integer",
                        "description": "Remote system UDP listener port to which to transmit voice\n            packets for the call.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "cvVoIPCallHistoryRoundTripDelay": {
                        "type": "integer",
                        "description": "The voice packet round trip delay between local and\n            the remote system on the IP backbone during the call.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cvVoIPCallHistorySelectedQoS": {
                        "type": "string",
                        "description": "The selected RSVP QoS for the call.",
                        "x-yang-type": "int-serv:QosService"
                      },
                      "cvVoIPCallHistorySessionProtocol": {
                        "type": "string",
                        "description": "The object specifies the session protocol to be used\n            for Internet call between local and remote router via\n            IP backbone.",
                        "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvSessionProtocol"
                      },
                      "cvVoIPCallHistorySessionTarget": {
                        "type": "string",
                        "description": "The object specifies the session target of the peer that\n            is used for the Voice over IP call.",
                        "x-yang-type": "snmpv2-tc:DisplayString"
                      },
                      "cvVoIPCallHistoryOnTimeRvPlayout": {
                        "type": "string",
                        "description": "Duration of voice playout from data received on time for\n            this call. This plus the durations for the GapFills in the\n            following entries gives the Total Voice Playout Duration\n            for Active Voice.\n            This does not include duration for which no data was sent by the\n            Transmit end as voice signal, e.g., silence suppression\n            and fax signal. The On Time Playout Rate can be computed\n            by dividing this entry by the Total Voice Playout Duration.\n            This counter object will lock at the maximum value which\n            is approximately two days.",
                        "x-yang-type": "dial-control:AbsoluteCounter32"
                      },
                      "cvVoIPCallHistoryGapFillWithSilence": {
                        "type": "string",
                        "description": "Duration of voice signal replaced with signal played out\n            during silence due to voice data not received on time\n            (or lost) from voice gateway this call. This counter\n            object will lock at the maximum value which is\n            approximately two days.",
                        "x-yang-type": "dial-control:AbsoluteCounter32"
                      },
                      "cvVoIPCallHistoryGapFillWithPrediction": {
                        "type": "string",
                        "description": "Duration of voice signal played out with signal synthesized\n            from parameters or samples of data preceding in time due to\n            voice data not received on time (or lost) from voice gateway\n            for this call. An example of such playout is frame-erasure\n            or  frame-concealment strategies in G.729 and G.723.1\n            compression algorithms. This counter object will lock at\n            the maximum value which is approximately two days.",
                        "x-yang-type": "dial-control:AbsoluteCounter32"
                      },
                      "cvVoIPCallHistoryGapFillWithInterpolation": {
                        "type": "string",
                        "description": "Duration of voice signal played out with signal synthesized\n            from parameters or samples of data preceding and following\n            in time due to voice data not received on time (or lost)\n            from voice gateway for this call. This counter object\n            will lock at the maximum value which is approximately two\n            days.",
                        "x-yang-type": "dial-control:AbsoluteCounter32"
                      },
                      "cvVoIPCallHistoryGapFillWithRedundancy": {
                        "type": "string",
                        "description": "Duration of voice signal played out with signal synthesized\n            from redundancy parameters available due to voice data not\n            received on time (or lost) from voice gateway for this call.\n            This counter object will lock at the maximum value which\n            is approximately two days.",
                        "x-yang-type": "dial-control:AbsoluteCounter32"
                      },
                      "cvVoIPCallHistoryHiWaterPlayoutDelay": {
                        "type": "string",
                        "description": "The high water mark Voice Playout FIFO Delay during\n            the voice call. This counter object will lock at the\n            maximum value which is approximately two days.",
                        "x-yang-type": "dial-control:AbsoluteCounter32"
                      },
                      "cvVoIPCallHistoryLoWaterPlayoutDelay": {
                        "type": "integer",
                        "description": "The low water mark Voice Playout FIFO Delay during\n            the voice call.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cvVoIPCallHistoryReceiveDelay": {
                        "type": "integer",
                        "description": "The average Playout FIFO Delay plus the decoder delay\n            during the voice call.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cvVoIPCallHistoryVADEnable": {
                        "type": "boolean",
                        "description": "The object indicates whether or not the VAD (Voice Activity\n            Detection) was enabled for the voice call."
                      },
                      "cvVoIPCallHistoryCoderTypeRate": {
                        "type": "string",
                        "description": "The negotiated coder rate. It specifies the transmit rate of\n            voice/fax compression to its associated call leg for the\n            call. This rate is different from the configuration rate\n            because of rate negotiation during the call.",
                        "x-yang-type": "cisco-voice:CvcCoderTypeRate"
                      },
                      "cvVoIPCallHistoryIcpif": {
                        "type": "integer",
                        "description": "The Calculated Planning Impairment Factor (Icpif) of the\n            call  that is associated to this call leg.\n            The value in this object is computed by the following\n            equation.\n            Icpif of the call =\n            Itotal (total impairment value) of the call - A\n            (Expectation Factor) in the cvVoIPPeerCfgExpectFactor of\n            the call leg associated peer.\n            A value of -1 implies that Icpif was not calculated and is\n            meaningless for this call.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "cvVoIPCallHistoryLostPackets": {
                        "type": "string",
                        "description": "The number of lost voice packets during the call.",
                        "x-yang-type": "dial-control:AbsoluteCounter32"
                      },
                      "cvVoIPCallHistoryEarlyPackets": {
                        "type": "string",
                        "description": "The number of received voice packets that are\n            arrived too early to store in jitter buffer\n            during the call.",
                        "x-yang-type": "dial-control:AbsoluteCounter32"
                      },
                      "cvVoIPCallHistoryLatePackets": {
                        "type": "string",
                        "description": "The number of received voice packets that are\n            arrived too late to playout with CODEC (Coder/Decoder)\n            during the call.",
                        "x-yang-type": "dial-control:AbsoluteCounter32"
                      },
                      "cvVoIPCallHistoryUsername": {
                        "type": "string",
                        "description": "The textual identifier of the calling party (user) of the\n            call. If the username is not available, then the value of\n            this object will have a length of zero.",
                        "x-yang-type": "snmp-framework:SnmpAdminString"
                      },
                      "cvVoIPCallHistoryProtocolCallId": {
                        "type": "string",
                        "description": "The protocol-specific call identifier for the VoIP call.",
                        "format": "binary"
                      },
                      "cvVoIPCallHistoryRemSigIPAddrT": {
                        "type": "string",
                        "description": "This object specifies the type of address contained in\n            the associated instance of cvVoIPCallHistoryRemSigIPAddr.",
                        "x-yang-type": "inet-address:InetAddressType"
                      },
                      "cvVoIPCallHistoryRemSigIPAddr": {
                        "type": "string",
                        "description": "Remote signalling IP address for the VoIP call.",
                        "x-yang-type": "inet-address:InetAddress"
                      },
                      "cvVoIPCallHistoryRemSigPort": {
                        "type": "integer",
                        "description": "Remote signalling listener port to which to transmit\n            voice packets.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "cvVoIPCallHistoryRemMediaIPAddrT": {
                        "type": "string",
                        "description": "This object specifies the type of address contained in\n            the associated instance of\n            cvVoIPCallHistoryRemMediaIPAddr.",
                        "x-yang-type": "inet-address:InetAddressType"
                      },
                      "cvVoIPCallHistoryRemMediaIPAddr": {
                        "type": "string",
                        "description": "Remote media end point IP address for the VoIP call.",
                        "x-yang-type": "inet-address:InetAddress"
                      },
                      "cvVoIPCallHistoryRemMediaPort": {
                        "type": "integer",
                        "description": "Remote media end point listener port to which to transmit\n            voice packets.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "cvVoIPCallHistorySRTPEnable": {
                        "type": "boolean",
                        "description": "The object indicates whether or not the SRTP (Secured RTP)\n            was enabled for the voice call."
                      },
                      "cvVoIPCallHistoryFallbackIcpif": {
                        "type": "integer",
                        "description": "The Calculated Planning Impairment Factor (Icpif) of the\n            call  that is associated to this call leg.\n            The value in this object is computed by the following\n            equation.\n            Icpif of the fallback probe =\n            Itotal (total impairment value)  - configured fallback\n            (Expectation Factor).\n            A value of 0 implies that Icpif was not calculated and is\n            meaningless for this attempt.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "cvVoIPCallHistoryFallbackLoss": {
                        "type": "string",
                        "description": "FallbackLoss is the percentage of loss packets based on\n            the total packets sent.",
                        "x-yang-type": "dial-control:AbsoluteCounter32"
                      },
                      "cvVoIPCallHistoryFallbackDelay": {
                        "type": "integer",
                        "description": "The FallbackDelay is calculated as follows -\n            Take the sum of the round trips for all the probes, \n            divide by the number of probes, \n            and divide by two to get the one-way delay.  \n            Then add in jitter_in or jiter_out,\n            which ever is higher.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cvVoIPCallHistoryOctetAligned": {
                        "type": "boolean",
                        "description": "If the object has a value true(1) octet align operation\n            is used, and if the value is false(2), bandwidth efficient\n            operation is used. This object is not instantiated when\n            the object cvVoIPCallHistoryCoderTypeRate is not equal to\n            gsmAmrNb enum."
                      },
                      "cvVoIPCallHistoryBitRates": {
                        "type": "string",
                        "description": "This object indicates modes of Bit rates.\n            This object is not instantiated when the object\n            cvVoIPCallHistoryCoderTypeRate is not equal to\n            gsmAmrNb enum.",
                        "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvAmrNbBitRateMode"
                      },
                      "cvVoIPCallHistoryModeChgPeriod": {
                        "type": "integer",
                        "description": "The object indicates the interval (N frame-blocks) at which\n            codec mode changes are allowed. This object is not\n            instantiated when the object cvVoIPCallHistoryCoderTypeRate\n            is not equal to gsmAmrNb enum.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "cvVoIPCallHistoryModeChgNeighbor": {
                        "type": "boolean",
                        "description": "If the object has a value of true(1), mode changes will be\n            made to only neighboring modes set to\n            cvVoIPCallHistoryBitRates object. If the value is false(2),\n            mode changes will be allowed to any modes set to\n            cvVoIPCallHistoryBitRates object. This object is not\n            instantiated when the object cvVoIPCallHistoryCoderTypeRate\n            is not equal to gsmAmrNb enum."
                      },
                      "cvVoIPCallHistoryMaxPtime": {
                        "type": "integer",
                        "description": "The object indicates the maximum amount of media that\n            can be encapsulated in a payload. Supported value is\n            20 msec. This object is not instantiated when the\n            object cvVoIPCallHistoryCoderTypeRate is not equal to\n            gsmAmrNb enum.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "cvVoIPCallHistoryCRC": {
                        "type": "boolean",
                        "description": "If the object has a value of true(1), frame CRC will be\n            included in the payload and if the value is false(2),\n            frame CRC will not be included in the payload.\n            This object is applicable only when RTP frame type\n            is octet aligned. This object is not instantiated when\n            the object cvVoIPCallHistoryCoderTypeRate is not equal to\n            gsmAmrNb enum."
                      },
                      "cvVoIPCallHistoryRobustSorting": {
                        "type": "boolean",
                        "description": "If the object has a value of true(1), payload employs\n            robust sorting and if the value is false(2), payload\n            does not employ robust sorting. This object is applicable\n            only when RTP frame type is octet aligned. This object\n            is not instantiated when the object\n            cvVoIPCallHistoryCoderTypeRate is not equal to gsmAmrNb\n            enum."
                      },
                      "cvVoIPCallHistoryEncap": {
                        "type": "string",
                        "description": "The object indicates the RTP encapsulation type.\n            Supported RTP encapsulation type is RFC3267.\n            This object is not instantiated when the object\n            cvVoIPCallHistoryCoderTypeRate is not equal to\n            gsmAmrNb enum.",
                        "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvAmrNbRtpEncap"
                      },
                      "cvVoIPCallHistoryInterleaving": {
                        "type": "integer",
                        "description": "The object indicates the maximum number of frame-blocks\n            allowed in an interleaving group. It indicates that\n            frame-block level interleaving will be used for that\n            session. If this object is not set, interleaving\n            is not used. This object is applicable only when\n            RTP frame type is octet aligned. This object is not\n            instantiated when the object cvVoIPCallHistoryCoderTypeRate\n            is not equal to gsmAmrNb enum.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "cvVoIPCallHistoryPtime": {
                        "type": "integer",
                        "description": "The object indicates the length of the time in milliseconds\n            represented by the media of the packet. Supported value is\n            20 milliseconds. This object is not instantiated when the\n            object cvVoIPCallHistoryCoderTypeRate is not equal to\n            gsmAmrNb enum.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "cvVoIPCallHistoryChannels": {
                        "type": "integer",
                        "description": "The object indicates the number of audio channels.\n            Supported value is 1. This object is not instantiated\n            when the object cvVoIPCallHistoryCoderTypeRate is not equal\n            to gsmAmrNb enum.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "cvVoIPCallHistoryCoderMode": {
                        "type": "string",
                        "description": "The object indicates the iLBC mode.\n            The value of this object is valid only if \n            cvVoIPCallHistoryCoderTypeRate is equal to \n            'iLBC'.",
                        "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvIlbcFrameMode"
                      },
                      "cvVoIPCallHistoryCallId": {
                        "type": "integer",
                        "description": "This object represents the call identifier for the\n            VoIP leg, which was assigned to the call.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cvVoIPCallHistoryCallReferenceId": {
                        "type": "string",
                        "description": "The call reference ID associates the video call entry and voice\n            call entry of the same endpoint.  An audio-only call may or may\n            not have a valid call reference ID (i.e. value greater than\n            zero), but in both cases, there will not be a video call entry\n            associated with it. \n            \n            For a video call, the video-specific information  is stored in a\n            call entry in cVideoSessionActive of CISCO-VIDEO-SESSION-MIB, in\n            which the call reference ID is also identified.",
                        "x-yang-type": "cisco-voice:CvcCallReferenceIdOrZero"
                      },
                      "cvVoIPCallHistorySessionId": {
                        "type": "integer",
                        "description": "This object indicates the session ID assigned by the call\n            manager to identify call legs that belong to the same call\n            session.  This session ID (history) represents a completed call\n            session, whereas the active session ID\n            (cvVoIPCallActiveSessionId) represents an ongoing session.",
                        "minimum": 0,
                        "maximum": 4294967295
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-VOICE-DIAL-CONTROL-MIB:cvVoIPCallHistoryEntry": [
                    {
                      "cCallHistoryIndex": "example-string",
                      "cvVoIPCallHistoryConnectionId": "192.168.1.1",
                      "cvVoIPCallHistoryRemoteIPAddress": "192.168.1.1",
                      "cvVoIPCallHistoryRemoteUDPPort": -2147483648,
                      "cvVoIPCallHistoryRoundTripDelay": 0,
                      "cvVoIPCallHistorySelectedQoS": "192.168.1.1",
                      "cvVoIPCallHistorySessionProtocol": "192.168.1.1",
                      "cvVoIPCallHistorySessionTarget": "192.168.1.1",
                      "cvVoIPCallHistoryOnTimeRvPlayout": "192.168.1.1",
                      "cvVoIPCallHistoryGapFillWithSilence": "192.168.1.1",
                      "cvVoIPCallHistoryGapFillWithPrediction": "192.168.1.1",
                      "cvVoIPCallHistoryGapFillWithInterpolation": "192.168.1.1",
                      "cvVoIPCallHistoryGapFillWithRedundancy": "192.168.1.1",
                      "cvVoIPCallHistoryHiWaterPlayoutDelay": "192.168.1.1",
                      "cvVoIPCallHistoryLoWaterPlayoutDelay": 0,
                      "cvVoIPCallHistoryReceiveDelay": 0,
                      "cvVoIPCallHistoryVADEnable": true,
                      "cvVoIPCallHistoryCoderTypeRate": "192.168.1.1",
                      "cvVoIPCallHistoryIcpif": -2147483648,
                      "cvVoIPCallHistoryLostPackets": "192.168.1.1",
                      "cvVoIPCallHistoryEarlyPackets": "192.168.1.1",
                      "cvVoIPCallHistoryLatePackets": "192.168.1.1",
                      "cvVoIPCallHistoryUsername": "192.168.1.1",
                      "cvVoIPCallHistoryProtocolCallId": "192.168.1.1",
                      "cvVoIPCallHistoryRemSigIPAddrT": "192.168.1.1",
                      "cvVoIPCallHistoryRemSigIPAddr": "192.168.1.1",
                      "cvVoIPCallHistoryRemSigPort": -2147483648,
                      "cvVoIPCallHistoryRemMediaIPAddrT": "192.168.1.1",
                      "cvVoIPCallHistoryRemMediaIPAddr": "192.168.1.1",
                      "cvVoIPCallHistoryRemMediaPort": -2147483648,
                      "cvVoIPCallHistorySRTPEnable": true,
                      "cvVoIPCallHistoryFallbackIcpif": -2147483648,
                      "cvVoIPCallHistoryFallbackLoss": "192.168.1.1",
                      "cvVoIPCallHistoryFallbackDelay": 0,
                      "cvVoIPCallHistoryOctetAligned": true,
                      "cvVoIPCallHistoryBitRates": "192.168.1.1",
                      "cvVoIPCallHistoryModeChgPeriod": -2147483648,
                      "cvVoIPCallHistoryModeChgNeighbor": true,
                      "cvVoIPCallHistoryMaxPtime": -2147483648,
                      "cvVoIPCallHistoryCRC": true,
                      "cvVoIPCallHistoryRobustSorting": true,
                      "cvVoIPCallHistoryEncap": "192.168.1.1",
                      "cvVoIPCallHistoryInterleaving": -2147483648,
                      "cvVoIPCallHistoryPtime": -2147483648,
                      "cvVoIPCallHistoryChannels": -2147483648,
                      "cvVoIPCallHistoryCoderMode": "192.168.1.1",
                      "cvVoIPCallHistoryCallId": 0,
                      "cvVoIPCallHistoryCallReferenceId": "192.168.1.1",
                      "cvVoIPCallHistorySessionId": 0
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cvVoIPCallHistoryEntry-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": "/cvVoIPCallHistoryEntry",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-VOICE-DIAL-CONTROL-MIB:cvVoIPCallHistoryEntry={cCallHistoryIndex}": {
      "get": {
        "summary": "Get cvVoIPCallHistoryEntry entry",
        "description": "Retrieve specific cvVoIPCallHistoryEntry entry by key from MIB",
        "tags": [
          "CISCO-VOICE-DIAL-CONTROL-MIB"
        ],
        "parameters": [
          {
            "name": "cCallHistoryIndex",
            "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": {
                    "cCallHistoryIndex": {
                      "type": "string",
                      "description": "cCallHistoryIndex",
                      "x-yang-type": "leafref"
                    },
                    "cvVoIPCallHistoryConnectionId": {
                      "type": "string",
                      "description": "The global connection identifier for the\n            VoIP leg, which was assigned to the call.",
                      "x-yang-type": "cisco-voice:CvcGUid"
                    },
                    "cvVoIPCallHistoryRemoteIPAddress": {
                      "type": "string",
                      "description": "Remote system IP address for the call.",
                      "format": "inet:ipv4-address"
                    },
                    "cvVoIPCallHistoryRemoteUDPPort": {
                      "type": "integer",
                      "description": "Remote system UDP listener port to which to transmit voice\n            packets for the call.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "cvVoIPCallHistoryRoundTripDelay": {
                      "type": "integer",
                      "description": "The voice packet round trip delay between local and\n            the remote system on the IP backbone during the call.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cvVoIPCallHistorySelectedQoS": {
                      "type": "string",
                      "description": "The selected RSVP QoS for the call.",
                      "x-yang-type": "int-serv:QosService"
                    },
                    "cvVoIPCallHistorySessionProtocol": {
                      "type": "string",
                      "description": "The object specifies the session protocol to be used\n            for Internet call between local and remote router via\n            IP backbone.",
                      "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvSessionProtocol"
                    },
                    "cvVoIPCallHistorySessionTarget": {
                      "type": "string",
                      "description": "The object specifies the session target of the peer that\n            is used for the Voice over IP call.",
                      "x-yang-type": "snmpv2-tc:DisplayString"
                    },
                    "cvVoIPCallHistoryOnTimeRvPlayout": {
                      "type": "string",
                      "description": "Duration of voice playout from data received on time for\n            this call. This plus the durations for the GapFills in the\n            following entries gives the Total Voice Playout Duration\n            for Active Voice.\n            This does not include duration for which no data was sent by the\n            Transmit end as voice signal, e.g., silence suppression\n            and fax signal. The On Time Playout Rate can be computed\n            by dividing this entry by the Total Voice Playout Duration.\n            This counter object will lock at the maximum value which\n            is approximately two days.",
                      "x-yang-type": "dial-control:AbsoluteCounter32"
                    },
                    "cvVoIPCallHistoryGapFillWithSilence": {
                      "type": "string",
                      "description": "Duration of voice signal replaced with signal played out\n            during silence due to voice data not received on time\n            (or lost) from voice gateway this call. This counter\n            object will lock at the maximum value which is\n            approximately two days.",
                      "x-yang-type": "dial-control:AbsoluteCounter32"
                    },
                    "cvVoIPCallHistoryGapFillWithPrediction": {
                      "type": "string",
                      "description": "Duration of voice signal played out with signal synthesized\n            from parameters or samples of data preceding in time due to\n            voice data not received on time (or lost) from voice gateway\n            for this call. An example of such playout is frame-erasure\n            or  frame-concealment strategies in G.729 and G.723.1\n            compression algorithms. This counter object will lock at\n            the maximum value which is approximately two days.",
                      "x-yang-type": "dial-control:AbsoluteCounter32"
                    },
                    "cvVoIPCallHistoryGapFillWithInterpolation": {
                      "type": "string",
                      "description": "Duration of voice signal played out with signal synthesized\n            from parameters or samples of data preceding and following\n            in time due to voice data not received on time (or lost)\n            from voice gateway for this call. This counter object\n            will lock at the maximum value which is approximately two\n            days.",
                      "x-yang-type": "dial-control:AbsoluteCounter32"
                    },
                    "cvVoIPCallHistoryGapFillWithRedundancy": {
                      "type": "string",
                      "description": "Duration of voice signal played out with signal synthesized\n            from redundancy parameters available due to voice data not\n            received on time (or lost) from voice gateway for this call.\n            This counter object will lock at the maximum value which\n            is approximately two days.",
                      "x-yang-type": "dial-control:AbsoluteCounter32"
                    },
                    "cvVoIPCallHistoryHiWaterPlayoutDelay": {
                      "type": "string",
                      "description": "The high water mark Voice Playout FIFO Delay during\n            the voice call. This counter object will lock at the\n            maximum value which is approximately two days.",
                      "x-yang-type": "dial-control:AbsoluteCounter32"
                    },
                    "cvVoIPCallHistoryLoWaterPlayoutDelay": {
                      "type": "integer",
                      "description": "The low water mark Voice Playout FIFO Delay during\n            the voice call.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cvVoIPCallHistoryReceiveDelay": {
                      "type": "integer",
                      "description": "The average Playout FIFO Delay plus the decoder delay\n            during the voice call.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cvVoIPCallHistoryVADEnable": {
                      "type": "boolean",
                      "description": "The object indicates whether or not the VAD (Voice Activity\n            Detection) was enabled for the voice call."
                    },
                    "cvVoIPCallHistoryCoderTypeRate": {
                      "type": "string",
                      "description": "The negotiated coder rate. It specifies the transmit rate of\n            voice/fax compression to its associated call leg for the\n            call. This rate is different from the configuration rate\n            because of rate negotiation during the call.",
                      "x-yang-type": "cisco-voice:CvcCoderTypeRate"
                    },
                    "cvVoIPCallHistoryIcpif": {
                      "type": "integer",
                      "description": "The Calculated Planning Impairment Factor (Icpif) of the\n            call  that is associated to this call leg.\n            The value in this object is computed by the following\n            equation.\n            Icpif of the call =\n            Itotal (total impairment value) of the call - A\n            (Expectation Factor) in the cvVoIPPeerCfgExpectFactor of\n            the call leg associated peer.\n            A value of -1 implies that Icpif was not calculated and is\n            meaningless for this call.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "cvVoIPCallHistoryLostPackets": {
                      "type": "string",
                      "description": "The number of lost voice packets during the call.",
                      "x-yang-type": "dial-control:AbsoluteCounter32"
                    },
                    "cvVoIPCallHistoryEarlyPackets": {
                      "type": "string",
                      "description": "The number of received voice packets that are\n            arrived too early to store in jitter buffer\n            during the call.",
                      "x-yang-type": "dial-control:AbsoluteCounter32"
                    },
                    "cvVoIPCallHistoryLatePackets": {
                      "type": "string",
                      "description": "The number of received voice packets that are\n            arrived too late to playout with CODEC (Coder/Decoder)\n            during the call.",
                      "x-yang-type": "dial-control:AbsoluteCounter32"
                    },
                    "cvVoIPCallHistoryUsername": {
                      "type": "string",
                      "description": "The textual identifier of the calling party (user) of the\n            call. If the username is not available, then the value of\n            this object will have a length of zero.",
                      "x-yang-type": "snmp-framework:SnmpAdminString"
                    },
                    "cvVoIPCallHistoryProtocolCallId": {
                      "type": "string",
                      "description": "The protocol-specific call identifier for the VoIP call.",
                      "format": "binary"
                    },
                    "cvVoIPCallHistoryRemSigIPAddrT": {
                      "type": "string",
                      "description": "This object specifies the type of address contained in\n            the associated instance of cvVoIPCallHistoryRemSigIPAddr.",
                      "x-yang-type": "inet-address:InetAddressType"
                    },
                    "cvVoIPCallHistoryRemSigIPAddr": {
                      "type": "string",
                      "description": "Remote signalling IP address for the VoIP call.",
                      "x-yang-type": "inet-address:InetAddress"
                    },
                    "cvVoIPCallHistoryRemSigPort": {
                      "type": "integer",
                      "description": "Remote signalling listener port to which to transmit\n            voice packets.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "cvVoIPCallHistoryRemMediaIPAddrT": {
                      "type": "string",
                      "description": "This object specifies the type of address contained in\n            the associated instance of\n            cvVoIPCallHistoryRemMediaIPAddr.",
                      "x-yang-type": "inet-address:InetAddressType"
                    },
                    "cvVoIPCallHistoryRemMediaIPAddr": {
                      "type": "string",
                      "description": "Remote media end point IP address for the VoIP call.",
                      "x-yang-type": "inet-address:InetAddress"
                    },
                    "cvVoIPCallHistoryRemMediaPort": {
                      "type": "integer",
                      "description": "Remote media end point listener port to which to transmit\n            voice packets.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "cvVoIPCallHistorySRTPEnable": {
                      "type": "boolean",
                      "description": "The object indicates whether or not the SRTP (Secured RTP)\n            was enabled for the voice call."
                    },
                    "cvVoIPCallHistoryFallbackIcpif": {
                      "type": "integer",
                      "description": "The Calculated Planning Impairment Factor (Icpif) of the\n            call  that is associated to this call leg.\n            The value in this object is computed by the following\n            equation.\n            Icpif of the fallback probe =\n            Itotal (total impairment value)  - configured fallback\n            (Expectation Factor).\n            A value of 0 implies that Icpif was not calculated and is\n            meaningless for this attempt.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "cvVoIPCallHistoryFallbackLoss": {
                      "type": "string",
                      "description": "FallbackLoss is the percentage of loss packets based on\n            the total packets sent.",
                      "x-yang-type": "dial-control:AbsoluteCounter32"
                    },
                    "cvVoIPCallHistoryFallbackDelay": {
                      "type": "integer",
                      "description": "The FallbackDelay is calculated as follows -\n            Take the sum of the round trips for all the probes, \n            divide by the number of probes, \n            and divide by two to get the one-way delay.  \n            Then add in jitter_in or jiter_out,\n            which ever is higher.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cvVoIPCallHistoryOctetAligned": {
                      "type": "boolean",
                      "description": "If the object has a value true(1) octet align operation\n            is used, and if the value is false(2), bandwidth efficient\n            operation is used. This object is not instantiated when\n            the object cvVoIPCallHistoryCoderTypeRate is not equal to\n            gsmAmrNb enum."
                    },
                    "cvVoIPCallHistoryBitRates": {
                      "type": "string",
                      "description": "This object indicates modes of Bit rates.\n            This object is not instantiated when the object\n            cvVoIPCallHistoryCoderTypeRate is not equal to\n            gsmAmrNb enum.",
                      "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvAmrNbBitRateMode"
                    },
                    "cvVoIPCallHistoryModeChgPeriod": {
                      "type": "integer",
                      "description": "The object indicates the interval (N frame-blocks) at which\n            codec mode changes are allowed. This object is not\n            instantiated when the object cvVoIPCallHistoryCoderTypeRate\n            is not equal to gsmAmrNb enum.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "cvVoIPCallHistoryModeChgNeighbor": {
                      "type": "boolean",
                      "description": "If the object has a value of true(1), mode changes will be\n            made to only neighboring modes set to\n            cvVoIPCallHistoryBitRates object. If the value is false(2),\n            mode changes will be allowed to any modes set to\n            cvVoIPCallHistoryBitRates object. This object is not\n            instantiated when the object cvVoIPCallHistoryCoderTypeRate\n            is not equal to gsmAmrNb enum."
                    },
                    "cvVoIPCallHistoryMaxPtime": {
                      "type": "integer",
                      "description": "The object indicates the maximum amount of media that\n            can be encapsulated in a payload. Supported value is\n            20 msec. This object is not instantiated when the\n            object cvVoIPCallHistoryCoderTypeRate is not equal to\n            gsmAmrNb enum.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "cvVoIPCallHistoryCRC": {
                      "type": "boolean",
                      "description": "If the object has a value of true(1), frame CRC will be\n            included in the payload and if the value is false(2),\n            frame CRC will not be included in the payload.\n            This object is applicable only when RTP frame type\n            is octet aligned. This object is not instantiated when\n            the object cvVoIPCallHistoryCoderTypeRate is not equal to\n            gsmAmrNb enum."
                    },
                    "cvVoIPCallHistoryRobustSorting": {
                      "type": "boolean",
                      "description": "If the object has a value of true(1), payload employs\n            robust sorting and if the value is false(2), payload\n            does not employ robust sorting. This object is applicable\n            only when RTP frame type is octet aligned. This object\n            is not instantiated when the object\n            cvVoIPCallHistoryCoderTypeRate is not equal to gsmAmrNb\n            enum."
                    },
                    "cvVoIPCallHistoryEncap": {
                      "type": "string",
                      "description": "The object indicates the RTP encapsulation type.\n            Supported RTP encapsulation type is RFC3267.\n            This object is not instantiated when the object\n            cvVoIPCallHistoryCoderTypeRate is not equal to\n            gsmAmrNb enum.",
                      "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvAmrNbRtpEncap"
                    },
                    "cvVoIPCallHistoryInterleaving": {
                      "type": "integer",
                      "description": "The object indicates the maximum number of frame-blocks\n            allowed in an interleaving group. It indicates that\n            frame-block level interleaving will be used for that\n            session. If this object is not set, interleaving\n            is not used. This object is applicable only when\n            RTP frame type is octet aligned. This object is not\n            instantiated when the object cvVoIPCallHistoryCoderTypeRate\n            is not equal to gsmAmrNb enum.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "cvVoIPCallHistoryPtime": {
                      "type": "integer",
                      "description": "The object indicates the length of the time in milliseconds\n            represented by the media of the packet. Supported value is\n            20 milliseconds. This object is not instantiated when the\n            object cvVoIPCallHistoryCoderTypeRate is not equal to\n            gsmAmrNb enum.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "cvVoIPCallHistoryChannels": {
                      "type": "integer",
                      "description": "The object indicates the number of audio channels.\n            Supported value is 1. This object is not instantiated\n            when the object cvVoIPCallHistoryCoderTypeRate is not equal\n            to gsmAmrNb enum.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "cvVoIPCallHistoryCoderMode": {
                      "type": "string",
                      "description": "The object indicates the iLBC mode.\n            The value of this object is valid only if \n            cvVoIPCallHistoryCoderTypeRate is equal to \n            'iLBC'.",
                      "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvIlbcFrameMode"
                    },
                    "cvVoIPCallHistoryCallId": {
                      "type": "integer",
                      "description": "This object represents the call identifier for the\n            VoIP leg, which was assigned to the call.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cvVoIPCallHistoryCallReferenceId": {
                      "type": "string",
                      "description": "The call reference ID associates the video call entry and voice\n            call entry of the same endpoint.  An audio-only call may or may\n            not have a valid call reference ID (i.e. value greater than\n            zero), but in both cases, there will not be a video call entry\n            associated with it. \n            \n            For a video call, the video-specific information  is stored in a\n            call entry in cVideoSessionActive of CISCO-VIDEO-SESSION-MIB, in\n            which the call reference ID is also identified.",
                      "x-yang-type": "cisco-voice:CvcCallReferenceIdOrZero"
                    },
                    "cvVoIPCallHistorySessionId": {
                      "type": "integer",
                      "description": "This object indicates the session ID assigned by the call\n            manager to identify call legs that belong to the same call\n            session.  This session ID (history) represents a completed call\n            session, whereas the active session ID\n            (cvVoIPCallActiveSessionId) represents an ongoing session.",
                      "minimum": 0,
                      "maximum": 4294967295
                    }
                  }
                },
                "example": {
                  "CISCO-VOICE-DIAL-CONTROL-MIB:cvVoIPCallHistoryEntry": {
                    "cCallHistoryIndex": "example-string",
                    "cvVoIPCallHistoryConnectionId": "192.168.1.1",
                    "cvVoIPCallHistoryRemoteIPAddress": "192.168.1.1",
                    "cvVoIPCallHistoryRemoteUDPPort": -2147483648,
                    "cvVoIPCallHistoryRoundTripDelay": 0,
                    "cvVoIPCallHistorySelectedQoS": "192.168.1.1",
                    "cvVoIPCallHistorySessionProtocol": "192.168.1.1",
                    "cvVoIPCallHistorySessionTarget": "192.168.1.1",
                    "cvVoIPCallHistoryOnTimeRvPlayout": "192.168.1.1",
                    "cvVoIPCallHistoryGapFillWithSilence": "192.168.1.1",
                    "cvVoIPCallHistoryGapFillWithPrediction": "192.168.1.1",
                    "cvVoIPCallHistoryGapFillWithInterpolation": "192.168.1.1",
                    "cvVoIPCallHistoryGapFillWithRedundancy": "192.168.1.1",
                    "cvVoIPCallHistoryHiWaterPlayoutDelay": "192.168.1.1",
                    "cvVoIPCallHistoryLoWaterPlayoutDelay": 0,
                    "cvVoIPCallHistoryReceiveDelay": 0,
                    "cvVoIPCallHistoryVADEnable": true,
                    "cvVoIPCallHistoryCoderTypeRate": "192.168.1.1",
                    "cvVoIPCallHistoryIcpif": -2147483648,
                    "cvVoIPCallHistoryLostPackets": "192.168.1.1",
                    "cvVoIPCallHistoryEarlyPackets": "192.168.1.1",
                    "cvVoIPCallHistoryLatePackets": "192.168.1.1",
                    "cvVoIPCallHistoryUsername": "192.168.1.1",
                    "cvVoIPCallHistoryProtocolCallId": "192.168.1.1",
                    "cvVoIPCallHistoryRemSigIPAddrT": "192.168.1.1",
                    "cvVoIPCallHistoryRemSigIPAddr": "192.168.1.1",
                    "cvVoIPCallHistoryRemSigPort": -2147483648,
                    "cvVoIPCallHistoryRemMediaIPAddrT": "192.168.1.1",
                    "cvVoIPCallHistoryRemMediaIPAddr": "192.168.1.1",
                    "cvVoIPCallHistoryRemMediaPort": -2147483648,
                    "cvVoIPCallHistorySRTPEnable": true,
                    "cvVoIPCallHistoryFallbackIcpif": -2147483648,
                    "cvVoIPCallHistoryFallbackLoss": "192.168.1.1",
                    "cvVoIPCallHistoryFallbackDelay": 0,
                    "cvVoIPCallHistoryOctetAligned": true,
                    "cvVoIPCallHistoryBitRates": "192.168.1.1",
                    "cvVoIPCallHistoryModeChgPeriod": -2147483648,
                    "cvVoIPCallHistoryModeChgNeighbor": true,
                    "cvVoIPCallHistoryMaxPtime": -2147483648,
                    "cvVoIPCallHistoryCRC": true,
                    "cvVoIPCallHistoryRobustSorting": true,
                    "cvVoIPCallHistoryEncap": "192.168.1.1",
                    "cvVoIPCallHistoryInterleaving": -2147483648,
                    "cvVoIPCallHistoryPtime": -2147483648,
                    "cvVoIPCallHistoryChannels": -2147483648,
                    "cvVoIPCallHistoryCoderMode": "192.168.1.1",
                    "cvVoIPCallHistoryCallId": 0,
                    "cvVoIPCallHistoryCallReferenceId": "192.168.1.1",
                    "cvVoIPCallHistorySessionId": 0
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cvVoIPCallHistoryEntry-4"
      },
      "x-yang-path": "/cvVoIPCallHistoryEntry={cCallHistoryIndex}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "cCallHistoryIndex"
      ]
    },
    "/data/CISCO-VOICE-DIAL-CONTROL-MIB:cvCallRateStatsEntry": {
      "get": {
        "summary": "Get cvCallRateStatsEntry list",
        "description": "Retrieve list of cvCallRateStatsEntry entries from MIB",
        "tags": [
          "CISCO-VOICE-DIAL-CONTROL-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "This is a conceptual-row in cvCallRateStatsTable\n          This entry is created at the system initialization and is\n          updated at every epoch based on CvCallVolumeStatsIntvlType",
                  "items": {
                    "type": "object",
                    "properties": {
                      "cvCallRateStatsIntvlDurUnits": {
                        "type": "string",
                        "description": "The Object indexes in Call Rate Table to select one among three\n            interval-tables.\n            \n            The different types in this table are represented by \n            CvCallVolumeStatsIntvlType",
                        "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvCallVolumeStatsIntvlType"
                      },
                      "cvCallRateStatsIntvlDur": {
                        "type": "integer",
                        "description": "This is an index that references to the different past periods\n            in given in interval of call rate table.\n            This range is 1-60 for Seconds and Minutes table \n            wherein 1-72 for hours table.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cvCallRateStatsMaxVal": {
                        "type": "integer",
                        "description": "This object indicates the maximum calls per second\n            that occured for the given period for the given interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cvCallRateStatsAvgVal": {
                        "type": "integer",
                        "description": "This object indicates the average calls per second\n            that occured for the given period for the given interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-VOICE-DIAL-CONTROL-MIB:cvCallRateStatsEntry": [
                    {
                      "cvCallRateStatsIntvlDurUnits": "example-string",
                      "cvCallRateStatsIntvlDur": 0,
                      "cvCallRateStatsMaxVal": 0,
                      "cvCallRateStatsAvgVal": 0
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cvCallRateStatsEntry-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": "/cvCallRateStatsEntry",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-VOICE-DIAL-CONTROL-MIB:cvCallLegRateStatsEntry": {
      "get": {
        "summary": "Get cvCallLegRateStatsEntry list",
        "description": "Retrieve list of cvCallLegRateStatsEntry entries from MIB",
        "tags": [
          "CISCO-VOICE-DIAL-CONTROL-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "This is a conceptual-row in cvCallLegRateStatsTable\n          This entry is created at the system initialization and is\n          updated at every epoch based on CvCallVolumeStatsIntvlType",
                  "items": {
                    "type": "object",
                    "properties": {
                      "cvCallLegRateStatsIntvlDurUnits": {
                        "type": "string",
                        "description": "The Object indexes in Call Leg Rate Table to select one among\n            three\n            interval-tables.\n            \n            The different types in this table are represented by \n            CvCallVolumeStatsIntvlType",
                        "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvCallVolumeStatsIntvlType"
                      },
                      "cvCallLegRateStatsIntvlDur": {
                        "type": "integer",
                        "description": "This is an index that references to the different past periods\n            in given in interval of call rate table.\n            This range is 1-60 for Seconds and Minutes table \n            wherein 1-72 for hours table.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cvCallLegRateStatsMaxVal": {
                        "type": "integer",
                        "description": "This object indicates the maximum call-legs per second\n            that occured for the given period for the given interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cvCallLegRateStatsAvgVal": {
                        "type": "integer",
                        "description": "This object indicates the average call-legs per second\n            that occured for the given period for the given interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-VOICE-DIAL-CONTROL-MIB:cvCallLegRateStatsEntry": [
                    {
                      "cvCallLegRateStatsIntvlDurUnits": "example-string",
                      "cvCallLegRateStatsIntvlDur": 0,
                      "cvCallLegRateStatsMaxVal": 0,
                      "cvCallLegRateStatsAvgVal": 0
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cvCallLegRateStatsEntry-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": "/cvCallLegRateStatsEntry",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-VOICE-DIAL-CONTROL-MIB:cvActiveCallStatsEntry": {
      "get": {
        "summary": "Get cvActiveCallStatsEntry list",
        "description": "Retrieve list of cvActiveCallStatsEntry entries from MIB",
        "tags": [
          "CISCO-VOICE-DIAL-CONTROL-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "This is a conceptual-row in cvActiveCallStatsTable\n          This entry is created at the system initialization and is\n          updated at every epoch based on CvCallVolumeStatsIntvlType",
                  "items": {
                    "type": "object",
                    "properties": {
                      "cvActiveCallStatsIntvlDurUnits": {
                        "type": "string",
                        "description": "The Object indexes in Active Call Rate Table (con-current calls\n            table) to select one among three interval-tables.\n            \n            The different types in this table are represented by \n            CvCallVolumeStatsIntvlType",
                        "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvCallVolumeStatsIntvlType"
                      },
                      "cvActiveCallStatsIntvlDur": {
                        "type": "integer",
                        "description": "This is an index that references to the different past periods\n            in given in interval of active call table.\n            This range is 1-60 for Seconds and Minutes table \n            wherein 1-72 for hours table.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cvActiveCallStatsMaxVal": {
                        "type": "integer",
                        "description": "This object indicates the maximum number of active call\n            that occured for the given period for the given interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cvActiveCallStatsAvgVal": {
                        "type": "integer",
                        "description": "This object indicates the average number of active calls\n            that occured for the given period for the given interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-VOICE-DIAL-CONTROL-MIB:cvActiveCallStatsEntry": [
                    {
                      "cvActiveCallStatsIntvlDurUnits": "example-string",
                      "cvActiveCallStatsIntvlDur": 0,
                      "cvActiveCallStatsMaxVal": 0,
                      "cvActiveCallStatsAvgVal": 0
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cvActiveCallStatsEntry-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": "/cvActiveCallStatsEntry",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-VOICE-DIAL-CONTROL-MIB:cvCallDurationStatsEntry": {
      "get": {
        "summary": "Get cvCallDurationStatsEntry list",
        "description": "Retrieve list of cvCallDurationStatsEntry entries from MIB",
        "tags": [
          "CISCO-VOICE-DIAL-CONTROL-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "This is a conceptual-row in cvCallDurationStatsTable\n          This entry is created at the system initialization and is\n          updated at every epoch based on CvCallVolumeStatsIntvlType",
                  "items": {
                    "type": "object",
                    "properties": {
                      "cvCallDurationStatsIntvlDurUnits": {
                        "type": "string",
                        "description": "The Object indexes in Call Duration Table to select one among\n            three interval-tables.\n            \n            The different types in this table are represented by \n            CvCallVolumeStatsIntvlType",
                        "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvCallVolumeStatsIntvlType"
                      },
                      "cvCallDurationStatsIntvlDur": {
                        "type": "integer",
                        "description": "This is an index that references to the different past periods\n            in given in interval of call Duration table.\n            This range is 1-60 for Seconds and Minutes table \n            wherein 1-72 for hours table.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cvCallDurationStatsMaxVal": {
                        "type": "integer",
                        "description": "This object indicates the maximum number of calls having a\n            duration which is below the threshold for the given interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cvCallDurationStatsAvgVal": {
                        "type": "integer",
                        "description": "This object indicates the average number of calls having a\n            duration which is below the threshold for the given interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-VOICE-DIAL-CONTROL-MIB:cvCallDurationStatsEntry": [
                    {
                      "cvCallDurationStatsIntvlDurUnits": "example-string",
                      "cvCallDurationStatsIntvlDur": 0,
                      "cvCallDurationStatsMaxVal": 0,
                      "cvCallDurationStatsAvgVal": 0
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cvCallDurationStatsEntry-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": "/cvCallDurationStatsEntry",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-VOICE-DIAL-CONTROL-MIB:cvSipMsgRateStatsEntry": {
      "get": {
        "summary": "Get cvSipMsgRateStatsEntry list",
        "description": "Retrieve list of cvSipMsgRateStatsEntry entries from MIB",
        "tags": [
          "CISCO-VOICE-DIAL-CONTROL-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "This is a conceptual-row in cvSipMsgRateStatsTable\n          This entry is created at the system initialization and is\n          updated at every epoch based on CvCallVolumeStatsIntvlType",
                  "items": {
                    "type": "object",
                    "properties": {
                      "cvSipMsgRateStatsIntvlDurUnits": {
                        "type": "string",
                        "description": "The Object indexes in SIP Message Rate Table to select one\n            among three interval-tables.\n            \n            The different types in this table are represented by \n            CvCallVolumeStatsIntvlType",
                        "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvCallVolumeStatsIntvlType"
                      },
                      "cvSipMsgRateStatsIntvlDur": {
                        "type": "integer",
                        "description": "This is an index that references to the different past\n            periods in given in interval of SIP message rate table.\n            This range is 1-60 for Seconds and Minutes table \n            wherein 1-72 for hours table.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cvSipMsgRateStatsMaxVal": {
                        "type": "integer",
                        "description": "This object indicates the maximum SIP messages  per second that\n            is received for the given interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cvSipMsgRateStatsAvgVal": {
                        "type": "integer",
                        "description": "This object indicates the average SIP messages per second that\n            is received for the given interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-VOICE-DIAL-CONTROL-MIB:cvSipMsgRateStatsEntry": [
                    {
                      "cvSipMsgRateStatsIntvlDurUnits": "192.168.1.1",
                      "cvSipMsgRateStatsIntvlDur": 0,
                      "cvSipMsgRateStatsMaxVal": 0,
                      "cvSipMsgRateStatsAvgVal": 0
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cvSipMsgRateStatsEntry-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": "/cvSipMsgRateStatsEntry",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-VOICE-DIAL-CONTROL-MIB:cvCallRateWMEntry": {
      "get": {
        "summary": "Get cvCallRateWMEntry list",
        "description": "Retrieve list of cvCallRateWMEntry entries from MIB",
        "tags": [
          "CISCO-VOICE-DIAL-CONTROL-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "This is a conceptual-row in cvCallRateWMTable\n          This entry is created at the system initialization and is\n          updated whenever \n          a) This entry is obsolete OR\n          b) A new/higher entry is available.\n          These entries are reinitialised/added/deleted  if\n          cvCallVolumeWMTableSize is changed",
                  "items": {
                    "type": "object",
                    "properties": {
                      "cvCallRateWMIntvlDurUnits": {
                        "type": "string",
                        "description": "The Object indexes in call rate Water mark Table to select one\n            among four interval-tables.\n            \n            The different types in this table are represented by \n            CvCallVolumeWMIntvlType",
                        "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvCallVolumeWMIntvlType"
                      },
                      "cvCallRateWMIndex": {
                        "type": "integer",
                        "description": "This is an index that references to different peaks in\n            past period in call rate watermark table.\n            \n            The number of watermarks entries stored for each table are \n            based on cvCallVolumeWMTableSize",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cvCallRateWMValue": {
                        "type": "integer",
                        "description": "This object indicates high watermark value achieved by the\n            calls per second for the given interval",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cvCallRateWMts": {
                        "type": "string",
                        "description": "This object indicates date and Time when the high watermark\n            is achieved for calls per second for the given interval",
                        "x-yang-type": "snmpv2-tc:DateAndTime"
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-VOICE-DIAL-CONTROL-MIB:cvCallRateWMEntry": [
                    {
                      "cvCallRateWMIntvlDurUnits": "example-string",
                      "cvCallRateWMIndex": 1,
                      "cvCallRateWMValue": 0,
                      "cvCallRateWMts": "example-string"
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cvCallRateWMEntry-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": "/cvCallRateWMEntry",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-VOICE-DIAL-CONTROL-MIB:cvCallLegRateWMEntry": {
      "get": {
        "summary": "Get cvCallLegRateWMEntry list",
        "description": "Retrieve list of cvCallLegRateWMEntry entries from MIB",
        "tags": [
          "CISCO-VOICE-DIAL-CONTROL-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "This is a conceptual-row in cvCallLegRateWMTable\n          This entry is created at the system initialization and is\n          updated whenever \n          a) This entry is obsolete OR\n          b) A new/higher entry is available.\n          These entries are reinitialised/added/deleted  if\n          cvCallVolumeWMTableSize is changed",
                  "items": {
                    "type": "object",
                    "properties": {
                      "cvCallLegRateWMIntvlDurUnits": {
                        "type": "string",
                        "description": "The Object indexes in call leg rate Water mark Table to select\n            one\n            among four interval-tables.\n            \n            The different types in this table are represented by \n            CvCallVolumeWMIntvlType",
                        "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvCallVolumeWMIntvlType"
                      },
                      "cvCallLegRateWMIndex": {
                        "type": "integer",
                        "description": "This is an index that references to different peaks in\n            past period in call leg rate watermark table.\n            \n            The number of watermarks entries stored for each table are \n            based on cvCallVolumeWMTableSize",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cvCallLegRateWMValue": {
                        "type": "integer",
                        "description": "This object indicates high watermark value achieved by the\n            call legs per second for the given interval",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cvCallLegRateWMts": {
                        "type": "string",
                        "description": "This object indicates date and time when the high watermark\n            is achieved for call-legs per second for the given interval",
                        "x-yang-type": "snmpv2-tc:DateAndTime"
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-VOICE-DIAL-CONTROL-MIB:cvCallLegRateWMEntry": [
                    {
                      "cvCallLegRateWMIntvlDurUnits": "example-string",
                      "cvCallLegRateWMIndex": 1,
                      "cvCallLegRateWMValue": 0,
                      "cvCallLegRateWMts": "example-string"
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cvCallLegRateWMEntry-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": "/cvCallLegRateWMEntry",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-VOICE-DIAL-CONTROL-MIB:cvActiveCallWMEntry": {
      "get": {
        "summary": "Get cvActiveCallWMEntry list",
        "description": "Retrieve list of cvActiveCallWMEntry entries from MIB",
        "tags": [
          "CISCO-VOICE-DIAL-CONTROL-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "This is a conceptual-row in cvActiveCallWMTable\n          This entry is created at the system initialization and is\n          updated whenever \n          a) This entry is obsolete OR\n          b) A new/higher entry is available.\n          These entries are reinitialised/added/deleted  if\n          cvCallVolumeWMTableSize is changed",
                  "items": {
                    "type": "object",
                    "properties": {
                      "cvActiveCallWMIntvlDurUnits": {
                        "type": "string",
                        "description": "The Object indexes in active call Water mark Table to select\n            one among four interval-tables.\n            \n            The different types in this table are represented by \n            CvCallVolumeWMIntvlType",
                        "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvCallVolumeWMIntvlType"
                      },
                      "cvActiveCallWMIndex": {
                        "type": "integer",
                        "description": "This is an index that references to different peaks in\n            past period in acive call watermark table.\n            \n            The number of watermarks entries stored for each table are \n            based on cvCallVolumeWMTableSize",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cvActiveCallWMValue": {
                        "type": "integer",
                        "description": "This object indicates high watermark value achieved by the\n            active calls for the given interval",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cvActiveCallWMts": {
                        "type": "string",
                        "description": "This object indicates date and time when the high watermark\n            is achieved for active calls for the given interval",
                        "x-yang-type": "snmpv2-tc:DateAndTime"
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-VOICE-DIAL-CONTROL-MIB:cvActiveCallWMEntry": [
                    {
                      "cvActiveCallWMIntvlDurUnits": "example-string",
                      "cvActiveCallWMIndex": 1,
                      "cvActiveCallWMValue": 0,
                      "cvActiveCallWMts": "example-string"
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cvActiveCallWMEntry-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": "/cvActiveCallWMEntry",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-VOICE-DIAL-CONTROL-MIB:cvSipMsgRateWMEntry": {
      "get": {
        "summary": "Get cvSipMsgRateWMEntry list",
        "description": "Retrieve list of cvSipMsgRateWMEntry entries from MIB",
        "tags": [
          "CISCO-VOICE-DIAL-CONTROL-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "This is a conceptual-row in cvSipMsgRateWMTable.\n          This entry is created at the system initialization and is\n          updated whenever \n          a) This entry is obsolete OR\n          b) A new/higher entry is available.\n          These entries are reinitialised/added/deleted if\n          cvCallVolumeWMTableSize is changed",
                  "items": {
                    "type": "object",
                    "properties": {
                      "cvSipMsgRateWMIntvlDurUnits": {
                        "type": "string",
                        "description": "The Object indexes in SIP Message rate Water mark Table to\n            select one among four interval-tables.\n            \n            The different types in this table are represented by \n            CvCallVolumeWMIntvlType",
                        "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvCallVolumeWMIntvlType"
                      },
                      "cvSipMsgRateWMIndex": {
                        "type": "integer",
                        "description": "This is an index that references to different peaks in\n            past period in sip message rate watermark table.\n            \n            The number of watermarks entries stored for each table are \n            based on cvCallVolumeWMTableSize",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cvSipMsgRateWMValue": {
                        "type": "integer",
                        "description": "This object indicates high watermark value achieved by the\n            SIP messages per second for the given interval",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cvSipMsgRateWMts": {
                        "type": "string",
                        "description": "This object indicates date and time when the high watermark\n            is achieved for SIP messages per second for the given interval",
                        "x-yang-type": "snmpv2-tc:DateAndTime"
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-VOICE-DIAL-CONTROL-MIB:cvSipMsgRateWMEntry": [
                    {
                      "cvSipMsgRateWMIntvlDurUnits": "192.168.1.1",
                      "cvSipMsgRateWMIndex": 1,
                      "cvSipMsgRateWMValue": 0,
                      "cvSipMsgRateWMts": "192.168.1.1"
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cvSipMsgRateWMEntry-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": "/cvSipMsgRateWMEntry",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-VOICE-DIAL-CONTROL-MIB:cvCallActiveTable/cvCallActiveEntry={callActiveSetupTime},{callActiveIndex}": {
      "get": {
        "summary": "Get cvCallActiveEntry entry",
        "description": "Retrieve specific cvCallActiveEntry entry by key from MIB",
        "tags": [
          "CISCO-VOICE-DIAL-CONTROL-MIB"
        ],
        "parameters": [
          {
            "name": "callActiveSetupTime",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "callActiveIndex",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "Accept",
            "in": "header",
            "required": false,
            "description": "RESTCONF response media type (RFC 8040)",
            "schema": {
              "type": "string",
              "default": "application/yang-data+json",
              "enum": [
                "application/yang-data+json",
                "application/yang-data+xml"
              ]
            }
          },
          {
            "name": "depth",
            "in": "query",
            "required": false,
            "description": "Limit the depth of returned sub-tree data (RFC 8040 Section 4.8.2). Use 'unbounded' for full depth.",
            "schema": {
              "type": "string",
              "default": "unbounded"
            }
          },
          {
            "name": "fields",
            "in": "query",
            "required": false,
            "description": "Select specific fields to return (RFC 8040 Section 4.8.3). Example: fields=name;status",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "content",
            "in": "query",
            "required": false,
            "description": "Filter by config state: 'config' (config true only), 'nonconfig' (config false only), or 'all'.",
            "schema": {
              "type": "string",
              "enum": [
                "config",
                "nonconfig",
                "all"
              ],
              "default": "all"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "callActiveSetupTime": {
                      "type": "string",
                      "description": "callActiveSetupTime",
                      "x-yang-type": "leafref"
                    },
                    "callActiveIndex": {
                      "type": "string",
                      "description": "callActiveIndex",
                      "x-yang-type": "leafref"
                    },
                    "cvCallActiveConnectionId": {
                      "type": "string",
                      "description": "The global connection identifier for the\n            active telephony leg of the call.",
                      "x-yang-type": "cisco-voice:CvcGUid"
                    },
                    "cvCallActiveTxDuration": {
                      "type": "string",
                      "description": "Duration of Transmit path open from this peer to the\n            voice gateway for the call leg. This counter object will\n            lock at the maximum value which is approximately two\n            days.",
                      "x-yang-type": "dial-control:AbsoluteCounter32"
                    },
                    "cvCallActiveVoiceTxDuration": {
                      "type": "string",
                      "description": "Duration of voice transmitted from this peer to voice\n            gateway for this call leg. The Voice Utilization Rate can\n            be obtained by dividing this by cvCallActiveTXDuration\n            object. This counter object will lock at the maximum\n            value which is approximately two days.",
                      "x-yang-type": "dial-control:AbsoluteCounter32"
                    },
                    "cvCallActiveFaxTxDuration": {
                      "type": "string",
                      "description": "Duration of fax transmitted from this peer to voice gateway\n            for this call leg. The FAX Utilization Rate can be\n            obtained by dividing this by cvCallActiveTXDuration\n            object. This counter object will lock at the maximum\n            value which is approximately two days.",
                      "x-yang-type": "dial-control:AbsoluteCounter32"
                    },
                    "cvCallActiveCoderTypeRate": {
                      "type": "string",
                      "description": "The negotiated coder rate. It specifies the transmit rate of\n            voice/fax compression to its associated call leg for the\n            call.",
                      "x-yang-type": "cisco-voice:CvcCoderTypeRate"
                    },
                    "cvCallActiveNoiseLevel": {
                      "type": "integer",
                      "description": "The object contains the active noise level for the call\n            leg.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "cvCallActiveACOMLevel": {
                      "type": "integer",
                      "description": "The object contains the sum of Echo Return Loss (ERL),\n            cancellation loss (Echo Return Loss Enhancement) and\n            nonlinear processing loss for the call leg.\n            The value -1 indicates the level can not be determined or\n            level detection is disabled.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "cvCallActiveOutSignalLevel": {
                      "type": "integer",
                      "description": "The object contains the active output signal level to\n            telephony interface that is used by the call leg.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "cvCallActiveInSignalLevel": {
                      "type": "integer",
                      "description": "The object contains the active input signal level from\n            telephony interface that is used by the call leg.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "cvCallActiveERLLevel": {
                      "type": "integer",
                      "description": "The object contains the current Echo Return Loss (ERL)\n            level for the call leg.\n            The value -1 indicates the level can not be determined or\n            level detection is disabled.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "cvCallActiveSessionTarget": {
                      "type": "string",
                      "description": "The object specifies the session target of the peer that\n            is used for the call leg. This object is set with the\n            information in the call associated\n            cvVoicePeerCfgSessionTarget object when the call is\n            connected.",
                      "x-yang-type": "snmpv2-tc:DisplayString"
                    },
                    "cvCallActiveImgPageCount": {
                      "type": "string",
                      "description": "The number of FAX related image pages are received or\n            transmitted via the peer for the call leg.",
                      "x-yang-type": "dial-control:AbsoluteCounter32"
                    },
                    "cvCallActiveCallingName": {
                      "type": "string",
                      "description": "The calling party name of the call. If the name is\n            not available, then it will have a length of zero.",
                      "x-yang-type": "snmp-framework:SnmpAdminString"
                    },
                    "cvCallActiveCallerIDBlock": {
                      "type": "boolean",
                      "description": "The object indicates whether or not the caller ID feature\n            is blocked for this call."
                    },
                    "cvCallActiveEcanReflectorLocation": {
                      "type": "integer",
                      "description": "The location in milliseconds of the largest amplitude\n            reflector detected by the echo canceller for this call. \n            The value 0 indicates there is no reflector or the \n            information is not available.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "cvCallActiveAccountCode": {
                      "type": "string",
                      "description": "The object indicates the account code input to the call.\n            It could be used for call screen or by down stream server\n            for billing purpose.\n            The value of empty string indicates no account code input.",
                      "x-yang-type": "snmp-framework:SnmpAdminString"
                    },
                    "cvCallActiveERLLevelRev1": {
                      "type": "integer",
                      "description": "The object contains the current Echo Return Loss (ERL)\n            level for the call leg.\n            The value -1 indicates the level can not be determined or\n            level detection is disabled.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "cvCallActiveCallId": {
                      "type": "integer",
                      "description": "This object represents the call identifier\n            for the active telephony leg of the call.",
                      "minimum": 0,
                      "maximum": 4294967295
                    }
                  }
                },
                "example": {
                  "CISCO-VOICE-DIAL-CONTROL-MIB:cvCallActiveEntry": {
                    "callActiveSetupTime": "example-string",
                    "callActiveIndex": "example-string",
                    "cvCallActiveConnectionId": "example-string",
                    "cvCallActiveTxDuration": "example-string",
                    "cvCallActiveVoiceTxDuration": "example-string",
                    "cvCallActiveFaxTxDuration": "example-string",
                    "cvCallActiveCoderTypeRate": "ethernetCsmacd(6)",
                    "cvCallActiveNoiseLevel": -2147483648,
                    "cvCallActiveACOMLevel": -2147483648,
                    "cvCallActiveOutSignalLevel": -2147483648,
                    "cvCallActiveInSignalLevel": -2147483648,
                    "cvCallActiveERLLevel": -2147483648,
                    "cvCallActiveSessionTarget": "example-string",
                    "cvCallActiveImgPageCount": "example-string",
                    "cvCallActiveCallingName": "interface-1",
                    "cvCallActiveCallerIDBlock": true,
                    "cvCallActiveEcanReflectorLocation": -2147483648,
                    "cvCallActiveAccountCode": "example-string",
                    "cvCallActiveERLLevelRev1": -2147483648,
                    "cvCallActiveCallId": 0
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cvCallActiveEntry-2"
      },
      "x-yang-path": "/cvCallActiveTable/cvCallActiveEntry={callActiveSetupTime callActiveIndex}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "callActiveSetupTime callActiveIndex"
      ]
    },
    "/data/CISCO-VOICE-DIAL-CONTROL-MIB:cvVoIPCallActiveTable/cvVoIPCallActiveEntry={callActiveSetupTime},{callActiveIndex}": {
      "get": {
        "summary": "Get cvVoIPCallActiveEntry entry",
        "description": "Retrieve specific cvVoIPCallActiveEntry entry by key from MIB",
        "tags": [
          "CISCO-VOICE-DIAL-CONTROL-MIB"
        ],
        "parameters": [
          {
            "name": "callActiveSetupTime",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "callActiveIndex",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "Accept",
            "in": "header",
            "required": false,
            "description": "RESTCONF response media type (RFC 8040)",
            "schema": {
              "type": "string",
              "default": "application/yang-data+json",
              "enum": [
                "application/yang-data+json",
                "application/yang-data+xml"
              ]
            }
          },
          {
            "name": "depth",
            "in": "query",
            "required": false,
            "description": "Limit the depth of returned sub-tree data (RFC 8040 Section 4.8.2). Use 'unbounded' for full depth.",
            "schema": {
              "type": "string",
              "default": "unbounded"
            }
          },
          {
            "name": "fields",
            "in": "query",
            "required": false,
            "description": "Select specific fields to return (RFC 8040 Section 4.8.3). Example: fields=name;status",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "content",
            "in": "query",
            "required": false,
            "description": "Filter by config state: 'config' (config true only), 'nonconfig' (config false only), or 'all'.",
            "schema": {
              "type": "string",
              "enum": [
                "config",
                "nonconfig",
                "all"
              ],
              "default": "all"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "callActiveSetupTime": {
                      "type": "string",
                      "description": "callActiveSetupTime",
                      "x-yang-type": "leafref"
                    },
                    "callActiveIndex": {
                      "type": "string",
                      "description": "callActiveIndex",
                      "x-yang-type": "leafref"
                    },
                    "cvVoIPCallActiveConnectionId": {
                      "type": "string",
                      "description": "The global connection identifier for\n            the active VoIP leg of the call.",
                      "x-yang-type": "cisco-voice:CvcGUid"
                    },
                    "cvVoIPCallActiveRemoteIPAddress": {
                      "type": "string",
                      "description": "Remote system IP address for the VoIP call.",
                      "format": "inet:ipv4-address"
                    },
                    "cvVoIPCallActiveRemoteUDPPort": {
                      "type": "integer",
                      "description": "Remote system UDP listener port to which to transmit voice\n            packets.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "cvVoIPCallActiveRoundTripDelay": {
                      "type": "integer",
                      "description": "The voice packet round trip delay between local and\n            the remote system on the IP backbone during the call.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cvVoIPCallActiveSelectedQoS": {
                      "type": "string",
                      "description": "The selected RSVP QoS for the voice call.",
                      "x-yang-type": "int-serv:QosService"
                    },
                    "cvVoIPCallActiveSessionProtocol": {
                      "type": "string",
                      "description": "The object specifies the session protocol to be used\n            for Internet call between local and remote router via\n            IP backbone.",
                      "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvSessionProtocol"
                    },
                    "cvVoIPCallActiveSessionTarget": {
                      "type": "string",
                      "description": "The object specifies the session target of the peer that\n            is used for the call. This object is set with the\n            information in the call associated\n            cvVoIPPeerCfgSessionTarget object when the voice over IP\n            call is connected.",
                      "x-yang-type": "snmpv2-tc:DisplayString"
                    },
                    "cvVoIPCallActiveOnTimeRvPlayout": {
                      "type": "string",
                      "description": "Duration of voice playout from data received on time for\n            this call. This plus the durations for the GapFills in the\n            following entries gives the Total Voice Playout Duration\n            for Active Voice.\n            This does not include duration for which no data was sent by the\n            Transmit end as voice signal, e.g., silence suppression\n            and fax signal. The On Time Playout Rate can be computed\n            by dividing this entry by the Total Voice Playout Duration.\n            This counter object will lock at the maximum value which\n            is approximately two days.",
                      "x-yang-type": "dial-control:AbsoluteCounter32"
                    },
                    "cvVoIPCallActiveGapFillWithSilence": {
                      "type": "string",
                      "description": "Duration of voice signal replaced with signal played out\n            during silence due to voice data not received on time\n            (or lost) from voice gateway this call. This counter\n            object will lock at the maximum value which is\n            approximately two days.",
                      "x-yang-type": "dial-control:AbsoluteCounter32"
                    },
                    "cvVoIPCallActiveGapFillWithPrediction": {
                      "type": "string",
                      "description": "Duration of voice signal played out with signal synthesized\n            from parameters or samples of data preceding in time due\n            to voice data not received on time (or lost) from voice\n            gateway for this call. An example of such playout is\n            frame-erasure or frame-concealment strategies in G.729 and\n            G.723.1 compression algorithms. This counter object will\n            lock at the maximum value which is approximately two days.",
                      "x-yang-type": "dial-control:AbsoluteCounter32"
                    },
                    "cvVoIPCallActiveGapFillWithInterpolation": {
                      "type": "string",
                      "description": "Duration of voice signal played out with signal synthesized\n            from parameters or samples of data preceding and following\n            in time due to voice data not received on time (or lost)\n            from voice gateway for this call. This counter object\n            will lock at the maximum value which is approximately two\n            days.",
                      "x-yang-type": "dial-control:AbsoluteCounter32"
                    },
                    "cvVoIPCallActiveGapFillWithRedundancy": {
                      "type": "string",
                      "description": "Duration of voice signal played out with signal synthesized\n            from redundancy parameters available due to voice data not\n            received on time (or lost) from voice gateway for this call.\n            This counter object will lock at the maximum value which\n            is approximately two days.",
                      "x-yang-type": "dial-control:AbsoluteCounter32"
                    },
                    "cvVoIPCallActiveHiWaterPlayoutDelay": {
                      "type": "string",
                      "description": "The high water mark Voice Playout FIFO Delay during\n            the voice call. This counter object will lock at the\n            maximum value which is approximately two days.",
                      "x-yang-type": "dial-control:AbsoluteCounter32"
                    },
                    "cvVoIPCallActiveLoWaterPlayoutDelay": {
                      "type": "integer",
                      "description": "The low water mark Voice Playout FIFO Delay during\n            the voice call.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cvVoIPCallActiveReceiveDelay": {
                      "type": "integer",
                      "description": "The average Playout FIFO Delay plus the decoder delay\n            during the voice call.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cvVoIPCallActiveVADEnable": {
                      "type": "boolean",
                      "description": "The object indicates whether or not the VAD (Voice Activity\n            Detection) was enabled for the voice call."
                    },
                    "cvVoIPCallActiveCoderTypeRate": {
                      "type": "string",
                      "description": "The negotiated coder rate. It specifies the transmit rate of\n            voice/fax compression to its associated call leg for the\n            call. This rate is different from the configuration rate\n            because of rate negotiation during the call.",
                      "x-yang-type": "cisco-voice:CvcCoderTypeRate"
                    },
                    "cvVoIPCallActiveLostPackets": {
                      "type": "string",
                      "description": "The number of lost voice packets during the call.",
                      "x-yang-type": "dial-control:AbsoluteCounter32"
                    },
                    "cvVoIPCallActiveEarlyPackets": {
                      "type": "string",
                      "description": "The number of received voice packets that\n            arrived too early to store in jitter buffer\n            during the call.",
                      "x-yang-type": "dial-control:AbsoluteCounter32"
                    },
                    "cvVoIPCallActiveLatePackets": {
                      "type": "string",
                      "description": "The number of received voice packets that\n            arrived too late to playout with CODEC (Coder/Decoder)\n            during the call.",
                      "x-yang-type": "dial-control:AbsoluteCounter32"
                    },
                    "cvVoIPCallActiveUsername": {
                      "type": "string",
                      "description": "The textual identifier of the calling party (user) of the\n            call. If the username is not available, then the value of\n            this object will have a length of zero.",
                      "x-yang-type": "snmp-framework:SnmpAdminString"
                    },
                    "cvVoIPCallActiveProtocolCallId": {
                      "type": "string",
                      "description": "The protocol-specific call identifier for the VoIP call.",
                      "format": "binary"
                    },
                    "cvVoIPCallActiveRemSigIPAddrT": {
                      "type": "string",
                      "description": "This object specifies the type of address contained in\n            the associated instance of cvVoIPCallActiveRemSigIPAddr.",
                      "x-yang-type": "inet-address:InetAddressType"
                    },
                    "cvVoIPCallActiveRemSigIPAddr": {
                      "type": "string",
                      "description": "Remote signalling IP address for the VoIP call.",
                      "x-yang-type": "inet-address:InetAddress"
                    },
                    "cvVoIPCallActiveRemSigPort": {
                      "type": "integer",
                      "description": "Remote signalling listener port to which to transmit\n            voice packets.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "cvVoIPCallActiveRemMediaIPAddrT": {
                      "type": "string",
                      "description": "This object specifies the type of address contained in\n            the associated instance of\n            cvVoIPCallActiveRemMediaIPAddr.",
                      "x-yang-type": "inet-address:InetAddressType"
                    },
                    "cvVoIPCallActiveRemMediaIPAddr": {
                      "type": "string",
                      "description": "Remote media end point IP address for the VoIP call.",
                      "x-yang-type": "inet-address:InetAddress"
                    },
                    "cvVoIPCallActiveRemMediaPort": {
                      "type": "integer",
                      "description": "Remote media end point listener port to which to transmit\n            voice packets.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "cvVoIPCallActiveSRTPEnable": {
                      "type": "boolean",
                      "description": "The object indicates whether or not the SRTP (Secured RTP)\n            was enabled for the voice call."
                    },
                    "cvVoIPCallActiveOctetAligned": {
                      "type": "boolean",
                      "description": "If the object has a value true(1) octet align operation\n            is used, and if the value is false(2), bandwidth efficient\n            operation is used. This object is not instantiated when\n            the object cvVoIPCallActiveCoderTypeRate is not equal to\n            gsmAmrNb enum."
                    },
                    "cvVoIPCallActiveBitRates": {
                      "type": "string",
                      "description": "This object indicates modes of Bit rates.\n            This object is not instantiated when the object\n            cvVoIPCallActiveCoderTypeRate is not equal to\n            gsmAmrNb enum.",
                      "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvAmrNbBitRateMode"
                    },
                    "cvVoIPCallActiveModeChgPeriod": {
                      "type": "integer",
                      "description": "The object indicates the interval (N frame-blocks) at which\n            codec mode changes are allowed. This object is not\n            instantiated when the object cvVoIPCallActiveCoderTypeRate\n            is not equal to gsmAmrNb enum.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "cvVoIPCallActiveModeChgNeighbor": {
                      "type": "boolean",
                      "description": "If the object has a value of true(1), mode changes will be\n            made to only neighboring modes set to\n            cvVoIPCallActiveBitRates object. If the value is false(2),\n            mode changes will be allowed to any modes set to\n            cvVoIPCallActiveBitRates object. This object is not\n            instantiated when the object cvVoIPCallActiveCoderTypeRate\n            is not equal to gsmAmrNb enum."
                    },
                    "cvVoIPCallActiveMaxPtime": {
                      "type": "integer",
                      "description": "The object indicates the maximum amount of media that\n            can be encapsulated in a payload. Supported value is\n            20 msec. This object is not instantiated when the\n            object cvVoIPCallActiveCoderTypeRate is not equal to\n            gsmAmrNb enum.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "cvVoIPCallActiveCRC": {
                      "type": "boolean",
                      "description": "If the object has a value of true(1), frame CRC will be\n            included in the payload and if the value is false(2),\n            frame CRC will not be included in the payload.\n            This object is applicable only when RTP frame type\n            is octet aligned. This object is not instantiated when\n            the object cvVoIPCallActiveCoderTypeRate is not equal to\n            gsmAmrNb enum."
                    },
                    "cvVoIPCallActiveRobustSorting": {
                      "type": "boolean",
                      "description": "If the object has a value of true(1), payload employs\n            robust sorting and if the value is false(2), payload\n            does not employ robust sorting. This object is applicable\n            only when RTP frame type is octet aligned. This object\n            is not instantiated when the object\n            cvVoIPCallActiveCoderTypeRate is not equal to gsmAmrNb\n            enum."
                    },
                    "cvVoIPCallActiveEncap": {
                      "type": "string",
                      "description": "The object indicates the RTP encapsulation type.\n            Supported RTP encapsulation type is RFC3267.\n            This object is not instantiated when the object\n            cvVoIPCallActiveCoderTypeRate is not equal to\n            gsmAmrNb enum.",
                      "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvAmrNbRtpEncap"
                    },
                    "cvVoIPCallActiveInterleaving": {
                      "type": "integer",
                      "description": "The object indicates the maximum number of frame-blocks\n            allowed in an interleaving group. It indicates that\n            frame-block level interleaving will be used for that\n            session. If this object is not set, interleaving\n            is not used. This object is applicable only when\n            RTP frame type is octet aligned. This object is not\n            instantiated when the object cvVoIPCallActiveCoderTypeRate\n            is not equal to gsmAmrNb enum.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "cvVoIPCallActivePtime": {
                      "type": "integer",
                      "description": "The object indicates the length of the time in milliseconds\n            represented by the media of the packet. Supported value is\n            20 milliseconds. This object is not instantiated when the\n            object cvVoIPCallActiveCoderTypeRate is not equal to\n            gsmAmrNb enum.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "cvVoIPCallActiveChannels": {
                      "type": "integer",
                      "description": "The object indicates the number of audio channels.\n            Supported value is 1. This object is not instantiated\n            when the object cvVoIPCallActiveCoderTypeRate is not equal\n            to gsmAmrNb enum.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "cvVoIPCallActiveCoderMode": {
                      "type": "string",
                      "description": "The object indicates the iLBC codec mode.\n            The value of this object is valid only if \n            cvVoIPCallActiveCoderTypeRate is equal to \n            'iLBC'.",
                      "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvIlbcFrameMode"
                    },
                    "cvVoIPCallActiveCallId": {
                      "type": "integer",
                      "description": "This object represents the call identifier\n            for the active VoIP leg of the call.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cvVoIPCallActiveCallReferenceId": {
                      "type": "string",
                      "description": "The call reference ID associates the video call entry and voice\n            call entry of the same endpoint.  An audio-only call may or may\n            not have a valid call reference ID (i.e. value greater than\n            zero), but in both cases, there will not be a video call entry\n            associated with it.  \n            \n            For a video call, the video-specific information  is stored in a\n            call entry in cVideoSessionActive of CISCO-VIDEO-SESSION-MIB, in\n            which the call reference ID is also identified.",
                      "x-yang-type": "cisco-voice:CvcCallReferenceIdOrZero"
                    },
                    "ccVoIPCallActivePolicyName": {
                      "type": "string",
                      "description": "This object holds the policy name. It could be media\n            policy, DSCP policy etc.",
                      "x-yang-type": "snmpv2-tc:DisplayString"
                    },
                    "cvVoIPCallActiveReversedDirectionPeerAddress": {
                      "type": "string",
                      "description": "This object store the reversed direction peer address  If the\n            address is not available, then it will have a length of zero.\n            \n            If the call is ingress then it contains called number and if the\n            call is egress then it contains calling number.",
                      "x-yang-type": "snmpv2-tc:DisplayString"
                    },
                    "cvVoIPCallActiveSessionId": {
                      "type": "integer",
                      "description": "This object indicates the active session ID assigned by the\n            call manager to identify call legs that belong to the same call\n            session.",
                      "minimum": 0,
                      "maximum": 4294967295
                    }
                  }
                },
                "example": {
                  "CISCO-VOICE-DIAL-CONTROL-MIB:cvVoIPCallActiveEntry": {
                    "callActiveSetupTime": "example-string",
                    "callActiveIndex": "example-string",
                    "cvVoIPCallActiveConnectionId": "192.168.1.1",
                    "cvVoIPCallActiveRemoteIPAddress": "192.168.1.1",
                    "cvVoIPCallActiveRemoteUDPPort": -2147483648,
                    "cvVoIPCallActiveRoundTripDelay": 0,
                    "cvVoIPCallActiveSelectedQoS": "192.168.1.1",
                    "cvVoIPCallActiveSessionProtocol": "192.168.1.1",
                    "cvVoIPCallActiveSessionTarget": "192.168.1.1",
                    "cvVoIPCallActiveOnTimeRvPlayout": "192.168.1.1",
                    "cvVoIPCallActiveGapFillWithSilence": "192.168.1.1",
                    "cvVoIPCallActiveGapFillWithPrediction": "192.168.1.1",
                    "cvVoIPCallActiveGapFillWithInterpolation": "192.168.1.1",
                    "cvVoIPCallActiveGapFillWithRedundancy": "192.168.1.1",
                    "cvVoIPCallActiveHiWaterPlayoutDelay": "192.168.1.1",
                    "cvVoIPCallActiveLoWaterPlayoutDelay": 0,
                    "cvVoIPCallActiveReceiveDelay": 0,
                    "cvVoIPCallActiveVADEnable": true,
                    "cvVoIPCallActiveCoderTypeRate": "192.168.1.1",
                    "cvVoIPCallActiveLostPackets": "192.168.1.1",
                    "cvVoIPCallActiveEarlyPackets": "192.168.1.1",
                    "cvVoIPCallActiveLatePackets": "192.168.1.1",
                    "cvVoIPCallActiveUsername": "192.168.1.1",
                    "cvVoIPCallActiveProtocolCallId": "192.168.1.1",
                    "cvVoIPCallActiveRemSigIPAddrT": "192.168.1.1",
                    "cvVoIPCallActiveRemSigIPAddr": "192.168.1.1",
                    "cvVoIPCallActiveRemSigPort": -2147483648,
                    "cvVoIPCallActiveRemMediaIPAddrT": "192.168.1.1",
                    "cvVoIPCallActiveRemMediaIPAddr": "192.168.1.1",
                    "cvVoIPCallActiveRemMediaPort": -2147483648,
                    "cvVoIPCallActiveSRTPEnable": true,
                    "cvVoIPCallActiveOctetAligned": true,
                    "cvVoIPCallActiveBitRates": "192.168.1.1",
                    "cvVoIPCallActiveModeChgPeriod": -2147483648,
                    "cvVoIPCallActiveModeChgNeighbor": true,
                    "cvVoIPCallActiveMaxPtime": -2147483648,
                    "cvVoIPCallActiveCRC": true,
                    "cvVoIPCallActiveRobustSorting": true,
                    "cvVoIPCallActiveEncap": "192.168.1.1",
                    "cvVoIPCallActiveInterleaving": -2147483648,
                    "cvVoIPCallActivePtime": -2147483648,
                    "cvVoIPCallActiveChannels": -2147483648,
                    "cvVoIPCallActiveCoderMode": "192.168.1.1",
                    "cvVoIPCallActiveCallId": 0,
                    "cvVoIPCallActiveCallReferenceId": "192.168.1.1",
                    "ccVoIPCallActivePolicyName": "192.168.1.1",
                    "cvVoIPCallActiveReversedDirectionPeerAddress": "192.168.1.1",
                    "cvVoIPCallActiveSessionId": 0
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cvVoIPCallActiveEntry-2"
      },
      "x-yang-path": "/cvVoIPCallActiveTable/cvVoIPCallActiveEntry={callActiveSetupTime callActiveIndex}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "callActiveSetupTime callActiveIndex"
      ]
    },
    "/data/CISCO-VOICE-DIAL-CONTROL-MIB:cvCallRateStatsTable/cvCallRateStatsEntry={cvCallRateStatsIntvlDurUnits},{cvCallRateStatsIntvlDur}": {
      "get": {
        "summary": "Get cvCallRateStatsEntry entry",
        "description": "Retrieve specific cvCallRateStatsEntry entry by key from MIB",
        "tags": [
          "CISCO-VOICE-DIAL-CONTROL-MIB"
        ],
        "parameters": [
          {
            "name": "cvCallRateStatsIntvlDurUnits",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "cvCallRateStatsIntvlDur",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "Accept",
            "in": "header",
            "required": false,
            "description": "RESTCONF response media type (RFC 8040)",
            "schema": {
              "type": "string",
              "default": "application/yang-data+json",
              "enum": [
                "application/yang-data+json",
                "application/yang-data+xml"
              ]
            }
          },
          {
            "name": "depth",
            "in": "query",
            "required": false,
            "description": "Limit the depth of returned sub-tree data (RFC 8040 Section 4.8.2). Use 'unbounded' for full depth.",
            "schema": {
              "type": "string",
              "default": "unbounded"
            }
          },
          {
            "name": "fields",
            "in": "query",
            "required": false,
            "description": "Select specific fields to return (RFC 8040 Section 4.8.3). Example: fields=name;status",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "content",
            "in": "query",
            "required": false,
            "description": "Filter by config state: 'config' (config true only), 'nonconfig' (config false only), or 'all'.",
            "schema": {
              "type": "string",
              "enum": [
                "config",
                "nonconfig",
                "all"
              ],
              "default": "all"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "cvCallRateStatsIntvlDurUnits": {
                      "type": "string",
                      "description": "The Object indexes in Call Rate Table to select one among three\n            interval-tables.\n            \n            The different types in this table are represented by \n            CvCallVolumeStatsIntvlType",
                      "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvCallVolumeStatsIntvlType"
                    },
                    "cvCallRateStatsIntvlDur": {
                      "type": "integer",
                      "description": "This is an index that references to the different past periods\n            in given in interval of call rate table.\n            This range is 1-60 for Seconds and Minutes table \n            wherein 1-72 for hours table.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cvCallRateStatsMaxVal": {
                      "type": "integer",
                      "description": "This object indicates the maximum calls per second\n            that occured for the given period for the given interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cvCallRateStatsAvgVal": {
                      "type": "integer",
                      "description": "This object indicates the average calls per second\n            that occured for the given period for the given interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    }
                  }
                },
                "example": {
                  "CISCO-VOICE-DIAL-CONTROL-MIB:cvCallRateStatsEntry": {
                    "cvCallRateStatsIntvlDurUnits": "example-string",
                    "cvCallRateStatsIntvlDur": 0,
                    "cvCallRateStatsMaxVal": 0,
                    "cvCallRateStatsAvgVal": 0
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cvCallRateStatsEntry-2"
      },
      "x-yang-path": "/cvCallRateStatsTable/cvCallRateStatsEntry={cvCallRateStatsIntvlDurUnits cvCallRateStatsIntvlDur}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "cvCallRateStatsIntvlDurUnits cvCallRateStatsIntvlDur"
      ]
    },
    "/data/CISCO-VOICE-DIAL-CONTROL-MIB:cvCallLegRateStatsTable/cvCallLegRateStatsEntry={cvCallLegRateStatsIntvlDurUnits},{cvCallLegRateStatsIntvlDur}": {
      "get": {
        "summary": "Get cvCallLegRateStatsEntry entry",
        "description": "Retrieve specific cvCallLegRateStatsEntry entry by key from MIB",
        "tags": [
          "CISCO-VOICE-DIAL-CONTROL-MIB"
        ],
        "parameters": [
          {
            "name": "cvCallLegRateStatsIntvlDurUnits",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "cvCallLegRateStatsIntvlDur",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "Accept",
            "in": "header",
            "required": false,
            "description": "RESTCONF response media type (RFC 8040)",
            "schema": {
              "type": "string",
              "default": "application/yang-data+json",
              "enum": [
                "application/yang-data+json",
                "application/yang-data+xml"
              ]
            }
          },
          {
            "name": "depth",
            "in": "query",
            "required": false,
            "description": "Limit the depth of returned sub-tree data (RFC 8040 Section 4.8.2). Use 'unbounded' for full depth.",
            "schema": {
              "type": "string",
              "default": "unbounded"
            }
          },
          {
            "name": "fields",
            "in": "query",
            "required": false,
            "description": "Select specific fields to return (RFC 8040 Section 4.8.3). Example: fields=name;status",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "content",
            "in": "query",
            "required": false,
            "description": "Filter by config state: 'config' (config true only), 'nonconfig' (config false only), or 'all'.",
            "schema": {
              "type": "string",
              "enum": [
                "config",
                "nonconfig",
                "all"
              ],
              "default": "all"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "cvCallLegRateStatsIntvlDurUnits": {
                      "type": "string",
                      "description": "The Object indexes in Call Leg Rate Table to select one among\n            three\n            interval-tables.\n            \n            The different types in this table are represented by \n            CvCallVolumeStatsIntvlType",
                      "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvCallVolumeStatsIntvlType"
                    },
                    "cvCallLegRateStatsIntvlDur": {
                      "type": "integer",
                      "description": "This is an index that references to the different past periods\n            in given in interval of call rate table.\n            This range is 1-60 for Seconds and Minutes table \n            wherein 1-72 for hours table.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cvCallLegRateStatsMaxVal": {
                      "type": "integer",
                      "description": "This object indicates the maximum call-legs per second\n            that occured for the given period for the given interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cvCallLegRateStatsAvgVal": {
                      "type": "integer",
                      "description": "This object indicates the average call-legs per second\n            that occured for the given period for the given interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    }
                  }
                },
                "example": {
                  "CISCO-VOICE-DIAL-CONTROL-MIB:cvCallLegRateStatsEntry": {
                    "cvCallLegRateStatsIntvlDurUnits": "example-string",
                    "cvCallLegRateStatsIntvlDur": 0,
                    "cvCallLegRateStatsMaxVal": 0,
                    "cvCallLegRateStatsAvgVal": 0
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cvCallLegRateStatsEntry-2"
      },
      "x-yang-path": "/cvCallLegRateStatsTable/cvCallLegRateStatsEntry={cvCallLegRateStatsIntvlDurUnits cvCallLegRateStatsIntvlDur}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "cvCallLegRateStatsIntvlDurUnits cvCallLegRateStatsIntvlDur"
      ]
    },
    "/data/CISCO-VOICE-DIAL-CONTROL-MIB:cvActiveCallStatsTable/cvActiveCallStatsEntry={cvActiveCallStatsIntvlDurUnits},{cvActiveCallStatsIntvlDur}": {
      "get": {
        "summary": "Get cvActiveCallStatsEntry entry",
        "description": "Retrieve specific cvActiveCallStatsEntry entry by key from MIB",
        "tags": [
          "CISCO-VOICE-DIAL-CONTROL-MIB"
        ],
        "parameters": [
          {
            "name": "cvActiveCallStatsIntvlDurUnits",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "cvActiveCallStatsIntvlDur",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "Accept",
            "in": "header",
            "required": false,
            "description": "RESTCONF response media type (RFC 8040)",
            "schema": {
              "type": "string",
              "default": "application/yang-data+json",
              "enum": [
                "application/yang-data+json",
                "application/yang-data+xml"
              ]
            }
          },
          {
            "name": "depth",
            "in": "query",
            "required": false,
            "description": "Limit the depth of returned sub-tree data (RFC 8040 Section 4.8.2). Use 'unbounded' for full depth.",
            "schema": {
              "type": "string",
              "default": "unbounded"
            }
          },
          {
            "name": "fields",
            "in": "query",
            "required": false,
            "description": "Select specific fields to return (RFC 8040 Section 4.8.3). Example: fields=name;status",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "content",
            "in": "query",
            "required": false,
            "description": "Filter by config state: 'config' (config true only), 'nonconfig' (config false only), or 'all'.",
            "schema": {
              "type": "string",
              "enum": [
                "config",
                "nonconfig",
                "all"
              ],
              "default": "all"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "cvActiveCallStatsIntvlDurUnits": {
                      "type": "string",
                      "description": "The Object indexes in Active Call Rate Table (con-current calls\n            table) to select one among three interval-tables.\n            \n            The different types in this table are represented by \n            CvCallVolumeStatsIntvlType",
                      "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvCallVolumeStatsIntvlType"
                    },
                    "cvActiveCallStatsIntvlDur": {
                      "type": "integer",
                      "description": "This is an index that references to the different past periods\n            in given in interval of active call table.\n            This range is 1-60 for Seconds and Minutes table \n            wherein 1-72 for hours table.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cvActiveCallStatsMaxVal": {
                      "type": "integer",
                      "description": "This object indicates the maximum number of active call\n            that occured for the given period for the given interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cvActiveCallStatsAvgVal": {
                      "type": "integer",
                      "description": "This object indicates the average number of active calls\n            that occured for the given period for the given interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    }
                  }
                },
                "example": {
                  "CISCO-VOICE-DIAL-CONTROL-MIB:cvActiveCallStatsEntry": {
                    "cvActiveCallStatsIntvlDurUnits": "example-string",
                    "cvActiveCallStatsIntvlDur": 0,
                    "cvActiveCallStatsMaxVal": 0,
                    "cvActiveCallStatsAvgVal": 0
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cvActiveCallStatsEntry-2"
      },
      "x-yang-path": "/cvActiveCallStatsTable/cvActiveCallStatsEntry={cvActiveCallStatsIntvlDurUnits cvActiveCallStatsIntvlDur}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "cvActiveCallStatsIntvlDurUnits cvActiveCallStatsIntvlDur"
      ]
    },
    "/data/CISCO-VOICE-DIAL-CONTROL-MIB:cvCallDurationStatsTable/cvCallDurationStatsEntry={cvCallDurationStatsIntvlDurUnits},{cvCallDurationStatsIntvlDur}": {
      "get": {
        "summary": "Get cvCallDurationStatsEntry entry",
        "description": "Retrieve specific cvCallDurationStatsEntry entry by key from MIB",
        "tags": [
          "CISCO-VOICE-DIAL-CONTROL-MIB"
        ],
        "parameters": [
          {
            "name": "cvCallDurationStatsIntvlDurUnits",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "cvCallDurationStatsIntvlDur",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "Accept",
            "in": "header",
            "required": false,
            "description": "RESTCONF response media type (RFC 8040)",
            "schema": {
              "type": "string",
              "default": "application/yang-data+json",
              "enum": [
                "application/yang-data+json",
                "application/yang-data+xml"
              ]
            }
          },
          {
            "name": "depth",
            "in": "query",
            "required": false,
            "description": "Limit the depth of returned sub-tree data (RFC 8040 Section 4.8.2). Use 'unbounded' for full depth.",
            "schema": {
              "type": "string",
              "default": "unbounded"
            }
          },
          {
            "name": "fields",
            "in": "query",
            "required": false,
            "description": "Select specific fields to return (RFC 8040 Section 4.8.3). Example: fields=name;status",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "content",
            "in": "query",
            "required": false,
            "description": "Filter by config state: 'config' (config true only), 'nonconfig' (config false only), or 'all'.",
            "schema": {
              "type": "string",
              "enum": [
                "config",
                "nonconfig",
                "all"
              ],
              "default": "all"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "cvCallDurationStatsIntvlDurUnits": {
                      "type": "string",
                      "description": "The Object indexes in Call Duration Table to select one among\n            three interval-tables.\n            \n            The different types in this table are represented by \n            CvCallVolumeStatsIntvlType",
                      "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvCallVolumeStatsIntvlType"
                    },
                    "cvCallDurationStatsIntvlDur": {
                      "type": "integer",
                      "description": "This is an index that references to the different past periods\n            in given in interval of call Duration table.\n            This range is 1-60 for Seconds and Minutes table \n            wherein 1-72 for hours table.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cvCallDurationStatsMaxVal": {
                      "type": "integer",
                      "description": "This object indicates the maximum number of calls having a\n            duration which is below the threshold for the given interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cvCallDurationStatsAvgVal": {
                      "type": "integer",
                      "description": "This object indicates the average number of calls having a\n            duration which is below the threshold for the given interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    }
                  }
                },
                "example": {
                  "CISCO-VOICE-DIAL-CONTROL-MIB:cvCallDurationStatsEntry": {
                    "cvCallDurationStatsIntvlDurUnits": "example-string",
                    "cvCallDurationStatsIntvlDur": 0,
                    "cvCallDurationStatsMaxVal": 0,
                    "cvCallDurationStatsAvgVal": 0
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cvCallDurationStatsEntry-2"
      },
      "x-yang-path": "/cvCallDurationStatsTable/cvCallDurationStatsEntry={cvCallDurationStatsIntvlDurUnits cvCallDurationStatsIntvlDur}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "cvCallDurationStatsIntvlDurUnits cvCallDurationStatsIntvlDur"
      ]
    },
    "/data/CISCO-VOICE-DIAL-CONTROL-MIB:cvSipMsgRateStatsTable/cvSipMsgRateStatsEntry={cvSipMsgRateStatsIntvlDurUnits},{cvSipMsgRateStatsIntvlDur}": {
      "get": {
        "summary": "Get cvSipMsgRateStatsEntry entry",
        "description": "Retrieve specific cvSipMsgRateStatsEntry entry by key from MIB",
        "tags": [
          "CISCO-VOICE-DIAL-CONTROL-MIB"
        ],
        "parameters": [
          {
            "name": "cvSipMsgRateStatsIntvlDurUnits",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "cvSipMsgRateStatsIntvlDur",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "Accept",
            "in": "header",
            "required": false,
            "description": "RESTCONF response media type (RFC 8040)",
            "schema": {
              "type": "string",
              "default": "application/yang-data+json",
              "enum": [
                "application/yang-data+json",
                "application/yang-data+xml"
              ]
            }
          },
          {
            "name": "depth",
            "in": "query",
            "required": false,
            "description": "Limit the depth of returned sub-tree data (RFC 8040 Section 4.8.2). Use 'unbounded' for full depth.",
            "schema": {
              "type": "string",
              "default": "unbounded"
            }
          },
          {
            "name": "fields",
            "in": "query",
            "required": false,
            "description": "Select specific fields to return (RFC 8040 Section 4.8.3). Example: fields=name;status",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "content",
            "in": "query",
            "required": false,
            "description": "Filter by config state: 'config' (config true only), 'nonconfig' (config false only), or 'all'.",
            "schema": {
              "type": "string",
              "enum": [
                "config",
                "nonconfig",
                "all"
              ],
              "default": "all"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "cvSipMsgRateStatsIntvlDurUnits": {
                      "type": "string",
                      "description": "The Object indexes in SIP Message Rate Table to select one\n            among three interval-tables.\n            \n            The different types in this table are represented by \n            CvCallVolumeStatsIntvlType",
                      "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvCallVolumeStatsIntvlType"
                    },
                    "cvSipMsgRateStatsIntvlDur": {
                      "type": "integer",
                      "description": "This is an index that references to the different past\n            periods in given in interval of SIP message rate table.\n            This range is 1-60 for Seconds and Minutes table \n            wherein 1-72 for hours table.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cvSipMsgRateStatsMaxVal": {
                      "type": "integer",
                      "description": "This object indicates the maximum SIP messages  per second that\n            is received for the given interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cvSipMsgRateStatsAvgVal": {
                      "type": "integer",
                      "description": "This object indicates the average SIP messages per second that\n            is received for the given interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    }
                  }
                },
                "example": {
                  "CISCO-VOICE-DIAL-CONTROL-MIB:cvSipMsgRateStatsEntry": {
                    "cvSipMsgRateStatsIntvlDurUnits": "192.168.1.1",
                    "cvSipMsgRateStatsIntvlDur": 0,
                    "cvSipMsgRateStatsMaxVal": 0,
                    "cvSipMsgRateStatsAvgVal": 0
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cvSipMsgRateStatsEntry-2"
      },
      "x-yang-path": "/cvSipMsgRateStatsTable/cvSipMsgRateStatsEntry={cvSipMsgRateStatsIntvlDurUnits cvSipMsgRateStatsIntvlDur}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "cvSipMsgRateStatsIntvlDurUnits cvSipMsgRateStatsIntvlDur"
      ]
    },
    "/data/CISCO-VOICE-DIAL-CONTROL-MIB:cvCallRateWMTable/cvCallRateWMEntry={cvCallRateWMIntvlDurUnits},{cvCallRateWMIndex}": {
      "get": {
        "summary": "Get cvCallRateWMEntry entry",
        "description": "Retrieve specific cvCallRateWMEntry entry by key from MIB",
        "tags": [
          "CISCO-VOICE-DIAL-CONTROL-MIB"
        ],
        "parameters": [
          {
            "name": "cvCallRateWMIntvlDurUnits",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "cvCallRateWMIndex",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "Accept",
            "in": "header",
            "required": false,
            "description": "RESTCONF response media type (RFC 8040)",
            "schema": {
              "type": "string",
              "default": "application/yang-data+json",
              "enum": [
                "application/yang-data+json",
                "application/yang-data+xml"
              ]
            }
          },
          {
            "name": "depth",
            "in": "query",
            "required": false,
            "description": "Limit the depth of returned sub-tree data (RFC 8040 Section 4.8.2). Use 'unbounded' for full depth.",
            "schema": {
              "type": "string",
              "default": "unbounded"
            }
          },
          {
            "name": "fields",
            "in": "query",
            "required": false,
            "description": "Select specific fields to return (RFC 8040 Section 4.8.3). Example: fields=name;status",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "content",
            "in": "query",
            "required": false,
            "description": "Filter by config state: 'config' (config true only), 'nonconfig' (config false only), or 'all'.",
            "schema": {
              "type": "string",
              "enum": [
                "config",
                "nonconfig",
                "all"
              ],
              "default": "all"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "cvCallRateWMIntvlDurUnits": {
                      "type": "string",
                      "description": "The Object indexes in call rate Water mark Table to select one\n            among four interval-tables.\n            \n            The different types in this table are represented by \n            CvCallVolumeWMIntvlType",
                      "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvCallVolumeWMIntvlType"
                    },
                    "cvCallRateWMIndex": {
                      "type": "integer",
                      "description": "This is an index that references to different peaks in\n            past period in call rate watermark table.\n            \n            The number of watermarks entries stored for each table are \n            based on cvCallVolumeWMTableSize",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cvCallRateWMValue": {
                      "type": "integer",
                      "description": "This object indicates high watermark value achieved by the\n            calls per second for the given interval",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cvCallRateWMts": {
                      "type": "string",
                      "description": "This object indicates date and Time when the high watermark\n            is achieved for calls per second for the given interval",
                      "x-yang-type": "snmpv2-tc:DateAndTime"
                    }
                  }
                },
                "example": {
                  "CISCO-VOICE-DIAL-CONTROL-MIB:cvCallRateWMEntry": {
                    "cvCallRateWMIntvlDurUnits": "example-string",
                    "cvCallRateWMIndex": 1,
                    "cvCallRateWMValue": 0,
                    "cvCallRateWMts": "example-string"
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cvCallRateWMEntry-2"
      },
      "x-yang-path": "/cvCallRateWMTable/cvCallRateWMEntry={cvCallRateWMIntvlDurUnits cvCallRateWMIndex}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "cvCallRateWMIntvlDurUnits cvCallRateWMIndex"
      ]
    },
    "/data/CISCO-VOICE-DIAL-CONTROL-MIB:cvCallLegRateWMTable/cvCallLegRateWMEntry={cvCallLegRateWMIntvlDurUnits},{cvCallLegRateWMIndex}": {
      "get": {
        "summary": "Get cvCallLegRateWMEntry entry",
        "description": "Retrieve specific cvCallLegRateWMEntry entry by key from MIB",
        "tags": [
          "CISCO-VOICE-DIAL-CONTROL-MIB"
        ],
        "parameters": [
          {
            "name": "cvCallLegRateWMIntvlDurUnits",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "cvCallLegRateWMIndex",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "Accept",
            "in": "header",
            "required": false,
            "description": "RESTCONF response media type (RFC 8040)",
            "schema": {
              "type": "string",
              "default": "application/yang-data+json",
              "enum": [
                "application/yang-data+json",
                "application/yang-data+xml"
              ]
            }
          },
          {
            "name": "depth",
            "in": "query",
            "required": false,
            "description": "Limit the depth of returned sub-tree data (RFC 8040 Section 4.8.2). Use 'unbounded' for full depth.",
            "schema": {
              "type": "string",
              "default": "unbounded"
            }
          },
          {
            "name": "fields",
            "in": "query",
            "required": false,
            "description": "Select specific fields to return (RFC 8040 Section 4.8.3). Example: fields=name;status",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "content",
            "in": "query",
            "required": false,
            "description": "Filter by config state: 'config' (config true only), 'nonconfig' (config false only), or 'all'.",
            "schema": {
              "type": "string",
              "enum": [
                "config",
                "nonconfig",
                "all"
              ],
              "default": "all"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "cvCallLegRateWMIntvlDurUnits": {
                      "type": "string",
                      "description": "The Object indexes in call leg rate Water mark Table to select\n            one\n            among four interval-tables.\n            \n            The different types in this table are represented by \n            CvCallVolumeWMIntvlType",
                      "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvCallVolumeWMIntvlType"
                    },
                    "cvCallLegRateWMIndex": {
                      "type": "integer",
                      "description": "This is an index that references to different peaks in\n            past period in call leg rate watermark table.\n            \n            The number of watermarks entries stored for each table are \n            based on cvCallVolumeWMTableSize",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cvCallLegRateWMValue": {
                      "type": "integer",
                      "description": "This object indicates high watermark value achieved by the\n            call legs per second for the given interval",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cvCallLegRateWMts": {
                      "type": "string",
                      "description": "This object indicates date and time when the high watermark\n            is achieved for call-legs per second for the given interval",
                      "x-yang-type": "snmpv2-tc:DateAndTime"
                    }
                  }
                },
                "example": {
                  "CISCO-VOICE-DIAL-CONTROL-MIB:cvCallLegRateWMEntry": {
                    "cvCallLegRateWMIntvlDurUnits": "example-string",
                    "cvCallLegRateWMIndex": 1,
                    "cvCallLegRateWMValue": 0,
                    "cvCallLegRateWMts": "example-string"
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cvCallLegRateWMEntry-2"
      },
      "x-yang-path": "/cvCallLegRateWMTable/cvCallLegRateWMEntry={cvCallLegRateWMIntvlDurUnits cvCallLegRateWMIndex}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "cvCallLegRateWMIntvlDurUnits cvCallLegRateWMIndex"
      ]
    },
    "/data/CISCO-VOICE-DIAL-CONTROL-MIB:cvActiveCallWMTable/cvActiveCallWMEntry={cvActiveCallWMIntvlDurUnits},{cvActiveCallWMIndex}": {
      "get": {
        "summary": "Get cvActiveCallWMEntry entry",
        "description": "Retrieve specific cvActiveCallWMEntry entry by key from MIB",
        "tags": [
          "CISCO-VOICE-DIAL-CONTROL-MIB"
        ],
        "parameters": [
          {
            "name": "cvActiveCallWMIntvlDurUnits",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "cvActiveCallWMIndex",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "Accept",
            "in": "header",
            "required": false,
            "description": "RESTCONF response media type (RFC 8040)",
            "schema": {
              "type": "string",
              "default": "application/yang-data+json",
              "enum": [
                "application/yang-data+json",
                "application/yang-data+xml"
              ]
            }
          },
          {
            "name": "depth",
            "in": "query",
            "required": false,
            "description": "Limit the depth of returned sub-tree data (RFC 8040 Section 4.8.2). Use 'unbounded' for full depth.",
            "schema": {
              "type": "string",
              "default": "unbounded"
            }
          },
          {
            "name": "fields",
            "in": "query",
            "required": false,
            "description": "Select specific fields to return (RFC 8040 Section 4.8.3). Example: fields=name;status",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "content",
            "in": "query",
            "required": false,
            "description": "Filter by config state: 'config' (config true only), 'nonconfig' (config false only), or 'all'.",
            "schema": {
              "type": "string",
              "enum": [
                "config",
                "nonconfig",
                "all"
              ],
              "default": "all"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "cvActiveCallWMIntvlDurUnits": {
                      "type": "string",
                      "description": "The Object indexes in active call Water mark Table to select\n            one among four interval-tables.\n            \n            The different types in this table are represented by \n            CvCallVolumeWMIntvlType",
                      "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvCallVolumeWMIntvlType"
                    },
                    "cvActiveCallWMIndex": {
                      "type": "integer",
                      "description": "This is an index that references to different peaks in\n            past period in acive call watermark table.\n            \n            The number of watermarks entries stored for each table are \n            based on cvCallVolumeWMTableSize",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cvActiveCallWMValue": {
                      "type": "integer",
                      "description": "This object indicates high watermark value achieved by the\n            active calls for the given interval",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cvActiveCallWMts": {
                      "type": "string",
                      "description": "This object indicates date and time when the high watermark\n            is achieved for active calls for the given interval",
                      "x-yang-type": "snmpv2-tc:DateAndTime"
                    }
                  }
                },
                "example": {
                  "CISCO-VOICE-DIAL-CONTROL-MIB:cvActiveCallWMEntry": {
                    "cvActiveCallWMIntvlDurUnits": "example-string",
                    "cvActiveCallWMIndex": 1,
                    "cvActiveCallWMValue": 0,
                    "cvActiveCallWMts": "example-string"
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cvActiveCallWMEntry-2"
      },
      "x-yang-path": "/cvActiveCallWMTable/cvActiveCallWMEntry={cvActiveCallWMIntvlDurUnits cvActiveCallWMIndex}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "cvActiveCallWMIntvlDurUnits cvActiveCallWMIndex"
      ]
    },
    "/data/CISCO-VOICE-DIAL-CONTROL-MIB:cvSipMsgRateWMTable/cvSipMsgRateWMEntry={cvSipMsgRateWMIntvlDurUnits},{cvSipMsgRateWMIndex}": {
      "get": {
        "summary": "Get cvSipMsgRateWMEntry entry",
        "description": "Retrieve specific cvSipMsgRateWMEntry entry by key from MIB",
        "tags": [
          "CISCO-VOICE-DIAL-CONTROL-MIB"
        ],
        "parameters": [
          {
            "name": "cvSipMsgRateWMIntvlDurUnits",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "cvSipMsgRateWMIndex",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "Accept",
            "in": "header",
            "required": false,
            "description": "RESTCONF response media type (RFC 8040)",
            "schema": {
              "type": "string",
              "default": "application/yang-data+json",
              "enum": [
                "application/yang-data+json",
                "application/yang-data+xml"
              ]
            }
          },
          {
            "name": "depth",
            "in": "query",
            "required": false,
            "description": "Limit the depth of returned sub-tree data (RFC 8040 Section 4.8.2). Use 'unbounded' for full depth.",
            "schema": {
              "type": "string",
              "default": "unbounded"
            }
          },
          {
            "name": "fields",
            "in": "query",
            "required": false,
            "description": "Select specific fields to return (RFC 8040 Section 4.8.3). Example: fields=name;status",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "content",
            "in": "query",
            "required": false,
            "description": "Filter by config state: 'config' (config true only), 'nonconfig' (config false only), or 'all'.",
            "schema": {
              "type": "string",
              "enum": [
                "config",
                "nonconfig",
                "all"
              ],
              "default": "all"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "cvSipMsgRateWMIntvlDurUnits": {
                      "type": "string",
                      "description": "The Object indexes in SIP Message rate Water mark Table to\n            select one among four interval-tables.\n            \n            The different types in this table are represented by \n            CvCallVolumeWMIntvlType",
                      "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvCallVolumeWMIntvlType"
                    },
                    "cvSipMsgRateWMIndex": {
                      "type": "integer",
                      "description": "This is an index that references to different peaks in\n            past period in sip message rate watermark table.\n            \n            The number of watermarks entries stored for each table are \n            based on cvCallVolumeWMTableSize",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cvSipMsgRateWMValue": {
                      "type": "integer",
                      "description": "This object indicates high watermark value achieved by the\n            SIP messages per second for the given interval",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cvSipMsgRateWMts": {
                      "type": "string",
                      "description": "This object indicates date and time when the high watermark\n            is achieved for SIP messages per second for the given interval",
                      "x-yang-type": "snmpv2-tc:DateAndTime"
                    }
                  }
                },
                "example": {
                  "CISCO-VOICE-DIAL-CONTROL-MIB:cvSipMsgRateWMEntry": {
                    "cvSipMsgRateWMIntvlDurUnits": "192.168.1.1",
                    "cvSipMsgRateWMIndex": 1,
                    "cvSipMsgRateWMValue": 0,
                    "cvSipMsgRateWMts": "192.168.1.1"
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cvSipMsgRateWMEntry-2"
      },
      "x-yang-path": "/cvSipMsgRateWMTable/cvSipMsgRateWMEntry={cvSipMsgRateWMIntvlDurUnits cvSipMsgRateWMIndex}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "cvSipMsgRateWMIntvlDurUnits cvSipMsgRateWMIndex"
      ]
    },
    "/data/CISCO-VOICE-DIAL-CONTROL-MIB:cvCallActiveEntry={callActiveSetupTime},{callActiveIndex}": {
      "get": {
        "summary": "Get cvCallActiveEntry entry",
        "description": "Retrieve specific cvCallActiveEntry entry by key from MIB",
        "tags": [
          "CISCO-VOICE-DIAL-CONTROL-MIB"
        ],
        "parameters": [
          {
            "name": "callActiveSetupTime",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "callActiveIndex",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "Accept",
            "in": "header",
            "required": false,
            "description": "RESTCONF response media type (RFC 8040)",
            "schema": {
              "type": "string",
              "default": "application/yang-data+json",
              "enum": [
                "application/yang-data+json",
                "application/yang-data+xml"
              ]
            }
          },
          {
            "name": "depth",
            "in": "query",
            "required": false,
            "description": "Limit the depth of returned sub-tree data (RFC 8040 Section 4.8.2). Use 'unbounded' for full depth.",
            "schema": {
              "type": "string",
              "default": "unbounded"
            }
          },
          {
            "name": "fields",
            "in": "query",
            "required": false,
            "description": "Select specific fields to return (RFC 8040 Section 4.8.3). Example: fields=name;status",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "content",
            "in": "query",
            "required": false,
            "description": "Filter by config state: 'config' (config true only), 'nonconfig' (config false only), or 'all'.",
            "schema": {
              "type": "string",
              "enum": [
                "config",
                "nonconfig",
                "all"
              ],
              "default": "all"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "callActiveSetupTime": {
                      "type": "string",
                      "description": "callActiveSetupTime",
                      "x-yang-type": "leafref"
                    },
                    "callActiveIndex": {
                      "type": "string",
                      "description": "callActiveIndex",
                      "x-yang-type": "leafref"
                    },
                    "cvCallActiveConnectionId": {
                      "type": "string",
                      "description": "The global connection identifier for the\n            active telephony leg of the call.",
                      "x-yang-type": "cisco-voice:CvcGUid"
                    },
                    "cvCallActiveTxDuration": {
                      "type": "string",
                      "description": "Duration of Transmit path open from this peer to the\n            voice gateway for the call leg. This counter object will\n            lock at the maximum value which is approximately two\n            days.",
                      "x-yang-type": "dial-control:AbsoluteCounter32"
                    },
                    "cvCallActiveVoiceTxDuration": {
                      "type": "string",
                      "description": "Duration of voice transmitted from this peer to voice\n            gateway for this call leg. The Voice Utilization Rate can\n            be obtained by dividing this by cvCallActiveTXDuration\n            object. This counter object will lock at the maximum\n            value which is approximately two days.",
                      "x-yang-type": "dial-control:AbsoluteCounter32"
                    },
                    "cvCallActiveFaxTxDuration": {
                      "type": "string",
                      "description": "Duration of fax transmitted from this peer to voice gateway\n            for this call leg. The FAX Utilization Rate can be\n            obtained by dividing this by cvCallActiveTXDuration\n            object. This counter object will lock at the maximum\n            value which is approximately two days.",
                      "x-yang-type": "dial-control:AbsoluteCounter32"
                    },
                    "cvCallActiveCoderTypeRate": {
                      "type": "string",
                      "description": "The negotiated coder rate. It specifies the transmit rate of\n            voice/fax compression to its associated call leg for the\n            call.",
                      "x-yang-type": "cisco-voice:CvcCoderTypeRate"
                    },
                    "cvCallActiveNoiseLevel": {
                      "type": "integer",
                      "description": "The object contains the active noise level for the call\n            leg.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "cvCallActiveACOMLevel": {
                      "type": "integer",
                      "description": "The object contains the sum of Echo Return Loss (ERL),\n            cancellation loss (Echo Return Loss Enhancement) and\n            nonlinear processing loss for the call leg.\n            The value -1 indicates the level can not be determined or\n            level detection is disabled.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "cvCallActiveOutSignalLevel": {
                      "type": "integer",
                      "description": "The object contains the active output signal level to\n            telephony interface that is used by the call leg.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "cvCallActiveInSignalLevel": {
                      "type": "integer",
                      "description": "The object contains the active input signal level from\n            telephony interface that is used by the call leg.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "cvCallActiveERLLevel": {
                      "type": "integer",
                      "description": "The object contains the current Echo Return Loss (ERL)\n            level for the call leg.\n            The value -1 indicates the level can not be determined or\n            level detection is disabled.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "cvCallActiveSessionTarget": {
                      "type": "string",
                      "description": "The object specifies the session target of the peer that\n            is used for the call leg. This object is set with the\n            information in the call associated\n            cvVoicePeerCfgSessionTarget object when the call is\n            connected.",
                      "x-yang-type": "snmpv2-tc:DisplayString"
                    },
                    "cvCallActiveImgPageCount": {
                      "type": "string",
                      "description": "The number of FAX related image pages are received or\n            transmitted via the peer for the call leg.",
                      "x-yang-type": "dial-control:AbsoluteCounter32"
                    },
                    "cvCallActiveCallingName": {
                      "type": "string",
                      "description": "The calling party name of the call. If the name is\n            not available, then it will have a length of zero.",
                      "x-yang-type": "snmp-framework:SnmpAdminString"
                    },
                    "cvCallActiveCallerIDBlock": {
                      "type": "boolean",
                      "description": "The object indicates whether or not the caller ID feature\n            is blocked for this call."
                    },
                    "cvCallActiveEcanReflectorLocation": {
                      "type": "integer",
                      "description": "The location in milliseconds of the largest amplitude\n            reflector detected by the echo canceller for this call. \n            The value 0 indicates there is no reflector or the \n            information is not available.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "cvCallActiveAccountCode": {
                      "type": "string",
                      "description": "The object indicates the account code input to the call.\n            It could be used for call screen or by down stream server\n            for billing purpose.\n            The value of empty string indicates no account code input.",
                      "x-yang-type": "snmp-framework:SnmpAdminString"
                    },
                    "cvCallActiveERLLevelRev1": {
                      "type": "integer",
                      "description": "The object contains the current Echo Return Loss (ERL)\n            level for the call leg.\n            The value -1 indicates the level can not be determined or\n            level detection is disabled.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "cvCallActiveCallId": {
                      "type": "integer",
                      "description": "This object represents the call identifier\n            for the active telephony leg of the call.",
                      "minimum": 0,
                      "maximum": 4294967295
                    }
                  }
                },
                "example": {
                  "CISCO-VOICE-DIAL-CONTROL-MIB:cvCallActiveEntry": {
                    "callActiveSetupTime": "example-string",
                    "callActiveIndex": "example-string",
                    "cvCallActiveConnectionId": "example-string",
                    "cvCallActiveTxDuration": "example-string",
                    "cvCallActiveVoiceTxDuration": "example-string",
                    "cvCallActiveFaxTxDuration": "example-string",
                    "cvCallActiveCoderTypeRate": "ethernetCsmacd(6)",
                    "cvCallActiveNoiseLevel": -2147483648,
                    "cvCallActiveACOMLevel": -2147483648,
                    "cvCallActiveOutSignalLevel": -2147483648,
                    "cvCallActiveInSignalLevel": -2147483648,
                    "cvCallActiveERLLevel": -2147483648,
                    "cvCallActiveSessionTarget": "example-string",
                    "cvCallActiveImgPageCount": "example-string",
                    "cvCallActiveCallingName": "interface-1",
                    "cvCallActiveCallerIDBlock": true,
                    "cvCallActiveEcanReflectorLocation": -2147483648,
                    "cvCallActiveAccountCode": "example-string",
                    "cvCallActiveERLLevelRev1": -2147483648,
                    "cvCallActiveCallId": 0
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cvCallActiveEntry-4"
      },
      "x-yang-path": "/cvCallActiveEntry={callActiveSetupTime callActiveIndex}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "callActiveSetupTime callActiveIndex"
      ]
    },
    "/data/CISCO-VOICE-DIAL-CONTROL-MIB:cvVoIPCallActiveEntry={callActiveSetupTime},{callActiveIndex}": {
      "get": {
        "summary": "Get cvVoIPCallActiveEntry entry",
        "description": "Retrieve specific cvVoIPCallActiveEntry entry by key from MIB",
        "tags": [
          "CISCO-VOICE-DIAL-CONTROL-MIB"
        ],
        "parameters": [
          {
            "name": "callActiveSetupTime",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "callActiveIndex",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "Accept",
            "in": "header",
            "required": false,
            "description": "RESTCONF response media type (RFC 8040)",
            "schema": {
              "type": "string",
              "default": "application/yang-data+json",
              "enum": [
                "application/yang-data+json",
                "application/yang-data+xml"
              ]
            }
          },
          {
            "name": "depth",
            "in": "query",
            "required": false,
            "description": "Limit the depth of returned sub-tree data (RFC 8040 Section 4.8.2). Use 'unbounded' for full depth.",
            "schema": {
              "type": "string",
              "default": "unbounded"
            }
          },
          {
            "name": "fields",
            "in": "query",
            "required": false,
            "description": "Select specific fields to return (RFC 8040 Section 4.8.3). Example: fields=name;status",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "content",
            "in": "query",
            "required": false,
            "description": "Filter by config state: 'config' (config true only), 'nonconfig' (config false only), or 'all'.",
            "schema": {
              "type": "string",
              "enum": [
                "config",
                "nonconfig",
                "all"
              ],
              "default": "all"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "callActiveSetupTime": {
                      "type": "string",
                      "description": "callActiveSetupTime",
                      "x-yang-type": "leafref"
                    },
                    "callActiveIndex": {
                      "type": "string",
                      "description": "callActiveIndex",
                      "x-yang-type": "leafref"
                    },
                    "cvVoIPCallActiveConnectionId": {
                      "type": "string",
                      "description": "The global connection identifier for\n            the active VoIP leg of the call.",
                      "x-yang-type": "cisco-voice:CvcGUid"
                    },
                    "cvVoIPCallActiveRemoteIPAddress": {
                      "type": "string",
                      "description": "Remote system IP address for the VoIP call.",
                      "format": "inet:ipv4-address"
                    },
                    "cvVoIPCallActiveRemoteUDPPort": {
                      "type": "integer",
                      "description": "Remote system UDP listener port to which to transmit voice\n            packets.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "cvVoIPCallActiveRoundTripDelay": {
                      "type": "integer",
                      "description": "The voice packet round trip delay between local and\n            the remote system on the IP backbone during the call.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cvVoIPCallActiveSelectedQoS": {
                      "type": "string",
                      "description": "The selected RSVP QoS for the voice call.",
                      "x-yang-type": "int-serv:QosService"
                    },
                    "cvVoIPCallActiveSessionProtocol": {
                      "type": "string",
                      "description": "The object specifies the session protocol to be used\n            for Internet call between local and remote router via\n            IP backbone.",
                      "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvSessionProtocol"
                    },
                    "cvVoIPCallActiveSessionTarget": {
                      "type": "string",
                      "description": "The object specifies the session target of the peer that\n            is used for the call. This object is set with the\n            information in the call associated\n            cvVoIPPeerCfgSessionTarget object when the voice over IP\n            call is connected.",
                      "x-yang-type": "snmpv2-tc:DisplayString"
                    },
                    "cvVoIPCallActiveOnTimeRvPlayout": {
                      "type": "string",
                      "description": "Duration of voice playout from data received on time for\n            this call. This plus the durations for the GapFills in the\n            following entries gives the Total Voice Playout Duration\n            for Active Voice.\n            This does not include duration for which no data was sent by the\n            Transmit end as voice signal, e.g., silence suppression\n            and fax signal. The On Time Playout Rate can be computed\n            by dividing this entry by the Total Voice Playout Duration.\n            This counter object will lock at the maximum value which\n            is approximately two days.",
                      "x-yang-type": "dial-control:AbsoluteCounter32"
                    },
                    "cvVoIPCallActiveGapFillWithSilence": {
                      "type": "string",
                      "description": "Duration of voice signal replaced with signal played out\n            during silence due to voice data not received on time\n            (or lost) from voice gateway this call. This counter\n            object will lock at the maximum value which is\n            approximately two days.",
                      "x-yang-type": "dial-control:AbsoluteCounter32"
                    },
                    "cvVoIPCallActiveGapFillWithPrediction": {
                      "type": "string",
                      "description": "Duration of voice signal played out with signal synthesized\n            from parameters or samples of data preceding in time due\n            to voice data not received on time (or lost) from voice\n            gateway for this call. An example of such playout is\n            frame-erasure or frame-concealment strategies in G.729 and\n            G.723.1 compression algorithms. This counter object will\n            lock at the maximum value which is approximately two days.",
                      "x-yang-type": "dial-control:AbsoluteCounter32"
                    },
                    "cvVoIPCallActiveGapFillWithInterpolation": {
                      "type": "string",
                      "description": "Duration of voice signal played out with signal synthesized\n            from parameters or samples of data preceding and following\n            in time due to voice data not received on time (or lost)\n            from voice gateway for this call. This counter object\n            will lock at the maximum value which is approximately two\n            days.",
                      "x-yang-type": "dial-control:AbsoluteCounter32"
                    },
                    "cvVoIPCallActiveGapFillWithRedundancy": {
                      "type": "string",
                      "description": "Duration of voice signal played out with signal synthesized\n            from redundancy parameters available due to voice data not\n            received on time (or lost) from voice gateway for this call.\n            This counter object will lock at the maximum value which\n            is approximately two days.",
                      "x-yang-type": "dial-control:AbsoluteCounter32"
                    },
                    "cvVoIPCallActiveHiWaterPlayoutDelay": {
                      "type": "string",
                      "description": "The high water mark Voice Playout FIFO Delay during\n            the voice call. This counter object will lock at the\n            maximum value which is approximately two days.",
                      "x-yang-type": "dial-control:AbsoluteCounter32"
                    },
                    "cvVoIPCallActiveLoWaterPlayoutDelay": {
                      "type": "integer",
                      "description": "The low water mark Voice Playout FIFO Delay during\n            the voice call.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cvVoIPCallActiveReceiveDelay": {
                      "type": "integer",
                      "description": "The average Playout FIFO Delay plus the decoder delay\n            during the voice call.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cvVoIPCallActiveVADEnable": {
                      "type": "boolean",
                      "description": "The object indicates whether or not the VAD (Voice Activity\n            Detection) was enabled for the voice call."
                    },
                    "cvVoIPCallActiveCoderTypeRate": {
                      "type": "string",
                      "description": "The negotiated coder rate. It specifies the transmit rate of\n            voice/fax compression to its associated call leg for the\n            call. This rate is different from the configuration rate\n            because of rate negotiation during the call.",
                      "x-yang-type": "cisco-voice:CvcCoderTypeRate"
                    },
                    "cvVoIPCallActiveLostPackets": {
                      "type": "string",
                      "description": "The number of lost voice packets during the call.",
                      "x-yang-type": "dial-control:AbsoluteCounter32"
                    },
                    "cvVoIPCallActiveEarlyPackets": {
                      "type": "string",
                      "description": "The number of received voice packets that\n            arrived too early to store in jitter buffer\n            during the call.",
                      "x-yang-type": "dial-control:AbsoluteCounter32"
                    },
                    "cvVoIPCallActiveLatePackets": {
                      "type": "string",
                      "description": "The number of received voice packets that\n            arrived too late to playout with CODEC (Coder/Decoder)\n            during the call.",
                      "x-yang-type": "dial-control:AbsoluteCounter32"
                    },
                    "cvVoIPCallActiveUsername": {
                      "type": "string",
                      "description": "The textual identifier of the calling party (user) of the\n            call. If the username is not available, then the value of\n            this object will have a length of zero.",
                      "x-yang-type": "snmp-framework:SnmpAdminString"
                    },
                    "cvVoIPCallActiveProtocolCallId": {
                      "type": "string",
                      "description": "The protocol-specific call identifier for the VoIP call.",
                      "format": "binary"
                    },
                    "cvVoIPCallActiveRemSigIPAddrT": {
                      "type": "string",
                      "description": "This object specifies the type of address contained in\n            the associated instance of cvVoIPCallActiveRemSigIPAddr.",
                      "x-yang-type": "inet-address:InetAddressType"
                    },
                    "cvVoIPCallActiveRemSigIPAddr": {
                      "type": "string",
                      "description": "Remote signalling IP address for the VoIP call.",
                      "x-yang-type": "inet-address:InetAddress"
                    },
                    "cvVoIPCallActiveRemSigPort": {
                      "type": "integer",
                      "description": "Remote signalling listener port to which to transmit\n            voice packets.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "cvVoIPCallActiveRemMediaIPAddrT": {
                      "type": "string",
                      "description": "This object specifies the type of address contained in\n            the associated instance of\n            cvVoIPCallActiveRemMediaIPAddr.",
                      "x-yang-type": "inet-address:InetAddressType"
                    },
                    "cvVoIPCallActiveRemMediaIPAddr": {
                      "type": "string",
                      "description": "Remote media end point IP address for the VoIP call.",
                      "x-yang-type": "inet-address:InetAddress"
                    },
                    "cvVoIPCallActiveRemMediaPort": {
                      "type": "integer",
                      "description": "Remote media end point listener port to which to transmit\n            voice packets.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "cvVoIPCallActiveSRTPEnable": {
                      "type": "boolean",
                      "description": "The object indicates whether or not the SRTP (Secured RTP)\n            was enabled for the voice call."
                    },
                    "cvVoIPCallActiveOctetAligned": {
                      "type": "boolean",
                      "description": "If the object has a value true(1) octet align operation\n            is used, and if the value is false(2), bandwidth efficient\n            operation is used. This object is not instantiated when\n            the object cvVoIPCallActiveCoderTypeRate is not equal to\n            gsmAmrNb enum."
                    },
                    "cvVoIPCallActiveBitRates": {
                      "type": "string",
                      "description": "This object indicates modes of Bit rates.\n            This object is not instantiated when the object\n            cvVoIPCallActiveCoderTypeRate is not equal to\n            gsmAmrNb enum.",
                      "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvAmrNbBitRateMode"
                    },
                    "cvVoIPCallActiveModeChgPeriod": {
                      "type": "integer",
                      "description": "The object indicates the interval (N frame-blocks) at which\n            codec mode changes are allowed. This object is not\n            instantiated when the object cvVoIPCallActiveCoderTypeRate\n            is not equal to gsmAmrNb enum.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "cvVoIPCallActiveModeChgNeighbor": {
                      "type": "boolean",
                      "description": "If the object has a value of true(1), mode changes will be\n            made to only neighboring modes set to\n            cvVoIPCallActiveBitRates object. If the value is false(2),\n            mode changes will be allowed to any modes set to\n            cvVoIPCallActiveBitRates object. This object is not\n            instantiated when the object cvVoIPCallActiveCoderTypeRate\n            is not equal to gsmAmrNb enum."
                    },
                    "cvVoIPCallActiveMaxPtime": {
                      "type": "integer",
                      "description": "The object indicates the maximum amount of media that\n            can be encapsulated in a payload. Supported value is\n            20 msec. This object is not instantiated when the\n            object cvVoIPCallActiveCoderTypeRate is not equal to\n            gsmAmrNb enum.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "cvVoIPCallActiveCRC": {
                      "type": "boolean",
                      "description": "If the object has a value of true(1), frame CRC will be\n            included in the payload and if the value is false(2),\n            frame CRC will not be included in the payload.\n            This object is applicable only when RTP frame type\n            is octet aligned. This object is not instantiated when\n            the object cvVoIPCallActiveCoderTypeRate is not equal to\n            gsmAmrNb enum."
                    },
                    "cvVoIPCallActiveRobustSorting": {
                      "type": "boolean",
                      "description": "If the object has a value of true(1), payload employs\n            robust sorting and if the value is false(2), payload\n            does not employ robust sorting. This object is applicable\n            only when RTP frame type is octet aligned. This object\n            is not instantiated when the object\n            cvVoIPCallActiveCoderTypeRate is not equal to gsmAmrNb\n            enum."
                    },
                    "cvVoIPCallActiveEncap": {
                      "type": "string",
                      "description": "The object indicates the RTP encapsulation type.\n            Supported RTP encapsulation type is RFC3267.\n            This object is not instantiated when the object\n            cvVoIPCallActiveCoderTypeRate is not equal to\n            gsmAmrNb enum.",
                      "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvAmrNbRtpEncap"
                    },
                    "cvVoIPCallActiveInterleaving": {
                      "type": "integer",
                      "description": "The object indicates the maximum number of frame-blocks\n            allowed in an interleaving group. It indicates that\n            frame-block level interleaving will be used for that\n            session. If this object is not set, interleaving\n            is not used. This object is applicable only when\n            RTP frame type is octet aligned. This object is not\n            instantiated when the object cvVoIPCallActiveCoderTypeRate\n            is not equal to gsmAmrNb enum.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "cvVoIPCallActivePtime": {
                      "type": "integer",
                      "description": "The object indicates the length of the time in milliseconds\n            represented by the media of the packet. Supported value is\n            20 milliseconds. This object is not instantiated when the\n            object cvVoIPCallActiveCoderTypeRate is not equal to\n            gsmAmrNb enum.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "cvVoIPCallActiveChannels": {
                      "type": "integer",
                      "description": "The object indicates the number of audio channels.\n            Supported value is 1. This object is not instantiated\n            when the object cvVoIPCallActiveCoderTypeRate is not equal\n            to gsmAmrNb enum.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "cvVoIPCallActiveCoderMode": {
                      "type": "string",
                      "description": "The object indicates the iLBC codec mode.\n            The value of this object is valid only if \n            cvVoIPCallActiveCoderTypeRate is equal to \n            'iLBC'.",
                      "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvIlbcFrameMode"
                    },
                    "cvVoIPCallActiveCallId": {
                      "type": "integer",
                      "description": "This object represents the call identifier\n            for the active VoIP leg of the call.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cvVoIPCallActiveCallReferenceId": {
                      "type": "string",
                      "description": "The call reference ID associates the video call entry and voice\n            call entry of the same endpoint.  An audio-only call may or may\n            not have a valid call reference ID (i.e. value greater than\n            zero), but in both cases, there will not be a video call entry\n            associated with it.  \n            \n            For a video call, the video-specific information  is stored in a\n            call entry in cVideoSessionActive of CISCO-VIDEO-SESSION-MIB, in\n            which the call reference ID is also identified.",
                      "x-yang-type": "cisco-voice:CvcCallReferenceIdOrZero"
                    },
                    "ccVoIPCallActivePolicyName": {
                      "type": "string",
                      "description": "This object holds the policy name. It could be media\n            policy, DSCP policy etc.",
                      "x-yang-type": "snmpv2-tc:DisplayString"
                    },
                    "cvVoIPCallActiveReversedDirectionPeerAddress": {
                      "type": "string",
                      "description": "This object store the reversed direction peer address  If the\n            address is not available, then it will have a length of zero.\n            \n            If the call is ingress then it contains called number and if the\n            call is egress then it contains calling number.",
                      "x-yang-type": "snmpv2-tc:DisplayString"
                    },
                    "cvVoIPCallActiveSessionId": {
                      "type": "integer",
                      "description": "This object indicates the active session ID assigned by the\n            call manager to identify call legs that belong to the same call\n            session.",
                      "minimum": 0,
                      "maximum": 4294967295
                    }
                  }
                },
                "example": {
                  "CISCO-VOICE-DIAL-CONTROL-MIB:cvVoIPCallActiveEntry": {
                    "callActiveSetupTime": "example-string",
                    "callActiveIndex": "example-string",
                    "cvVoIPCallActiveConnectionId": "192.168.1.1",
                    "cvVoIPCallActiveRemoteIPAddress": "192.168.1.1",
                    "cvVoIPCallActiveRemoteUDPPort": -2147483648,
                    "cvVoIPCallActiveRoundTripDelay": 0,
                    "cvVoIPCallActiveSelectedQoS": "192.168.1.1",
                    "cvVoIPCallActiveSessionProtocol": "192.168.1.1",
                    "cvVoIPCallActiveSessionTarget": "192.168.1.1",
                    "cvVoIPCallActiveOnTimeRvPlayout": "192.168.1.1",
                    "cvVoIPCallActiveGapFillWithSilence": "192.168.1.1",
                    "cvVoIPCallActiveGapFillWithPrediction": "192.168.1.1",
                    "cvVoIPCallActiveGapFillWithInterpolation": "192.168.1.1",
                    "cvVoIPCallActiveGapFillWithRedundancy": "192.168.1.1",
                    "cvVoIPCallActiveHiWaterPlayoutDelay": "192.168.1.1",
                    "cvVoIPCallActiveLoWaterPlayoutDelay": 0,
                    "cvVoIPCallActiveReceiveDelay": 0,
                    "cvVoIPCallActiveVADEnable": true,
                    "cvVoIPCallActiveCoderTypeRate": "192.168.1.1",
                    "cvVoIPCallActiveLostPackets": "192.168.1.1",
                    "cvVoIPCallActiveEarlyPackets": "192.168.1.1",
                    "cvVoIPCallActiveLatePackets": "192.168.1.1",
                    "cvVoIPCallActiveUsername": "192.168.1.1",
                    "cvVoIPCallActiveProtocolCallId": "192.168.1.1",
                    "cvVoIPCallActiveRemSigIPAddrT": "192.168.1.1",
                    "cvVoIPCallActiveRemSigIPAddr": "192.168.1.1",
                    "cvVoIPCallActiveRemSigPort": -2147483648,
                    "cvVoIPCallActiveRemMediaIPAddrT": "192.168.1.1",
                    "cvVoIPCallActiveRemMediaIPAddr": "192.168.1.1",
                    "cvVoIPCallActiveRemMediaPort": -2147483648,
                    "cvVoIPCallActiveSRTPEnable": true,
                    "cvVoIPCallActiveOctetAligned": true,
                    "cvVoIPCallActiveBitRates": "192.168.1.1",
                    "cvVoIPCallActiveModeChgPeriod": -2147483648,
                    "cvVoIPCallActiveModeChgNeighbor": true,
                    "cvVoIPCallActiveMaxPtime": -2147483648,
                    "cvVoIPCallActiveCRC": true,
                    "cvVoIPCallActiveRobustSorting": true,
                    "cvVoIPCallActiveEncap": "192.168.1.1",
                    "cvVoIPCallActiveInterleaving": -2147483648,
                    "cvVoIPCallActivePtime": -2147483648,
                    "cvVoIPCallActiveChannels": -2147483648,
                    "cvVoIPCallActiveCoderMode": "192.168.1.1",
                    "cvVoIPCallActiveCallId": 0,
                    "cvVoIPCallActiveCallReferenceId": "192.168.1.1",
                    "ccVoIPCallActivePolicyName": "192.168.1.1",
                    "cvVoIPCallActiveReversedDirectionPeerAddress": "192.168.1.1",
                    "cvVoIPCallActiveSessionId": 0
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cvVoIPCallActiveEntry-4"
      },
      "x-yang-path": "/cvVoIPCallActiveEntry={callActiveSetupTime callActiveIndex}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "callActiveSetupTime callActiveIndex"
      ]
    },
    "/data/CISCO-VOICE-DIAL-CONTROL-MIB:cvCallRateStatsEntry={cvCallRateStatsIntvlDurUnits},{cvCallRateStatsIntvlDur}": {
      "get": {
        "summary": "Get cvCallRateStatsEntry entry",
        "description": "Retrieve specific cvCallRateStatsEntry entry by key from MIB",
        "tags": [
          "CISCO-VOICE-DIAL-CONTROL-MIB"
        ],
        "parameters": [
          {
            "name": "cvCallRateStatsIntvlDurUnits",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "cvCallRateStatsIntvlDur",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "Accept",
            "in": "header",
            "required": false,
            "description": "RESTCONF response media type (RFC 8040)",
            "schema": {
              "type": "string",
              "default": "application/yang-data+json",
              "enum": [
                "application/yang-data+json",
                "application/yang-data+xml"
              ]
            }
          },
          {
            "name": "depth",
            "in": "query",
            "required": false,
            "description": "Limit the depth of returned sub-tree data (RFC 8040 Section 4.8.2). Use 'unbounded' for full depth.",
            "schema": {
              "type": "string",
              "default": "unbounded"
            }
          },
          {
            "name": "fields",
            "in": "query",
            "required": false,
            "description": "Select specific fields to return (RFC 8040 Section 4.8.3). Example: fields=name;status",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "content",
            "in": "query",
            "required": false,
            "description": "Filter by config state: 'config' (config true only), 'nonconfig' (config false only), or 'all'.",
            "schema": {
              "type": "string",
              "enum": [
                "config",
                "nonconfig",
                "all"
              ],
              "default": "all"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "cvCallRateStatsIntvlDurUnits": {
                      "type": "string",
                      "description": "The Object indexes in Call Rate Table to select one among three\n            interval-tables.\n            \n            The different types in this table are represented by \n            CvCallVolumeStatsIntvlType",
                      "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvCallVolumeStatsIntvlType"
                    },
                    "cvCallRateStatsIntvlDur": {
                      "type": "integer",
                      "description": "This is an index that references to the different past periods\n            in given in interval of call rate table.\n            This range is 1-60 for Seconds and Minutes table \n            wherein 1-72 for hours table.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cvCallRateStatsMaxVal": {
                      "type": "integer",
                      "description": "This object indicates the maximum calls per second\n            that occured for the given period for the given interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cvCallRateStatsAvgVal": {
                      "type": "integer",
                      "description": "This object indicates the average calls per second\n            that occured for the given period for the given interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    }
                  }
                },
                "example": {
                  "CISCO-VOICE-DIAL-CONTROL-MIB:cvCallRateStatsEntry": {
                    "cvCallRateStatsIntvlDurUnits": "example-string",
                    "cvCallRateStatsIntvlDur": 0,
                    "cvCallRateStatsMaxVal": 0,
                    "cvCallRateStatsAvgVal": 0
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cvCallRateStatsEntry-4"
      },
      "x-yang-path": "/cvCallRateStatsEntry={cvCallRateStatsIntvlDurUnits cvCallRateStatsIntvlDur}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "cvCallRateStatsIntvlDurUnits cvCallRateStatsIntvlDur"
      ]
    },
    "/data/CISCO-VOICE-DIAL-CONTROL-MIB:cvCallLegRateStatsEntry={cvCallLegRateStatsIntvlDurUnits},{cvCallLegRateStatsIntvlDur}": {
      "get": {
        "summary": "Get cvCallLegRateStatsEntry entry",
        "description": "Retrieve specific cvCallLegRateStatsEntry entry by key from MIB",
        "tags": [
          "CISCO-VOICE-DIAL-CONTROL-MIB"
        ],
        "parameters": [
          {
            "name": "cvCallLegRateStatsIntvlDurUnits",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "cvCallLegRateStatsIntvlDur",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "Accept",
            "in": "header",
            "required": false,
            "description": "RESTCONF response media type (RFC 8040)",
            "schema": {
              "type": "string",
              "default": "application/yang-data+json",
              "enum": [
                "application/yang-data+json",
                "application/yang-data+xml"
              ]
            }
          },
          {
            "name": "depth",
            "in": "query",
            "required": false,
            "description": "Limit the depth of returned sub-tree data (RFC 8040 Section 4.8.2). Use 'unbounded' for full depth.",
            "schema": {
              "type": "string",
              "default": "unbounded"
            }
          },
          {
            "name": "fields",
            "in": "query",
            "required": false,
            "description": "Select specific fields to return (RFC 8040 Section 4.8.3). Example: fields=name;status",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "content",
            "in": "query",
            "required": false,
            "description": "Filter by config state: 'config' (config true only), 'nonconfig' (config false only), or 'all'.",
            "schema": {
              "type": "string",
              "enum": [
                "config",
                "nonconfig",
                "all"
              ],
              "default": "all"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "cvCallLegRateStatsIntvlDurUnits": {
                      "type": "string",
                      "description": "The Object indexes in Call Leg Rate Table to select one among\n            three\n            interval-tables.\n            \n            The different types in this table are represented by \n            CvCallVolumeStatsIntvlType",
                      "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvCallVolumeStatsIntvlType"
                    },
                    "cvCallLegRateStatsIntvlDur": {
                      "type": "integer",
                      "description": "This is an index that references to the different past periods\n            in given in interval of call rate table.\n            This range is 1-60 for Seconds and Minutes table \n            wherein 1-72 for hours table.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cvCallLegRateStatsMaxVal": {
                      "type": "integer",
                      "description": "This object indicates the maximum call-legs per second\n            that occured for the given period for the given interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cvCallLegRateStatsAvgVal": {
                      "type": "integer",
                      "description": "This object indicates the average call-legs per second\n            that occured for the given period for the given interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    }
                  }
                },
                "example": {
                  "CISCO-VOICE-DIAL-CONTROL-MIB:cvCallLegRateStatsEntry": {
                    "cvCallLegRateStatsIntvlDurUnits": "example-string",
                    "cvCallLegRateStatsIntvlDur": 0,
                    "cvCallLegRateStatsMaxVal": 0,
                    "cvCallLegRateStatsAvgVal": 0
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cvCallLegRateStatsEntry-4"
      },
      "x-yang-path": "/cvCallLegRateStatsEntry={cvCallLegRateStatsIntvlDurUnits cvCallLegRateStatsIntvlDur}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "cvCallLegRateStatsIntvlDurUnits cvCallLegRateStatsIntvlDur"
      ]
    },
    "/data/CISCO-VOICE-DIAL-CONTROL-MIB:cvActiveCallStatsEntry={cvActiveCallStatsIntvlDurUnits},{cvActiveCallStatsIntvlDur}": {
      "get": {
        "summary": "Get cvActiveCallStatsEntry entry",
        "description": "Retrieve specific cvActiveCallStatsEntry entry by key from MIB",
        "tags": [
          "CISCO-VOICE-DIAL-CONTROL-MIB"
        ],
        "parameters": [
          {
            "name": "cvActiveCallStatsIntvlDurUnits",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "cvActiveCallStatsIntvlDur",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "Accept",
            "in": "header",
            "required": false,
            "description": "RESTCONF response media type (RFC 8040)",
            "schema": {
              "type": "string",
              "default": "application/yang-data+json",
              "enum": [
                "application/yang-data+json",
                "application/yang-data+xml"
              ]
            }
          },
          {
            "name": "depth",
            "in": "query",
            "required": false,
            "description": "Limit the depth of returned sub-tree data (RFC 8040 Section 4.8.2). Use 'unbounded' for full depth.",
            "schema": {
              "type": "string",
              "default": "unbounded"
            }
          },
          {
            "name": "fields",
            "in": "query",
            "required": false,
            "description": "Select specific fields to return (RFC 8040 Section 4.8.3). Example: fields=name;status",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "content",
            "in": "query",
            "required": false,
            "description": "Filter by config state: 'config' (config true only), 'nonconfig' (config false only), or 'all'.",
            "schema": {
              "type": "string",
              "enum": [
                "config",
                "nonconfig",
                "all"
              ],
              "default": "all"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "cvActiveCallStatsIntvlDurUnits": {
                      "type": "string",
                      "description": "The Object indexes in Active Call Rate Table (con-current calls\n            table) to select one among three interval-tables.\n            \n            The different types in this table are represented by \n            CvCallVolumeStatsIntvlType",
                      "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvCallVolumeStatsIntvlType"
                    },
                    "cvActiveCallStatsIntvlDur": {
                      "type": "integer",
                      "description": "This is an index that references to the different past periods\n            in given in interval of active call table.\n            This range is 1-60 for Seconds and Minutes table \n            wherein 1-72 for hours table.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cvActiveCallStatsMaxVal": {
                      "type": "integer",
                      "description": "This object indicates the maximum number of active call\n            that occured for the given period for the given interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cvActiveCallStatsAvgVal": {
                      "type": "integer",
                      "description": "This object indicates the average number of active calls\n            that occured for the given period for the given interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    }
                  }
                },
                "example": {
                  "CISCO-VOICE-DIAL-CONTROL-MIB:cvActiveCallStatsEntry": {
                    "cvActiveCallStatsIntvlDurUnits": "example-string",
                    "cvActiveCallStatsIntvlDur": 0,
                    "cvActiveCallStatsMaxVal": 0,
                    "cvActiveCallStatsAvgVal": 0
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cvActiveCallStatsEntry-4"
      },
      "x-yang-path": "/cvActiveCallStatsEntry={cvActiveCallStatsIntvlDurUnits cvActiveCallStatsIntvlDur}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "cvActiveCallStatsIntvlDurUnits cvActiveCallStatsIntvlDur"
      ]
    },
    "/data/CISCO-VOICE-DIAL-CONTROL-MIB:cvCallDurationStatsEntry={cvCallDurationStatsIntvlDurUnits},{cvCallDurationStatsIntvlDur}": {
      "get": {
        "summary": "Get cvCallDurationStatsEntry entry",
        "description": "Retrieve specific cvCallDurationStatsEntry entry by key from MIB",
        "tags": [
          "CISCO-VOICE-DIAL-CONTROL-MIB"
        ],
        "parameters": [
          {
            "name": "cvCallDurationStatsIntvlDurUnits",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "cvCallDurationStatsIntvlDur",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "Accept",
            "in": "header",
            "required": false,
            "description": "RESTCONF response media type (RFC 8040)",
            "schema": {
              "type": "string",
              "default": "application/yang-data+json",
              "enum": [
                "application/yang-data+json",
                "application/yang-data+xml"
              ]
            }
          },
          {
            "name": "depth",
            "in": "query",
            "required": false,
            "description": "Limit the depth of returned sub-tree data (RFC 8040 Section 4.8.2). Use 'unbounded' for full depth.",
            "schema": {
              "type": "string",
              "default": "unbounded"
            }
          },
          {
            "name": "fields",
            "in": "query",
            "required": false,
            "description": "Select specific fields to return (RFC 8040 Section 4.8.3). Example: fields=name;status",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "content",
            "in": "query",
            "required": false,
            "description": "Filter by config state: 'config' (config true only), 'nonconfig' (config false only), or 'all'.",
            "schema": {
              "type": "string",
              "enum": [
                "config",
                "nonconfig",
                "all"
              ],
              "default": "all"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "cvCallDurationStatsIntvlDurUnits": {
                      "type": "string",
                      "description": "The Object indexes in Call Duration Table to select one among\n            three interval-tables.\n            \n            The different types in this table are represented by \n            CvCallVolumeStatsIntvlType",
                      "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvCallVolumeStatsIntvlType"
                    },
                    "cvCallDurationStatsIntvlDur": {
                      "type": "integer",
                      "description": "This is an index that references to the different past periods\n            in given in interval of call Duration table.\n            This range is 1-60 for Seconds and Minutes table \n            wherein 1-72 for hours table.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cvCallDurationStatsMaxVal": {
                      "type": "integer",
                      "description": "This object indicates the maximum number of calls having a\n            duration which is below the threshold for the given interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cvCallDurationStatsAvgVal": {
                      "type": "integer",
                      "description": "This object indicates the average number of calls having a\n            duration which is below the threshold for the given interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    }
                  }
                },
                "example": {
                  "CISCO-VOICE-DIAL-CONTROL-MIB:cvCallDurationStatsEntry": {
                    "cvCallDurationStatsIntvlDurUnits": "example-string",
                    "cvCallDurationStatsIntvlDur": 0,
                    "cvCallDurationStatsMaxVal": 0,
                    "cvCallDurationStatsAvgVal": 0
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cvCallDurationStatsEntry-4"
      },
      "x-yang-path": "/cvCallDurationStatsEntry={cvCallDurationStatsIntvlDurUnits cvCallDurationStatsIntvlDur}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "cvCallDurationStatsIntvlDurUnits cvCallDurationStatsIntvlDur"
      ]
    },
    "/data/CISCO-VOICE-DIAL-CONTROL-MIB:cvSipMsgRateStatsEntry={cvSipMsgRateStatsIntvlDurUnits},{cvSipMsgRateStatsIntvlDur}": {
      "get": {
        "summary": "Get cvSipMsgRateStatsEntry entry",
        "description": "Retrieve specific cvSipMsgRateStatsEntry entry by key from MIB",
        "tags": [
          "CISCO-VOICE-DIAL-CONTROL-MIB"
        ],
        "parameters": [
          {
            "name": "cvSipMsgRateStatsIntvlDurUnits",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "cvSipMsgRateStatsIntvlDur",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "Accept",
            "in": "header",
            "required": false,
            "description": "RESTCONF response media type (RFC 8040)",
            "schema": {
              "type": "string",
              "default": "application/yang-data+json",
              "enum": [
                "application/yang-data+json",
                "application/yang-data+xml"
              ]
            }
          },
          {
            "name": "depth",
            "in": "query",
            "required": false,
            "description": "Limit the depth of returned sub-tree data (RFC 8040 Section 4.8.2). Use 'unbounded' for full depth.",
            "schema": {
              "type": "string",
              "default": "unbounded"
            }
          },
          {
            "name": "fields",
            "in": "query",
            "required": false,
            "description": "Select specific fields to return (RFC 8040 Section 4.8.3). Example: fields=name;status",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "content",
            "in": "query",
            "required": false,
            "description": "Filter by config state: 'config' (config true only), 'nonconfig' (config false only), or 'all'.",
            "schema": {
              "type": "string",
              "enum": [
                "config",
                "nonconfig",
                "all"
              ],
              "default": "all"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "cvSipMsgRateStatsIntvlDurUnits": {
                      "type": "string",
                      "description": "The Object indexes in SIP Message Rate Table to select one\n            among three interval-tables.\n            \n            The different types in this table are represented by \n            CvCallVolumeStatsIntvlType",
                      "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvCallVolumeStatsIntvlType"
                    },
                    "cvSipMsgRateStatsIntvlDur": {
                      "type": "integer",
                      "description": "This is an index that references to the different past\n            periods in given in interval of SIP message rate table.\n            This range is 1-60 for Seconds and Minutes table \n            wherein 1-72 for hours table.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cvSipMsgRateStatsMaxVal": {
                      "type": "integer",
                      "description": "This object indicates the maximum SIP messages  per second that\n            is received for the given interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cvSipMsgRateStatsAvgVal": {
                      "type": "integer",
                      "description": "This object indicates the average SIP messages per second that\n            is received for the given interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    }
                  }
                },
                "example": {
                  "CISCO-VOICE-DIAL-CONTROL-MIB:cvSipMsgRateStatsEntry": {
                    "cvSipMsgRateStatsIntvlDurUnits": "192.168.1.1",
                    "cvSipMsgRateStatsIntvlDur": 0,
                    "cvSipMsgRateStatsMaxVal": 0,
                    "cvSipMsgRateStatsAvgVal": 0
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cvSipMsgRateStatsEntry-4"
      },
      "x-yang-path": "/cvSipMsgRateStatsEntry={cvSipMsgRateStatsIntvlDurUnits cvSipMsgRateStatsIntvlDur}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "cvSipMsgRateStatsIntvlDurUnits cvSipMsgRateStatsIntvlDur"
      ]
    },
    "/data/CISCO-VOICE-DIAL-CONTROL-MIB:cvCallRateWMEntry={cvCallRateWMIntvlDurUnits},{cvCallRateWMIndex}": {
      "get": {
        "summary": "Get cvCallRateWMEntry entry",
        "description": "Retrieve specific cvCallRateWMEntry entry by key from MIB",
        "tags": [
          "CISCO-VOICE-DIAL-CONTROL-MIB"
        ],
        "parameters": [
          {
            "name": "cvCallRateWMIntvlDurUnits",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "cvCallRateWMIndex",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "Accept",
            "in": "header",
            "required": false,
            "description": "RESTCONF response media type (RFC 8040)",
            "schema": {
              "type": "string",
              "default": "application/yang-data+json",
              "enum": [
                "application/yang-data+json",
                "application/yang-data+xml"
              ]
            }
          },
          {
            "name": "depth",
            "in": "query",
            "required": false,
            "description": "Limit the depth of returned sub-tree data (RFC 8040 Section 4.8.2). Use 'unbounded' for full depth.",
            "schema": {
              "type": "string",
              "default": "unbounded"
            }
          },
          {
            "name": "fields",
            "in": "query",
            "required": false,
            "description": "Select specific fields to return (RFC 8040 Section 4.8.3). Example: fields=name;status",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "content",
            "in": "query",
            "required": false,
            "description": "Filter by config state: 'config' (config true only), 'nonconfig' (config false only), or 'all'.",
            "schema": {
              "type": "string",
              "enum": [
                "config",
                "nonconfig",
                "all"
              ],
              "default": "all"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "cvCallRateWMIntvlDurUnits": {
                      "type": "string",
                      "description": "The Object indexes in call rate Water mark Table to select one\n            among four interval-tables.\n            \n            The different types in this table are represented by \n            CvCallVolumeWMIntvlType",
                      "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvCallVolumeWMIntvlType"
                    },
                    "cvCallRateWMIndex": {
                      "type": "integer",
                      "description": "This is an index that references to different peaks in\n            past period in call rate watermark table.\n            \n            The number of watermarks entries stored for each table are \n            based on cvCallVolumeWMTableSize",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cvCallRateWMValue": {
                      "type": "integer",
                      "description": "This object indicates high watermark value achieved by the\n            calls per second for the given interval",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cvCallRateWMts": {
                      "type": "string",
                      "description": "This object indicates date and Time when the high watermark\n            is achieved for calls per second for the given interval",
                      "x-yang-type": "snmpv2-tc:DateAndTime"
                    }
                  }
                },
                "example": {
                  "CISCO-VOICE-DIAL-CONTROL-MIB:cvCallRateWMEntry": {
                    "cvCallRateWMIntvlDurUnits": "example-string",
                    "cvCallRateWMIndex": 1,
                    "cvCallRateWMValue": 0,
                    "cvCallRateWMts": "example-string"
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cvCallRateWMEntry-4"
      },
      "x-yang-path": "/cvCallRateWMEntry={cvCallRateWMIntvlDurUnits cvCallRateWMIndex}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "cvCallRateWMIntvlDurUnits cvCallRateWMIndex"
      ]
    },
    "/data/CISCO-VOICE-DIAL-CONTROL-MIB:cvCallLegRateWMEntry={cvCallLegRateWMIntvlDurUnits},{cvCallLegRateWMIndex}": {
      "get": {
        "summary": "Get cvCallLegRateWMEntry entry",
        "description": "Retrieve specific cvCallLegRateWMEntry entry by key from MIB",
        "tags": [
          "CISCO-VOICE-DIAL-CONTROL-MIB"
        ],
        "parameters": [
          {
            "name": "cvCallLegRateWMIntvlDurUnits",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "cvCallLegRateWMIndex",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "Accept",
            "in": "header",
            "required": false,
            "description": "RESTCONF response media type (RFC 8040)",
            "schema": {
              "type": "string",
              "default": "application/yang-data+json",
              "enum": [
                "application/yang-data+json",
                "application/yang-data+xml"
              ]
            }
          },
          {
            "name": "depth",
            "in": "query",
            "required": false,
            "description": "Limit the depth of returned sub-tree data (RFC 8040 Section 4.8.2). Use 'unbounded' for full depth.",
            "schema": {
              "type": "string",
              "default": "unbounded"
            }
          },
          {
            "name": "fields",
            "in": "query",
            "required": false,
            "description": "Select specific fields to return (RFC 8040 Section 4.8.3). Example: fields=name;status",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "content",
            "in": "query",
            "required": false,
            "description": "Filter by config state: 'config' (config true only), 'nonconfig' (config false only), or 'all'.",
            "schema": {
              "type": "string",
              "enum": [
                "config",
                "nonconfig",
                "all"
              ],
              "default": "all"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "cvCallLegRateWMIntvlDurUnits": {
                      "type": "string",
                      "description": "The Object indexes in call leg rate Water mark Table to select\n            one\n            among four interval-tables.\n            \n            The different types in this table are represented by \n            CvCallVolumeWMIntvlType",
                      "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvCallVolumeWMIntvlType"
                    },
                    "cvCallLegRateWMIndex": {
                      "type": "integer",
                      "description": "This is an index that references to different peaks in\n            past period in call leg rate watermark table.\n            \n            The number of watermarks entries stored for each table are \n            based on cvCallVolumeWMTableSize",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cvCallLegRateWMValue": {
                      "type": "integer",
                      "description": "This object indicates high watermark value achieved by the\n            call legs per second for the given interval",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cvCallLegRateWMts": {
                      "type": "string",
                      "description": "This object indicates date and time when the high watermark\n            is achieved for call-legs per second for the given interval",
                      "x-yang-type": "snmpv2-tc:DateAndTime"
                    }
                  }
                },
                "example": {
                  "CISCO-VOICE-DIAL-CONTROL-MIB:cvCallLegRateWMEntry": {
                    "cvCallLegRateWMIntvlDurUnits": "example-string",
                    "cvCallLegRateWMIndex": 1,
                    "cvCallLegRateWMValue": 0,
                    "cvCallLegRateWMts": "example-string"
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cvCallLegRateWMEntry-4"
      },
      "x-yang-path": "/cvCallLegRateWMEntry={cvCallLegRateWMIntvlDurUnits cvCallLegRateWMIndex}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "cvCallLegRateWMIntvlDurUnits cvCallLegRateWMIndex"
      ]
    },
    "/data/CISCO-VOICE-DIAL-CONTROL-MIB:cvActiveCallWMEntry={cvActiveCallWMIntvlDurUnits},{cvActiveCallWMIndex}": {
      "get": {
        "summary": "Get cvActiveCallWMEntry entry",
        "description": "Retrieve specific cvActiveCallWMEntry entry by key from MIB",
        "tags": [
          "CISCO-VOICE-DIAL-CONTROL-MIB"
        ],
        "parameters": [
          {
            "name": "cvActiveCallWMIntvlDurUnits",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "cvActiveCallWMIndex",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "Accept",
            "in": "header",
            "required": false,
            "description": "RESTCONF response media type (RFC 8040)",
            "schema": {
              "type": "string",
              "default": "application/yang-data+json",
              "enum": [
                "application/yang-data+json",
                "application/yang-data+xml"
              ]
            }
          },
          {
            "name": "depth",
            "in": "query",
            "required": false,
            "description": "Limit the depth of returned sub-tree data (RFC 8040 Section 4.8.2). Use 'unbounded' for full depth.",
            "schema": {
              "type": "string",
              "default": "unbounded"
            }
          },
          {
            "name": "fields",
            "in": "query",
            "required": false,
            "description": "Select specific fields to return (RFC 8040 Section 4.8.3). Example: fields=name;status",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "content",
            "in": "query",
            "required": false,
            "description": "Filter by config state: 'config' (config true only), 'nonconfig' (config false only), or 'all'.",
            "schema": {
              "type": "string",
              "enum": [
                "config",
                "nonconfig",
                "all"
              ],
              "default": "all"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "cvActiveCallWMIntvlDurUnits": {
                      "type": "string",
                      "description": "The Object indexes in active call Water mark Table to select\n            one among four interval-tables.\n            \n            The different types in this table are represented by \n            CvCallVolumeWMIntvlType",
                      "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvCallVolumeWMIntvlType"
                    },
                    "cvActiveCallWMIndex": {
                      "type": "integer",
                      "description": "This is an index that references to different peaks in\n            past period in acive call watermark table.\n            \n            The number of watermarks entries stored for each table are \n            based on cvCallVolumeWMTableSize",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cvActiveCallWMValue": {
                      "type": "integer",
                      "description": "This object indicates high watermark value achieved by the\n            active calls for the given interval",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cvActiveCallWMts": {
                      "type": "string",
                      "description": "This object indicates date and time when the high watermark\n            is achieved for active calls for the given interval",
                      "x-yang-type": "snmpv2-tc:DateAndTime"
                    }
                  }
                },
                "example": {
                  "CISCO-VOICE-DIAL-CONTROL-MIB:cvActiveCallWMEntry": {
                    "cvActiveCallWMIntvlDurUnits": "example-string",
                    "cvActiveCallWMIndex": 1,
                    "cvActiveCallWMValue": 0,
                    "cvActiveCallWMts": "example-string"
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cvActiveCallWMEntry-4"
      },
      "x-yang-path": "/cvActiveCallWMEntry={cvActiveCallWMIntvlDurUnits cvActiveCallWMIndex}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "cvActiveCallWMIntvlDurUnits cvActiveCallWMIndex"
      ]
    },
    "/data/CISCO-VOICE-DIAL-CONTROL-MIB:cvSipMsgRateWMEntry={cvSipMsgRateWMIntvlDurUnits},{cvSipMsgRateWMIndex}": {
      "get": {
        "summary": "Get cvSipMsgRateWMEntry entry",
        "description": "Retrieve specific cvSipMsgRateWMEntry entry by key from MIB",
        "tags": [
          "CISCO-VOICE-DIAL-CONTROL-MIB"
        ],
        "parameters": [
          {
            "name": "cvSipMsgRateWMIntvlDurUnits",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "cvSipMsgRateWMIndex",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "Accept",
            "in": "header",
            "required": false,
            "description": "RESTCONF response media type (RFC 8040)",
            "schema": {
              "type": "string",
              "default": "application/yang-data+json",
              "enum": [
                "application/yang-data+json",
                "application/yang-data+xml"
              ]
            }
          },
          {
            "name": "depth",
            "in": "query",
            "required": false,
            "description": "Limit the depth of returned sub-tree data (RFC 8040 Section 4.8.2). Use 'unbounded' for full depth.",
            "schema": {
              "type": "string",
              "default": "unbounded"
            }
          },
          {
            "name": "fields",
            "in": "query",
            "required": false,
            "description": "Select specific fields to return (RFC 8040 Section 4.8.3). Example: fields=name;status",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "content",
            "in": "query",
            "required": false,
            "description": "Filter by config state: 'config' (config true only), 'nonconfig' (config false only), or 'all'.",
            "schema": {
              "type": "string",
              "enum": [
                "config",
                "nonconfig",
                "all"
              ],
              "default": "all"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "cvSipMsgRateWMIntvlDurUnits": {
                      "type": "string",
                      "description": "The Object indexes in SIP Message rate Water mark Table to\n            select one among four interval-tables.\n            \n            The different types in this table are represented by \n            CvCallVolumeWMIntvlType",
                      "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvCallVolumeWMIntvlType"
                    },
                    "cvSipMsgRateWMIndex": {
                      "type": "integer",
                      "description": "This is an index that references to different peaks in\n            past period in sip message rate watermark table.\n            \n            The number of watermarks entries stored for each table are \n            based on cvCallVolumeWMTableSize",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cvSipMsgRateWMValue": {
                      "type": "integer",
                      "description": "This object indicates high watermark value achieved by the\n            SIP messages per second for the given interval",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cvSipMsgRateWMts": {
                      "type": "string",
                      "description": "This object indicates date and time when the high watermark\n            is achieved for SIP messages per second for the given interval",
                      "x-yang-type": "snmpv2-tc:DateAndTime"
                    }
                  }
                },
                "example": {
                  "CISCO-VOICE-DIAL-CONTROL-MIB:cvSipMsgRateWMEntry": {
                    "cvSipMsgRateWMIntvlDurUnits": "192.168.1.1",
                    "cvSipMsgRateWMIndex": 1,
                    "cvSipMsgRateWMValue": 0,
                    "cvSipMsgRateWMts": "192.168.1.1"
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cvSipMsgRateWMEntry-4"
      },
      "x-yang-path": "/cvSipMsgRateWMEntry={cvSipMsgRateWMIntvlDurUnits cvSipMsgRateWMIndex}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "cvSipMsgRateWMIntvlDurUnits cvSipMsgRateWMIndex"
      ]
    }
  },
  "components": {
    "schemas": {
      "CISCO-VOICE-DIAL-CONTROL-MIB_CISCO-VOICE-DIAL-CONTROL-MIB": {
        "type": "object",
        "description": "CISCO-VOICE-DIAL-CONTROL-MIB",
        "properties": {
          "cvPeerCfgEntry": {
            "type": "array",
            "description": "cvPeerCfgEntry",
            "items": {
              "type": "object",
              "properties": {
                "cvPeerCfgIndex": {
                  "type": "integer",
                  "description": "An arbitrary index that uniquely identifies a generic\n            voice peer.",
                  "minimum": -2147483648,
                  "maximum": 2147483647,
                  "readOnly": true
                },
                "cvPeerCfgIfIndex": {
                  "type": "string",
                  "description": "The ifIndex of the peer associated ifEntry. The ifIndex\n            appears after the associated ifEntry is created\n            successfully.\n            This ifIndex will be used to access the objects in the\n            Voice over Telephony or Voice over IP peer specific table.\n            In addition, the ifIndex is also used to access the\n            associated peer configuration entry of the IETF Dial\n            Control MIB. If the peer associated ifEntry had not been\n            created, then this object has a value of zero.",
                  "x-yang-type": "if-mib:InterfaceIndexOrZero",
                  "readOnly": true
                },
                "cvPeerCfgType": {
                  "type": "string",
                  "description": "Specifies the type of voice related encapsulation.\n            voice - voice encapsulation (voiceEncap ifType) on the\n                    telephony network.\n            voip  - VoIP encapsulation (voiceOverIp ifType) on the IP\n                    network.\n            mmail - Media Mail over IP encapsulation (mediaMailOverIp\n                    ifType) on the IP network.\n            voatm - VoATM encapsulation (voiceOverATM ifType) on the\n                    ATM network.\n            vofr  - VoFR encapsulation (voiceOverFR ifType) on the\n                    Frame Relay network.",
                  "readOnly": true
                },
                "cvPeerCfgRowStatus": {
                  "type": "string",
                  "description": "This object is used to create a new row or modify or\n            delete an existing row in this table.",
                  "x-yang-type": "snmpv2-tc:RowStatus",
                  "readOnly": true
                },
                "cvPeerCfgPeerType": {
                  "type": "string",
                  "description": "Specifies the type of a peer.\n            voice - peer in voice type to be defined in a voice\n                    gateway for voice calls. \n            data  - peer in data type to be defined in gateway\n                    that supports universal ports for modem/data\n                    calls and integrated ports for data calls.",
                  "readOnly": true
                }
              }
            },
            "readOnly": true
          },
          "cvVoicePeerCfgEntry": {
            "type": "array",
            "description": "A single Voice specific Peer. One entry per voice\n          encapsulation.\n          The entry is created when its associated 'voiceEncap(103)'\n          encapsulation ifEntry is created.\n          This entry is deleted when its associated ifEntry is\n          deleted.",
            "items": {
              "type": "object",
              "properties": {
                "ifIndex": {
                  "type": "string",
                  "description": "ifIndex",
                  "x-yang-type": "leafref",
                  "readOnly": true
                },
                "cvVoicePeerCfgSessionTarget": {
                  "type": "string",
                  "description": "The object specifies the session target of the peer.\n            Session Targets definitions:\n            The session target has the syntax used by the IETF service\n            location protocol. The syntax is as follows:\n            \n            mapping-type:type-specific-syntax\n            \n            the mapping-type specifies a scheme for mapping the\n            matching dial string to a session target.\n            \n            The valid Mapping type definitions for the peer are as\n            follows:\n            loopback - Syntax: loopback:where\n               'where' string is defined as follows:\n               compressed - loopback is performed on compressed voice\n                            as close to the CODEC which processes the\n                            data as possible.\n               uncompressed - loopback is performed on the PCM or\n                            analog voice as close to the telephony\n                            endpoint as possible.\n            \n            Local loopback case:\n            uncompressed - the PCM voice coming into the DSP is simply\n                turned around and sent back out, allowing testing of\n                the transmit--> receive paths in the telephony\n                endpoint.\n            compressed - the compressed voice coming out of the CODEC is\n                turned around on the DSP module and fed back into the\n                decompressor through the jitter buffer. In addition to\n                the telephony endpoint, this tests both the encode and\n                decode paths without involving data paths or packet\n                handling on the host router.\n            \n            Remote loopback case:\n            compressed - RTP packets received from the network are\n                decapsulated and passed to the DSP board. Instead of\n                feeding these into the CODEC for decompression, they\n                are immediately sent back to the session application\n                as if they had originated locally and been compressed.\n            uncompressed - In addition to the above, the voice samples\n                are sent all the way through the CODEC and then turned\n                around instead of being sent to the telephony\n                endpoint",
                  "x-yang-type": "snmpv2-tc:DisplayString",
                  "readOnly": true
                },
                "cvVoicePeerCfgDialDigitsPrefix": {
                  "type": "string",
                  "description": "The object specifies the prefix of the dial digits for the\n            peer. The dial digits prefix is sent to telephony\n            interface before the real phone number when the system\n            places the outgoing call to the voice encapsulation peer\n            over telephony interface.",
                  "x-yang-type": "snmpv2-tc:DisplayString",
                  "readOnly": true
                },
                "cvVoicePeerCfgDIDCallEnable": {
                  "type": "boolean",
                  "description": "The object enables/disables the DID call treatment for\n            incoming DNIS digits.\n            true  - treat the incoming DNIS digits as if the digits\n                    are received from DID trunk.\n            false - Disable DID call treatment for incoming DNIS\n                    digits.",
                  "readOnly": true
                },
                "cvVoicePeerCfgCasGroup": {
                  "type": "string",
                  "description": "The object specifies the CAS group number of a CAS\n            capable T1/E1  that is in the dialCtlPeerCfgLowerIf object\n            of RFC2128.\n            This object can be set to a valid CAS group number only if\n            the dialCtlPeerCfgLowerIf contains a valid ifIndex for a\n            CAS capable T1/E1. The object must set to -1 before the\n            value of the  dialCtlPeerCfgLowerIf object of RFC2128 can\n            be changed.",
                  "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvCasGroup",
                  "readOnly": true
                },
                "cvVoicePeerCfgRegisterE164": {
                  "type": "boolean",
                  "description": "This object specifies that the E.164 number specified in\n            the dialCtlPeerCfgOriginateAddress field of the associated\n            dialCtlPeerCfgTable entry be registered as an extension \n            phone number of this gateway for H323 gatekeeper and/or \n            SIP registrar.",
                  "readOnly": true
                },
                "cvVoicePeerCfgForwardDigits": {
                  "type": "integer",
                  "description": "This object specifies the number of dialed digits to\n            forward to the remote destination in the setup message.\n            The object can take the value:\n                0-32 number of right justified digits to forward\n                -1 default\n                -2 forward extra digits i.e those over and above\n                   those needed to match to the destination pattern\n                -3 forward all digits",
                  "minimum": -2147483648,
                  "maximum": 2147483647,
                  "readOnly": true
                },
                "cvVoicePeerCfgEchoCancellerTest": {
                  "type": "string",
                  "description": "This object specifies which, if any, test to run in the\n            echo canceller when a call from the network is connected.\n            echoCancellerTestNone    - do not run a test.\n            echoCancellerG168Test2A  - run ITU-T G.168 Test 2A.\n            echoCancellerG168Test2B  - run ITU-T G.168 Test 2B.\n            echoCancellerG168Test2Ca - run ITU-T G.168 Test 2C(a).\n            echoCancellerG168Test2Cb - run ITU-T G.168 Test 2C(b).\n            echoCancellerG168Test3A  - run ITU-T G.168 Test 3A.\n            echoCancellerG168Test3B  - run ITU-T G.168 Test 3B.\n            echoCancellerG168Test3C  - run ITU-T G.168 Test 3C.\n            echoCancellerG168Test4   - run ITU-T G.168 Test 4.\n            echoCancellerG168Test5   - run ITU-T G.168 Test 5.\n            echoCancellerG168Test6   - run ITU-T G.168 Test 6.\n            echoCancellerG168Test7   - run ITU-T G.168 Test 7.\n            echoCancellerG168Test9   - run ITU-T G.168 Test 9.",
                  "readOnly": true
                }
              }
            },
            "readOnly": true
          },
          "cvVoIPPeerCfgEntry": {
            "type": "array",
            "description": "A single VoIP specific Peer. One entry per VoIP\n          encapsulation.\n          The entry is created when its associated 'voiceOverIp(104)'\n          encapsulation ifEntry is created.\n          This entry is deleted when its associated ifEntry is\n          deleted.",
            "items": {
              "type": "object",
              "properties": {
                "ifIndex": {
                  "type": "string",
                  "description": "ifIndex",
                  "x-yang-type": "leafref",
                  "readOnly": true
                },
                "cvVoIPPeerCfgSessionProtocol": {
                  "type": "string",
                  "description": "The object specifies the session protocol to be used\n            for Internet call between local and remote router via\n            IP backbone.",
                  "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvSessionProtocol",
                  "readOnly": true
                },
                "cvVoIPPeerCfgDesiredQoS": {
                  "type": "string",
                  "description": "The object specifies the user requested Quality of Service\n            for the call.",
                  "x-yang-type": "int-serv:QosService",
                  "readOnly": true
                },
                "cvVoIPPeerCfgMinAcceptableQoS": {
                  "type": "string",
                  "description": "The object specifies the minimally acceptable Quality of\n            Service for the call.",
                  "x-yang-type": "int-serv:QosService",
                  "readOnly": true
                },
                "cvVoIPPeerCfgSessionTarget": {
                  "type": "string",
                  "description": "The object specifies the session target of the peer.\n            Session Targets definitions:\n            The session target has the syntax used by the IETF service\n            location protocol. The syntax is as follows:\n            \n            mapping-type:type-specific-syntax\n            \n            the mapping-type specifies a scheme for mapping the\n            matching dial string to a session target. The\n            type-specific-syntax is exactly that, something that the\n            particular mapping scheme can understand.\n            For example,\n            Session target           Meaning\n            ipv4:171.68.13.55:1006   The session target is the IP\n                                     version 4 address of 171.68.13.55\n                                     and port 1006.\n            dns:pots.cisco.com:1661  The session target is the IP host\n                                     with dns name pots.cisco.com, and\n                                     port 1661.\n            ras                      The session target is the\n                                     gatekeeper with RAS (Registration\n                                     , Admission,  Status protocol).\n            settlement               The session target is the\n                                     settlement server.\n            enum:1                   The session target is the enum \n                                     profile match table 1.\n            \n            The valid Mapping type definitions for the peer are as\n            follows:\n            ipv4       - Syntax: ipv4:w.x.y.z:port or  ipv4:w.x.y.z\n            dns        - Syntax: dns:host.domain:port or\n                                 dns:host.domain\n            ras        - Syntax: ras\n            settlement - Syntax: settlement\n            enum       - Syntax: enum:\n            \n            loopback - Syntax: loopback:where\n               'where' string is defined as follows:\n               rtp - loopback is performed at the transport protocol\n                     level.\n            \n            Local loopback case:\n            rtp - the session application sets up an RTP stream to\n                itself (i.e. actually allocates a port pair and opens\n                the appropriate UDP sockets). It then does the full\n                RTP encapsulation, sends the packets to the loopback\n                IP address, receives the RTP packets, and hands the\n                compressed voice back to the CODEC. This tests the\n                entire local processing path, both transmit and\n                receive, in the router, as well as all of the above\n                paths.\n            \n            Remote loopback case:\n            rtp: RTP packets received from the network are decapsulated and\n                 immediately re-encapsulated in the outbound RTP\n                 stream, using the same media clock (i.e. timestamp)\n                 as the received packet. They are then sent back to\n                 the remote source router as if the voice had\n                 originated on a telephony port on the local router.",
                  "x-yang-type": "snmpv2-tc:DisplayString",
                  "readOnly": true
                },
                "cvVoIPPeerCfgCoderRate": {
                  "type": "string",
                  "description": "This object specifies the most desirable codec of speech\n            for the VoIP peer.",
                  "x-yang-type": "cisco-voice:CvcSpeechCoderRate",
                  "readOnly": true
                },
                "cvVoIPPeerCfgFaxRate": {
                  "type": "string",
                  "description": "This object specifies the default transmit rate of FAX\n            the VoIP peer. If the value of this object is 'none',\n            then the Fax relay feature is disabled; otherwise the Fax\n            relay feature is enabled.",
                  "x-yang-type": "cisco-voice:CvcFaxTransmitRate",
                  "readOnly": true
                },
                "cvVoIPPeerCfgVADEnable": {
                  "type": "boolean",
                  "description": "This object specifies whether or not the VAD (Voice\n            Activity Detection) voice data is continuously transmitted\n            to IP backbone.",
                  "readOnly": true
                },
                "cvVoIPPeerCfgExpectFactor": {
                  "type": "integer",
                  "description": "This object specifies the user requested Expectation\n            Factor of voice quality for the call via this peer.",
                  "minimum": -2147483648,
                  "maximum": 2147483647,
                  "readOnly": true
                },
                "cvVoIPPeerCfgIcpif": {
                  "type": "integer",
                  "description": "This object specifies the user requested Calculated\n            Planning Impairment Factor (Icpif) for the call via this\n            peer.",
                  "minimum": -2147483648,
                  "maximum": 2147483647,
                  "readOnly": true
                },
                "cvVoIPPeerCfgPoorQoVNotificationEnable": {
                  "type": "boolean",
                  "description": "This object specifies whether cvdcPoorQoVNotification (or\n            the newer cvdcPoorQoVNotificationRev1) traps should be\n            generated for the call that is associated with this\n            peer.",
                  "readOnly": true
                },
                "cvVoIPPeerCfgUDPChecksumEnable": {
                  "type": "boolean",
                  "description": "This object specifies whether the outgoing voice related\n            UDP packet contains a valid checksum value.\n            true  - enable the checksum of outgoing voice UDP packets\n            false - disable the checksum of outgoing voice UDP packets",
                  "readOnly": true
                },
                "cvVoIPPeerCfgIPPrecedence": {
                  "type": "integer",
                  "description": "This object specifies the value to be stored in the IP\n            Precedence field of voice packets, with values ranging\n            from 0 (normal precedence) through 7 (network control),\n            allowing the managed system to set the importance of each\n            voice packet for delivering them to the destination peer.",
                  "minimum": -2147483648,
                  "maximum": 2147483647,
                  "readOnly": true
                },
                "cvVoIPPeerCfgTechPrefix": {
                  "type": "string",
                  "description": "This object specifies the technology prefix of the peer,\n            The technology prefix and the called party address\n            are passed in Admission Request (ARQ) to gatekeeper\n            for the called party address resolution during call setup.",
                  "x-yang-type": "snmpv2-tc:DisplayString",
                  "readOnly": true
                },
                "cvVoIPPeerCfgDigitRelay": {
                  "type": "string",
                  "description": "This object specifies the methods to transmit dial digits\n            (DTMF or MF digits) via IP network.\n            rtpCisco       - Enable capability to transmit dial digits\n                             with Cisco proprietary RTP payload type.\n            h245Signal     - Enable capability to transmit dtmf digits\n                             across the H.245 channel, via the signal\n                             field of the UserInputIndication message\n            h245Alphanumeric - Enable capability to transmit dtmf\n                             digit across the H.245 channel, via the\n                             string or alphanumeric fields of the\n                             UserInputIndication message\n            rtpNte         - Enable capability to transmit dial digits\n                             using Named Telephony Event per RFC 2833\n                             section 3.\n            sipNotify      - Enable capability to transmit dtmf\n                             digits using unsolicited SIP NOTIFY\n                             messages. This mechanism is only available\n                             for SIP dialpeers.\n            sipKpml        - Enable capability to transmit dtmf\n                             digits using KPML over SIP SUBSCRIBE\n                             and NOTIFY messages. This mechanism is\n                             only available for SIP dialpeers.\n            \n            \n            Modifying the value of cvVoIPPeerCfgSessionProtocol\n            can reset the digit-relay method associated bits value in\n            this object if the modified session protocol does not\n            support  these digit-relay methods.",
                  "readOnly": true
                },
                "cvVoIPPeerCfgCoderBytes": {
                  "type": "integer",
                  "description": "This object specifies the size of the voice payload sample\n            to be produced by the coder specified in\n            cvVoIPPeerCfgCoderRate.\n            Each coder sample produces 10 bytes of voice payload. The\n            specified value will be rounded down to the nearest valid\n            size.\n            \n            A value of 0, specifies that the coder defined by\n            cvVoIPPeerCfgCoderRate should produce its default payload\n            size.",
                  "minimum": -2147483648,
                  "maximum": 2147483647,
                  "readOnly": true
                },
                "cvVoIPPeerCfgFaxBytes": {
                  "type": "integer",
                  "description": "This object specifies the payload size to be produced by\n            the coder when it is generating fax data. A value of 0,\n            specifies that the coder specified in\n            cvVoIPCfgPeerCoderRate should produce its default fax\n            payload size.",
                  "minimum": -2147483648,
                  "maximum": 2147483647,
                  "readOnly": true
                },
                "cvVoIPPeerCfgInBandSignaling": {
                  "type": "string",
                  "description": "This object specifies the type of in-band signaling that\n            will be used between the end points of the call. It is\n            used by the router to determine how to interpret ABCD\n            signaling bits sent as part of voice payload data.",
                  "x-yang-type": "cisco-voice:CvcInBandSignaling",
                  "readOnly": true
                },
                "cvVoIPPeerCfgMediaSetting": {
                  "type": "string",
                  "description": "This object specifies how the media is to be setup on\n            an IP-IP Gateway. Two choices are valid: flow-through\n            and flow-around. When in flow-through mode, which is the\n            default setting, the IP-IP Gateway will terminate and \n            then re-originate the media stream. When flow-around\n            is configured the Gateway will not be involved with the\n            media, since it will flow-around the Gateway and will\n            be established directly between the endpoints.",
                  "readOnly": true
                },
                "cvVoIPPeerCfgDesiredQoSVideo": {
                  "type": "string",
                  "description": "The object specifies the user requested Quality of Service\n            for the video portion of the call.",
                  "x-yang-type": "int-serv:QosService",
                  "readOnly": true
                },
                "cvVoIPPeerCfgMinAcceptableQoSVideo": {
                  "type": "string",
                  "description": "The object specifies the minimally acceptable Quality of\n            Service for the video portion of the call.",
                  "x-yang-type": "int-serv:QosService",
                  "readOnly": true
                },
                "cvVoIPPeerCfgRedirectip2ip": {
                  "type": "boolean",
                  "description": "This object specifies the Inbound VoIP calls that match\n            an outbound VoIP dialpeer will be responded with a SIP \n            redirect(for inbound SIP) or H.450.3 call-forward(for \n            inbound H.323).",
                  "readOnly": true
                },
                "cvVoIPPeerCfgOctetAligned": {
                  "type": "boolean",
                  "description": "If the object has a value true(1) octet align operation\n            is used, and if the value is false(2), bandwidth efficient\n            operation is used. This object is not instantiated when\n            the object cvVoIPPeerCfgCoderRate is not equal to\n            gsmAmrNb enum.",
                  "readOnly": true
                },
                "cvVoIPPeerCfgBitRates": {
                  "type": "string",
                  "description": "This object indicates modes of Bit rates. One or more\n            upto four modes can be configured at the same time as\n            bit rates can be changed dynamically for AMR-NB codec.\n            This object is not instantiated when the object\n            cvVoIPPeerCfgCoderRate is not equal to gsmAmrNb enum.",
                  "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvAmrNbBitRateMode",
                  "readOnly": true
                },
                "cvVoIPPeerCfgCRC": {
                  "type": "boolean",
                  "description": "If the object has a value of true(1), frame CRC will be\n            included in the payload and if the value is false(2),\n            frame CRC will not be included in the payload.\n            This object is applicable only when RTP frame type\n            is octet aligned. This object is not instantiated when\n            the object cvVoIPPeerCfgCoderRate is not equal to\n            gsmAmrNb enum.",
                  "readOnly": true
                },
                "cvVoIPPeerCfgCoderMode": {
                  "type": "string",
                  "description": "This object indicates the iLBC codec mode to be used.\n            The value of this object is valid only if \n            cvVoIPPeerCfgCoderRate is equal to 'iLBC'.",
                  "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvIlbcFrameMode",
                  "readOnly": true
                },
                "cvVoIPPeerCfgCodingMode": {
                  "type": "string",
                  "description": "This object specifies the coding mode to be used. The object is\n            instantiated only if cvVoIPPeerCfgCoderRate is 'iSAC'. Following\n            coding modes are supported:\n            adaptive    (1) - adaptive mode where iSAC performs bandwidth  \n                              estimation and adapts to the available channel\n            \n                              bandwidth.\n            independent (2) - independent mode in which no bandwidth\n            estimation \n                              is performed.",
                  "readOnly": true
                },
                "cvVoIPPeerCfgBitRate": {
                  "type": "integer",
                  "description": "This object specifies the target bit rate. The object is\n            instantiated only if cvVoIPPeerCfgCoderRate is 'iSAC'.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "cvVoIPPeerCfgFrameSize": {
                  "type": "string",
                  "description": "This object specifies the frame size used. The object is\n            instantiated only if cvVoIPPeerCfgCoderRate is 'iSAC'.\n            The frame size can be 30 ms or 60 ms, and it can be fixed for\n            all packets or vary depending on the configuration and bandwidth\n            estimation. Thus it can have the following values:\n            frameSize30      - initial frame size of 30 ms\n            frameSize60      - initial frame size of 60 ms\n            frameSize30fixed - fixed frame size 30 ms\n            frameSize60fixed - fixed frame size 60 ms",
                  "readOnly": true
                },
                "cvVoIPPeerCfgDSCPPolicyNotificationEnable": {
                  "type": "boolean",
                  "description": "This object specifies whether cvdcPolicyViolationNotification\n            traps should be generated for the call that is associated with\n            this peer for RPH to DSCP mapping and policing feature.",
                  "readOnly": true
                },
                "cvVoIPPeerCfgMediaPolicyNotificationEnable": {
                  "type": "boolean",
                  "description": "This object specifies whether cvdcPolicyViolationNotification\n            traps should be generated for the call that is associated with\n            this peer for Media policing feature..",
                  "readOnly": true
                }
              }
            },
            "readOnly": true
          },
          "cvPeerCommonCfgEntry": {
            "type": "array",
            "description": "A single Voice specific Peer. One entry per voice related\n          encapsulation.\n          The entry is created when a voice related encapsulation\n          ifEntry is created.\n          This entry is deleted when its associated ifEntry is\n          deleted.",
            "items": {
              "type": "object",
              "properties": {
                "ifIndex": {
                  "type": "string",
                  "description": "ifIndex",
                  "x-yang-type": "leafref",
                  "readOnly": true
                },
                "cvPeerCommonCfgIncomingDnisDigits": {
                  "type": "string",
                  "description": "The object specifies the prefix of the incoming Dialed\n            Number Identification Service (DNIS) digits for the peer.\n            The DNIS digits prefix is used to match with the incoming\n            DNIS number for incoming call discrimination. If the\n            digits in this object are matched with incoming DNIS\n            number, the  associated dialCtlPeerCfgInfoType in RFC 2128\n            will be used as a call discriminator for differentiating\n            speech, data, fax, video or modem calls.",
                  "x-yang-type": "snmpv2-tc:DisplayString",
                  "readOnly": true
                },
                "cvPeerCommonCfgMaxConnections": {
                  "type": "integer",
                  "description": "The object specifies the maximum allowed connection\n            to/from the peer. A value of -1 disables the limit of\n            maximum connections.",
                  "minimum": -2147483648,
                  "maximum": 2147483647,
                  "readOnly": true
                },
                "cvPeerCommonCfgApplicationName": {
                  "type": "string",
                  "description": "The object specifies the application to handle the incoming\n            call after the peer is selected.\n            If no application name is specified, then the default\n            session application will take care of the incoming call.",
                  "x-yang-type": "snmpv2-tc:DisplayString",
                  "readOnly": true
                },
                "cvPeerCommonCfgPreference": {
                  "type": "integer",
                  "description": "This object specifies the selection preference of a peer\n            when multiple peers are matched to the selection criteria.\n            The value of 0 has the lowest preference for peer\n            selection.",
                  "minimum": -2147483648,
                  "maximum": 2147483647,
                  "readOnly": true
                },
                "cvPeerCommonCfgHuntStop": {
                  "type": "boolean",
                  "description": "This object specifies whether dialpeer hunting should stop\n            when this peer is reached.",
                  "readOnly": true
                },
                "cvPeerCommonCfgDnisMappingName": {
                  "type": "string",
                  "description": "The object specifies a Dialer Number Identification\n            Service (DNIS) map name for the Voice specific peer\n            entry specified in this row. A DNIS is a called party\n            number and they can be grouped and identified by DNIS\n            map.",
                  "x-yang-type": "cisco-voice-dnis:DnisMapname",
                  "readOnly": true
                },
                "cvPeerCommonCfgSourceCarrierId": {
                  "type": "string",
                  "description": "The object specifies the Source Carrier Id for the peer.\n            The Source Carrier Id is used to match with the Source\n            Carrier Id of a call. If the Source Carrier Id in this\n            object is matched with the Source Carrier Id of a call,\n            then the associated peer will be used to handle the call. \n            Only alphanumeric characters, '-' and '_' are allowed in\n            the string.",
                  "x-yang-type": "snmp-framework:SnmpAdminString",
                  "readOnly": true
                },
                "cvPeerCommonCfgTargetCarrierId": {
                  "type": "string",
                  "description": "The object specifies the Target Carrier Id for the peer.\n            The Target Carrier Id is used to match with the Target\n            Carrier Id of a call. If the Target Carrier Id in this\n            object is matched with the Target Carrier Id of a call,\n            then the associated peer will be used to handle the call.\n            Only alphanumeric characters, '-' and '_' are allowed in\n            the string.",
                  "x-yang-type": "snmp-framework:SnmpAdminString",
                  "readOnly": true
                },
                "cvPeerCommonCfgSourceTrunkGrpLabel": {
                  "type": "string",
                  "description": "The object specifies the Source Trunk Group Label for the\n            peer. The Source Trunk Group Label is used to match with\n            the Source Trunk Group Label of a call. If the Source\n            Trunk Group Label in this object is matched with the\n            Source Trunk Group Label of a call, then the associated\n            peer will be used to handle the call. \n            Only alphanumeric characters, '-' and '_' are allowed in\n            the string.",
                  "x-yang-type": "snmp-framework:SnmpAdminString",
                  "readOnly": true
                },
                "cvPeerCommonCfgTargetTrunkGrpLabel": {
                  "type": "string",
                  "description": "The object specifies the Target Trunk Group Label for the\n            peer. The Target Trunk Group Label is used to match with\n            the Target Trunk Group Label of a call. If the Target\n            Trunk Group Label in this object is matched with the\n            Target Trunk Group Label of a call, then the associated\n            peer will be used to handle the call.\n            Only alphanumeric characters, '-' and '_' are allowed in\n            the string.",
                  "x-yang-type": "snmp-framework:SnmpAdminString",
                  "readOnly": true
                }
              }
            },
            "readOnly": true
          },
          "cvCallActiveEntry": {
            "type": "array",
            "description": "cvCallActiveEntry",
            "items": {
              "type": "object",
              "properties": {
                "callActiveSetupTime": {
                  "type": "string",
                  "description": "callActiveSetupTime",
                  "x-yang-type": "leafref",
                  "readOnly": true
                },
                "callActiveIndex": {
                  "type": "string",
                  "description": "callActiveIndex",
                  "x-yang-type": "leafref",
                  "readOnly": true
                },
                "cvCallActiveConnectionId": {
                  "type": "string",
                  "description": "The global connection identifier for the\n            active telephony leg of the call.",
                  "x-yang-type": "cisco-voice:CvcGUid",
                  "readOnly": true
                },
                "cvCallActiveTxDuration": {
                  "type": "string",
                  "description": "Duration of Transmit path open from this peer to the\n            voice gateway for the call leg. This counter object will\n            lock at the maximum value which is approximately two\n            days.",
                  "x-yang-type": "dial-control:AbsoluteCounter32",
                  "readOnly": true
                },
                "cvCallActiveVoiceTxDuration": {
                  "type": "string",
                  "description": "Duration of voice transmitted from this peer to voice\n            gateway for this call leg. The Voice Utilization Rate can\n            be obtained by dividing this by cvCallActiveTXDuration\n            object. This counter object will lock at the maximum\n            value which is approximately two days.",
                  "x-yang-type": "dial-control:AbsoluteCounter32",
                  "readOnly": true
                },
                "cvCallActiveFaxTxDuration": {
                  "type": "string",
                  "description": "Duration of fax transmitted from this peer to voice gateway\n            for this call leg. The FAX Utilization Rate can be\n            obtained by dividing this by cvCallActiveTXDuration\n            object. This counter object will lock at the maximum\n            value which is approximately two days.",
                  "x-yang-type": "dial-control:AbsoluteCounter32",
                  "readOnly": true
                },
                "cvCallActiveCoderTypeRate": {
                  "type": "string",
                  "description": "The negotiated coder rate. It specifies the transmit rate of\n            voice/fax compression to its associated call leg for the\n            call.",
                  "x-yang-type": "cisco-voice:CvcCoderTypeRate",
                  "readOnly": true
                },
                "cvCallActiveNoiseLevel": {
                  "type": "integer",
                  "description": "The object contains the active noise level for the call\n            leg.",
                  "minimum": -2147483648,
                  "maximum": 2147483647,
                  "readOnly": true
                },
                "cvCallActiveACOMLevel": {
                  "type": "integer",
                  "description": "The object contains the sum of Echo Return Loss (ERL),\n            cancellation loss (Echo Return Loss Enhancement) and\n            nonlinear processing loss for the call leg.\n            The value -1 indicates the level can not be determined or\n            level detection is disabled.",
                  "minimum": -2147483648,
                  "maximum": 2147483647,
                  "readOnly": true
                },
                "cvCallActiveOutSignalLevel": {
                  "type": "integer",
                  "description": "The object contains the active output signal level to\n            telephony interface that is used by the call leg.",
                  "minimum": -2147483648,
                  "maximum": 2147483647,
                  "readOnly": true
                },
                "cvCallActiveInSignalLevel": {
                  "type": "integer",
                  "description": "The object contains the active input signal level from\n            telephony interface that is used by the call leg.",
                  "minimum": -2147483648,
                  "maximum": 2147483647,
                  "readOnly": true
                },
                "cvCallActiveERLLevel": {
                  "type": "integer",
                  "description": "The object contains the current Echo Return Loss (ERL)\n            level for the call leg.\n            The value -1 indicates the level can not be determined or\n            level detection is disabled.",
                  "minimum": -2147483648,
                  "maximum": 2147483647,
                  "readOnly": true
                },
                "cvCallActiveSessionTarget": {
                  "type": "string",
                  "description": "The object specifies the session target of the peer that\n            is used for the call leg. This object is set with the\n            information in the call associated\n            cvVoicePeerCfgSessionTarget object when the call is\n            connected.",
                  "x-yang-type": "snmpv2-tc:DisplayString",
                  "readOnly": true
                },
                "cvCallActiveImgPageCount": {
                  "type": "string",
                  "description": "The number of FAX related image pages are received or\n            transmitted via the peer for the call leg.",
                  "x-yang-type": "dial-control:AbsoluteCounter32",
                  "readOnly": true
                },
                "cvCallActiveCallingName": {
                  "type": "string",
                  "description": "The calling party name of the call. If the name is\n            not available, then it will have a length of zero.",
                  "x-yang-type": "snmp-framework:SnmpAdminString",
                  "readOnly": true
                },
                "cvCallActiveCallerIDBlock": {
                  "type": "boolean",
                  "description": "The object indicates whether or not the caller ID feature\n            is blocked for this call.",
                  "readOnly": true
                },
                "cvCallActiveEcanReflectorLocation": {
                  "type": "integer",
                  "description": "The location in milliseconds of the largest amplitude\n            reflector detected by the echo canceller for this call. \n            The value 0 indicates there is no reflector or the \n            information is not available.",
                  "minimum": -2147483648,
                  "maximum": 2147483647,
                  "readOnly": true
                },
                "cvCallActiveAccountCode": {
                  "type": "string",
                  "description": "The object indicates the account code input to the call.\n            It could be used for call screen or by down stream server\n            for billing purpose.\n            The value of empty string indicates no account code input.",
                  "x-yang-type": "snmp-framework:SnmpAdminString",
                  "readOnly": true
                },
                "cvCallActiveERLLevelRev1": {
                  "type": "integer",
                  "description": "The object contains the current Echo Return Loss (ERL)\n            level for the call leg.\n            The value -1 indicates the level can not be determined or\n            level detection is disabled.",
                  "minimum": -2147483648,
                  "maximum": 2147483647,
                  "readOnly": true
                },
                "cvCallActiveCallId": {
                  "type": "integer",
                  "description": "This object represents the call identifier\n            for the active telephony leg of the call.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                }
              }
            },
            "readOnly": true
          },
          "cvVoIPCallActiveEntry": {
            "type": "array",
            "description": "cvVoIPCallActiveEntry",
            "items": {
              "type": "object",
              "properties": {
                "callActiveSetupTime": {
                  "type": "string",
                  "description": "callActiveSetupTime",
                  "x-yang-type": "leafref",
                  "readOnly": true
                },
                "callActiveIndex": {
                  "type": "string",
                  "description": "callActiveIndex",
                  "x-yang-type": "leafref",
                  "readOnly": true
                },
                "cvVoIPCallActiveConnectionId": {
                  "type": "string",
                  "description": "The global connection identifier for\n            the active VoIP leg of the call.",
                  "x-yang-type": "cisco-voice:CvcGUid",
                  "readOnly": true
                },
                "cvVoIPCallActiveRemoteIPAddress": {
                  "type": "string",
                  "description": "Remote system IP address for the VoIP call.",
                  "format": "inet:ipv4-address",
                  "readOnly": true
                },
                "cvVoIPCallActiveRemoteUDPPort": {
                  "type": "integer",
                  "description": "Remote system UDP listener port to which to transmit voice\n            packets.",
                  "minimum": -2147483648,
                  "maximum": 2147483647,
                  "readOnly": true
                },
                "cvVoIPCallActiveRoundTripDelay": {
                  "type": "integer",
                  "description": "The voice packet round trip delay between local and\n            the remote system on the IP backbone during the call.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "cvVoIPCallActiveSelectedQoS": {
                  "type": "string",
                  "description": "The selected RSVP QoS for the voice call.",
                  "x-yang-type": "int-serv:QosService",
                  "readOnly": true
                },
                "cvVoIPCallActiveSessionProtocol": {
                  "type": "string",
                  "description": "The object specifies the session protocol to be used\n            for Internet call between local and remote router via\n            IP backbone.",
                  "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvSessionProtocol",
                  "readOnly": true
                },
                "cvVoIPCallActiveSessionTarget": {
                  "type": "string",
                  "description": "The object specifies the session target of the peer that\n            is used for the call. This object is set with the\n            information in the call associated\n            cvVoIPPeerCfgSessionTarget object when the voice over IP\n            call is connected.",
                  "x-yang-type": "snmpv2-tc:DisplayString",
                  "readOnly": true
                },
                "cvVoIPCallActiveOnTimeRvPlayout": {
                  "type": "string",
                  "description": "Duration of voice playout from data received on time for\n            this call. This plus the durations for the GapFills in the\n            following entries gives the Total Voice Playout Duration\n            for Active Voice.\n            This does not include duration for which no data was sent by the\n            Transmit end as voice signal, e.g., silence suppression\n            and fax signal. The On Time Playout Rate can be computed\n            by dividing this entry by the Total Voice Playout Duration.\n            This counter object will lock at the maximum value which\n            is approximately two days.",
                  "x-yang-type": "dial-control:AbsoluteCounter32",
                  "readOnly": true
                },
                "cvVoIPCallActiveGapFillWithSilence": {
                  "type": "string",
                  "description": "Duration of voice signal replaced with signal played out\n            during silence due to voice data not received on time\n            (or lost) from voice gateway this call. This counter\n            object will lock at the maximum value which is\n            approximately two days.",
                  "x-yang-type": "dial-control:AbsoluteCounter32",
                  "readOnly": true
                },
                "cvVoIPCallActiveGapFillWithPrediction": {
                  "type": "string",
                  "description": "Duration of voice signal played out with signal synthesized\n            from parameters or samples of data preceding in time due\n            to voice data not received on time (or lost) from voice\n            gateway for this call. An example of such playout is\n            frame-erasure or frame-concealment strategies in G.729 and\n            G.723.1 compression algorithms. This counter object will\n            lock at the maximum value which is approximately two days.",
                  "x-yang-type": "dial-control:AbsoluteCounter32",
                  "readOnly": true
                },
                "cvVoIPCallActiveGapFillWithInterpolation": {
                  "type": "string",
                  "description": "Duration of voice signal played out with signal synthesized\n            from parameters or samples of data preceding and following\n            in time due to voice data not received on time (or lost)\n            from voice gateway for this call. This counter object\n            will lock at the maximum value which is approximately two\n            days.",
                  "x-yang-type": "dial-control:AbsoluteCounter32",
                  "readOnly": true
                },
                "cvVoIPCallActiveGapFillWithRedundancy": {
                  "type": "string",
                  "description": "Duration of voice signal played out with signal synthesized\n            from redundancy parameters available due to voice data not\n            received on time (or lost) from voice gateway for this call.\n            This counter object will lock at the maximum value which\n            is approximately two days.",
                  "x-yang-type": "dial-control:AbsoluteCounter32",
                  "readOnly": true
                },
                "cvVoIPCallActiveHiWaterPlayoutDelay": {
                  "type": "string",
                  "description": "The high water mark Voice Playout FIFO Delay during\n            the voice call. This counter object will lock at the\n            maximum value which is approximately two days.",
                  "x-yang-type": "dial-control:AbsoluteCounter32",
                  "readOnly": true
                },
                "cvVoIPCallActiveLoWaterPlayoutDelay": {
                  "type": "integer",
                  "description": "The low water mark Voice Playout FIFO Delay during\n            the voice call.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "cvVoIPCallActiveReceiveDelay": {
                  "type": "integer",
                  "description": "The average Playout FIFO Delay plus the decoder delay\n            during the voice call.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "cvVoIPCallActiveVADEnable": {
                  "type": "boolean",
                  "description": "The object indicates whether or not the VAD (Voice Activity\n            Detection) was enabled for the voice call.",
                  "readOnly": true
                },
                "cvVoIPCallActiveCoderTypeRate": {
                  "type": "string",
                  "description": "The negotiated coder rate. It specifies the transmit rate of\n            voice/fax compression to its associated call leg for the\n            call. This rate is different from the configuration rate\n            because of rate negotiation during the call.",
                  "x-yang-type": "cisco-voice:CvcCoderTypeRate",
                  "readOnly": true
                },
                "cvVoIPCallActiveLostPackets": {
                  "type": "string",
                  "description": "The number of lost voice packets during the call.",
                  "x-yang-type": "dial-control:AbsoluteCounter32",
                  "readOnly": true
                },
                "cvVoIPCallActiveEarlyPackets": {
                  "type": "string",
                  "description": "The number of received voice packets that\n            arrived too early to store in jitter buffer\n            during the call.",
                  "x-yang-type": "dial-control:AbsoluteCounter32",
                  "readOnly": true
                },
                "cvVoIPCallActiveLatePackets": {
                  "type": "string",
                  "description": "The number of received voice packets that\n            arrived too late to playout with CODEC (Coder/Decoder)\n            during the call.",
                  "x-yang-type": "dial-control:AbsoluteCounter32",
                  "readOnly": true
                },
                "cvVoIPCallActiveUsername": {
                  "type": "string",
                  "description": "The textual identifier of the calling party (user) of the\n            call. If the username is not available, then the value of\n            this object will have a length of zero.",
                  "x-yang-type": "snmp-framework:SnmpAdminString",
                  "readOnly": true
                },
                "cvVoIPCallActiveProtocolCallId": {
                  "type": "string",
                  "description": "The protocol-specific call identifier for the VoIP call.",
                  "format": "binary",
                  "readOnly": true
                },
                "cvVoIPCallActiveRemSigIPAddrT": {
                  "type": "string",
                  "description": "This object specifies the type of address contained in\n            the associated instance of cvVoIPCallActiveRemSigIPAddr.",
                  "x-yang-type": "inet-address:InetAddressType",
                  "readOnly": true
                },
                "cvVoIPCallActiveRemSigIPAddr": {
                  "type": "string",
                  "description": "Remote signalling IP address for the VoIP call.",
                  "x-yang-type": "inet-address:InetAddress",
                  "readOnly": true
                },
                "cvVoIPCallActiveRemSigPort": {
                  "type": "integer",
                  "description": "Remote signalling listener port to which to transmit\n            voice packets.",
                  "minimum": -2147483648,
                  "maximum": 2147483647,
                  "readOnly": true
                },
                "cvVoIPCallActiveRemMediaIPAddrT": {
                  "type": "string",
                  "description": "This object specifies the type of address contained in\n            the associated instance of\n            cvVoIPCallActiveRemMediaIPAddr.",
                  "x-yang-type": "inet-address:InetAddressType",
                  "readOnly": true
                },
                "cvVoIPCallActiveRemMediaIPAddr": {
                  "type": "string",
                  "description": "Remote media end point IP address for the VoIP call.",
                  "x-yang-type": "inet-address:InetAddress",
                  "readOnly": true
                },
                "cvVoIPCallActiveRemMediaPort": {
                  "type": "integer",
                  "description": "Remote media end point listener port to which to transmit\n            voice packets.",
                  "minimum": -2147483648,
                  "maximum": 2147483647,
                  "readOnly": true
                },
                "cvVoIPCallActiveSRTPEnable": {
                  "type": "boolean",
                  "description": "The object indicates whether or not the SRTP (Secured RTP)\n            was enabled for the voice call.",
                  "readOnly": true
                },
                "cvVoIPCallActiveOctetAligned": {
                  "type": "boolean",
                  "description": "If the object has a value true(1) octet align operation\n            is used, and if the value is false(2), bandwidth efficient\n            operation is used. This object is not instantiated when\n            the object cvVoIPCallActiveCoderTypeRate is not equal to\n            gsmAmrNb enum.",
                  "readOnly": true
                },
                "cvVoIPCallActiveBitRates": {
                  "type": "string",
                  "description": "This object indicates modes of Bit rates.\n            This object is not instantiated when the object\n            cvVoIPCallActiveCoderTypeRate is not equal to\n            gsmAmrNb enum.",
                  "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvAmrNbBitRateMode",
                  "readOnly": true
                },
                "cvVoIPCallActiveModeChgPeriod": {
                  "type": "integer",
                  "description": "The object indicates the interval (N frame-blocks) at which\n            codec mode changes are allowed. This object is not\n            instantiated when the object cvVoIPCallActiveCoderTypeRate\n            is not equal to gsmAmrNb enum.",
                  "minimum": -2147483648,
                  "maximum": 2147483647,
                  "readOnly": true
                },
                "cvVoIPCallActiveModeChgNeighbor": {
                  "type": "boolean",
                  "description": "If the object has a value of true(1), mode changes will be\n            made to only neighboring modes set to\n            cvVoIPCallActiveBitRates object. If the value is false(2),\n            mode changes will be allowed to any modes set to\n            cvVoIPCallActiveBitRates object. This object is not\n            instantiated when the object cvVoIPCallActiveCoderTypeRate\n            is not equal to gsmAmrNb enum.",
                  "readOnly": true
                },
                "cvVoIPCallActiveMaxPtime": {
                  "type": "integer",
                  "description": "The object indicates the maximum amount of media that\n            can be encapsulated in a payload. Supported value is\n            20 msec. This object is not instantiated when the\n            object cvVoIPCallActiveCoderTypeRate is not equal to\n            gsmAmrNb enum.",
                  "minimum": -2147483648,
                  "maximum": 2147483647,
                  "readOnly": true
                },
                "cvVoIPCallActiveCRC": {
                  "type": "boolean",
                  "description": "If the object has a value of true(1), frame CRC will be\n            included in the payload and if the value is false(2),\n            frame CRC will not be included in the payload.\n            This object is applicable only when RTP frame type\n            is octet aligned. This object is not instantiated when\n            the object cvVoIPCallActiveCoderTypeRate is not equal to\n            gsmAmrNb enum.",
                  "readOnly": true
                },
                "cvVoIPCallActiveRobustSorting": {
                  "type": "boolean",
                  "description": "If the object has a value of true(1), payload employs\n            robust sorting and if the value is false(2), payload\n            does not employ robust sorting. This object is applicable\n            only when RTP frame type is octet aligned. This object\n            is not instantiated when the object\n            cvVoIPCallActiveCoderTypeRate is not equal to gsmAmrNb\n            enum.",
                  "readOnly": true
                },
                "cvVoIPCallActiveEncap": {
                  "type": "string",
                  "description": "The object indicates the RTP encapsulation type.\n            Supported RTP encapsulation type is RFC3267.\n            This object is not instantiated when the object\n            cvVoIPCallActiveCoderTypeRate is not equal to\n            gsmAmrNb enum.",
                  "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvAmrNbRtpEncap",
                  "readOnly": true
                },
                "cvVoIPCallActiveInterleaving": {
                  "type": "integer",
                  "description": "The object indicates the maximum number of frame-blocks\n            allowed in an interleaving group. It indicates that\n            frame-block level interleaving will be used for that\n            session. If this object is not set, interleaving\n            is not used. This object is applicable only when\n            RTP frame type is octet aligned. This object is not\n            instantiated when the object cvVoIPCallActiveCoderTypeRate\n            is not equal to gsmAmrNb enum.",
                  "minimum": -2147483648,
                  "maximum": 2147483647,
                  "readOnly": true
                },
                "cvVoIPCallActivePtime": {
                  "type": "integer",
                  "description": "The object indicates the length of the time in milliseconds\n            represented by the media of the packet. Supported value is\n            20 milliseconds. This object is not instantiated when the\n            object cvVoIPCallActiveCoderTypeRate is not equal to\n            gsmAmrNb enum.",
                  "minimum": -2147483648,
                  "maximum": 2147483647,
                  "readOnly": true
                },
                "cvVoIPCallActiveChannels": {
                  "type": "integer",
                  "description": "The object indicates the number of audio channels.\n            Supported value is 1. This object is not instantiated\n            when the object cvVoIPCallActiveCoderTypeRate is not equal\n            to gsmAmrNb enum.",
                  "minimum": -2147483648,
                  "maximum": 2147483647,
                  "readOnly": true
                },
                "cvVoIPCallActiveCoderMode": {
                  "type": "string",
                  "description": "The object indicates the iLBC codec mode.\n            The value of this object is valid only if \n            cvVoIPCallActiveCoderTypeRate is equal to \n            'iLBC'.",
                  "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvIlbcFrameMode",
                  "readOnly": true
                },
                "cvVoIPCallActiveCallId": {
                  "type": "integer",
                  "description": "This object represents the call identifier\n            for the active VoIP leg of the call.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "cvVoIPCallActiveCallReferenceId": {
                  "type": "string",
                  "description": "The call reference ID associates the video call entry and voice\n            call entry of the same endpoint.  An audio-only call may or may\n            not have a valid call reference ID (i.e. value greater than\n            zero), but in both cases, there will not be a video call entry\n            associated with it.  \n            \n            For a video call, the video-specific information  is stored in a\n            call entry in cVideoSessionActive of CISCO-VIDEO-SESSION-MIB, in\n            which the call reference ID is also identified.",
                  "x-yang-type": "cisco-voice:CvcCallReferenceIdOrZero",
                  "readOnly": true
                },
                "ccVoIPCallActivePolicyName": {
                  "type": "string",
                  "description": "This object holds the policy name. It could be media\n            policy, DSCP policy etc.",
                  "x-yang-type": "snmpv2-tc:DisplayString",
                  "readOnly": true
                },
                "cvVoIPCallActiveReversedDirectionPeerAddress": {
                  "type": "string",
                  "description": "This object store the reversed direction peer address  If the\n            address is not available, then it will have a length of zero.\n            \n            If the call is ingress then it contains called number and if the\n            call is egress then it contains calling number.",
                  "x-yang-type": "snmpv2-tc:DisplayString",
                  "readOnly": true
                },
                "cvVoIPCallActiveSessionId": {
                  "type": "integer",
                  "description": "This object indicates the active session ID assigned by the\n            call manager to identify call legs that belong to the same call\n            session.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                }
              }
            },
            "readOnly": true
          },
          "cvCallVolConnEntry": {
            "type": "array",
            "description": "An entry in the cvCallVolConnTable indicates\n          number of active calls for a call connection type\n          in the voice gateway.",
            "items": {
              "type": "object",
              "properties": {
                "cvCallVolConnIndex": {
                  "type": "string",
                  "description": "This object represents index to the\n            cvCallVolConnTable.",
                  "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvCallConnectionType",
                  "readOnly": true
                },
                "cvCallVolConnActiveConnection": {
                  "type": "integer",
                  "description": "This object represents the total number of\n            active calls for a connection type \n            in the voice gateway.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                }
              }
            },
            "readOnly": true
          },
          "cvCallVolIfEntry": {
            "type": "array",
            "description": "Each entry represents a row in cvCallVolIfTable\n          and corresponds to the information about an IP \n          interface in the voice gateway.",
            "items": {
              "type": "object",
              "properties": {
                "ifIndex": {
                  "type": "string",
                  "description": "ifIndex",
                  "x-yang-type": "leafref",
                  "readOnly": true
                },
                "cvCallVolMediaIncomingCalls": {
                  "type": "integer",
                  "description": "This object represents the total number of\n            inbound active media calls through this IP \n            interface.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "cvCallVolMediaOutgoingCalls": {
                  "type": "integer",
                  "description": "This object represents the total number of\n            outbound active media calls through the IP \n            interface.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                }
              }
            },
            "readOnly": true
          },
          "cvCallHistoryEntry": {
            "type": "array",
            "description": "cvCallHistoryEntry",
            "items": {
              "type": "object",
              "properties": {
                "cCallHistoryIndex": {
                  "type": "string",
                  "description": "cCallHistoryIndex",
                  "x-yang-type": "leafref",
                  "readOnly": true
                },
                "cvCallHistoryConnectionId": {
                  "type": "string",
                  "description": "The global connection identifier for the\n            telephony leg, which was assigned to the call.",
                  "x-yang-type": "cisco-voice:CvcGUid",
                  "readOnly": true
                },
                "cvCallHistoryTxDuration": {
                  "type": "string",
                  "description": "Duration of Transmit path open from this peer to the\n            voice gateway for the call leg. This counter object will\n            lock at the maximum value which is approximately two\n            days.",
                  "x-yang-type": "dial-control:AbsoluteCounter32",
                  "readOnly": true
                },
                "cvCallHistoryVoiceTxDuration": {
                  "type": "string",
                  "description": "Duration for this call leg. The Voice Utilization Rate\n            can be obtained by dividing this by\n            cvCallHistoryTXDuration object. This counter object will\n            lock at the maximum value which is approximately two\n            days.",
                  "x-yang-type": "dial-control:AbsoluteCounter32",
                  "readOnly": true
                },
                "cvCallHistoryFaxTxDuration": {
                  "type": "string",
                  "description": "Duration of fax transmitted from this peer to voice\n            gateway for this call leg. The FAX Utilization Rate can be\n            obtained by dividing this by cvCallHistoryTXDuration\n            object. This counter object will lock at the maximum\n            value which is approximately two days.",
                  "x-yang-type": "dial-control:AbsoluteCounter32",
                  "readOnly": true
                },
                "cvCallHistoryCoderTypeRate": {
                  "type": "string",
                  "description": "The negotiated coder rate. It specifies the transmit rate\n            of voice/fax compression to its associated call leg for\n            the call.",
                  "x-yang-type": "cisco-voice:CvcCoderTypeRate",
                  "readOnly": true
                },
                "cvCallHistoryNoiseLevel": {
                  "type": "integer",
                  "description": "The object contains the average noise level for the call\n            leg.",
                  "minimum": -2147483648,
                  "maximum": 2147483647,
                  "readOnly": true
                },
                "cvCallHistoryACOMLevel": {
                  "type": "integer",
                  "description": "The object contains the average ACOM level for the call\n            leg. The value -1 indicates the level can not be\n            determined or level detection is disabled.",
                  "minimum": -2147483648,
                  "maximum": 2147483647,
                  "readOnly": true
                },
                "cvCallHistorySessionTarget": {
                  "type": "string",
                  "description": "The object specifies the session target of the peer that\n            is used for the call leg via telephony interface.",
                  "x-yang-type": "snmpv2-tc:DisplayString",
                  "readOnly": true
                },
                "cvCallHistoryImgPageCount": {
                  "type": "string",
                  "description": "The number of FAX related image pages are received or\n            transmitted via the peer for the call leg.",
                  "x-yang-type": "dial-control:AbsoluteCounter32",
                  "readOnly": true
                },
                "cvCallHistoryCallingName": {
                  "type": "string",
                  "description": "The calling party name of the call. If the name is\n            not available, then it will have a length of zero.",
                  "x-yang-type": "snmp-framework:SnmpAdminString",
                  "readOnly": true
                },
                "cvCallHistoryCallerIDBlock": {
                  "type": "boolean",
                  "description": "The object indicates whether or not the caller ID feature\n            is blocked for this call.",
                  "readOnly": true
                },
                "cvCallHistoryAccountCode": {
                  "type": "string",
                  "description": "The object indicates the account code input to the call.\n            It could be used by down stream billing server.\n            The value of empty string indicates no account code input.",
                  "x-yang-type": "snmp-framework:SnmpAdminString",
                  "readOnly": true
                },
                "cvCallHistoryCallId": {
                  "type": "integer",
                  "description": "This object represents the call identifier for the\n            telephony leg, which was assigned to the call.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                }
              }
            },
            "readOnly": true
          },
          "cvVoIPCallHistoryEntry": {
            "type": "array",
            "description": "cvVoIPCallHistoryEntry",
            "items": {
              "type": "object",
              "properties": {
                "cCallHistoryIndex": {
                  "type": "string",
                  "description": "cCallHistoryIndex",
                  "x-yang-type": "leafref",
                  "readOnly": true
                },
                "cvVoIPCallHistoryConnectionId": {
                  "type": "string",
                  "description": "The global connection identifier for the\n            VoIP leg, which was assigned to the call.",
                  "x-yang-type": "cisco-voice:CvcGUid",
                  "readOnly": true
                },
                "cvVoIPCallHistoryRemoteIPAddress": {
                  "type": "string",
                  "description": "Remote system IP address for the call.",
                  "format": "inet:ipv4-address",
                  "readOnly": true
                },
                "cvVoIPCallHistoryRemoteUDPPort": {
                  "type": "integer",
                  "description": "Remote system UDP listener port to which to transmit voice\n            packets for the call.",
                  "minimum": -2147483648,
                  "maximum": 2147483647,
                  "readOnly": true
                },
                "cvVoIPCallHistoryRoundTripDelay": {
                  "type": "integer",
                  "description": "The voice packet round trip delay between local and\n            the remote system on the IP backbone during the call.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "cvVoIPCallHistorySelectedQoS": {
                  "type": "string",
                  "description": "The selected RSVP QoS for the call.",
                  "x-yang-type": "int-serv:QosService",
                  "readOnly": true
                },
                "cvVoIPCallHistorySessionProtocol": {
                  "type": "string",
                  "description": "The object specifies the session protocol to be used\n            for Internet call between local and remote router via\n            IP backbone.",
                  "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvSessionProtocol",
                  "readOnly": true
                },
                "cvVoIPCallHistorySessionTarget": {
                  "type": "string",
                  "description": "The object specifies the session target of the peer that\n            is used for the Voice over IP call.",
                  "x-yang-type": "snmpv2-tc:DisplayString",
                  "readOnly": true
                },
                "cvVoIPCallHistoryOnTimeRvPlayout": {
                  "type": "string",
                  "description": "Duration of voice playout from data received on time for\n            this call. This plus the durations for the GapFills in the\n            following entries gives the Total Voice Playout Duration\n            for Active Voice.\n            This does not include duration for which no data was sent by the\n            Transmit end as voice signal, e.g., silence suppression\n            and fax signal. The On Time Playout Rate can be computed\n            by dividing this entry by the Total Voice Playout Duration.\n            This counter object will lock at the maximum value which\n            is approximately two days.",
                  "x-yang-type": "dial-control:AbsoluteCounter32",
                  "readOnly": true
                },
                "cvVoIPCallHistoryGapFillWithSilence": {
                  "type": "string",
                  "description": "Duration of voice signal replaced with signal played out\n            during silence due to voice data not received on time\n            (or lost) from voice gateway this call. This counter\n            object will lock at the maximum value which is\n            approximately two days.",
                  "x-yang-type": "dial-control:AbsoluteCounter32",
                  "readOnly": true
                },
                "cvVoIPCallHistoryGapFillWithPrediction": {
                  "type": "string",
                  "description": "Duration of voice signal played out with signal synthesized\n            from parameters or samples of data preceding in time due to\n            voice data not received on time (or lost) from voice gateway\n            for this call. An example of such playout is frame-erasure\n            or  frame-concealment strategies in G.729 and G.723.1\n            compression algorithms. This counter object will lock at\n            the maximum value which is approximately two days.",
                  "x-yang-type": "dial-control:AbsoluteCounter32",
                  "readOnly": true
                },
                "cvVoIPCallHistoryGapFillWithInterpolation": {
                  "type": "string",
                  "description": "Duration of voice signal played out with signal synthesized\n            from parameters or samples of data preceding and following\n            in time due to voice data not received on time (or lost)\n            from voice gateway for this call. This counter object\n            will lock at the maximum value which is approximately two\n            days.",
                  "x-yang-type": "dial-control:AbsoluteCounter32",
                  "readOnly": true
                },
                "cvVoIPCallHistoryGapFillWithRedundancy": {
                  "type": "string",
                  "description": "Duration of voice signal played out with signal synthesized\n            from redundancy parameters available due to voice data not\n            received on time (or lost) from voice gateway for this call.\n            This counter object will lock at the maximum value which\n            is approximately two days.",
                  "x-yang-type": "dial-control:AbsoluteCounter32",
                  "readOnly": true
                },
                "cvVoIPCallHistoryHiWaterPlayoutDelay": {
                  "type": "string",
                  "description": "The high water mark Voice Playout FIFO Delay during\n            the voice call. This counter object will lock at the\n            maximum value which is approximately two days.",
                  "x-yang-type": "dial-control:AbsoluteCounter32",
                  "readOnly": true
                },
                "cvVoIPCallHistoryLoWaterPlayoutDelay": {
                  "type": "integer",
                  "description": "The low water mark Voice Playout FIFO Delay during\n            the voice call.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "cvVoIPCallHistoryReceiveDelay": {
                  "type": "integer",
                  "description": "The average Playout FIFO Delay plus the decoder delay\n            during the voice call.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "cvVoIPCallHistoryVADEnable": {
                  "type": "boolean",
                  "description": "The object indicates whether or not the VAD (Voice Activity\n            Detection) was enabled for the voice call.",
                  "readOnly": true
                },
                "cvVoIPCallHistoryCoderTypeRate": {
                  "type": "string",
                  "description": "The negotiated coder rate. It specifies the transmit rate of\n            voice/fax compression to its associated call leg for the\n            call. This rate is different from the configuration rate\n            because of rate negotiation during the call.",
                  "x-yang-type": "cisco-voice:CvcCoderTypeRate",
                  "readOnly": true
                },
                "cvVoIPCallHistoryIcpif": {
                  "type": "integer",
                  "description": "The Calculated Planning Impairment Factor (Icpif) of the\n            call  that is associated to this call leg.\n            The value in this object is computed by the following\n            equation.\n            Icpif of the call =\n            Itotal (total impairment value) of the call - A\n            (Expectation Factor) in the cvVoIPPeerCfgExpectFactor of\n            the call leg associated peer.\n            A value of -1 implies that Icpif was not calculated and is\n            meaningless for this call.",
                  "minimum": -2147483648,
                  "maximum": 2147483647,
                  "readOnly": true
                },
                "cvVoIPCallHistoryLostPackets": {
                  "type": "string",
                  "description": "The number of lost voice packets during the call.",
                  "x-yang-type": "dial-control:AbsoluteCounter32",
                  "readOnly": true
                },
                "cvVoIPCallHistoryEarlyPackets": {
                  "type": "string",
                  "description": "The number of received voice packets that are\n            arrived too early to store in jitter buffer\n            during the call.",
                  "x-yang-type": "dial-control:AbsoluteCounter32",
                  "readOnly": true
                },
                "cvVoIPCallHistoryLatePackets": {
                  "type": "string",
                  "description": "The number of received voice packets that are\n            arrived too late to playout with CODEC (Coder/Decoder)\n            during the call.",
                  "x-yang-type": "dial-control:AbsoluteCounter32",
                  "readOnly": true
                },
                "cvVoIPCallHistoryUsername": {
                  "type": "string",
                  "description": "The textual identifier of the calling party (user) of the\n            call. If the username is not available, then the value of\n            this object will have a length of zero.",
                  "x-yang-type": "snmp-framework:SnmpAdminString",
                  "readOnly": true
                },
                "cvVoIPCallHistoryProtocolCallId": {
                  "type": "string",
                  "description": "The protocol-specific call identifier for the VoIP call.",
                  "format": "binary",
                  "readOnly": true
                },
                "cvVoIPCallHistoryRemSigIPAddrT": {
                  "type": "string",
                  "description": "This object specifies the type of address contained in\n            the associated instance of cvVoIPCallHistoryRemSigIPAddr.",
                  "x-yang-type": "inet-address:InetAddressType",
                  "readOnly": true
                },
                "cvVoIPCallHistoryRemSigIPAddr": {
                  "type": "string",
                  "description": "Remote signalling IP address for the VoIP call.",
                  "x-yang-type": "inet-address:InetAddress",
                  "readOnly": true
                },
                "cvVoIPCallHistoryRemSigPort": {
                  "type": "integer",
                  "description": "Remote signalling listener port to which to transmit\n            voice packets.",
                  "minimum": -2147483648,
                  "maximum": 2147483647,
                  "readOnly": true
                },
                "cvVoIPCallHistoryRemMediaIPAddrT": {
                  "type": "string",
                  "description": "This object specifies the type of address contained in\n            the associated instance of\n            cvVoIPCallHistoryRemMediaIPAddr.",
                  "x-yang-type": "inet-address:InetAddressType",
                  "readOnly": true
                },
                "cvVoIPCallHistoryRemMediaIPAddr": {
                  "type": "string",
                  "description": "Remote media end point IP address for the VoIP call.",
                  "x-yang-type": "inet-address:InetAddress",
                  "readOnly": true
                },
                "cvVoIPCallHistoryRemMediaPort": {
                  "type": "integer",
                  "description": "Remote media end point listener port to which to transmit\n            voice packets.",
                  "minimum": -2147483648,
                  "maximum": 2147483647,
                  "readOnly": true
                },
                "cvVoIPCallHistorySRTPEnable": {
                  "type": "boolean",
                  "description": "The object indicates whether or not the SRTP (Secured RTP)\n            was enabled for the voice call.",
                  "readOnly": true
                },
                "cvVoIPCallHistoryFallbackIcpif": {
                  "type": "integer",
                  "description": "The Calculated Planning Impairment Factor (Icpif) of the\n            call  that is associated to this call leg.\n            The value in this object is computed by the following\n            equation.\n            Icpif of the fallback probe =\n            Itotal (total impairment value)  - configured fallback\n            (Expectation Factor).\n            A value of 0 implies that Icpif was not calculated and is\n            meaningless for this attempt.",
                  "minimum": -2147483648,
                  "maximum": 2147483647,
                  "readOnly": true
                },
                "cvVoIPCallHistoryFallbackLoss": {
                  "type": "string",
                  "description": "FallbackLoss is the percentage of loss packets based on\n            the total packets sent.",
                  "x-yang-type": "dial-control:AbsoluteCounter32",
                  "readOnly": true
                },
                "cvVoIPCallHistoryFallbackDelay": {
                  "type": "integer",
                  "description": "The FallbackDelay is calculated as follows -\n            Take the sum of the round trips for all the probes, \n            divide by the number of probes, \n            and divide by two to get the one-way delay.  \n            Then add in jitter_in or jiter_out,\n            which ever is higher.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "cvVoIPCallHistoryOctetAligned": {
                  "type": "boolean",
                  "description": "If the object has a value true(1) octet align operation\n            is used, and if the value is false(2), bandwidth efficient\n            operation is used. This object is not instantiated when\n            the object cvVoIPCallHistoryCoderTypeRate is not equal to\n            gsmAmrNb enum.",
                  "readOnly": true
                },
                "cvVoIPCallHistoryBitRates": {
                  "type": "string",
                  "description": "This object indicates modes of Bit rates.\n            This object is not instantiated when the object\n            cvVoIPCallHistoryCoderTypeRate is not equal to\n            gsmAmrNb enum.",
                  "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvAmrNbBitRateMode",
                  "readOnly": true
                },
                "cvVoIPCallHistoryModeChgPeriod": {
                  "type": "integer",
                  "description": "The object indicates the interval (N frame-blocks) at which\n            codec mode changes are allowed. This object is not\n            instantiated when the object cvVoIPCallHistoryCoderTypeRate\n            is not equal to gsmAmrNb enum.",
                  "minimum": -2147483648,
                  "maximum": 2147483647,
                  "readOnly": true
                },
                "cvVoIPCallHistoryModeChgNeighbor": {
                  "type": "boolean",
                  "description": "If the object has a value of true(1), mode changes will be\n            made to only neighboring modes set to\n            cvVoIPCallHistoryBitRates object. If the value is false(2),\n            mode changes will be allowed to any modes set to\n            cvVoIPCallHistoryBitRates object. This object is not\n            instantiated when the object cvVoIPCallHistoryCoderTypeRate\n            is not equal to gsmAmrNb enum.",
                  "readOnly": true
                },
                "cvVoIPCallHistoryMaxPtime": {
                  "type": "integer",
                  "description": "The object indicates the maximum amount of media that\n            can be encapsulated in a payload. Supported value is\n            20 msec. This object is not instantiated when the\n            object cvVoIPCallHistoryCoderTypeRate is not equal to\n            gsmAmrNb enum.",
                  "minimum": -2147483648,
                  "maximum": 2147483647,
                  "readOnly": true
                },
                "cvVoIPCallHistoryCRC": {
                  "type": "boolean",
                  "description": "If the object has a value of true(1), frame CRC will be\n            included in the payload and if the value is false(2),\n            frame CRC will not be included in the payload.\n            This object is applicable only when RTP frame type\n            is octet aligned. This object is not instantiated when\n            the object cvVoIPCallHistoryCoderTypeRate is not equal to\n            gsmAmrNb enum.",
                  "readOnly": true
                },
                "cvVoIPCallHistoryRobustSorting": {
                  "type": "boolean",
                  "description": "If the object has a value of true(1), payload employs\n            robust sorting and if the value is false(2), payload\n            does not employ robust sorting. This object is applicable\n            only when RTP frame type is octet aligned. This object\n            is not instantiated when the object\n            cvVoIPCallHistoryCoderTypeRate is not equal to gsmAmrNb\n            enum.",
                  "readOnly": true
                },
                "cvVoIPCallHistoryEncap": {
                  "type": "string",
                  "description": "The object indicates the RTP encapsulation type.\n            Supported RTP encapsulation type is RFC3267.\n            This object is not instantiated when the object\n            cvVoIPCallHistoryCoderTypeRate is not equal to\n            gsmAmrNb enum.",
                  "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvAmrNbRtpEncap",
                  "readOnly": true
                },
                "cvVoIPCallHistoryInterleaving": {
                  "type": "integer",
                  "description": "The object indicates the maximum number of frame-blocks\n            allowed in an interleaving group. It indicates that\n            frame-block level interleaving will be used for that\n            session. If this object is not set, interleaving\n            is not used. This object is applicable only when\n            RTP frame type is octet aligned. This object is not\n            instantiated when the object cvVoIPCallHistoryCoderTypeRate\n            is not equal to gsmAmrNb enum.",
                  "minimum": -2147483648,
                  "maximum": 2147483647,
                  "readOnly": true
                },
                "cvVoIPCallHistoryPtime": {
                  "type": "integer",
                  "description": "The object indicates the length of the time in milliseconds\n            represented by the media of the packet. Supported value is\n            20 milliseconds. This object is not instantiated when the\n            object cvVoIPCallHistoryCoderTypeRate is not equal to\n            gsmAmrNb enum.",
                  "minimum": -2147483648,
                  "maximum": 2147483647,
                  "readOnly": true
                },
                "cvVoIPCallHistoryChannels": {
                  "type": "integer",
                  "description": "The object indicates the number of audio channels.\n            Supported value is 1. This object is not instantiated\n            when the object cvVoIPCallHistoryCoderTypeRate is not equal\n            to gsmAmrNb enum.",
                  "minimum": -2147483648,
                  "maximum": 2147483647,
                  "readOnly": true
                },
                "cvVoIPCallHistoryCoderMode": {
                  "type": "string",
                  "description": "The object indicates the iLBC mode.\n            The value of this object is valid only if \n            cvVoIPCallHistoryCoderTypeRate is equal to \n            'iLBC'.",
                  "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvIlbcFrameMode",
                  "readOnly": true
                },
                "cvVoIPCallHistoryCallId": {
                  "type": "integer",
                  "description": "This object represents the call identifier for the\n            VoIP leg, which was assigned to the call.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "cvVoIPCallHistoryCallReferenceId": {
                  "type": "string",
                  "description": "The call reference ID associates the video call entry and voice\n            call entry of the same endpoint.  An audio-only call may or may\n            not have a valid call reference ID (i.e. value greater than\n            zero), but in both cases, there will not be a video call entry\n            associated with it. \n            \n            For a video call, the video-specific information  is stored in a\n            call entry in cVideoSessionActive of CISCO-VIDEO-SESSION-MIB, in\n            which the call reference ID is also identified.",
                  "x-yang-type": "cisco-voice:CvcCallReferenceIdOrZero",
                  "readOnly": true
                },
                "cvVoIPCallHistorySessionId": {
                  "type": "integer",
                  "description": "This object indicates the session ID assigned by the call\n            manager to identify call legs that belong to the same call\n            session.  This session ID (history) represents a completed call\n            session, whereas the active session ID\n            (cvVoIPCallActiveSessionId) represents an ongoing session.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                }
              }
            },
            "readOnly": true
          },
          "cvCallRateStatsEntry": {
            "type": "array",
            "description": "This is a conceptual-row in cvCallRateStatsTable\n          This entry is created at the system initialization and is\n          updated at every epoch based on CvCallVolumeStatsIntvlType",
            "items": {
              "type": "object",
              "properties": {
                "cvCallRateStatsIntvlDurUnits": {
                  "type": "string",
                  "description": "The Object indexes in Call Rate Table to select one among three\n            interval-tables.\n            \n            The different types in this table are represented by \n            CvCallVolumeStatsIntvlType",
                  "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvCallVolumeStatsIntvlType",
                  "readOnly": true
                },
                "cvCallRateStatsIntvlDur": {
                  "type": "integer",
                  "description": "This is an index that references to the different past periods\n            in given in interval of call rate table.\n            This range is 1-60 for Seconds and Minutes table \n            wherein 1-72 for hours table.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "cvCallRateStatsMaxVal": {
                  "type": "integer",
                  "description": "This object indicates the maximum calls per second\n            that occured for the given period for the given interval.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "cvCallRateStatsAvgVal": {
                  "type": "integer",
                  "description": "This object indicates the average calls per second\n            that occured for the given period for the given interval.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                }
              }
            },
            "readOnly": true
          },
          "cvCallLegRateStatsEntry": {
            "type": "array",
            "description": "This is a conceptual-row in cvCallLegRateStatsTable\n          This entry is created at the system initialization and is\n          updated at every epoch based on CvCallVolumeStatsIntvlType",
            "items": {
              "type": "object",
              "properties": {
                "cvCallLegRateStatsIntvlDurUnits": {
                  "type": "string",
                  "description": "The Object indexes in Call Leg Rate Table to select one among\n            three\n            interval-tables.\n            \n            The different types in this table are represented by \n            CvCallVolumeStatsIntvlType",
                  "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvCallVolumeStatsIntvlType",
                  "readOnly": true
                },
                "cvCallLegRateStatsIntvlDur": {
                  "type": "integer",
                  "description": "This is an index that references to the different past periods\n            in given in interval of call rate table.\n            This range is 1-60 for Seconds and Minutes table \n            wherein 1-72 for hours table.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "cvCallLegRateStatsMaxVal": {
                  "type": "integer",
                  "description": "This object indicates the maximum call-legs per second\n            that occured for the given period for the given interval.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "cvCallLegRateStatsAvgVal": {
                  "type": "integer",
                  "description": "This object indicates the average call-legs per second\n            that occured for the given period for the given interval.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                }
              }
            },
            "readOnly": true
          },
          "cvActiveCallStatsEntry": {
            "type": "array",
            "description": "This is a conceptual-row in cvActiveCallStatsTable\n          This entry is created at the system initialization and is\n          updated at every epoch based on CvCallVolumeStatsIntvlType",
            "items": {
              "type": "object",
              "properties": {
                "cvActiveCallStatsIntvlDurUnits": {
                  "type": "string",
                  "description": "The Object indexes in Active Call Rate Table (con-current calls\n            table) to select one among three interval-tables.\n            \n            The different types in this table are represented by \n            CvCallVolumeStatsIntvlType",
                  "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvCallVolumeStatsIntvlType",
                  "readOnly": true
                },
                "cvActiveCallStatsIntvlDur": {
                  "type": "integer",
                  "description": "This is an index that references to the different past periods\n            in given in interval of active call table.\n            This range is 1-60 for Seconds and Minutes table \n            wherein 1-72 for hours table.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "cvActiveCallStatsMaxVal": {
                  "type": "integer",
                  "description": "This object indicates the maximum number of active call\n            that occured for the given period for the given interval.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "cvActiveCallStatsAvgVal": {
                  "type": "integer",
                  "description": "This object indicates the average number of active calls\n            that occured for the given period for the given interval.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                }
              }
            },
            "readOnly": true
          },
          "cvCallDurationStatsEntry": {
            "type": "array",
            "description": "This is a conceptual-row in cvCallDurationStatsTable\n          This entry is created at the system initialization and is\n          updated at every epoch based on CvCallVolumeStatsIntvlType",
            "items": {
              "type": "object",
              "properties": {
                "cvCallDurationStatsIntvlDurUnits": {
                  "type": "string",
                  "description": "The Object indexes in Call Duration Table to select one among\n            three interval-tables.\n            \n            The different types in this table are represented by \n            CvCallVolumeStatsIntvlType",
                  "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvCallVolumeStatsIntvlType",
                  "readOnly": true
                },
                "cvCallDurationStatsIntvlDur": {
                  "type": "integer",
                  "description": "This is an index that references to the different past periods\n            in given in interval of call Duration table.\n            This range is 1-60 for Seconds and Minutes table \n            wherein 1-72 for hours table.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "cvCallDurationStatsMaxVal": {
                  "type": "integer",
                  "description": "This object indicates the maximum number of calls having a\n            duration which is below the threshold for the given interval.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "cvCallDurationStatsAvgVal": {
                  "type": "integer",
                  "description": "This object indicates the average number of calls having a\n            duration which is below the threshold for the given interval.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                }
              }
            },
            "readOnly": true
          },
          "cvSipMsgRateStatsEntry": {
            "type": "array",
            "description": "This is a conceptual-row in cvSipMsgRateStatsTable\n          This entry is created at the system initialization and is\n          updated at every epoch based on CvCallVolumeStatsIntvlType",
            "items": {
              "type": "object",
              "properties": {
                "cvSipMsgRateStatsIntvlDurUnits": {
                  "type": "string",
                  "description": "The Object indexes in SIP Message Rate Table to select one\n            among three interval-tables.\n            \n            The different types in this table are represented by \n            CvCallVolumeStatsIntvlType",
                  "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvCallVolumeStatsIntvlType",
                  "readOnly": true
                },
                "cvSipMsgRateStatsIntvlDur": {
                  "type": "integer",
                  "description": "This is an index that references to the different past\n            periods in given in interval of SIP message rate table.\n            This range is 1-60 for Seconds and Minutes table \n            wherein 1-72 for hours table.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "cvSipMsgRateStatsMaxVal": {
                  "type": "integer",
                  "description": "This object indicates the maximum SIP messages  per second that\n            is received for the given interval.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "cvSipMsgRateStatsAvgVal": {
                  "type": "integer",
                  "description": "This object indicates the average SIP messages per second that\n            is received for the given interval.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                }
              }
            },
            "readOnly": true
          },
          "cvCallRateWMEntry": {
            "type": "array",
            "description": "This is a conceptual-row in cvCallRateWMTable\n          This entry is created at the system initialization and is\n          updated whenever \n          a) This entry is obsolete OR\n          b) A new/higher entry is available.\n          These entries are reinitialised/added/deleted  if\n          cvCallVolumeWMTableSize is changed",
            "items": {
              "type": "object",
              "properties": {
                "cvCallRateWMIntvlDurUnits": {
                  "type": "string",
                  "description": "The Object indexes in call rate Water mark Table to select one\n            among four interval-tables.\n            \n            The different types in this table are represented by \n            CvCallVolumeWMIntvlType",
                  "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvCallVolumeWMIntvlType",
                  "readOnly": true
                },
                "cvCallRateWMIndex": {
                  "type": "integer",
                  "description": "This is an index that references to different peaks in\n            past period in call rate watermark table.\n            \n            The number of watermarks entries stored for each table are \n            based on cvCallVolumeWMTableSize",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "cvCallRateWMValue": {
                  "type": "integer",
                  "description": "This object indicates high watermark value achieved by the\n            calls per second for the given interval",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "cvCallRateWMts": {
                  "type": "string",
                  "description": "This object indicates date and Time when the high watermark\n            is achieved for calls per second for the given interval",
                  "x-yang-type": "snmpv2-tc:DateAndTime",
                  "readOnly": true
                }
              }
            },
            "readOnly": true
          },
          "cvCallLegRateWMEntry": {
            "type": "array",
            "description": "This is a conceptual-row in cvCallLegRateWMTable\n          This entry is created at the system initialization and is\n          updated whenever \n          a) This entry is obsolete OR\n          b) A new/higher entry is available.\n          These entries are reinitialised/added/deleted  if\n          cvCallVolumeWMTableSize is changed",
            "items": {
              "type": "object",
              "properties": {
                "cvCallLegRateWMIntvlDurUnits": {
                  "type": "string",
                  "description": "The Object indexes in call leg rate Water mark Table to select\n            one\n            among four interval-tables.\n            \n            The different types in this table are represented by \n            CvCallVolumeWMIntvlType",
                  "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvCallVolumeWMIntvlType",
                  "readOnly": true
                },
                "cvCallLegRateWMIndex": {
                  "type": "integer",
                  "description": "This is an index that references to different peaks in\n            past period in call leg rate watermark table.\n            \n            The number of watermarks entries stored for each table are \n            based on cvCallVolumeWMTableSize",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "cvCallLegRateWMValue": {
                  "type": "integer",
                  "description": "This object indicates high watermark value achieved by the\n            call legs per second for the given interval",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "cvCallLegRateWMts": {
                  "type": "string",
                  "description": "This object indicates date and time when the high watermark\n            is achieved for call-legs per second for the given interval",
                  "x-yang-type": "snmpv2-tc:DateAndTime",
                  "readOnly": true
                }
              }
            },
            "readOnly": true
          },
          "cvActiveCallWMEntry": {
            "type": "array",
            "description": "This is a conceptual-row in cvActiveCallWMTable\n          This entry is created at the system initialization and is\n          updated whenever \n          a) This entry is obsolete OR\n          b) A new/higher entry is available.\n          These entries are reinitialised/added/deleted  if\n          cvCallVolumeWMTableSize is changed",
            "items": {
              "type": "object",
              "properties": {
                "cvActiveCallWMIntvlDurUnits": {
                  "type": "string",
                  "description": "The Object indexes in active call Water mark Table to select\n            one among four interval-tables.\n            \n            The different types in this table are represented by \n            CvCallVolumeWMIntvlType",
                  "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvCallVolumeWMIntvlType",
                  "readOnly": true
                },
                "cvActiveCallWMIndex": {
                  "type": "integer",
                  "description": "This is an index that references to different peaks in\n            past period in acive call watermark table.\n            \n            The number of watermarks entries stored for each table are \n            based on cvCallVolumeWMTableSize",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "cvActiveCallWMValue": {
                  "type": "integer",
                  "description": "This object indicates high watermark value achieved by the\n            active calls for the given interval",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "cvActiveCallWMts": {
                  "type": "string",
                  "description": "This object indicates date and time when the high watermark\n            is achieved for active calls for the given interval",
                  "x-yang-type": "snmpv2-tc:DateAndTime",
                  "readOnly": true
                }
              }
            },
            "readOnly": true
          },
          "cvSipMsgRateWMEntry": {
            "type": "array",
            "description": "This is a conceptual-row in cvSipMsgRateWMTable.\n          This entry is created at the system initialization and is\n          updated whenever \n          a) This entry is obsolete OR\n          b) A new/higher entry is available.\n          These entries are reinitialised/added/deleted if\n          cvCallVolumeWMTableSize is changed",
            "items": {
              "type": "object",
              "properties": {
                "cvSipMsgRateWMIntvlDurUnits": {
                  "type": "string",
                  "description": "The Object indexes in SIP Message rate Water mark Table to\n            select one among four interval-tables.\n            \n            The different types in this table are represented by \n            CvCallVolumeWMIntvlType",
                  "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvCallVolumeWMIntvlType",
                  "readOnly": true
                },
                "cvSipMsgRateWMIndex": {
                  "type": "integer",
                  "description": "This is an index that references to different peaks in\n            past period in sip message rate watermark table.\n            \n            The number of watermarks entries stored for each table are \n            based on cvCallVolumeWMTableSize",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "cvSipMsgRateWMValue": {
                  "type": "integer",
                  "description": "This object indicates high watermark value achieved by the\n            SIP messages per second for the given interval",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "cvSipMsgRateWMts": {
                  "type": "string",
                  "description": "This object indicates date and time when the high watermark\n            is achieved for SIP messages per second for the given interval",
                  "x-yang-type": "snmpv2-tc:DateAndTime",
                  "readOnly": true
                }
              }
            },
            "readOnly": true
          },
          "cvGeneralConfiguration": {
            "type": "object",
            "description": "cvGeneralConfiguration",
            "properties": {
              "cvGeneralPoorQoVNotificationEnable": {
                "type": "boolean",
                "description": "This object indicates whether cvdcPoorQoVNotification (or\n          the newer cvdcPoorQoVNotificationRev1) traps should be\n          generated for a poor quality of voice calls.\n          \n          If the value of this object is 'true',\n          cvdcPoorQoVNotification (or the newer\n          cvdcPoorQoVNotificationRev1) traps will be generated\n          for all voice over IP peers when a poor quality of voice\n          call condition is detected after the voice gateway call\n          disconnection.  If the value of this object is 'false',\n          cvdcPoorQoVNotification (or the newer\n          cvdcPoorQoVNotificationRev1) traps will be generated only\n          for calls for which the\n          cvVoIPPeerCfgPoorQoVNotificationEnable object of voice\n          over IP peers having set to 'true'.",
                "readOnly": true
              },
              "cvGeneralFallbackNotificationEnable": {
                "type": "boolean",
                "description": "This object indicates whether cvdcFallbackNotification\n          traps should be generated for fallback.\n          If the value of this object is 'true',\n          cvdcFallbackNotification traps will be generated\n          for all voice over IP peers.",
                "readOnly": true
              },
              "cvGeneralDSCPPolicyNotificationEnable": {
                "type": "boolean",
                "description": "This object indicates whether cvdcPolicyViolationNotification\n          traps should be generated for a RPH to DSCP mapping violation\n          for SIP voice calls.\n          \n          If the value of this object is 'true',\n          cvdcPolicyViolationNotification traps will be generated for SIP\n          voice over IP peers when a RPH to DSCP violation condition is\n          detected .  If the value of this object is 'false',\n          cvdcPolicyViolationNotification traps will be generated only\n          for calls for which the \n          cvVoIPPeerCfgDSCPPolicyNotificationEnable object of voice\n          over IP peers having set to 'true'.",
                "readOnly": true
              },
              "cvGeneralMediaPolicyNotificationEnable": {
                "type": "boolean",
                "description": "This object indicates whether cvdcPolicyViolationNotification\n          traps should be generated for Media violation\n          for SIP voice calls.\n          \n          If the value of this object is 'true',\n          cvdcPolicyViolationNotification traps will be generated for SIP\n          voice over IP peers when media violation condition is\n          detected .  If the value of this object is 'false',\n          cvdcPolicyViolationNotification traps will be generated only\n          for calls for which the \n          cvVoIPPeerCfgMediaPolicyNotificationEnable object of voice\n          over IP peers having set to 'true'.",
                "readOnly": true
              }
            },
            "readOnly": true
          },
          "cvGatewayCallActive": {
            "type": "object",
            "description": "The current number of DS0 interfaces used for the\n          active calls.",
            "properties": {
              "cvCallActiveDS0s": {
                "type": "integer",
                "description": "The current number of DS0 interfaces used for the\n          active calls.",
                "minimum": 0,
                "maximum": 4294967295,
                "readOnly": true
              },
              "cvCallActiveDS0sHighThreshold": {
                "type": "integer",
                "description": "A high threshold used to determine when to generate the\n          cvdcActiveDS0sHighNotification. This object \n          represents the percentage of active DS0s in total number \n          of DS0s.",
                "minimum": 0,
                "maximum": 4294967295,
                "readOnly": true
              },
              "cvCallActiveDS0sLowThreshold": {
                "type": "integer",
                "description": "A low threshold used to determine when to generate the\n          cvdcActiveDS0sLowNotification notification. This object \n          represents the percentage of active DS0s in total number \n          of DS0s.",
                "minimum": 0,
                "maximum": 4294967295,
                "readOnly": true
              },
              "cvCallActiveDS0sHighNotifyEnable": {
                "type": "boolean",
                "description": "Specifies whether or not cvdcActiveDS0sHighNotification\n          should be generated.\n          \n          'true' : Indicates that the cvdcActiveDS0sHighNotification\n                   generation is enabled.\n          \n          'false': Indicates that cvdcActiveDS0sHighNotification\n                   generation is disabled.",
                "readOnly": true
              },
              "cvCallActiveDS0sLowNotifyEnable": {
                "type": "boolean",
                "description": "Specifies whether or not cvdcActiveDS0sLowNotification\n          should be generated.\n          \n          'true' : Indicates that the cvdcActiveDS0sLowNotification\n                   generation is enabled.\n          \n          'false': Indicates that cvdcActiveDS0sLowNotification\n                   generation is disabled.",
                "readOnly": true
              }
            },
            "readOnly": true
          },
          "cvCallVolume": {
            "type": "object",
            "description": "This object represents the total number of\n          active call legs in the voice gateway.",
            "properties": {
              "cvCallVolConnTotalActiveConnections": {
                "type": "integer",
                "description": "This object represents the total number of\n          active call legs in the voice gateway.",
                "minimum": 0,
                "maximum": 4294967295,
                "readOnly": true
              },
              "cvCallVolConnMaxCallConnectionLicenese": {
                "type": "integer",
                "description": "This object represents the licensed call capacity\n          for a voice gateway.  If the value is 0, no \n          licensing is done and the gateway can be \n          accomodate as many calls depending on its capability.",
                "minimum": 0,
                "maximum": 4294967295,
                "readOnly": true
              }
            },
            "readOnly": true
          },
          "cvCallRateMonitor": {
            "type": "object",
            "description": "This object represents the state of call-monitoring.\n          A value of 'true' indicates that call-monitoring \n          is enabled.  A value of 'false' indicates that \n          call-monitoring is disabled.",
            "properties": {
              "cvCallRateMonitorEnable": {
                "type": "boolean",
                "description": "This object represents the state of call-monitoring.\n          A value of 'true' indicates that call-monitoring \n          is enabled.  A value of 'false' indicates that \n          call-monitoring is disabled.",
                "readOnly": true
              },
              "cvCallRateMonitorTime": {
                "type": "integer",
                "description": "This object represents the interval for\n          which the gateway monitors the call-rate.",
                "minimum": 0,
                "maximum": 4294967295,
                "readOnly": true
              },
              "cvCallRate": {
                "type": "integer",
                "description": "This object represents the total number of\n          calls handled by the gateway during the \n          monitored time.",
                "minimum": 0,
                "maximum": 4294967295,
                "readOnly": true
              },
              "cvCallRateHiWaterMark": {
                "type": "integer",
                "description": "This object represents the high water mark\n          for the number of calls handled by the \n          gateway in an unit interval of \n          cvCallRateMonitorTime, from the time \n          the call-monitoring is enabled.",
                "minimum": 0,
                "maximum": 4294967295,
                "readOnly": true
              }
            },
            "readOnly": true
          },
          "cvCallVolumeStatsHistory": {
            "type": "object",
            "description": "This Object specifies the thresold duration in seconds.\n          cvCallDurationStatsTable will monitor all the calls below this \n          threshold.\n          \n          Decresing the value of the threshold will reset this table.",
            "properties": {
              "cvCallDurationStatsThreshold": {
                "type": "integer",
                "description": "This Object specifies the thresold duration in seconds.\n          cvCallDurationStatsTable will monitor all the calls below this \n          threshold.\n          \n          Decresing the value of the threshold will reset this table.",
                "minimum": 0,
                "maximum": 4294967295,
                "readOnly": true
              },
              "cvCallVolumeWMTableSize": {
                "type": "integer",
                "description": "This Object specifies the number of entries the watermark table\n          will maintain.\n          \n          This value will decide the number of elements in\n          cvCallRateWMTable,\n          cvCallLegRateWMTable, cvActiveCallWMTable and\n          cvSipMsgRateWMTable.",
                "minimum": 0,
                "maximum": 4294967295,
                "readOnly": true
              }
            },
            "readOnly": true
          },
          "cvPeerCfgTable": {
            "type": "object",
            "description": "The table contains the Voice Generic Peer information that\n        is used to create an ifIndexed row with an appropriate\n        ifType that is associated with the cvPeerCfgType and\n        cvPeerCfgPeerType objects.",
            "properties": {
              "cvPeerCfgEntry": {
                "type": "array",
                "description": "cvPeerCfgEntry",
                "items": {
                  "type": "object",
                  "properties": {
                    "cvPeerCfgIndex": {
                      "type": "integer",
                      "description": "An arbitrary index that uniquely identifies a generic\n            voice peer.",
                      "minimum": -2147483648,
                      "maximum": 2147483647,
                      "readOnly": true
                    },
                    "cvPeerCfgIfIndex": {
                      "type": "string",
                      "description": "The ifIndex of the peer associated ifEntry. The ifIndex\n            appears after the associated ifEntry is created\n            successfully.\n            This ifIndex will be used to access the objects in the\n            Voice over Telephony or Voice over IP peer specific table.\n            In addition, the ifIndex is also used to access the\n            associated peer configuration entry of the IETF Dial\n            Control MIB. If the peer associated ifEntry had not been\n            created, then this object has a value of zero.",
                      "x-yang-type": "if-mib:InterfaceIndexOrZero",
                      "readOnly": true
                    },
                    "cvPeerCfgType": {
                      "type": "string",
                      "description": "Specifies the type of voice related encapsulation.\n            voice - voice encapsulation (voiceEncap ifType) on the\n                    telephony network.\n            voip  - VoIP encapsulation (voiceOverIp ifType) on the IP\n                    network.\n            mmail - Media Mail over IP encapsulation (mediaMailOverIp\n                    ifType) on the IP network.\n            voatm - VoATM encapsulation (voiceOverATM ifType) on the\n                    ATM network.\n            vofr  - VoFR encapsulation (voiceOverFR ifType) on the\n                    Frame Relay network.",
                      "readOnly": true
                    },
                    "cvPeerCfgRowStatus": {
                      "type": "string",
                      "description": "This object is used to create a new row or modify or\n            delete an existing row in this table.",
                      "x-yang-type": "snmpv2-tc:RowStatus",
                      "readOnly": true
                    },
                    "cvPeerCfgPeerType": {
                      "type": "string",
                      "description": "Specifies the type of a peer.\n            voice - peer in voice type to be defined in a voice\n                    gateway for voice calls. \n            data  - peer in data type to be defined in gateway\n                    that supports universal ports for modem/data\n                    calls and integrated ports for data calls.",
                      "readOnly": true
                    }
                  }
                },
                "readOnly": true
              }
            },
            "readOnly": true
          },
          "cvVoicePeerCfgTable": {
            "type": "object",
            "description": "The table contains the Voice over Telephony peer specific\n        information that is required to accept voice calls or to\n        which it will place them or perform various loopback tests\n        via interface.",
            "properties": {
              "cvVoicePeerCfgEntry": {
                "type": "array",
                "description": "A single Voice specific Peer. One entry per voice\n          encapsulation.\n          The entry is created when its associated 'voiceEncap(103)'\n          encapsulation ifEntry is created.\n          This entry is deleted when its associated ifEntry is\n          deleted.",
                "items": {
                  "type": "object",
                  "properties": {
                    "ifIndex": {
                      "type": "string",
                      "description": "ifIndex",
                      "x-yang-type": "leafref",
                      "readOnly": true
                    },
                    "cvVoicePeerCfgSessionTarget": {
                      "type": "string",
                      "description": "The object specifies the session target of the peer.\n            Session Targets definitions:\n            The session target has the syntax used by the IETF service\n            location protocol. The syntax is as follows:\n            \n            mapping-type:type-specific-syntax\n            \n            the mapping-type specifies a scheme for mapping the\n            matching dial string to a session target.\n            \n            The valid Mapping type definitions for the peer are as\n            follows:\n            loopback - Syntax: loopback:where\n               'where' string is defined as follows:\n               compressed - loopback is performed on compressed voice\n                            as close to the CODEC which processes the\n                            data as possible.\n               uncompressed - loopback is performed on the PCM or\n                            analog voice as close to the telephony\n                            endpoint as possible.\n            \n            Local loopback case:\n            uncompressed - the PCM voice coming into the DSP is simply\n                turned around and sent back out, allowing testing of\n                the transmit--> receive paths in the telephony\n                endpoint.\n            compressed - the compressed voice coming out of the CODEC is\n                turned around on the DSP module and fed back into the\n                decompressor through the jitter buffer. In addition to\n                the telephony endpoint, this tests both the encode and\n                decode paths without involving data paths or packet\n                handling on the host router.\n            \n            Remote loopback case:\n            compressed - RTP packets received from the network are\n                decapsulated and passed to the DSP board. Instead of\n                feeding these into the CODEC for decompression, they\n                are immediately sent back to the session application\n                as if they had originated locally and been compressed.\n            uncompressed - In addition to the above, the voice samples\n                are sent all the way through the CODEC and then turned\n                around instead of being sent to the telephony\n                endpoint",
                      "x-yang-type": "snmpv2-tc:DisplayString",
                      "readOnly": true
                    },
                    "cvVoicePeerCfgDialDigitsPrefix": {
                      "type": "string",
                      "description": "The object specifies the prefix of the dial digits for the\n            peer. The dial digits prefix is sent to telephony\n            interface before the real phone number when the system\n            places the outgoing call to the voice encapsulation peer\n            over telephony interface.",
                      "x-yang-type": "snmpv2-tc:DisplayString",
                      "readOnly": true
                    },
                    "cvVoicePeerCfgDIDCallEnable": {
                      "type": "boolean",
                      "description": "The object enables/disables the DID call treatment for\n            incoming DNIS digits.\n            true  - treat the incoming DNIS digits as if the digits\n                    are received from DID trunk.\n            false - Disable DID call treatment for incoming DNIS\n                    digits.",
                      "readOnly": true
                    },
                    "cvVoicePeerCfgCasGroup": {
                      "type": "string",
                      "description": "The object specifies the CAS group number of a CAS\n            capable T1/E1  that is in the dialCtlPeerCfgLowerIf object\n            of RFC2128.\n            This object can be set to a valid CAS group number only if\n            the dialCtlPeerCfgLowerIf contains a valid ifIndex for a\n            CAS capable T1/E1. The object must set to -1 before the\n            value of the  dialCtlPeerCfgLowerIf object of RFC2128 can\n            be changed.",
                      "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvCasGroup",
                      "readOnly": true
                    },
                    "cvVoicePeerCfgRegisterE164": {
                      "type": "boolean",
                      "description": "This object specifies that the E.164 number specified in\n            the dialCtlPeerCfgOriginateAddress field of the associated\n            dialCtlPeerCfgTable entry be registered as an extension \n            phone number of this gateway for H323 gatekeeper and/or \n            SIP registrar.",
                      "readOnly": true
                    },
                    "cvVoicePeerCfgForwardDigits": {
                      "type": "integer",
                      "description": "This object specifies the number of dialed digits to\n            forward to the remote destination in the setup message.\n            The object can take the value:\n                0-32 number of right justified digits to forward\n                -1 default\n                -2 forward extra digits i.e those over and above\n                   those needed to match to the destination pattern\n                -3 forward all digits",
                      "minimum": -2147483648,
                      "maximum": 2147483647,
                      "readOnly": true
                    },
                    "cvVoicePeerCfgEchoCancellerTest": {
                      "type": "string",
                      "description": "This object specifies which, if any, test to run in the\n            echo canceller when a call from the network is connected.\n            echoCancellerTestNone    - do not run a test.\n            echoCancellerG168Test2A  - run ITU-T G.168 Test 2A.\n            echoCancellerG168Test2B  - run ITU-T G.168 Test 2B.\n            echoCancellerG168Test2Ca - run ITU-T G.168 Test 2C(a).\n            echoCancellerG168Test2Cb - run ITU-T G.168 Test 2C(b).\n            echoCancellerG168Test3A  - run ITU-T G.168 Test 3A.\n            echoCancellerG168Test3B  - run ITU-T G.168 Test 3B.\n            echoCancellerG168Test3C  - run ITU-T G.168 Test 3C.\n            echoCancellerG168Test4   - run ITU-T G.168 Test 4.\n            echoCancellerG168Test5   - run ITU-T G.168 Test 5.\n            echoCancellerG168Test6   - run ITU-T G.168 Test 6.\n            echoCancellerG168Test7   - run ITU-T G.168 Test 7.\n            echoCancellerG168Test9   - run ITU-T G.168 Test 9.",
                      "readOnly": true
                    }
                  }
                },
                "readOnly": true
              }
            },
            "readOnly": true
          },
          "cvVoIPPeerCfgTable": {
            "type": "object",
            "description": "The table contains the Voice over IP (VoIP) peer specific\n        information that is required to accept voice calls or to\n        which it will place them via IP backbone with the\n        specified session protocol in cvVoIPPeerCfgSessionProtocol.",
            "properties": {
              "cvVoIPPeerCfgEntry": {
                "type": "array",
                "description": "A single VoIP specific Peer. One entry per VoIP\n          encapsulation.\n          The entry is created when its associated 'voiceOverIp(104)'\n          encapsulation ifEntry is created.\n          This entry is deleted when its associated ifEntry is\n          deleted.",
                "items": {
                  "type": "object",
                  "properties": {
                    "ifIndex": {
                      "type": "string",
                      "description": "ifIndex",
                      "x-yang-type": "leafref",
                      "readOnly": true
                    },
                    "cvVoIPPeerCfgSessionProtocol": {
                      "type": "string",
                      "description": "The object specifies the session protocol to be used\n            for Internet call between local and remote router via\n            IP backbone.",
                      "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvSessionProtocol",
                      "readOnly": true
                    },
                    "cvVoIPPeerCfgDesiredQoS": {
                      "type": "string",
                      "description": "The object specifies the user requested Quality of Service\n            for the call.",
                      "x-yang-type": "int-serv:QosService",
                      "readOnly": true
                    },
                    "cvVoIPPeerCfgMinAcceptableQoS": {
                      "type": "string",
                      "description": "The object specifies the minimally acceptable Quality of\n            Service for the call.",
                      "x-yang-type": "int-serv:QosService",
                      "readOnly": true
                    },
                    "cvVoIPPeerCfgSessionTarget": {
                      "type": "string",
                      "description": "The object specifies the session target of the peer.\n            Session Targets definitions:\n            The session target has the syntax used by the IETF service\n            location protocol. The syntax is as follows:\n            \n            mapping-type:type-specific-syntax\n            \n            the mapping-type specifies a scheme for mapping the\n            matching dial string to a session target. The\n            type-specific-syntax is exactly that, something that the\n            particular mapping scheme can understand.\n            For example,\n            Session target           Meaning\n            ipv4:171.68.13.55:1006   The session target is the IP\n                                     version 4 address of 171.68.13.55\n                                     and port 1006.\n            dns:pots.cisco.com:1661  The session target is the IP host\n                                     with dns name pots.cisco.com, and\n                                     port 1661.\n            ras                      The session target is the\n                                     gatekeeper with RAS (Registration\n                                     , Admission,  Status protocol).\n            settlement               The session target is the\n                                     settlement server.\n            enum:1                   The session target is the enum \n                                     profile match table 1.\n            \n            The valid Mapping type definitions for the peer are as\n            follows:\n            ipv4       - Syntax: ipv4:w.x.y.z:port or  ipv4:w.x.y.z\n            dns        - Syntax: dns:host.domain:port or\n                                 dns:host.domain\n            ras        - Syntax: ras\n            settlement - Syntax: settlement\n            enum       - Syntax: enum:\n            \n            loopback - Syntax: loopback:where\n               'where' string is defined as follows:\n               rtp - loopback is performed at the transport protocol\n                     level.\n            \n            Local loopback case:\n            rtp - the session application sets up an RTP stream to\n                itself (i.e. actually allocates a port pair and opens\n                the appropriate UDP sockets). It then does the full\n                RTP encapsulation, sends the packets to the loopback\n                IP address, receives the RTP packets, and hands the\n                compressed voice back to the CODEC. This tests the\n                entire local processing path, both transmit and\n                receive, in the router, as well as all of the above\n                paths.\n            \n            Remote loopback case:\n            rtp: RTP packets received from the network are decapsulated and\n                 immediately re-encapsulated in the outbound RTP\n                 stream, using the same media clock (i.e. timestamp)\n                 as the received packet. They are then sent back to\n                 the remote source router as if the voice had\n                 originated on a telephony port on the local router.",
                      "x-yang-type": "snmpv2-tc:DisplayString",
                      "readOnly": true
                    },
                    "cvVoIPPeerCfgCoderRate": {
                      "type": "string",
                      "description": "This object specifies the most desirable codec of speech\n            for the VoIP peer.",
                      "x-yang-type": "cisco-voice:CvcSpeechCoderRate",
                      "readOnly": true
                    },
                    "cvVoIPPeerCfgFaxRate": {
                      "type": "string",
                      "description": "This object specifies the default transmit rate of FAX\n            the VoIP peer. If the value of this object is 'none',\n            then the Fax relay feature is disabled; otherwise the Fax\n            relay feature is enabled.",
                      "x-yang-type": "cisco-voice:CvcFaxTransmitRate",
                      "readOnly": true
                    },
                    "cvVoIPPeerCfgVADEnable": {
                      "type": "boolean",
                      "description": "This object specifies whether or not the VAD (Voice\n            Activity Detection) voice data is continuously transmitted\n            to IP backbone.",
                      "readOnly": true
                    },
                    "cvVoIPPeerCfgExpectFactor": {
                      "type": "integer",
                      "description": "This object specifies the user requested Expectation\n            Factor of voice quality for the call via this peer.",
                      "minimum": -2147483648,
                      "maximum": 2147483647,
                      "readOnly": true
                    },
                    "cvVoIPPeerCfgIcpif": {
                      "type": "integer",
                      "description": "This object specifies the user requested Calculated\n            Planning Impairment Factor (Icpif) for the call via this\n            peer.",
                      "minimum": -2147483648,
                      "maximum": 2147483647,
                      "readOnly": true
                    },
                    "cvVoIPPeerCfgPoorQoVNotificationEnable": {
                      "type": "boolean",
                      "description": "This object specifies whether cvdcPoorQoVNotification (or\n            the newer cvdcPoorQoVNotificationRev1) traps should be\n            generated for the call that is associated with this\n            peer.",
                      "readOnly": true
                    },
                    "cvVoIPPeerCfgUDPChecksumEnable": {
                      "type": "boolean",
                      "description": "This object specifies whether the outgoing voice related\n            UDP packet contains a valid checksum value.\n            true  - enable the checksum of outgoing voice UDP packets\n            false - disable the checksum of outgoing voice UDP packets",
                      "readOnly": true
                    },
                    "cvVoIPPeerCfgIPPrecedence": {
                      "type": "integer",
                      "description": "This object specifies the value to be stored in the IP\n            Precedence field of voice packets, with values ranging\n            from 0 (normal precedence) through 7 (network control),\n            allowing the managed system to set the importance of each\n            voice packet for delivering them to the destination peer.",
                      "minimum": -2147483648,
                      "maximum": 2147483647,
                      "readOnly": true
                    },
                    "cvVoIPPeerCfgTechPrefix": {
                      "type": "string",
                      "description": "This object specifies the technology prefix of the peer,\n            The technology prefix and the called party address\n            are passed in Admission Request (ARQ) to gatekeeper\n            for the called party address resolution during call setup.",
                      "x-yang-type": "snmpv2-tc:DisplayString",
                      "readOnly": true
                    },
                    "cvVoIPPeerCfgDigitRelay": {
                      "type": "string",
                      "description": "This object specifies the methods to transmit dial digits\n            (DTMF or MF digits) via IP network.\n            rtpCisco       - Enable capability to transmit dial digits\n                             with Cisco proprietary RTP payload type.\n            h245Signal     - Enable capability to transmit dtmf digits\n                             across the H.245 channel, via the signal\n                             field of the UserInputIndication message\n            h245Alphanumeric - Enable capability to transmit dtmf\n                             digit across the H.245 channel, via the\n                             string or alphanumeric fields of the\n                             UserInputIndication message\n            rtpNte         - Enable capability to transmit dial digits\n                             using Named Telephony Event per RFC 2833\n                             section 3.\n            sipNotify      - Enable capability to transmit dtmf\n                             digits using unsolicited SIP NOTIFY\n                             messages. This mechanism is only available\n                             for SIP dialpeers.\n            sipKpml        - Enable capability to transmit dtmf\n                             digits using KPML over SIP SUBSCRIBE\n                             and NOTIFY messages. This mechanism is\n                             only available for SIP dialpeers.\n            \n            \n            Modifying the value of cvVoIPPeerCfgSessionProtocol\n            can reset the digit-relay method associated bits value in\n            this object if the modified session protocol does not\n            support  these digit-relay methods.",
                      "readOnly": true
                    },
                    "cvVoIPPeerCfgCoderBytes": {
                      "type": "integer",
                      "description": "This object specifies the size of the voice payload sample\n            to be produced by the coder specified in\n            cvVoIPPeerCfgCoderRate.\n            Each coder sample produces 10 bytes of voice payload. The\n            specified value will be rounded down to the nearest valid\n            size.\n            \n            A value of 0, specifies that the coder defined by\n            cvVoIPPeerCfgCoderRate should produce its default payload\n            size.",
                      "minimum": -2147483648,
                      "maximum": 2147483647,
                      "readOnly": true
                    },
                    "cvVoIPPeerCfgFaxBytes": {
                      "type": "integer",
                      "description": "This object specifies the payload size to be produced by\n            the coder when it is generating fax data. A value of 0,\n            specifies that the coder specified in\n            cvVoIPCfgPeerCoderRate should produce its default fax\n            payload size.",
                      "minimum": -2147483648,
                      "maximum": 2147483647,
                      "readOnly": true
                    },
                    "cvVoIPPeerCfgInBandSignaling": {
                      "type": "string",
                      "description": "This object specifies the type of in-band signaling that\n            will be used between the end points of the call. It is\n            used by the router to determine how to interpret ABCD\n            signaling bits sent as part of voice payload data.",
                      "x-yang-type": "cisco-voice:CvcInBandSignaling",
                      "readOnly": true
                    },
                    "cvVoIPPeerCfgMediaSetting": {
                      "type": "string",
                      "description": "This object specifies how the media is to be setup on\n            an IP-IP Gateway. Two choices are valid: flow-through\n            and flow-around. When in flow-through mode, which is the\n            default setting, the IP-IP Gateway will terminate and \n            then re-originate the media stream. When flow-around\n            is configured the Gateway will not be involved with the\n            media, since it will flow-around the Gateway and will\n            be established directly between the endpoints.",
                      "readOnly": true
                    },
                    "cvVoIPPeerCfgDesiredQoSVideo": {
                      "type": "string",
                      "description": "The object specifies the user requested Quality of Service\n            for the video portion of the call.",
                      "x-yang-type": "int-serv:QosService",
                      "readOnly": true
                    },
                    "cvVoIPPeerCfgMinAcceptableQoSVideo": {
                      "type": "string",
                      "description": "The object specifies the minimally acceptable Quality of\n            Service for the video portion of the call.",
                      "x-yang-type": "int-serv:QosService",
                      "readOnly": true
                    },
                    "cvVoIPPeerCfgRedirectip2ip": {
                      "type": "boolean",
                      "description": "This object specifies the Inbound VoIP calls that match\n            an outbound VoIP dialpeer will be responded with a SIP \n            redirect(for inbound SIP) or H.450.3 call-forward(for \n            inbound H.323).",
                      "readOnly": true
                    },
                    "cvVoIPPeerCfgOctetAligned": {
                      "type": "boolean",
                      "description": "If the object has a value true(1) octet align operation\n            is used, and if the value is false(2), bandwidth efficient\n            operation is used. This object is not instantiated when\n            the object cvVoIPPeerCfgCoderRate is not equal to\n            gsmAmrNb enum.",
                      "readOnly": true
                    },
                    "cvVoIPPeerCfgBitRates": {
                      "type": "string",
                      "description": "This object indicates modes of Bit rates. One or more\n            upto four modes can be configured at the same time as\n            bit rates can be changed dynamically for AMR-NB codec.\n            This object is not instantiated when the object\n            cvVoIPPeerCfgCoderRate is not equal to gsmAmrNb enum.",
                      "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvAmrNbBitRateMode",
                      "readOnly": true
                    },
                    "cvVoIPPeerCfgCRC": {
                      "type": "boolean",
                      "description": "If the object has a value of true(1), frame CRC will be\n            included in the payload and if the value is false(2),\n            frame CRC will not be included in the payload.\n            This object is applicable only when RTP frame type\n            is octet aligned. This object is not instantiated when\n            the object cvVoIPPeerCfgCoderRate is not equal to\n            gsmAmrNb enum.",
                      "readOnly": true
                    },
                    "cvVoIPPeerCfgCoderMode": {
                      "type": "string",
                      "description": "This object indicates the iLBC codec mode to be used.\n            The value of this object is valid only if \n            cvVoIPPeerCfgCoderRate is equal to 'iLBC'.",
                      "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvIlbcFrameMode",
                      "readOnly": true
                    },
                    "cvVoIPPeerCfgCodingMode": {
                      "type": "string",
                      "description": "This object specifies the coding mode to be used. The object is\n            instantiated only if cvVoIPPeerCfgCoderRate is 'iSAC'. Following\n            coding modes are supported:\n            adaptive    (1) - adaptive mode where iSAC performs bandwidth  \n                              estimation and adapts to the available channel\n            \n                              bandwidth.\n            independent (2) - independent mode in which no bandwidth\n            estimation \n                              is performed.",
                      "readOnly": true
                    },
                    "cvVoIPPeerCfgBitRate": {
                      "type": "integer",
                      "description": "This object specifies the target bit rate. The object is\n            instantiated only if cvVoIPPeerCfgCoderRate is 'iSAC'.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "cvVoIPPeerCfgFrameSize": {
                      "type": "string",
                      "description": "This object specifies the frame size used. The object is\n            instantiated only if cvVoIPPeerCfgCoderRate is 'iSAC'.\n            The frame size can be 30 ms or 60 ms, and it can be fixed for\n            all packets or vary depending on the configuration and bandwidth\n            estimation. Thus it can have the following values:\n            frameSize30      - initial frame size of 30 ms\n            frameSize60      - initial frame size of 60 ms\n            frameSize30fixed - fixed frame size 30 ms\n            frameSize60fixed - fixed frame size 60 ms",
                      "readOnly": true
                    },
                    "cvVoIPPeerCfgDSCPPolicyNotificationEnable": {
                      "type": "boolean",
                      "description": "This object specifies whether cvdcPolicyViolationNotification\n            traps should be generated for the call that is associated with\n            this peer for RPH to DSCP mapping and policing feature.",
                      "readOnly": true
                    },
                    "cvVoIPPeerCfgMediaPolicyNotificationEnable": {
                      "type": "boolean",
                      "description": "This object specifies whether cvdcPolicyViolationNotification\n            traps should be generated for the call that is associated with\n            this peer for Media policing feature..",
                      "readOnly": true
                    }
                  }
                },
                "readOnly": true
              }
            },
            "readOnly": true
          },
          "cvPeerCommonCfgTable": {
            "type": "object",
            "description": "The table contains the Voice specific peer common\n        configuration information that is required to accept voice\n        calls or to which it will place them or process the\n        incoming calls.",
            "properties": {
              "cvPeerCommonCfgEntry": {
                "type": "array",
                "description": "A single Voice specific Peer. One entry per voice related\n          encapsulation.\n          The entry is created when a voice related encapsulation\n          ifEntry is created.\n          This entry is deleted when its associated ifEntry is\n          deleted.",
                "items": {
                  "type": "object",
                  "properties": {
                    "ifIndex": {
                      "type": "string",
                      "description": "ifIndex",
                      "x-yang-type": "leafref",
                      "readOnly": true
                    },
                    "cvPeerCommonCfgIncomingDnisDigits": {
                      "type": "string",
                      "description": "The object specifies the prefix of the incoming Dialed\n            Number Identification Service (DNIS) digits for the peer.\n            The DNIS digits prefix is used to match with the incoming\n            DNIS number for incoming call discrimination. If the\n            digits in this object are matched with incoming DNIS\n            number, the  associated dialCtlPeerCfgInfoType in RFC 2128\n            will be used as a call discriminator for differentiating\n            speech, data, fax, video or modem calls.",
                      "x-yang-type": "snmpv2-tc:DisplayString",
                      "readOnly": true
                    },
                    "cvPeerCommonCfgMaxConnections": {
                      "type": "integer",
                      "description": "The object specifies the maximum allowed connection\n            to/from the peer. A value of -1 disables the limit of\n            maximum connections.",
                      "minimum": -2147483648,
                      "maximum": 2147483647,
                      "readOnly": true
                    },
                    "cvPeerCommonCfgApplicationName": {
                      "type": "string",
                      "description": "The object specifies the application to handle the incoming\n            call after the peer is selected.\n            If no application name is specified, then the default\n            session application will take care of the incoming call.",
                      "x-yang-type": "snmpv2-tc:DisplayString",
                      "readOnly": true
                    },
                    "cvPeerCommonCfgPreference": {
                      "type": "integer",
                      "description": "This object specifies the selection preference of a peer\n            when multiple peers are matched to the selection criteria.\n            The value of 0 has the lowest preference for peer\n            selection.",
                      "minimum": -2147483648,
                      "maximum": 2147483647,
                      "readOnly": true
                    },
                    "cvPeerCommonCfgHuntStop": {
                      "type": "boolean",
                      "description": "This object specifies whether dialpeer hunting should stop\n            when this peer is reached.",
                      "readOnly": true
                    },
                    "cvPeerCommonCfgDnisMappingName": {
                      "type": "string",
                      "description": "The object specifies a Dialer Number Identification\n            Service (DNIS) map name for the Voice specific peer\n            entry specified in this row. A DNIS is a called party\n            number and they can be grouped and identified by DNIS\n            map.",
                      "x-yang-type": "cisco-voice-dnis:DnisMapname",
                      "readOnly": true
                    },
                    "cvPeerCommonCfgSourceCarrierId": {
                      "type": "string",
                      "description": "The object specifies the Source Carrier Id for the peer.\n            The Source Carrier Id is used to match with the Source\n            Carrier Id of a call. If the Source Carrier Id in this\n            object is matched with the Source Carrier Id of a call,\n            then the associated peer will be used to handle the call. \n            Only alphanumeric characters, '-' and '_' are allowed in\n            the string.",
                      "x-yang-type": "snmp-framework:SnmpAdminString",
                      "readOnly": true
                    },
                    "cvPeerCommonCfgTargetCarrierId": {
                      "type": "string",
                      "description": "The object specifies the Target Carrier Id for the peer.\n            The Target Carrier Id is used to match with the Target\n            Carrier Id of a call. If the Target Carrier Id in this\n            object is matched with the Target Carrier Id of a call,\n            then the associated peer will be used to handle the call.\n            Only alphanumeric characters, '-' and '_' are allowed in\n            the string.",
                      "x-yang-type": "snmp-framework:SnmpAdminString",
                      "readOnly": true
                    },
                    "cvPeerCommonCfgSourceTrunkGrpLabel": {
                      "type": "string",
                      "description": "The object specifies the Source Trunk Group Label for the\n            peer. The Source Trunk Group Label is used to match with\n            the Source Trunk Group Label of a call. If the Source\n            Trunk Group Label in this object is matched with the\n            Source Trunk Group Label of a call, then the associated\n            peer will be used to handle the call. \n            Only alphanumeric characters, '-' and '_' are allowed in\n            the string.",
                      "x-yang-type": "snmp-framework:SnmpAdminString",
                      "readOnly": true
                    },
                    "cvPeerCommonCfgTargetTrunkGrpLabel": {
                      "type": "string",
                      "description": "The object specifies the Target Trunk Group Label for the\n            peer. The Target Trunk Group Label is used to match with\n            the Target Trunk Group Label of a call. If the Target\n            Trunk Group Label in this object is matched with the\n            Target Trunk Group Label of a call, then the associated\n            peer will be used to handle the call.\n            Only alphanumeric characters, '-' and '_' are allowed in\n            the string.",
                      "x-yang-type": "snmp-framework:SnmpAdminString",
                      "readOnly": true
                    }
                  }
                },
                "readOnly": true
              }
            },
            "readOnly": true
          },
          "cvCallActiveTable": {
            "type": "object",
            "description": "This table is the voice extension to the call active table\n        of IETF Dial Control MIB. It contains voice encapsulation\n        call leg information that is derived from the statistics\n        of lower layer telephony interface.",
            "properties": {
              "cvCallActiveEntry": {
                "type": "array",
                "description": "cvCallActiveEntry",
                "items": {
                  "type": "object",
                  "properties": {
                    "callActiveSetupTime": {
                      "type": "string",
                      "description": "callActiveSetupTime",
                      "x-yang-type": "leafref",
                      "readOnly": true
                    },
                    "callActiveIndex": {
                      "type": "string",
                      "description": "callActiveIndex",
                      "x-yang-type": "leafref",
                      "readOnly": true
                    },
                    "cvCallActiveConnectionId": {
                      "type": "string",
                      "description": "The global connection identifier for the\n            active telephony leg of the call.",
                      "x-yang-type": "cisco-voice:CvcGUid",
                      "readOnly": true
                    },
                    "cvCallActiveTxDuration": {
                      "type": "string",
                      "description": "Duration of Transmit path open from this peer to the\n            voice gateway for the call leg. This counter object will\n            lock at the maximum value which is approximately two\n            days.",
                      "x-yang-type": "dial-control:AbsoluteCounter32",
                      "readOnly": true
                    },
                    "cvCallActiveVoiceTxDuration": {
                      "type": "string",
                      "description": "Duration of voice transmitted from this peer to voice\n            gateway for this call leg. The Voice Utilization Rate can\n            be obtained by dividing this by cvCallActiveTXDuration\n            object. This counter object will lock at the maximum\n            value which is approximately two days.",
                      "x-yang-type": "dial-control:AbsoluteCounter32",
                      "readOnly": true
                    },
                    "cvCallActiveFaxTxDuration": {
                      "type": "string",
                      "description": "Duration of fax transmitted from this peer to voice gateway\n            for this call leg. The FAX Utilization Rate can be\n            obtained by dividing this by cvCallActiveTXDuration\n            object. This counter object will lock at the maximum\n            value which is approximately two days.",
                      "x-yang-type": "dial-control:AbsoluteCounter32",
                      "readOnly": true
                    },
                    "cvCallActiveCoderTypeRate": {
                      "type": "string",
                      "description": "The negotiated coder rate. It specifies the transmit rate of\n            voice/fax compression to its associated call leg for the\n            call.",
                      "x-yang-type": "cisco-voice:CvcCoderTypeRate",
                      "readOnly": true
                    },
                    "cvCallActiveNoiseLevel": {
                      "type": "integer",
                      "description": "The object contains the active noise level for the call\n            leg.",
                      "minimum": -2147483648,
                      "maximum": 2147483647,
                      "readOnly": true
                    },
                    "cvCallActiveACOMLevel": {
                      "type": "integer",
                      "description": "The object contains the sum of Echo Return Loss (ERL),\n            cancellation loss (Echo Return Loss Enhancement) and\n            nonlinear processing loss for the call leg.\n            The value -1 indicates the level can not be determined or\n            level detection is disabled.",
                      "minimum": -2147483648,
                      "maximum": 2147483647,
                      "readOnly": true
                    },
                    "cvCallActiveOutSignalLevel": {
                      "type": "integer",
                      "description": "The object contains the active output signal level to\n            telephony interface that is used by the call leg.",
                      "minimum": -2147483648,
                      "maximum": 2147483647,
                      "readOnly": true
                    },
                    "cvCallActiveInSignalLevel": {
                      "type": "integer",
                      "description": "The object contains the active input signal level from\n            telephony interface that is used by the call leg.",
                      "minimum": -2147483648,
                      "maximum": 2147483647,
                      "readOnly": true
                    },
                    "cvCallActiveERLLevel": {
                      "type": "integer",
                      "description": "The object contains the current Echo Return Loss (ERL)\n            level for the call leg.\n            The value -1 indicates the level can not be determined or\n            level detection is disabled.",
                      "minimum": -2147483648,
                      "maximum": 2147483647,
                      "readOnly": true
                    },
                    "cvCallActiveSessionTarget": {
                      "type": "string",
                      "description": "The object specifies the session target of the peer that\n            is used for the call leg. This object is set with the\n            information in the call associated\n            cvVoicePeerCfgSessionTarget object when the call is\n            connected.",
                      "x-yang-type": "snmpv2-tc:DisplayString",
                      "readOnly": true
                    },
                    "cvCallActiveImgPageCount": {
                      "type": "string",
                      "description": "The number of FAX related image pages are received or\n            transmitted via the peer for the call leg.",
                      "x-yang-type": "dial-control:AbsoluteCounter32",
                      "readOnly": true
                    },
                    "cvCallActiveCallingName": {
                      "type": "string",
                      "description": "The calling party name of the call. If the name is\n            not available, then it will have a length of zero.",
                      "x-yang-type": "snmp-framework:SnmpAdminString",
                      "readOnly": true
                    },
                    "cvCallActiveCallerIDBlock": {
                      "type": "boolean",
                      "description": "The object indicates whether or not the caller ID feature\n            is blocked for this call.",
                      "readOnly": true
                    },
                    "cvCallActiveEcanReflectorLocation": {
                      "type": "integer",
                      "description": "The location in milliseconds of the largest amplitude\n            reflector detected by the echo canceller for this call. \n            The value 0 indicates there is no reflector or the \n            information is not available.",
                      "minimum": -2147483648,
                      "maximum": 2147483647,
                      "readOnly": true
                    },
                    "cvCallActiveAccountCode": {
                      "type": "string",
                      "description": "The object indicates the account code input to the call.\n            It could be used for call screen or by down stream server\n            for billing purpose.\n            The value of empty string indicates no account code input.",
                      "x-yang-type": "snmp-framework:SnmpAdminString",
                      "readOnly": true
                    },
                    "cvCallActiveERLLevelRev1": {
                      "type": "integer",
                      "description": "The object contains the current Echo Return Loss (ERL)\n            level for the call leg.\n            The value -1 indicates the level can not be determined or\n            level detection is disabled.",
                      "minimum": -2147483648,
                      "maximum": 2147483647,
                      "readOnly": true
                    },
                    "cvCallActiveCallId": {
                      "type": "integer",
                      "description": "This object represents the call identifier\n            for the active telephony leg of the call.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    }
                  }
                },
                "readOnly": true
              }
            },
            "readOnly": true
          },
          "cvVoIPCallActiveTable": {
            "type": "object",
            "description": "This table is the VoIP extension to the call active table of\n        IETF Dial Control MIB. It contains VoIP call leg\n        information about specific VoIP call destination and the\n        selected QoS for the call leg.",
            "properties": {
              "cvVoIPCallActiveEntry": {
                "type": "array",
                "description": "cvVoIPCallActiveEntry",
                "items": {
                  "type": "object",
                  "properties": {
                    "callActiveSetupTime": {
                      "type": "string",
                      "description": "callActiveSetupTime",
                      "x-yang-type": "leafref",
                      "readOnly": true
                    },
                    "callActiveIndex": {
                      "type": "string",
                      "description": "callActiveIndex",
                      "x-yang-type": "leafref",
                      "readOnly": true
                    },
                    "cvVoIPCallActiveConnectionId": {
                      "type": "string",
                      "description": "The global connection identifier for\n            the active VoIP leg of the call.",
                      "x-yang-type": "cisco-voice:CvcGUid",
                      "readOnly": true
                    },
                    "cvVoIPCallActiveRemoteIPAddress": {
                      "type": "string",
                      "description": "Remote system IP address for the VoIP call.",
                      "format": "inet:ipv4-address",
                      "readOnly": true
                    },
                    "cvVoIPCallActiveRemoteUDPPort": {
                      "type": "integer",
                      "description": "Remote system UDP listener port to which to transmit voice\n            packets.",
                      "minimum": -2147483648,
                      "maximum": 2147483647,
                      "readOnly": true
                    },
                    "cvVoIPCallActiveRoundTripDelay": {
                      "type": "integer",
                      "description": "The voice packet round trip delay between local and\n            the remote system on the IP backbone during the call.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "cvVoIPCallActiveSelectedQoS": {
                      "type": "string",
                      "description": "The selected RSVP QoS for the voice call.",
                      "x-yang-type": "int-serv:QosService",
                      "readOnly": true
                    },
                    "cvVoIPCallActiveSessionProtocol": {
                      "type": "string",
                      "description": "The object specifies the session protocol to be used\n            for Internet call between local and remote router via\n            IP backbone.",
                      "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvSessionProtocol",
                      "readOnly": true
                    },
                    "cvVoIPCallActiveSessionTarget": {
                      "type": "string",
                      "description": "The object specifies the session target of the peer that\n            is used for the call. This object is set with the\n            information in the call associated\n            cvVoIPPeerCfgSessionTarget object when the voice over IP\n            call is connected.",
                      "x-yang-type": "snmpv2-tc:DisplayString",
                      "readOnly": true
                    },
                    "cvVoIPCallActiveOnTimeRvPlayout": {
                      "type": "string",
                      "description": "Duration of voice playout from data received on time for\n            this call. This plus the durations for the GapFills in the\n            following entries gives the Total Voice Playout Duration\n            for Active Voice.\n            This does not include duration for which no data was sent by the\n            Transmit end as voice signal, e.g., silence suppression\n            and fax signal. The On Time Playout Rate can be computed\n            by dividing this entry by the Total Voice Playout Duration.\n            This counter object will lock at the maximum value which\n            is approximately two days.",
                      "x-yang-type": "dial-control:AbsoluteCounter32",
                      "readOnly": true
                    },
                    "cvVoIPCallActiveGapFillWithSilence": {
                      "type": "string",
                      "description": "Duration of voice signal replaced with signal played out\n            during silence due to voice data not received on time\n            (or lost) from voice gateway this call. This counter\n            object will lock at the maximum value which is\n            approximately two days.",
                      "x-yang-type": "dial-control:AbsoluteCounter32",
                      "readOnly": true
                    },
                    "cvVoIPCallActiveGapFillWithPrediction": {
                      "type": "string",
                      "description": "Duration of voice signal played out with signal synthesized\n            from parameters or samples of data preceding in time due\n            to voice data not received on time (or lost) from voice\n            gateway for this call. An example of such playout is\n            frame-erasure or frame-concealment strategies in G.729 and\n            G.723.1 compression algorithms. This counter object will\n            lock at the maximum value which is approximately two days.",
                      "x-yang-type": "dial-control:AbsoluteCounter32",
                      "readOnly": true
                    },
                    "cvVoIPCallActiveGapFillWithInterpolation": {
                      "type": "string",
                      "description": "Duration of voice signal played out with signal synthesized\n            from parameters or samples of data preceding and following\n            in time due to voice data not received on time (or lost)\n            from voice gateway for this call. This counter object\n            will lock at the maximum value which is approximately two\n            days.",
                      "x-yang-type": "dial-control:AbsoluteCounter32",
                      "readOnly": true
                    },
                    "cvVoIPCallActiveGapFillWithRedundancy": {
                      "type": "string",
                      "description": "Duration of voice signal played out with signal synthesized\n            from redundancy parameters available due to voice data not\n            received on time (or lost) from voice gateway for this call.\n            This counter object will lock at the maximum value which\n            is approximately two days.",
                      "x-yang-type": "dial-control:AbsoluteCounter32",
                      "readOnly": true
                    },
                    "cvVoIPCallActiveHiWaterPlayoutDelay": {
                      "type": "string",
                      "description": "The high water mark Voice Playout FIFO Delay during\n            the voice call. This counter object will lock at the\n            maximum value which is approximately two days.",
                      "x-yang-type": "dial-control:AbsoluteCounter32",
                      "readOnly": true
                    },
                    "cvVoIPCallActiveLoWaterPlayoutDelay": {
                      "type": "integer",
                      "description": "The low water mark Voice Playout FIFO Delay during\n            the voice call.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "cvVoIPCallActiveReceiveDelay": {
                      "type": "integer",
                      "description": "The average Playout FIFO Delay plus the decoder delay\n            during the voice call.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "cvVoIPCallActiveVADEnable": {
                      "type": "boolean",
                      "description": "The object indicates whether or not the VAD (Voice Activity\n            Detection) was enabled for the voice call.",
                      "readOnly": true
                    },
                    "cvVoIPCallActiveCoderTypeRate": {
                      "type": "string",
                      "description": "The negotiated coder rate. It specifies the transmit rate of\n            voice/fax compression to its associated call leg for the\n            call. This rate is different from the configuration rate\n            because of rate negotiation during the call.",
                      "x-yang-type": "cisco-voice:CvcCoderTypeRate",
                      "readOnly": true
                    },
                    "cvVoIPCallActiveLostPackets": {
                      "type": "string",
                      "description": "The number of lost voice packets during the call.",
                      "x-yang-type": "dial-control:AbsoluteCounter32",
                      "readOnly": true
                    },
                    "cvVoIPCallActiveEarlyPackets": {
                      "type": "string",
                      "description": "The number of received voice packets that\n            arrived too early to store in jitter buffer\n            during the call.",
                      "x-yang-type": "dial-control:AbsoluteCounter32",
                      "readOnly": true
                    },
                    "cvVoIPCallActiveLatePackets": {
                      "type": "string",
                      "description": "The number of received voice packets that\n            arrived too late to playout with CODEC (Coder/Decoder)\n            during the call.",
                      "x-yang-type": "dial-control:AbsoluteCounter32",
                      "readOnly": true
                    },
                    "cvVoIPCallActiveUsername": {
                      "type": "string",
                      "description": "The textual identifier of the calling party (user) of the\n            call. If the username is not available, then the value of\n            this object will have a length of zero.",
                      "x-yang-type": "snmp-framework:SnmpAdminString",
                      "readOnly": true
                    },
                    "cvVoIPCallActiveProtocolCallId": {
                      "type": "string",
                      "description": "The protocol-specific call identifier for the VoIP call.",
                      "format": "binary",
                      "readOnly": true
                    },
                    "cvVoIPCallActiveRemSigIPAddrT": {
                      "type": "string",
                      "description": "This object specifies the type of address contained in\n            the associated instance of cvVoIPCallActiveRemSigIPAddr.",
                      "x-yang-type": "inet-address:InetAddressType",
                      "readOnly": true
                    },
                    "cvVoIPCallActiveRemSigIPAddr": {
                      "type": "string",
                      "description": "Remote signalling IP address for the VoIP call.",
                      "x-yang-type": "inet-address:InetAddress",
                      "readOnly": true
                    },
                    "cvVoIPCallActiveRemSigPort": {
                      "type": "integer",
                      "description": "Remote signalling listener port to which to transmit\n            voice packets.",
                      "minimum": -2147483648,
                      "maximum": 2147483647,
                      "readOnly": true
                    },
                    "cvVoIPCallActiveRemMediaIPAddrT": {
                      "type": "string",
                      "description": "This object specifies the type of address contained in\n            the associated instance of\n            cvVoIPCallActiveRemMediaIPAddr.",
                      "x-yang-type": "inet-address:InetAddressType",
                      "readOnly": true
                    },
                    "cvVoIPCallActiveRemMediaIPAddr": {
                      "type": "string",
                      "description": "Remote media end point IP address for the VoIP call.",
                      "x-yang-type": "inet-address:InetAddress",
                      "readOnly": true
                    },
                    "cvVoIPCallActiveRemMediaPort": {
                      "type": "integer",
                      "description": "Remote media end point listener port to which to transmit\n            voice packets.",
                      "minimum": -2147483648,
                      "maximum": 2147483647,
                      "readOnly": true
                    },
                    "cvVoIPCallActiveSRTPEnable": {
                      "type": "boolean",
                      "description": "The object indicates whether or not the SRTP (Secured RTP)\n            was enabled for the voice call.",
                      "readOnly": true
                    },
                    "cvVoIPCallActiveOctetAligned": {
                      "type": "boolean",
                      "description": "If the object has a value true(1) octet align operation\n            is used, and if the value is false(2), bandwidth efficient\n            operation is used. This object is not instantiated when\n            the object cvVoIPCallActiveCoderTypeRate is not equal to\n            gsmAmrNb enum.",
                      "readOnly": true
                    },
                    "cvVoIPCallActiveBitRates": {
                      "type": "string",
                      "description": "This object indicates modes of Bit rates.\n            This object is not instantiated when the object\n            cvVoIPCallActiveCoderTypeRate is not equal to\n            gsmAmrNb enum.",
                      "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvAmrNbBitRateMode",
                      "readOnly": true
                    },
                    "cvVoIPCallActiveModeChgPeriod": {
                      "type": "integer",
                      "description": "The object indicates the interval (N frame-blocks) at which\n            codec mode changes are allowed. This object is not\n            instantiated when the object cvVoIPCallActiveCoderTypeRate\n            is not equal to gsmAmrNb enum.",
                      "minimum": -2147483648,
                      "maximum": 2147483647,
                      "readOnly": true
                    },
                    "cvVoIPCallActiveModeChgNeighbor": {
                      "type": "boolean",
                      "description": "If the object has a value of true(1), mode changes will be\n            made to only neighboring modes set to\n            cvVoIPCallActiveBitRates object. If the value is false(2),\n            mode changes will be allowed to any modes set to\n            cvVoIPCallActiveBitRates object. This object is not\n            instantiated when the object cvVoIPCallActiveCoderTypeRate\n            is not equal to gsmAmrNb enum.",
                      "readOnly": true
                    },
                    "cvVoIPCallActiveMaxPtime": {
                      "type": "integer",
                      "description": "The object indicates the maximum amount of media that\n            can be encapsulated in a payload. Supported value is\n            20 msec. This object is not instantiated when the\n            object cvVoIPCallActiveCoderTypeRate is not equal to\n            gsmAmrNb enum.",
                      "minimum": -2147483648,
                      "maximum": 2147483647,
                      "readOnly": true
                    },
                    "cvVoIPCallActiveCRC": {
                      "type": "boolean",
                      "description": "If the object has a value of true(1), frame CRC will be\n            included in the payload and if the value is false(2),\n            frame CRC will not be included in the payload.\n            This object is applicable only when RTP frame type\n            is octet aligned. This object is not instantiated when\n            the object cvVoIPCallActiveCoderTypeRate is not equal to\n            gsmAmrNb enum.",
                      "readOnly": true
                    },
                    "cvVoIPCallActiveRobustSorting": {
                      "type": "boolean",
                      "description": "If the object has a value of true(1), payload employs\n            robust sorting and if the value is false(2), payload\n            does not employ robust sorting. This object is applicable\n            only when RTP frame type is octet aligned. This object\n            is not instantiated when the object\n            cvVoIPCallActiveCoderTypeRate is not equal to gsmAmrNb\n            enum.",
                      "readOnly": true
                    },
                    "cvVoIPCallActiveEncap": {
                      "type": "string",
                      "description": "The object indicates the RTP encapsulation type.\n            Supported RTP encapsulation type is RFC3267.\n            This object is not instantiated when the object\n            cvVoIPCallActiveCoderTypeRate is not equal to\n            gsmAmrNb enum.",
                      "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvAmrNbRtpEncap",
                      "readOnly": true
                    },
                    "cvVoIPCallActiveInterleaving": {
                      "type": "integer",
                      "description": "The object indicates the maximum number of frame-blocks\n            allowed in an interleaving group. It indicates that\n            frame-block level interleaving will be used for that\n            session. If this object is not set, interleaving\n            is not used. This object is applicable only when\n            RTP frame type is octet aligned. This object is not\n            instantiated when the object cvVoIPCallActiveCoderTypeRate\n            is not equal to gsmAmrNb enum.",
                      "minimum": -2147483648,
                      "maximum": 2147483647,
                      "readOnly": true
                    },
                    "cvVoIPCallActivePtime": {
                      "type": "integer",
                      "description": "The object indicates the length of the time in milliseconds\n            represented by the media of the packet. Supported value is\n            20 milliseconds. This object is not instantiated when the\n            object cvVoIPCallActiveCoderTypeRate is not equal to\n            gsmAmrNb enum.",
                      "minimum": -2147483648,
                      "maximum": 2147483647,
                      "readOnly": true
                    },
                    "cvVoIPCallActiveChannels": {
                      "type": "integer",
                      "description": "The object indicates the number of audio channels.\n            Supported value is 1. This object is not instantiated\n            when the object cvVoIPCallActiveCoderTypeRate is not equal\n            to gsmAmrNb enum.",
                      "minimum": -2147483648,
                      "maximum": 2147483647,
                      "readOnly": true
                    },
                    "cvVoIPCallActiveCoderMode": {
                      "type": "string",
                      "description": "The object indicates the iLBC codec mode.\n            The value of this object is valid only if \n            cvVoIPCallActiveCoderTypeRate is equal to \n            'iLBC'.",
                      "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvIlbcFrameMode",
                      "readOnly": true
                    },
                    "cvVoIPCallActiveCallId": {
                      "type": "integer",
                      "description": "This object represents the call identifier\n            for the active VoIP leg of the call.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "cvVoIPCallActiveCallReferenceId": {
                      "type": "string",
                      "description": "The call reference ID associates the video call entry and voice\n            call entry of the same endpoint.  An audio-only call may or may\n            not have a valid call reference ID (i.e. value greater than\n            zero), but in both cases, there will not be a video call entry\n            associated with it.  \n            \n            For a video call, the video-specific information  is stored in a\n            call entry in cVideoSessionActive of CISCO-VIDEO-SESSION-MIB, in\n            which the call reference ID is also identified.",
                      "x-yang-type": "cisco-voice:CvcCallReferenceIdOrZero",
                      "readOnly": true
                    },
                    "ccVoIPCallActivePolicyName": {
                      "type": "string",
                      "description": "This object holds the policy name. It could be media\n            policy, DSCP policy etc.",
                      "x-yang-type": "snmpv2-tc:DisplayString",
                      "readOnly": true
                    },
                    "cvVoIPCallActiveReversedDirectionPeerAddress": {
                      "type": "string",
                      "description": "This object store the reversed direction peer address  If the\n            address is not available, then it will have a length of zero.\n            \n            If the call is ingress then it contains called number and if the\n            call is egress then it contains calling number.",
                      "x-yang-type": "snmpv2-tc:DisplayString",
                      "readOnly": true
                    },
                    "cvVoIPCallActiveSessionId": {
                      "type": "integer",
                      "description": "This object indicates the active session ID assigned by the\n            call manager to identify call legs that belong to the same call\n            session.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    }
                  }
                },
                "readOnly": true
              }
            },
            "readOnly": true
          },
          "cvCallVolConnTable": {
            "type": "object",
            "description": "This table represents the number of active\n        call connections for each call connection type\n        in the voice gateway.",
            "properties": {
              "cvCallVolConnEntry": {
                "type": "array",
                "description": "An entry in the cvCallVolConnTable indicates\n          number of active calls for a call connection type\n          in the voice gateway.",
                "items": {
                  "type": "object",
                  "properties": {
                    "cvCallVolConnIndex": {
                      "type": "string",
                      "description": "This object represents index to the\n            cvCallVolConnTable.",
                      "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvCallConnectionType",
                      "readOnly": true
                    },
                    "cvCallVolConnActiveConnection": {
                      "type": "integer",
                      "description": "This object represents the total number of\n            active calls for a connection type \n            in the voice gateway.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    }
                  }
                },
                "readOnly": true
              }
            },
            "readOnly": true
          },
          "cvCallVolIfTable": {
            "type": "object",
            "description": "This table represents the information about\n        the usage of an IP interface in a voice\n        gateway for voice media calls. This table\n        has a sparse-dependent relationship with  \n        ifTable. There exists an entry in this table, \n        for each of the  entries in ifTable where ifType \n        is one of 'ethernetCsmacd' and 'softwareLoopback'.",
            "properties": {
              "cvCallVolIfEntry": {
                "type": "array",
                "description": "Each entry represents a row in cvCallVolIfTable\n          and corresponds to the information about an IP \n          interface in the voice gateway.",
                "items": {
                  "type": "object",
                  "properties": {
                    "ifIndex": {
                      "type": "string",
                      "description": "ifIndex",
                      "x-yang-type": "leafref",
                      "readOnly": true
                    },
                    "cvCallVolMediaIncomingCalls": {
                      "type": "integer",
                      "description": "This object represents the total number of\n            inbound active media calls through this IP \n            interface.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "cvCallVolMediaOutgoingCalls": {
                      "type": "integer",
                      "description": "This object represents the total number of\n            outbound active media calls through the IP \n            interface.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    }
                  }
                },
                "readOnly": true
              }
            },
            "readOnly": true
          },
          "cvCallHistoryTable": {
            "type": "object",
            "description": "This table is the voice extension to the call history table\n        of IETF Dial Control MIB. It contains voice encapsulation\n        call leg information such as voice packet statistics,\n        coder usage and end to end bandwidth of the call leg.",
            "properties": {
              "cvCallHistoryEntry": {
                "type": "array",
                "description": "cvCallHistoryEntry",
                "items": {
                  "type": "object",
                  "properties": {
                    "cCallHistoryIndex": {
                      "type": "string",
                      "description": "cCallHistoryIndex",
                      "x-yang-type": "leafref",
                      "readOnly": true
                    },
                    "cvCallHistoryConnectionId": {
                      "type": "string",
                      "description": "The global connection identifier for the\n            telephony leg, which was assigned to the call.",
                      "x-yang-type": "cisco-voice:CvcGUid",
                      "readOnly": true
                    },
                    "cvCallHistoryTxDuration": {
                      "type": "string",
                      "description": "Duration of Transmit path open from this peer to the\n            voice gateway for the call leg. This counter object will\n            lock at the maximum value which is approximately two\n            days.",
                      "x-yang-type": "dial-control:AbsoluteCounter32",
                      "readOnly": true
                    },
                    "cvCallHistoryVoiceTxDuration": {
                      "type": "string",
                      "description": "Duration for this call leg. The Voice Utilization Rate\n            can be obtained by dividing this by\n            cvCallHistoryTXDuration object. This counter object will\n            lock at the maximum value which is approximately two\n            days.",
                      "x-yang-type": "dial-control:AbsoluteCounter32",
                      "readOnly": true
                    },
                    "cvCallHistoryFaxTxDuration": {
                      "type": "string",
                      "description": "Duration of fax transmitted from this peer to voice\n            gateway for this call leg. The FAX Utilization Rate can be\n            obtained by dividing this by cvCallHistoryTXDuration\n            object. This counter object will lock at the maximum\n            value which is approximately two days.",
                      "x-yang-type": "dial-control:AbsoluteCounter32",
                      "readOnly": true
                    },
                    "cvCallHistoryCoderTypeRate": {
                      "type": "string",
                      "description": "The negotiated coder rate. It specifies the transmit rate\n            of voice/fax compression to its associated call leg for\n            the call.",
                      "x-yang-type": "cisco-voice:CvcCoderTypeRate",
                      "readOnly": true
                    },
                    "cvCallHistoryNoiseLevel": {
                      "type": "integer",
                      "description": "The object contains the average noise level for the call\n            leg.",
                      "minimum": -2147483648,
                      "maximum": 2147483647,
                      "readOnly": true
                    },
                    "cvCallHistoryACOMLevel": {
                      "type": "integer",
                      "description": "The object contains the average ACOM level for the call\n            leg. The value -1 indicates the level can not be\n            determined or level detection is disabled.",
                      "minimum": -2147483648,
                      "maximum": 2147483647,
                      "readOnly": true
                    },
                    "cvCallHistorySessionTarget": {
                      "type": "string",
                      "description": "The object specifies the session target of the peer that\n            is used for the call leg via telephony interface.",
                      "x-yang-type": "snmpv2-tc:DisplayString",
                      "readOnly": true
                    },
                    "cvCallHistoryImgPageCount": {
                      "type": "string",
                      "description": "The number of FAX related image pages are received or\n            transmitted via the peer for the call leg.",
                      "x-yang-type": "dial-control:AbsoluteCounter32",
                      "readOnly": true
                    },
                    "cvCallHistoryCallingName": {
                      "type": "string",
                      "description": "The calling party name of the call. If the name is\n            not available, then it will have a length of zero.",
                      "x-yang-type": "snmp-framework:SnmpAdminString",
                      "readOnly": true
                    },
                    "cvCallHistoryCallerIDBlock": {
                      "type": "boolean",
                      "description": "The object indicates whether or not the caller ID feature\n            is blocked for this call.",
                      "readOnly": true
                    },
                    "cvCallHistoryAccountCode": {
                      "type": "string",
                      "description": "The object indicates the account code input to the call.\n            It could be used by down stream billing server.\n            The value of empty string indicates no account code input.",
                      "x-yang-type": "snmp-framework:SnmpAdminString",
                      "readOnly": true
                    },
                    "cvCallHistoryCallId": {
                      "type": "integer",
                      "description": "This object represents the call identifier for the\n            telephony leg, which was assigned to the call.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    }
                  }
                },
                "readOnly": true
              }
            },
            "readOnly": true
          },
          "cvVoIPCallHistoryTable": {
            "type": "object",
            "description": "This table is the VoIP extension to the call history table\n        of IETF Dial Control MIB. It contains VoIP call leg\n        information about specific VoIP call destination and the\n        selected QoS for the call leg.",
            "properties": {
              "cvVoIPCallHistoryEntry": {
                "type": "array",
                "description": "cvVoIPCallHistoryEntry",
                "items": {
                  "type": "object",
                  "properties": {
                    "cCallHistoryIndex": {
                      "type": "string",
                      "description": "cCallHistoryIndex",
                      "x-yang-type": "leafref",
                      "readOnly": true
                    },
                    "cvVoIPCallHistoryConnectionId": {
                      "type": "string",
                      "description": "The global connection identifier for the\n            VoIP leg, which was assigned to the call.",
                      "x-yang-type": "cisco-voice:CvcGUid",
                      "readOnly": true
                    },
                    "cvVoIPCallHistoryRemoteIPAddress": {
                      "type": "string",
                      "description": "Remote system IP address for the call.",
                      "format": "inet:ipv4-address",
                      "readOnly": true
                    },
                    "cvVoIPCallHistoryRemoteUDPPort": {
                      "type": "integer",
                      "description": "Remote system UDP listener port to which to transmit voice\n            packets for the call.",
                      "minimum": -2147483648,
                      "maximum": 2147483647,
                      "readOnly": true
                    },
                    "cvVoIPCallHistoryRoundTripDelay": {
                      "type": "integer",
                      "description": "The voice packet round trip delay between local and\n            the remote system on the IP backbone during the call.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "cvVoIPCallHistorySelectedQoS": {
                      "type": "string",
                      "description": "The selected RSVP QoS for the call.",
                      "x-yang-type": "int-serv:QosService",
                      "readOnly": true
                    },
                    "cvVoIPCallHistorySessionProtocol": {
                      "type": "string",
                      "description": "The object specifies the session protocol to be used\n            for Internet call between local and remote router via\n            IP backbone.",
                      "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvSessionProtocol",
                      "readOnly": true
                    },
                    "cvVoIPCallHistorySessionTarget": {
                      "type": "string",
                      "description": "The object specifies the session target of the peer that\n            is used for the Voice over IP call.",
                      "x-yang-type": "snmpv2-tc:DisplayString",
                      "readOnly": true
                    },
                    "cvVoIPCallHistoryOnTimeRvPlayout": {
                      "type": "string",
                      "description": "Duration of voice playout from data received on time for\n            this call. This plus the durations for the GapFills in the\n            following entries gives the Total Voice Playout Duration\n            for Active Voice.\n            This does not include duration for which no data was sent by the\n            Transmit end as voice signal, e.g., silence suppression\n            and fax signal. The On Time Playout Rate can be computed\n            by dividing this entry by the Total Voice Playout Duration.\n            This counter object will lock at the maximum value which\n            is approximately two days.",
                      "x-yang-type": "dial-control:AbsoluteCounter32",
                      "readOnly": true
                    },
                    "cvVoIPCallHistoryGapFillWithSilence": {
                      "type": "string",
                      "description": "Duration of voice signal replaced with signal played out\n            during silence due to voice data not received on time\n            (or lost) from voice gateway this call. This counter\n            object will lock at the maximum value which is\n            approximately two days.",
                      "x-yang-type": "dial-control:AbsoluteCounter32",
                      "readOnly": true
                    },
                    "cvVoIPCallHistoryGapFillWithPrediction": {
                      "type": "string",
                      "description": "Duration of voice signal played out with signal synthesized\n            from parameters or samples of data preceding in time due to\n            voice data not received on time (or lost) from voice gateway\n            for this call. An example of such playout is frame-erasure\n            or  frame-concealment strategies in G.729 and G.723.1\n            compression algorithms. This counter object will lock at\n            the maximum value which is approximately two days.",
                      "x-yang-type": "dial-control:AbsoluteCounter32",
                      "readOnly": true
                    },
                    "cvVoIPCallHistoryGapFillWithInterpolation": {
                      "type": "string",
                      "description": "Duration of voice signal played out with signal synthesized\n            from parameters or samples of data preceding and following\n            in time due to voice data not received on time (or lost)\n            from voice gateway for this call. This counter object\n            will lock at the maximum value which is approximately two\n            days.",
                      "x-yang-type": "dial-control:AbsoluteCounter32",
                      "readOnly": true
                    },
                    "cvVoIPCallHistoryGapFillWithRedundancy": {
                      "type": "string",
                      "description": "Duration of voice signal played out with signal synthesized\n            from redundancy parameters available due to voice data not\n            received on time (or lost) from voice gateway for this call.\n            This counter object will lock at the maximum value which\n            is approximately two days.",
                      "x-yang-type": "dial-control:AbsoluteCounter32",
                      "readOnly": true
                    },
                    "cvVoIPCallHistoryHiWaterPlayoutDelay": {
                      "type": "string",
                      "description": "The high water mark Voice Playout FIFO Delay during\n            the voice call. This counter object will lock at the\n            maximum value which is approximately two days.",
                      "x-yang-type": "dial-control:AbsoluteCounter32",
                      "readOnly": true
                    },
                    "cvVoIPCallHistoryLoWaterPlayoutDelay": {
                      "type": "integer",
                      "description": "The low water mark Voice Playout FIFO Delay during\n            the voice call.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "cvVoIPCallHistoryReceiveDelay": {
                      "type": "integer",
                      "description": "The average Playout FIFO Delay plus the decoder delay\n            during the voice call.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "cvVoIPCallHistoryVADEnable": {
                      "type": "boolean",
                      "description": "The object indicates whether or not the VAD (Voice Activity\n            Detection) was enabled for the voice call.",
                      "readOnly": true
                    },
                    "cvVoIPCallHistoryCoderTypeRate": {
                      "type": "string",
                      "description": "The negotiated coder rate. It specifies the transmit rate of\n            voice/fax compression to its associated call leg for the\n            call. This rate is different from the configuration rate\n            because of rate negotiation during the call.",
                      "x-yang-type": "cisco-voice:CvcCoderTypeRate",
                      "readOnly": true
                    },
                    "cvVoIPCallHistoryIcpif": {
                      "type": "integer",
                      "description": "The Calculated Planning Impairment Factor (Icpif) of the\n            call  that is associated to this call leg.\n            The value in this object is computed by the following\n            equation.\n            Icpif of the call =\n            Itotal (total impairment value) of the call - A\n            (Expectation Factor) in the cvVoIPPeerCfgExpectFactor of\n            the call leg associated peer.\n            A value of -1 implies that Icpif was not calculated and is\n            meaningless for this call.",
                      "minimum": -2147483648,
                      "maximum": 2147483647,
                      "readOnly": true
                    },
                    "cvVoIPCallHistoryLostPackets": {
                      "type": "string",
                      "description": "The number of lost voice packets during the call.",
                      "x-yang-type": "dial-control:AbsoluteCounter32",
                      "readOnly": true
                    },
                    "cvVoIPCallHistoryEarlyPackets": {
                      "type": "string",
                      "description": "The number of received voice packets that are\n            arrived too early to store in jitter buffer\n            during the call.",
                      "x-yang-type": "dial-control:AbsoluteCounter32",
                      "readOnly": true
                    },
                    "cvVoIPCallHistoryLatePackets": {
                      "type": "string",
                      "description": "The number of received voice packets that are\n            arrived too late to playout with CODEC (Coder/Decoder)\n            during the call.",
                      "x-yang-type": "dial-control:AbsoluteCounter32",
                      "readOnly": true
                    },
                    "cvVoIPCallHistoryUsername": {
                      "type": "string",
                      "description": "The textual identifier of the calling party (user) of the\n            call. If the username is not available, then the value of\n            this object will have a length of zero.",
                      "x-yang-type": "snmp-framework:SnmpAdminString",
                      "readOnly": true
                    },
                    "cvVoIPCallHistoryProtocolCallId": {
                      "type": "string",
                      "description": "The protocol-specific call identifier for the VoIP call.",
                      "format": "binary",
                      "readOnly": true
                    },
                    "cvVoIPCallHistoryRemSigIPAddrT": {
                      "type": "string",
                      "description": "This object specifies the type of address contained in\n            the associated instance of cvVoIPCallHistoryRemSigIPAddr.",
                      "x-yang-type": "inet-address:InetAddressType",
                      "readOnly": true
                    },
                    "cvVoIPCallHistoryRemSigIPAddr": {
                      "type": "string",
                      "description": "Remote signalling IP address for the VoIP call.",
                      "x-yang-type": "inet-address:InetAddress",
                      "readOnly": true
                    },
                    "cvVoIPCallHistoryRemSigPort": {
                      "type": "integer",
                      "description": "Remote signalling listener port to which to transmit\n            voice packets.",
                      "minimum": -2147483648,
                      "maximum": 2147483647,
                      "readOnly": true
                    },
                    "cvVoIPCallHistoryRemMediaIPAddrT": {
                      "type": "string",
                      "description": "This object specifies the type of address contained in\n            the associated instance of\n            cvVoIPCallHistoryRemMediaIPAddr.",
                      "x-yang-type": "inet-address:InetAddressType",
                      "readOnly": true
                    },
                    "cvVoIPCallHistoryRemMediaIPAddr": {
                      "type": "string",
                      "description": "Remote media end point IP address for the VoIP call.",
                      "x-yang-type": "inet-address:InetAddress",
                      "readOnly": true
                    },
                    "cvVoIPCallHistoryRemMediaPort": {
                      "type": "integer",
                      "description": "Remote media end point listener port to which to transmit\n            voice packets.",
                      "minimum": -2147483648,
                      "maximum": 2147483647,
                      "readOnly": true
                    },
                    "cvVoIPCallHistorySRTPEnable": {
                      "type": "boolean",
                      "description": "The object indicates whether or not the SRTP (Secured RTP)\n            was enabled for the voice call.",
                      "readOnly": true
                    },
                    "cvVoIPCallHistoryFallbackIcpif": {
                      "type": "integer",
                      "description": "The Calculated Planning Impairment Factor (Icpif) of the\n            call  that is associated to this call leg.\n            The value in this object is computed by the following\n            equation.\n            Icpif of the fallback probe =\n            Itotal (total impairment value)  - configured fallback\n            (Expectation Factor).\n            A value of 0 implies that Icpif was not calculated and is\n            meaningless for this attempt.",
                      "minimum": -2147483648,
                      "maximum": 2147483647,
                      "readOnly": true
                    },
                    "cvVoIPCallHistoryFallbackLoss": {
                      "type": "string",
                      "description": "FallbackLoss is the percentage of loss packets based on\n            the total packets sent.",
                      "x-yang-type": "dial-control:AbsoluteCounter32",
                      "readOnly": true
                    },
                    "cvVoIPCallHistoryFallbackDelay": {
                      "type": "integer",
                      "description": "The FallbackDelay is calculated as follows -\n            Take the sum of the round trips for all the probes, \n            divide by the number of probes, \n            and divide by two to get the one-way delay.  \n            Then add in jitter_in or jiter_out,\n            which ever is higher.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "cvVoIPCallHistoryOctetAligned": {
                      "type": "boolean",
                      "description": "If the object has a value true(1) octet align operation\n            is used, and if the value is false(2), bandwidth efficient\n            operation is used. This object is not instantiated when\n            the object cvVoIPCallHistoryCoderTypeRate is not equal to\n            gsmAmrNb enum.",
                      "readOnly": true
                    },
                    "cvVoIPCallHistoryBitRates": {
                      "type": "string",
                      "description": "This object indicates modes of Bit rates.\n            This object is not instantiated when the object\n            cvVoIPCallHistoryCoderTypeRate is not equal to\n            gsmAmrNb enum.",
                      "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvAmrNbBitRateMode",
                      "readOnly": true
                    },
                    "cvVoIPCallHistoryModeChgPeriod": {
                      "type": "integer",
                      "description": "The object indicates the interval (N frame-blocks) at which\n            codec mode changes are allowed. This object is not\n            instantiated when the object cvVoIPCallHistoryCoderTypeRate\n            is not equal to gsmAmrNb enum.",
                      "minimum": -2147483648,
                      "maximum": 2147483647,
                      "readOnly": true
                    },
                    "cvVoIPCallHistoryModeChgNeighbor": {
                      "type": "boolean",
                      "description": "If the object has a value of true(1), mode changes will be\n            made to only neighboring modes set to\n            cvVoIPCallHistoryBitRates object. If the value is false(2),\n            mode changes will be allowed to any modes set to\n            cvVoIPCallHistoryBitRates object. This object is not\n            instantiated when the object cvVoIPCallHistoryCoderTypeRate\n            is not equal to gsmAmrNb enum.",
                      "readOnly": true
                    },
                    "cvVoIPCallHistoryMaxPtime": {
                      "type": "integer",
                      "description": "The object indicates the maximum amount of media that\n            can be encapsulated in a payload. Supported value is\n            20 msec. This object is not instantiated when the\n            object cvVoIPCallHistoryCoderTypeRate is not equal to\n            gsmAmrNb enum.",
                      "minimum": -2147483648,
                      "maximum": 2147483647,
                      "readOnly": true
                    },
                    "cvVoIPCallHistoryCRC": {
                      "type": "boolean",
                      "description": "If the object has a value of true(1), frame CRC will be\n            included in the payload and if the value is false(2),\n            frame CRC will not be included in the payload.\n            This object is applicable only when RTP frame type\n            is octet aligned. This object is not instantiated when\n            the object cvVoIPCallHistoryCoderTypeRate is not equal to\n            gsmAmrNb enum.",
                      "readOnly": true
                    },
                    "cvVoIPCallHistoryRobustSorting": {
                      "type": "boolean",
                      "description": "If the object has a value of true(1), payload employs\n            robust sorting and if the value is false(2), payload\n            does not employ robust sorting. This object is applicable\n            only when RTP frame type is octet aligned. This object\n            is not instantiated when the object\n            cvVoIPCallHistoryCoderTypeRate is not equal to gsmAmrNb\n            enum.",
                      "readOnly": true
                    },
                    "cvVoIPCallHistoryEncap": {
                      "type": "string",
                      "description": "The object indicates the RTP encapsulation type.\n            Supported RTP encapsulation type is RFC3267.\n            This object is not instantiated when the object\n            cvVoIPCallHistoryCoderTypeRate is not equal to\n            gsmAmrNb enum.",
                      "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvAmrNbRtpEncap",
                      "readOnly": true
                    },
                    "cvVoIPCallHistoryInterleaving": {
                      "type": "integer",
                      "description": "The object indicates the maximum number of frame-blocks\n            allowed in an interleaving group. It indicates that\n            frame-block level interleaving will be used for that\n            session. If this object is not set, interleaving\n            is not used. This object is applicable only when\n            RTP frame type is octet aligned. This object is not\n            instantiated when the object cvVoIPCallHistoryCoderTypeRate\n            is not equal to gsmAmrNb enum.",
                      "minimum": -2147483648,
                      "maximum": 2147483647,
                      "readOnly": true
                    },
                    "cvVoIPCallHistoryPtime": {
                      "type": "integer",
                      "description": "The object indicates the length of the time in milliseconds\n            represented by the media of the packet. Supported value is\n            20 milliseconds. This object is not instantiated when the\n            object cvVoIPCallHistoryCoderTypeRate is not equal to\n            gsmAmrNb enum.",
                      "minimum": -2147483648,
                      "maximum": 2147483647,
                      "readOnly": true
                    },
                    "cvVoIPCallHistoryChannels": {
                      "type": "integer",
                      "description": "The object indicates the number of audio channels.\n            Supported value is 1. This object is not instantiated\n            when the object cvVoIPCallHistoryCoderTypeRate is not equal\n            to gsmAmrNb enum.",
                      "minimum": -2147483648,
                      "maximum": 2147483647,
                      "readOnly": true
                    },
                    "cvVoIPCallHistoryCoderMode": {
                      "type": "string",
                      "description": "The object indicates the iLBC mode.\n            The value of this object is valid only if \n            cvVoIPCallHistoryCoderTypeRate is equal to \n            'iLBC'.",
                      "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvIlbcFrameMode",
                      "readOnly": true
                    },
                    "cvVoIPCallHistoryCallId": {
                      "type": "integer",
                      "description": "This object represents the call identifier for the\n            VoIP leg, which was assigned to the call.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "cvVoIPCallHistoryCallReferenceId": {
                      "type": "string",
                      "description": "The call reference ID associates the video call entry and voice\n            call entry of the same endpoint.  An audio-only call may or may\n            not have a valid call reference ID (i.e. value greater than\n            zero), but in both cases, there will not be a video call entry\n            associated with it. \n            \n            For a video call, the video-specific information  is stored in a\n            call entry in cVideoSessionActive of CISCO-VIDEO-SESSION-MIB, in\n            which the call reference ID is also identified.",
                      "x-yang-type": "cisco-voice:CvcCallReferenceIdOrZero",
                      "readOnly": true
                    },
                    "cvVoIPCallHistorySessionId": {
                      "type": "integer",
                      "description": "This object indicates the session ID assigned by the call\n            manager to identify call legs that belong to the same call\n            session.  This session ID (history) represents a completed call\n            session, whereas the active session ID\n            (cvVoIPCallActiveSessionId) represents an ongoing session.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    }
                  }
                },
                "readOnly": true
              }
            },
            "readOnly": true
          },
          "cvCallRateStatsTable": {
            "type": "object",
            "description": "This table represents voice call rate measurement in various\n        interval lengths defined by the \n        CvCallVolumeStatsIntvlType object.\n        \n        Each interval may contain one or more entries to allow for\n        detailed measurement to be collected.",
            "properties": {
              "cvCallRateStatsEntry": {
                "type": "array",
                "description": "This is a conceptual-row in cvCallRateStatsTable\n          This entry is created at the system initialization and is\n          updated at every epoch based on CvCallVolumeStatsIntvlType",
                "items": {
                  "type": "object",
                  "properties": {
                    "cvCallRateStatsIntvlDurUnits": {
                      "type": "string",
                      "description": "The Object indexes in Call Rate Table to select one among three\n            interval-tables.\n            \n            The different types in this table are represented by \n            CvCallVolumeStatsIntvlType",
                      "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvCallVolumeStatsIntvlType",
                      "readOnly": true
                    },
                    "cvCallRateStatsIntvlDur": {
                      "type": "integer",
                      "description": "This is an index that references to the different past periods\n            in given in interval of call rate table.\n            This range is 1-60 for Seconds and Minutes table \n            wherein 1-72 for hours table.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "cvCallRateStatsMaxVal": {
                      "type": "integer",
                      "description": "This object indicates the maximum calls per second\n            that occured for the given period for the given interval.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "cvCallRateStatsAvgVal": {
                      "type": "integer",
                      "description": "This object indicates the average calls per second\n            that occured for the given period for the given interval.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    }
                  }
                },
                "readOnly": true
              }
            },
            "readOnly": true
          },
          "cvCallLegRateStatsTable": {
            "type": "object",
            "description": "cvCallLegRateStatsTable table represents voice call leg rate\n        measurement in various interval lengths defined by \n        the CvCallVolumeStatsIntvlType object.\n        Each interval may contain one or more entries to allow for\n        detailed measurement to be collected.",
            "properties": {
              "cvCallLegRateStatsEntry": {
                "type": "array",
                "description": "This is a conceptual-row in cvCallLegRateStatsTable\n          This entry is created at the system initialization and is\n          updated at every epoch based on CvCallVolumeStatsIntvlType",
                "items": {
                  "type": "object",
                  "properties": {
                    "cvCallLegRateStatsIntvlDurUnits": {
                      "type": "string",
                      "description": "The Object indexes in Call Leg Rate Table to select one among\n            three\n            interval-tables.\n            \n            The different types in this table are represented by \n            CvCallVolumeStatsIntvlType",
                      "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvCallVolumeStatsIntvlType",
                      "readOnly": true
                    },
                    "cvCallLegRateStatsIntvlDur": {
                      "type": "integer",
                      "description": "This is an index that references to the different past periods\n            in given in interval of call rate table.\n            This range is 1-60 for Seconds and Minutes table \n            wherein 1-72 for hours table.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "cvCallLegRateStatsMaxVal": {
                      "type": "integer",
                      "description": "This object indicates the maximum call-legs per second\n            that occured for the given period for the given interval.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "cvCallLegRateStatsAvgVal": {
                      "type": "integer",
                      "description": "This object indicates the average call-legs per second\n            that occured for the given period for the given interval.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    }
                  }
                },
                "readOnly": true
              }
            },
            "readOnly": true
          },
          "cvActiveCallStatsTable": {
            "type": "object",
            "description": "This table represents the active voice calls in various\n        interval lengths defined by the \n        CvCallVolumeStatsIntvlType object.\n        \n        Each interval may contain one or more entries to allow for\n        detailed measurement to be collected.",
            "properties": {
              "cvActiveCallStatsEntry": {
                "type": "array",
                "description": "This is a conceptual-row in cvActiveCallStatsTable\n          This entry is created at the system initialization and is\n          updated at every epoch based on CvCallVolumeStatsIntvlType",
                "items": {
                  "type": "object",
                  "properties": {
                    "cvActiveCallStatsIntvlDurUnits": {
                      "type": "string",
                      "description": "The Object indexes in Active Call Rate Table (con-current calls\n            table) to select one among three interval-tables.\n            \n            The different types in this table are represented by \n            CvCallVolumeStatsIntvlType",
                      "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvCallVolumeStatsIntvlType",
                      "readOnly": true
                    },
                    "cvActiveCallStatsIntvlDur": {
                      "type": "integer",
                      "description": "This is an index that references to the different past periods\n            in given in interval of active call table.\n            This range is 1-60 for Seconds and Minutes table \n            wherein 1-72 for hours table.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "cvActiveCallStatsMaxVal": {
                      "type": "integer",
                      "description": "This object indicates the maximum number of active call\n            that occured for the given period for the given interval.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "cvActiveCallStatsAvgVal": {
                      "type": "integer",
                      "description": "This object indicates the average number of active calls\n            that occured for the given period for the given interval.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    }
                  }
                },
                "readOnly": true
              }
            },
            "readOnly": true
          },
          "cvCallDurationStatsTable": {
            "type": "object",
            "description": "This table represents the number of calls below a specific\n        duration in various interval length defined by \n        the CvCallVolumeStatsIntvlType object.  \n        \n        The specific duration is configurable value of \n         cvCallDurationStatsThreshold object.\n        \n        Each interval may contain one or more entries to allow for \n        detailed measurement to be collected.",
            "properties": {
              "cvCallDurationStatsEntry": {
                "type": "array",
                "description": "This is a conceptual-row in cvCallDurationStatsTable\n          This entry is created at the system initialization and is\n          updated at every epoch based on CvCallVolumeStatsIntvlType",
                "items": {
                  "type": "object",
                  "properties": {
                    "cvCallDurationStatsIntvlDurUnits": {
                      "type": "string",
                      "description": "The Object indexes in Call Duration Table to select one among\n            three interval-tables.\n            \n            The different types in this table are represented by \n            CvCallVolumeStatsIntvlType",
                      "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvCallVolumeStatsIntvlType",
                      "readOnly": true
                    },
                    "cvCallDurationStatsIntvlDur": {
                      "type": "integer",
                      "description": "This is an index that references to the different past periods\n            in given in interval of call Duration table.\n            This range is 1-60 for Seconds and Minutes table \n            wherein 1-72 for hours table.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "cvCallDurationStatsMaxVal": {
                      "type": "integer",
                      "description": "This object indicates the maximum number of calls having a\n            duration which is below the threshold for the given interval.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "cvCallDurationStatsAvgVal": {
                      "type": "integer",
                      "description": "This object indicates the average number of calls having a\n            duration which is below the threshold for the given interval.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    }
                  }
                },
                "readOnly": true
              }
            },
            "readOnly": true
          },
          "cvSipMsgRateStatsTable": {
            "type": "object",
            "description": "This table represents the SIP message rate measurement in\n        various interval length defined by the \n        CvCallVolumeStatsIntvlType object.\n        \n        Each interval may contain one or more entries to allow for\n        detailed measurement to be collected",
            "properties": {
              "cvSipMsgRateStatsEntry": {
                "type": "array",
                "description": "This is a conceptual-row in cvSipMsgRateStatsTable\n          This entry is created at the system initialization and is\n          updated at every epoch based on CvCallVolumeStatsIntvlType",
                "items": {
                  "type": "object",
                  "properties": {
                    "cvSipMsgRateStatsIntvlDurUnits": {
                      "type": "string",
                      "description": "The Object indexes in SIP Message Rate Table to select one\n            among three interval-tables.\n            \n            The different types in this table are represented by \n            CvCallVolumeStatsIntvlType",
                      "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvCallVolumeStatsIntvlType",
                      "readOnly": true
                    },
                    "cvSipMsgRateStatsIntvlDur": {
                      "type": "integer",
                      "description": "This is an index that references to the different past\n            periods in given in interval of SIP message rate table.\n            This range is 1-60 for Seconds and Minutes table \n            wherein 1-72 for hours table.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "cvSipMsgRateStatsMaxVal": {
                      "type": "integer",
                      "description": "This object indicates the maximum SIP messages  per second that\n            is received for the given interval.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "cvSipMsgRateStatsAvgVal": {
                      "type": "integer",
                      "description": "This object indicates the average SIP messages per second that\n            is received for the given interval.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    }
                  }
                },
                "readOnly": true
              }
            },
            "readOnly": true
          },
          "cvCallRateWMTable": {
            "type": "object",
            "description": "This table represents high watermarks achieved\n        by call rate in various interval length defined \n        by CvCallVolumeWMIntvlType. \n        \n        Each interval may contain one or more entries to allow for \n        detailed measurement to be collected",
            "properties": {
              "cvCallRateWMEntry": {
                "type": "array",
                "description": "This is a conceptual-row in cvCallRateWMTable\n          This entry is created at the system initialization and is\n          updated whenever \n          a) This entry is obsolete OR\n          b) A new/higher entry is available.\n          These entries are reinitialised/added/deleted  if\n          cvCallVolumeWMTableSize is changed",
                "items": {
                  "type": "object",
                  "properties": {
                    "cvCallRateWMIntvlDurUnits": {
                      "type": "string",
                      "description": "The Object indexes in call rate Water mark Table to select one\n            among four interval-tables.\n            \n            The different types in this table are represented by \n            CvCallVolumeWMIntvlType",
                      "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvCallVolumeWMIntvlType",
                      "readOnly": true
                    },
                    "cvCallRateWMIndex": {
                      "type": "integer",
                      "description": "This is an index that references to different peaks in\n            past period in call rate watermark table.\n            \n            The number of watermarks entries stored for each table are \n            based on cvCallVolumeWMTableSize",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "cvCallRateWMValue": {
                      "type": "integer",
                      "description": "This object indicates high watermark value achieved by the\n            calls per second for the given interval",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "cvCallRateWMts": {
                      "type": "string",
                      "description": "This object indicates date and Time when the high watermark\n            is achieved for calls per second for the given interval",
                      "x-yang-type": "snmpv2-tc:DateAndTime",
                      "readOnly": true
                    }
                  }
                },
                "readOnly": true
              }
            },
            "readOnly": true
          },
          "cvCallLegRateWMTable": {
            "type": "object",
            "description": "cvCallLegRateWMTable table represents high watermarks achieved\n        by call-leg rate in various interval length defined \n        by CvCallVolumeWMIntvlType. \n        \n        Each interval may contain one or more entries to allow for \n        detailed measurement to be collected",
            "properties": {
              "cvCallLegRateWMEntry": {
                "type": "array",
                "description": "This is a conceptual-row in cvCallLegRateWMTable\n          This entry is created at the system initialization and is\n          updated whenever \n          a) This entry is obsolete OR\n          b) A new/higher entry is available.\n          These entries are reinitialised/added/deleted  if\n          cvCallVolumeWMTableSize is changed",
                "items": {
                  "type": "object",
                  "properties": {
                    "cvCallLegRateWMIntvlDurUnits": {
                      "type": "string",
                      "description": "The Object indexes in call leg rate Water mark Table to select\n            one\n            among four interval-tables.\n            \n            The different types in this table are represented by \n            CvCallVolumeWMIntvlType",
                      "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvCallVolumeWMIntvlType",
                      "readOnly": true
                    },
                    "cvCallLegRateWMIndex": {
                      "type": "integer",
                      "description": "This is an index that references to different peaks in\n            past period in call leg rate watermark table.\n            \n            The number of watermarks entries stored for each table are \n            based on cvCallVolumeWMTableSize",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "cvCallLegRateWMValue": {
                      "type": "integer",
                      "description": "This object indicates high watermark value achieved by the\n            call legs per second for the given interval",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "cvCallLegRateWMts": {
                      "type": "string",
                      "description": "This object indicates date and time when the high watermark\n            is achieved for call-legs per second for the given interval",
                      "x-yang-type": "snmpv2-tc:DateAndTime",
                      "readOnly": true
                    }
                  }
                },
                "readOnly": true
              }
            },
            "readOnly": true
          },
          "cvActiveCallWMTable": {
            "type": "object",
            "description": "This table represents high watermarks achieved\n        by active calls in various interval length defined \n        by CvCallVolumeWMIntvlType. \n        \n        Each interval may contain one or more entries to allow \n        for detailed measurement to be collected.",
            "properties": {
              "cvActiveCallWMEntry": {
                "type": "array",
                "description": "This is a conceptual-row in cvActiveCallWMTable\n          This entry is created at the system initialization and is\n          updated whenever \n          a) This entry is obsolete OR\n          b) A new/higher entry is available.\n          These entries are reinitialised/added/deleted  if\n          cvCallVolumeWMTableSize is changed",
                "items": {
                  "type": "object",
                  "properties": {
                    "cvActiveCallWMIntvlDurUnits": {
                      "type": "string",
                      "description": "The Object indexes in active call Water mark Table to select\n            one among four interval-tables.\n            \n            The different types in this table are represented by \n            CvCallVolumeWMIntvlType",
                      "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvCallVolumeWMIntvlType",
                      "readOnly": true
                    },
                    "cvActiveCallWMIndex": {
                      "type": "integer",
                      "description": "This is an index that references to different peaks in\n            past period in acive call watermark table.\n            \n            The number of watermarks entries stored for each table are \n            based on cvCallVolumeWMTableSize",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "cvActiveCallWMValue": {
                      "type": "integer",
                      "description": "This object indicates high watermark value achieved by the\n            active calls for the given interval",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "cvActiveCallWMts": {
                      "type": "string",
                      "description": "This object indicates date and time when the high watermark\n            is achieved for active calls for the given interval",
                      "x-yang-type": "snmpv2-tc:DateAndTime",
                      "readOnly": true
                    }
                  }
                },
                "readOnly": true
              }
            },
            "readOnly": true
          },
          "cvSipMsgRateWMTable": {
            "type": "object",
            "description": "This table represents of high watermarks achieved\n        by SIP message rate in various interval length defined \n        by CvCallVolumeWMIntvlType. \n        \n        Each interval may contain one or more entries to allow for\n        detailed measurement to be collected",
            "properties": {
              "cvSipMsgRateWMEntry": {
                "type": "array",
                "description": "This is a conceptual-row in cvSipMsgRateWMTable.\n          This entry is created at the system initialization and is\n          updated whenever \n          a) This entry is obsolete OR\n          b) A new/higher entry is available.\n          These entries are reinitialised/added/deleted if\n          cvCallVolumeWMTableSize is changed",
                "items": {
                  "type": "object",
                  "properties": {
                    "cvSipMsgRateWMIntvlDurUnits": {
                      "type": "string",
                      "description": "The Object indexes in SIP Message rate Water mark Table to\n            select one among four interval-tables.\n            \n            The different types in this table are represented by \n            CvCallVolumeWMIntvlType",
                      "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvCallVolumeWMIntvlType",
                      "readOnly": true
                    },
                    "cvSipMsgRateWMIndex": {
                      "type": "integer",
                      "description": "This is an index that references to different peaks in\n            past period in sip message rate watermark table.\n            \n            The number of watermarks entries stored for each table are \n            based on cvCallVolumeWMTableSize",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "cvSipMsgRateWMValue": {
                      "type": "integer",
                      "description": "This object indicates high watermark value achieved by the\n            SIP messages per second for the given interval",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "cvSipMsgRateWMts": {
                      "type": "string",
                      "description": "This object indicates date and time when the high watermark\n            is achieved for SIP messages per second for the given interval",
                      "x-yang-type": "snmpv2-tc:DateAndTime",
                      "readOnly": true
                    }
                  }
                },
                "readOnly": true
              }
            },
            "readOnly": true
          }
        }
      },
      "CISCO-VOICE-DIAL-CONTROL-MIB_object-1": {
        "type": "object",
        "description": "object-1",
        "properties": {
          "callActiveSetupTime": {
            "type": "string",
            "description": "callActiveSetupTime",
            "x-yang-type": "leafref",
            "readOnly": true
          },
          "callActiveIndex": {
            "type": "string",
            "description": "callActiveIndex",
            "x-yang-type": "leafref",
            "readOnly": true
          },
          "ccVoIPCallActivePolicyName": {
            "type": "string",
            "description": "ccVoIPCallActivePolicyName",
            "x-yang-type": "leafref",
            "readOnly": true
          }
        }
      },
      "CISCO-VOICE-DIAL-CONTROL-MIB_object-2": {
        "type": "object",
        "description": "object-2",
        "properties": {
          "callActiveSetupTime": {
            "type": "string",
            "description": "callActiveSetupTime",
            "x-yang-type": "leafref",
            "readOnly": true
          },
          "callActiveIndex": {
            "type": "string",
            "description": "callActiveIndex",
            "x-yang-type": "leafref",
            "readOnly": true
          },
          "cvVoIPCallActiveReversedDirectionPeerAddress": {
            "type": "string",
            "description": "cvVoIPCallActiveReversedDirectionPeerAddress",
            "x-yang-type": "leafref",
            "readOnly": true
          }
        }
      },
      "CISCO-VOICE-DIAL-CONTROL-MIB_object-3": {
        "type": "object",
        "description": "object-3",
        "properties": {
          "callActiveSetupTime": {
            "type": "string",
            "description": "callActiveSetupTime",
            "x-yang-type": "leafref",
            "readOnly": true
          },
          "callActiveIndex": {
            "type": "string",
            "description": "callActiveIndex",
            "x-yang-type": "leafref",
            "readOnly": true
          },
          "callActivePeerId": {
            "type": "string",
            "description": "callActivePeerId",
            "x-yang-type": "leafref",
            "readOnly": true
          }
        }
      },
      "CISCO-VOICE-DIAL-CONTROL-MIB_object-4": {
        "type": "object",
        "description": "object-4",
        "properties": {
          "callActiveSetupTime": {
            "type": "string",
            "description": "callActiveSetupTime",
            "x-yang-type": "leafref",
            "readOnly": true
          },
          "callActiveIndex": {
            "type": "string",
            "description": "callActiveIndex",
            "x-yang-type": "leafref",
            "readOnly": true
          },
          "callActivePeerAddress": {
            "type": "string",
            "description": "callActivePeerAddress",
            "x-yang-type": "leafref",
            "readOnly": true
          }
        }
      },
      "CISCO-VOICE-DIAL-CONTROL-MIB_object-5": {
        "type": "object",
        "description": "object-5",
        "properties": {
          "cCallHistoryIndex": {
            "type": "string",
            "description": "cCallHistoryIndex",
            "x-yang-type": "leafref",
            "readOnly": true
          },
          "cvVoIPCallHistoryRemSigIPAddrT": {
            "type": "string",
            "description": "cvVoIPCallHistoryRemSigIPAddrT",
            "x-yang-type": "leafref",
            "readOnly": true
          }
        }
      },
      "CISCO-VOICE-DIAL-CONTROL-MIB_object-6": {
        "type": "object",
        "description": "object-6",
        "properties": {
          "cCallHistoryIndex": {
            "type": "string",
            "description": "cCallHistoryIndex",
            "x-yang-type": "leafref",
            "readOnly": true
          },
          "cvVoIPCallHistoryRemSigIPAddr": {
            "type": "string",
            "description": "cvVoIPCallHistoryRemSigIPAddr",
            "x-yang-type": "leafref",
            "readOnly": true
          }
        }
      },
      "CISCO-VOICE-DIAL-CONTROL-MIB_object-7": {
        "type": "object",
        "description": "object-7",
        "properties": {
          "cCallHistoryIndex": {
            "type": "string",
            "description": "cCallHistoryIndex",
            "x-yang-type": "leafref",
            "readOnly": true
          },
          "cvVoIPCallHistoryRemMediaIPAddrT": {
            "type": "string",
            "description": "cvVoIPCallHistoryRemMediaIPAddrT",
            "x-yang-type": "leafref",
            "readOnly": true
          }
        }
      },
      "CISCO-VOICE-DIAL-CONTROL-MIB_object-8": {
        "type": "object",
        "description": "object-8",
        "properties": {
          "cCallHistoryIndex": {
            "type": "string",
            "description": "cCallHistoryIndex",
            "x-yang-type": "leafref",
            "readOnly": true
          },
          "cvVoIPCallHistoryRemMediaIPAddr": {
            "type": "string",
            "description": "cvVoIPCallHistoryRemMediaIPAddr",
            "x-yang-type": "leafref",
            "readOnly": true
          }
        }
      },
      "CISCO-VOICE-DIAL-CONTROL-MIB_object-9": {
        "type": "object",
        "description": "object-9",
        "properties": {
          "cCallHistoryIndex": {
            "type": "string",
            "description": "cCallHistoryIndex",
            "x-yang-type": "leafref",
            "readOnly": true
          },
          "cCallHistoryCallOrigin": {
            "type": "string",
            "description": "cCallHistoryCallOrigin",
            "x-yang-type": "leafref",
            "readOnly": true
          }
        }
      },
      "CISCO-VOICE-DIAL-CONTROL-MIB_object-10": {
        "type": "object",
        "description": "object-10",
        "properties": {
          "cCallHistoryIndex": {
            "type": "string",
            "description": "cCallHistoryIndex",
            "x-yang-type": "leafref",
            "readOnly": true
          },
          "cvCommonDcCallHistoryCoderTypeRate": {
            "type": "string",
            "description": "cvCommonDcCallHistoryCoderTypeRate",
            "x-yang-type": "leafref",
            "readOnly": true
          }
        }
      },
      "CISCO-VOICE-DIAL-CONTROL-MIB_cvPeerCfgEntry": {
        "type": "array",
        "description": "cvPeerCfgEntry",
        "items": {
          "type": "object",
          "properties": {
            "cvPeerCfgIndex": {
              "type": "integer",
              "description": "An arbitrary index that uniquely identifies a generic\n            voice peer.",
              "minimum": -2147483648,
              "maximum": 2147483647,
              "readOnly": true
            },
            "cvPeerCfgIfIndex": {
              "type": "string",
              "description": "The ifIndex of the peer associated ifEntry. The ifIndex\n            appears after the associated ifEntry is created\n            successfully.\n            This ifIndex will be used to access the objects in the\n            Voice over Telephony or Voice over IP peer specific table.\n            In addition, the ifIndex is also used to access the\n            associated peer configuration entry of the IETF Dial\n            Control MIB. If the peer associated ifEntry had not been\n            created, then this object has a value of zero.",
              "x-yang-type": "if-mib:InterfaceIndexOrZero",
              "readOnly": true
            },
            "cvPeerCfgType": {
              "type": "string",
              "description": "Specifies the type of voice related encapsulation.\n            voice - voice encapsulation (voiceEncap ifType) on the\n                    telephony network.\n            voip  - VoIP encapsulation (voiceOverIp ifType) on the IP\n                    network.\n            mmail - Media Mail over IP encapsulation (mediaMailOverIp\n                    ifType) on the IP network.\n            voatm - VoATM encapsulation (voiceOverATM ifType) on the\n                    ATM network.\n            vofr  - VoFR encapsulation (voiceOverFR ifType) on the\n                    Frame Relay network.",
              "readOnly": true
            },
            "cvPeerCfgRowStatus": {
              "type": "string",
              "description": "This object is used to create a new row or modify or\n            delete an existing row in this table.",
              "x-yang-type": "snmpv2-tc:RowStatus",
              "readOnly": true
            },
            "cvPeerCfgPeerType": {
              "type": "string",
              "description": "Specifies the type of a peer.\n            voice - peer in voice type to be defined in a voice\n                    gateway for voice calls. \n            data  - peer in data type to be defined in gateway\n                    that supports universal ports for modem/data\n                    calls and integrated ports for data calls.",
              "readOnly": true
            }
          }
        }
      },
      "CISCO-VOICE-DIAL-CONTROL-MIB_cvVoicePeerCfgEntry": {
        "type": "array",
        "description": "A single Voice specific Peer. One entry per voice\n          encapsulation.\n          The entry is created when its associated 'voiceEncap(103)'\n          encapsulation ifEntry is created.\n          This entry is deleted when its associated ifEntry is\n          deleted.",
        "items": {
          "type": "object",
          "properties": {
            "ifIndex": {
              "type": "string",
              "description": "ifIndex",
              "x-yang-type": "leafref",
              "readOnly": true
            },
            "cvVoicePeerCfgSessionTarget": {
              "type": "string",
              "description": "The object specifies the session target of the peer.\n            Session Targets definitions:\n            The session target has the syntax used by the IETF service\n            location protocol. The syntax is as follows:\n            \n            mapping-type:type-specific-syntax\n            \n            the mapping-type specifies a scheme for mapping the\n            matching dial string to a session target.\n            \n            The valid Mapping type definitions for the peer are as\n            follows:\n            loopback - Syntax: loopback:where\n               'where' string is defined as follows:\n               compressed - loopback is performed on compressed voice\n                            as close to the CODEC which processes the\n                            data as possible.\n               uncompressed - loopback is performed on the PCM or\n                            analog voice as close to the telephony\n                            endpoint as possible.\n            \n            Local loopback case:\n            uncompressed - the PCM voice coming into the DSP is simply\n                turned around and sent back out, allowing testing of\n                the transmit--> receive paths in the telephony\n                endpoint.\n            compressed - the compressed voice coming out of the CODEC is\n                turned around on the DSP module and fed back into the\n                decompressor through the jitter buffer. In addition to\n                the telephony endpoint, this tests both the encode and\n                decode paths without involving data paths or packet\n                handling on the host router.\n            \n            Remote loopback case:\n            compressed - RTP packets received from the network are\n                decapsulated and passed to the DSP board. Instead of\n                feeding these into the CODEC for decompression, they\n                are immediately sent back to the session application\n                as if they had originated locally and been compressed.\n            uncompressed - In addition to the above, the voice samples\n                are sent all the way through the CODEC and then turned\n                around instead of being sent to the telephony\n                endpoint",
              "x-yang-type": "snmpv2-tc:DisplayString",
              "readOnly": true
            },
            "cvVoicePeerCfgDialDigitsPrefix": {
              "type": "string",
              "description": "The object specifies the prefix of the dial digits for the\n            peer. The dial digits prefix is sent to telephony\n            interface before the real phone number when the system\n            places the outgoing call to the voice encapsulation peer\n            over telephony interface.",
              "x-yang-type": "snmpv2-tc:DisplayString",
              "readOnly": true
            },
            "cvVoicePeerCfgDIDCallEnable": {
              "type": "boolean",
              "description": "The object enables/disables the DID call treatment for\n            incoming DNIS digits.\n            true  - treat the incoming DNIS digits as if the digits\n                    are received from DID trunk.\n            false - Disable DID call treatment for incoming DNIS\n                    digits.",
              "readOnly": true
            },
            "cvVoicePeerCfgCasGroup": {
              "type": "string",
              "description": "The object specifies the CAS group number of a CAS\n            capable T1/E1  that is in the dialCtlPeerCfgLowerIf object\n            of RFC2128.\n            This object can be set to a valid CAS group number only if\n            the dialCtlPeerCfgLowerIf contains a valid ifIndex for a\n            CAS capable T1/E1. The object must set to -1 before the\n            value of the  dialCtlPeerCfgLowerIf object of RFC2128 can\n            be changed.",
              "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvCasGroup",
              "readOnly": true
            },
            "cvVoicePeerCfgRegisterE164": {
              "type": "boolean",
              "description": "This object specifies that the E.164 number specified in\n            the dialCtlPeerCfgOriginateAddress field of the associated\n            dialCtlPeerCfgTable entry be registered as an extension \n            phone number of this gateway for H323 gatekeeper and/or \n            SIP registrar.",
              "readOnly": true
            },
            "cvVoicePeerCfgForwardDigits": {
              "type": "integer",
              "description": "This object specifies the number of dialed digits to\n            forward to the remote destination in the setup message.\n            The object can take the value:\n                0-32 number of right justified digits to forward\n                -1 default\n                -2 forward extra digits i.e those over and above\n                   those needed to match to the destination pattern\n                -3 forward all digits",
              "minimum": -2147483648,
              "maximum": 2147483647,
              "readOnly": true
            },
            "cvVoicePeerCfgEchoCancellerTest": {
              "type": "string",
              "description": "This object specifies which, if any, test to run in the\n            echo canceller when a call from the network is connected.\n            echoCancellerTestNone    - do not run a test.\n            echoCancellerG168Test2A  - run ITU-T G.168 Test 2A.\n            echoCancellerG168Test2B  - run ITU-T G.168 Test 2B.\n            echoCancellerG168Test2Ca - run ITU-T G.168 Test 2C(a).\n            echoCancellerG168Test2Cb - run ITU-T G.168 Test 2C(b).\n            echoCancellerG168Test3A  - run ITU-T G.168 Test 3A.\n            echoCancellerG168Test3B  - run ITU-T G.168 Test 3B.\n            echoCancellerG168Test3C  - run ITU-T G.168 Test 3C.\n            echoCancellerG168Test4   - run ITU-T G.168 Test 4.\n            echoCancellerG168Test5   - run ITU-T G.168 Test 5.\n            echoCancellerG168Test6   - run ITU-T G.168 Test 6.\n            echoCancellerG168Test7   - run ITU-T G.168 Test 7.\n            echoCancellerG168Test9   - run ITU-T G.168 Test 9.",
              "readOnly": true
            }
          }
        }
      },
      "CISCO-VOICE-DIAL-CONTROL-MIB_cvVoIPPeerCfgEntry": {
        "type": "array",
        "description": "A single VoIP specific Peer. One entry per VoIP\n          encapsulation.\n          The entry is created when its associated 'voiceOverIp(104)'\n          encapsulation ifEntry is created.\n          This entry is deleted when its associated ifEntry is\n          deleted.",
        "items": {
          "type": "object",
          "properties": {
            "ifIndex": {
              "type": "string",
              "description": "ifIndex",
              "x-yang-type": "leafref",
              "readOnly": true
            },
            "cvVoIPPeerCfgSessionProtocol": {
              "type": "string",
              "description": "The object specifies the session protocol to be used\n            for Internet call between local and remote router via\n            IP backbone.",
              "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvSessionProtocol",
              "readOnly": true
            },
            "cvVoIPPeerCfgDesiredQoS": {
              "type": "string",
              "description": "The object specifies the user requested Quality of Service\n            for the call.",
              "x-yang-type": "int-serv:QosService",
              "readOnly": true
            },
            "cvVoIPPeerCfgMinAcceptableQoS": {
              "type": "string",
              "description": "The object specifies the minimally acceptable Quality of\n            Service for the call.",
              "x-yang-type": "int-serv:QosService",
              "readOnly": true
            },
            "cvVoIPPeerCfgSessionTarget": {
              "type": "string",
              "description": "The object specifies the session target of the peer.\n            Session Targets definitions:\n            The session target has the syntax used by the IETF service\n            location protocol. The syntax is as follows:\n            \n            mapping-type:type-specific-syntax\n            \n            the mapping-type specifies a scheme for mapping the\n            matching dial string to a session target. The\n            type-specific-syntax is exactly that, something that the\n            particular mapping scheme can understand.\n            For example,\n            Session target           Meaning\n            ipv4:171.68.13.55:1006   The session target is the IP\n                                     version 4 address of 171.68.13.55\n                                     and port 1006.\n            dns:pots.cisco.com:1661  The session target is the IP host\n                                     with dns name pots.cisco.com, and\n                                     port 1661.\n            ras                      The session target is the\n                                     gatekeeper with RAS (Registration\n                                     , Admission,  Status protocol).\n            settlement               The session target is the\n                                     settlement server.\n            enum:1                   The session target is the enum \n                                     profile match table 1.\n            \n            The valid Mapping type definitions for the peer are as\n            follows:\n            ipv4       - Syntax: ipv4:w.x.y.z:port or  ipv4:w.x.y.z\n            dns        - Syntax: dns:host.domain:port or\n                                 dns:host.domain\n            ras        - Syntax: ras\n            settlement - Syntax: settlement\n            enum       - Syntax: enum:\n            \n            loopback - Syntax: loopback:where\n               'where' string is defined as follows:\n               rtp - loopback is performed at the transport protocol\n                     level.\n            \n            Local loopback case:\n            rtp - the session application sets up an RTP stream to\n                itself (i.e. actually allocates a port pair and opens\n                the appropriate UDP sockets). It then does the full\n                RTP encapsulation, sends the packets to the loopback\n                IP address, receives the RTP packets, and hands the\n                compressed voice back to the CODEC. This tests the\n                entire local processing path, both transmit and\n                receive, in the router, as well as all of the above\n                paths.\n            \n            Remote loopback case:\n            rtp: RTP packets received from the network are decapsulated and\n                 immediately re-encapsulated in the outbound RTP\n                 stream, using the same media clock (i.e. timestamp)\n                 as the received packet. They are then sent back to\n                 the remote source router as if the voice had\n                 originated on a telephony port on the local router.",
              "x-yang-type": "snmpv2-tc:DisplayString",
              "readOnly": true
            },
            "cvVoIPPeerCfgCoderRate": {
              "type": "string",
              "description": "This object specifies the most desirable codec of speech\n            for the VoIP peer.",
              "x-yang-type": "cisco-voice:CvcSpeechCoderRate",
              "readOnly": true
            },
            "cvVoIPPeerCfgFaxRate": {
              "type": "string",
              "description": "This object specifies the default transmit rate of FAX\n            the VoIP peer. If the value of this object is 'none',\n            then the Fax relay feature is disabled; otherwise the Fax\n            relay feature is enabled.",
              "x-yang-type": "cisco-voice:CvcFaxTransmitRate",
              "readOnly": true
            },
            "cvVoIPPeerCfgVADEnable": {
              "type": "boolean",
              "description": "This object specifies whether or not the VAD (Voice\n            Activity Detection) voice data is continuously transmitted\n            to IP backbone.",
              "readOnly": true
            },
            "cvVoIPPeerCfgExpectFactor": {
              "type": "integer",
              "description": "This object specifies the user requested Expectation\n            Factor of voice quality for the call via this peer.",
              "minimum": -2147483648,
              "maximum": 2147483647,
              "readOnly": true
            },
            "cvVoIPPeerCfgIcpif": {
              "type": "integer",
              "description": "This object specifies the user requested Calculated\n            Planning Impairment Factor (Icpif) for the call via this\n            peer.",
              "minimum": -2147483648,
              "maximum": 2147483647,
              "readOnly": true
            },
            "cvVoIPPeerCfgPoorQoVNotificationEnable": {
              "type": "boolean",
              "description": "This object specifies whether cvdcPoorQoVNotification (or\n            the newer cvdcPoorQoVNotificationRev1) traps should be\n            generated for the call that is associated with this\n            peer.",
              "readOnly": true
            },
            "cvVoIPPeerCfgUDPChecksumEnable": {
              "type": "boolean",
              "description": "This object specifies whether the outgoing voice related\n            UDP packet contains a valid checksum value.\n            true  - enable the checksum of outgoing voice UDP packets\n            false - disable the checksum of outgoing voice UDP packets",
              "readOnly": true
            },
            "cvVoIPPeerCfgIPPrecedence": {
              "type": "integer",
              "description": "This object specifies the value to be stored in the IP\n            Precedence field of voice packets, with values ranging\n            from 0 (normal precedence) through 7 (network control),\n            allowing the managed system to set the importance of each\n            voice packet for delivering them to the destination peer.",
              "minimum": -2147483648,
              "maximum": 2147483647,
              "readOnly": true
            },
            "cvVoIPPeerCfgTechPrefix": {
              "type": "string",
              "description": "This object specifies the technology prefix of the peer,\n            The technology prefix and the called party address\n            are passed in Admission Request (ARQ) to gatekeeper\n            for the called party address resolution during call setup.",
              "x-yang-type": "snmpv2-tc:DisplayString",
              "readOnly": true
            },
            "cvVoIPPeerCfgDigitRelay": {
              "type": "string",
              "description": "This object specifies the methods to transmit dial digits\n            (DTMF or MF digits) via IP network.\n            rtpCisco       - Enable capability to transmit dial digits\n                             with Cisco proprietary RTP payload type.\n            h245Signal     - Enable capability to transmit dtmf digits\n                             across the H.245 channel, via the signal\n                             field of the UserInputIndication message\n            h245Alphanumeric - Enable capability to transmit dtmf\n                             digit across the H.245 channel, via the\n                             string or alphanumeric fields of the\n                             UserInputIndication message\n            rtpNte         - Enable capability to transmit dial digits\n                             using Named Telephony Event per RFC 2833\n                             section 3.\n            sipNotify      - Enable capability to transmit dtmf\n                             digits using unsolicited SIP NOTIFY\n                             messages. This mechanism is only available\n                             for SIP dialpeers.\n            sipKpml        - Enable capability to transmit dtmf\n                             digits using KPML over SIP SUBSCRIBE\n                             and NOTIFY messages. This mechanism is\n                             only available for SIP dialpeers.\n            \n            \n            Modifying the value of cvVoIPPeerCfgSessionProtocol\n            can reset the digit-relay method associated bits value in\n            this object if the modified session protocol does not\n            support  these digit-relay methods.",
              "readOnly": true
            },
            "cvVoIPPeerCfgCoderBytes": {
              "type": "integer",
              "description": "This object specifies the size of the voice payload sample\n            to be produced by the coder specified in\n            cvVoIPPeerCfgCoderRate.\n            Each coder sample produces 10 bytes of voice payload. The\n            specified value will be rounded down to the nearest valid\n            size.\n            \n            A value of 0, specifies that the coder defined by\n            cvVoIPPeerCfgCoderRate should produce its default payload\n            size.",
              "minimum": -2147483648,
              "maximum": 2147483647,
              "readOnly": true
            },
            "cvVoIPPeerCfgFaxBytes": {
              "type": "integer",
              "description": "This object specifies the payload size to be produced by\n            the coder when it is generating fax data. A value of 0,\n            specifies that the coder specified in\n            cvVoIPCfgPeerCoderRate should produce its default fax\n            payload size.",
              "minimum": -2147483648,
              "maximum": 2147483647,
              "readOnly": true
            },
            "cvVoIPPeerCfgInBandSignaling": {
              "type": "string",
              "description": "This object specifies the type of in-band signaling that\n            will be used between the end points of the call. It is\n            used by the router to determine how to interpret ABCD\n            signaling bits sent as part of voice payload data.",
              "x-yang-type": "cisco-voice:CvcInBandSignaling",
              "readOnly": true
            },
            "cvVoIPPeerCfgMediaSetting": {
              "type": "string",
              "description": "This object specifies how the media is to be setup on\n            an IP-IP Gateway. Two choices are valid: flow-through\n            and flow-around. When in flow-through mode, which is the\n            default setting, the IP-IP Gateway will terminate and \n            then re-originate the media stream. When flow-around\n            is configured the Gateway will not be involved with the\n            media, since it will flow-around the Gateway and will\n            be established directly between the endpoints.",
              "readOnly": true
            },
            "cvVoIPPeerCfgDesiredQoSVideo": {
              "type": "string",
              "description": "The object specifies the user requested Quality of Service\n            for the video portion of the call.",
              "x-yang-type": "int-serv:QosService",
              "readOnly": true
            },
            "cvVoIPPeerCfgMinAcceptableQoSVideo": {
              "type": "string",
              "description": "The object specifies the minimally acceptable Quality of\n            Service for the video portion of the call.",
              "x-yang-type": "int-serv:QosService",
              "readOnly": true
            },
            "cvVoIPPeerCfgRedirectip2ip": {
              "type": "boolean",
              "description": "This object specifies the Inbound VoIP calls that match\n            an outbound VoIP dialpeer will be responded with a SIP \n            redirect(for inbound SIP) or H.450.3 call-forward(for \n            inbound H.323).",
              "readOnly": true
            },
            "cvVoIPPeerCfgOctetAligned": {
              "type": "boolean",
              "description": "If the object has a value true(1) octet align operation\n            is used, and if the value is false(2), bandwidth efficient\n            operation is used. This object is not instantiated when\n            the object cvVoIPPeerCfgCoderRate is not equal to\n            gsmAmrNb enum.",
              "readOnly": true
            },
            "cvVoIPPeerCfgBitRates": {
              "type": "string",
              "description": "This object indicates modes of Bit rates. One or more\n            upto four modes can be configured at the same time as\n            bit rates can be changed dynamically for AMR-NB codec.\n            This object is not instantiated when the object\n            cvVoIPPeerCfgCoderRate is not equal to gsmAmrNb enum.",
              "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvAmrNbBitRateMode",
              "readOnly": true
            },
            "cvVoIPPeerCfgCRC": {
              "type": "boolean",
              "description": "If the object has a value of true(1), frame CRC will be\n            included in the payload and if the value is false(2),\n            frame CRC will not be included in the payload.\n            This object is applicable only when RTP frame type\n            is octet aligned. This object is not instantiated when\n            the object cvVoIPPeerCfgCoderRate is not equal to\n            gsmAmrNb enum.",
              "readOnly": true
            },
            "cvVoIPPeerCfgCoderMode": {
              "type": "string",
              "description": "This object indicates the iLBC codec mode to be used.\n            The value of this object is valid only if \n            cvVoIPPeerCfgCoderRate is equal to 'iLBC'.",
              "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvIlbcFrameMode",
              "readOnly": true
            },
            "cvVoIPPeerCfgCodingMode": {
              "type": "string",
              "description": "This object specifies the coding mode to be used. The object is\n            instantiated only if cvVoIPPeerCfgCoderRate is 'iSAC'. Following\n            coding modes are supported:\n            adaptive    (1) - adaptive mode where iSAC performs bandwidth  \n                              estimation and adapts to the available channel\n            \n                              bandwidth.\n            independent (2) - independent mode in which no bandwidth\n            estimation \n                              is performed.",
              "readOnly": true
            },
            "cvVoIPPeerCfgBitRate": {
              "type": "integer",
              "description": "This object specifies the target bit rate. The object is\n            instantiated only if cvVoIPPeerCfgCoderRate is 'iSAC'.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "cvVoIPPeerCfgFrameSize": {
              "type": "string",
              "description": "This object specifies the frame size used. The object is\n            instantiated only if cvVoIPPeerCfgCoderRate is 'iSAC'.\n            The frame size can be 30 ms or 60 ms, and it can be fixed for\n            all packets or vary depending on the configuration and bandwidth\n            estimation. Thus it can have the following values:\n            frameSize30      - initial frame size of 30 ms\n            frameSize60      - initial frame size of 60 ms\n            frameSize30fixed - fixed frame size 30 ms\n            frameSize60fixed - fixed frame size 60 ms",
              "readOnly": true
            },
            "cvVoIPPeerCfgDSCPPolicyNotificationEnable": {
              "type": "boolean",
              "description": "This object specifies whether cvdcPolicyViolationNotification\n            traps should be generated for the call that is associated with\n            this peer for RPH to DSCP mapping and policing feature.",
              "readOnly": true
            },
            "cvVoIPPeerCfgMediaPolicyNotificationEnable": {
              "type": "boolean",
              "description": "This object specifies whether cvdcPolicyViolationNotification\n            traps should be generated for the call that is associated with\n            this peer for Media policing feature..",
              "readOnly": true
            }
          }
        }
      },
      "CISCO-VOICE-DIAL-CONTROL-MIB_cvPeerCommonCfgEntry": {
        "type": "array",
        "description": "A single Voice specific Peer. One entry per voice related\n          encapsulation.\n          The entry is created when a voice related encapsulation\n          ifEntry is created.\n          This entry is deleted when its associated ifEntry is\n          deleted.",
        "items": {
          "type": "object",
          "properties": {
            "ifIndex": {
              "type": "string",
              "description": "ifIndex",
              "x-yang-type": "leafref",
              "readOnly": true
            },
            "cvPeerCommonCfgIncomingDnisDigits": {
              "type": "string",
              "description": "The object specifies the prefix of the incoming Dialed\n            Number Identification Service (DNIS) digits for the peer.\n            The DNIS digits prefix is used to match with the incoming\n            DNIS number for incoming call discrimination. If the\n            digits in this object are matched with incoming DNIS\n            number, the  associated dialCtlPeerCfgInfoType in RFC 2128\n            will be used as a call discriminator for differentiating\n            speech, data, fax, video or modem calls.",
              "x-yang-type": "snmpv2-tc:DisplayString",
              "readOnly": true
            },
            "cvPeerCommonCfgMaxConnections": {
              "type": "integer",
              "description": "The object specifies the maximum allowed connection\n            to/from the peer. A value of -1 disables the limit of\n            maximum connections.",
              "minimum": -2147483648,
              "maximum": 2147483647,
              "readOnly": true
            },
            "cvPeerCommonCfgApplicationName": {
              "type": "string",
              "description": "The object specifies the application to handle the incoming\n            call after the peer is selected.\n            If no application name is specified, then the default\n            session application will take care of the incoming call.",
              "x-yang-type": "snmpv2-tc:DisplayString",
              "readOnly": true
            },
            "cvPeerCommonCfgPreference": {
              "type": "integer",
              "description": "This object specifies the selection preference of a peer\n            when multiple peers are matched to the selection criteria.\n            The value of 0 has the lowest preference for peer\n            selection.",
              "minimum": -2147483648,
              "maximum": 2147483647,
              "readOnly": true
            },
            "cvPeerCommonCfgHuntStop": {
              "type": "boolean",
              "description": "This object specifies whether dialpeer hunting should stop\n            when this peer is reached.",
              "readOnly": true
            },
            "cvPeerCommonCfgDnisMappingName": {
              "type": "string",
              "description": "The object specifies a Dialer Number Identification\n            Service (DNIS) map name for the Voice specific peer\n            entry specified in this row. A DNIS is a called party\n            number and they can be grouped and identified by DNIS\n            map.",
              "x-yang-type": "cisco-voice-dnis:DnisMapname",
              "readOnly": true
            },
            "cvPeerCommonCfgSourceCarrierId": {
              "type": "string",
              "description": "The object specifies the Source Carrier Id for the peer.\n            The Source Carrier Id is used to match with the Source\n            Carrier Id of a call. If the Source Carrier Id in this\n            object is matched with the Source Carrier Id of a call,\n            then the associated peer will be used to handle the call. \n            Only alphanumeric characters, '-' and '_' are allowed in\n            the string.",
              "x-yang-type": "snmp-framework:SnmpAdminString",
              "readOnly": true
            },
            "cvPeerCommonCfgTargetCarrierId": {
              "type": "string",
              "description": "The object specifies the Target Carrier Id for the peer.\n            The Target Carrier Id is used to match with the Target\n            Carrier Id of a call. If the Target Carrier Id in this\n            object is matched with the Target Carrier Id of a call,\n            then the associated peer will be used to handle the call.\n            Only alphanumeric characters, '-' and '_' are allowed in\n            the string.",
              "x-yang-type": "snmp-framework:SnmpAdminString",
              "readOnly": true
            },
            "cvPeerCommonCfgSourceTrunkGrpLabel": {
              "type": "string",
              "description": "The object specifies the Source Trunk Group Label for the\n            peer. The Source Trunk Group Label is used to match with\n            the Source Trunk Group Label of a call. If the Source\n            Trunk Group Label in this object is matched with the\n            Source Trunk Group Label of a call, then the associated\n            peer will be used to handle the call. \n            Only alphanumeric characters, '-' and '_' are allowed in\n            the string.",
              "x-yang-type": "snmp-framework:SnmpAdminString",
              "readOnly": true
            },
            "cvPeerCommonCfgTargetTrunkGrpLabel": {
              "type": "string",
              "description": "The object specifies the Target Trunk Group Label for the\n            peer. The Target Trunk Group Label is used to match with\n            the Target Trunk Group Label of a call. If the Target\n            Trunk Group Label in this object is matched with the\n            Target Trunk Group Label of a call, then the associated\n            peer will be used to handle the call.\n            Only alphanumeric characters, '-' and '_' are allowed in\n            the string.",
              "x-yang-type": "snmp-framework:SnmpAdminString",
              "readOnly": true
            }
          }
        }
      },
      "CISCO-VOICE-DIAL-CONTROL-MIB_cvCallActiveEntry": {
        "type": "array",
        "description": "cvCallActiveEntry",
        "items": {
          "type": "object",
          "properties": {
            "callActiveSetupTime": {
              "type": "string",
              "description": "callActiveSetupTime",
              "x-yang-type": "leafref",
              "readOnly": true
            },
            "callActiveIndex": {
              "type": "string",
              "description": "callActiveIndex",
              "x-yang-type": "leafref",
              "readOnly": true
            },
            "cvCallActiveConnectionId": {
              "type": "string",
              "description": "The global connection identifier for the\n            active telephony leg of the call.",
              "x-yang-type": "cisco-voice:CvcGUid",
              "readOnly": true
            },
            "cvCallActiveTxDuration": {
              "type": "string",
              "description": "Duration of Transmit path open from this peer to the\n            voice gateway for the call leg. This counter object will\n            lock at the maximum value which is approximately two\n            days.",
              "x-yang-type": "dial-control:AbsoluteCounter32",
              "readOnly": true
            },
            "cvCallActiveVoiceTxDuration": {
              "type": "string",
              "description": "Duration of voice transmitted from this peer to voice\n            gateway for this call leg. The Voice Utilization Rate can\n            be obtained by dividing this by cvCallActiveTXDuration\n            object. This counter object will lock at the maximum\n            value which is approximately two days.",
              "x-yang-type": "dial-control:AbsoluteCounter32",
              "readOnly": true
            },
            "cvCallActiveFaxTxDuration": {
              "type": "string",
              "description": "Duration of fax transmitted from this peer to voice gateway\n            for this call leg. The FAX Utilization Rate can be\n            obtained by dividing this by cvCallActiveTXDuration\n            object. This counter object will lock at the maximum\n            value which is approximately two days.",
              "x-yang-type": "dial-control:AbsoluteCounter32",
              "readOnly": true
            },
            "cvCallActiveCoderTypeRate": {
              "type": "string",
              "description": "The negotiated coder rate. It specifies the transmit rate of\n            voice/fax compression to its associated call leg for the\n            call.",
              "x-yang-type": "cisco-voice:CvcCoderTypeRate",
              "readOnly": true
            },
            "cvCallActiveNoiseLevel": {
              "type": "integer",
              "description": "The object contains the active noise level for the call\n            leg.",
              "minimum": -2147483648,
              "maximum": 2147483647,
              "readOnly": true
            },
            "cvCallActiveACOMLevel": {
              "type": "integer",
              "description": "The object contains the sum of Echo Return Loss (ERL),\n            cancellation loss (Echo Return Loss Enhancement) and\n            nonlinear processing loss for the call leg.\n            The value -1 indicates the level can not be determined or\n            level detection is disabled.",
              "minimum": -2147483648,
              "maximum": 2147483647,
              "readOnly": true
            },
            "cvCallActiveOutSignalLevel": {
              "type": "integer",
              "description": "The object contains the active output signal level to\n            telephony interface that is used by the call leg.",
              "minimum": -2147483648,
              "maximum": 2147483647,
              "readOnly": true
            },
            "cvCallActiveInSignalLevel": {
              "type": "integer",
              "description": "The object contains the active input signal level from\n            telephony interface that is used by the call leg.",
              "minimum": -2147483648,
              "maximum": 2147483647,
              "readOnly": true
            },
            "cvCallActiveERLLevel": {
              "type": "integer",
              "description": "The object contains the current Echo Return Loss (ERL)\n            level for the call leg.\n            The value -1 indicates the level can not be determined or\n            level detection is disabled.",
              "minimum": -2147483648,
              "maximum": 2147483647,
              "readOnly": true
            },
            "cvCallActiveSessionTarget": {
              "type": "string",
              "description": "The object specifies the session target of the peer that\n            is used for the call leg. This object is set with the\n            information in the call associated\n            cvVoicePeerCfgSessionTarget object when the call is\n            connected.",
              "x-yang-type": "snmpv2-tc:DisplayString",
              "readOnly": true
            },
            "cvCallActiveImgPageCount": {
              "type": "string",
              "description": "The number of FAX related image pages are received or\n            transmitted via the peer for the call leg.",
              "x-yang-type": "dial-control:AbsoluteCounter32",
              "readOnly": true
            },
            "cvCallActiveCallingName": {
              "type": "string",
              "description": "The calling party name of the call. If the name is\n            not available, then it will have a length of zero.",
              "x-yang-type": "snmp-framework:SnmpAdminString",
              "readOnly": true
            },
            "cvCallActiveCallerIDBlock": {
              "type": "boolean",
              "description": "The object indicates whether or not the caller ID feature\n            is blocked for this call.",
              "readOnly": true
            },
            "cvCallActiveEcanReflectorLocation": {
              "type": "integer",
              "description": "The location in milliseconds of the largest amplitude\n            reflector detected by the echo canceller for this call. \n            The value 0 indicates there is no reflector or the \n            information is not available.",
              "minimum": -2147483648,
              "maximum": 2147483647,
              "readOnly": true
            },
            "cvCallActiveAccountCode": {
              "type": "string",
              "description": "The object indicates the account code input to the call.\n            It could be used for call screen or by down stream server\n            for billing purpose.\n            The value of empty string indicates no account code input.",
              "x-yang-type": "snmp-framework:SnmpAdminString",
              "readOnly": true
            },
            "cvCallActiveERLLevelRev1": {
              "type": "integer",
              "description": "The object contains the current Echo Return Loss (ERL)\n            level for the call leg.\n            The value -1 indicates the level can not be determined or\n            level detection is disabled.",
              "minimum": -2147483648,
              "maximum": 2147483647,
              "readOnly": true
            },
            "cvCallActiveCallId": {
              "type": "integer",
              "description": "This object represents the call identifier\n            for the active telephony leg of the call.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            }
          }
        }
      },
      "CISCO-VOICE-DIAL-CONTROL-MIB_cvVoIPCallActiveEntry": {
        "type": "array",
        "description": "cvVoIPCallActiveEntry",
        "items": {
          "type": "object",
          "properties": {
            "callActiveSetupTime": {
              "type": "string",
              "description": "callActiveSetupTime",
              "x-yang-type": "leafref",
              "readOnly": true
            },
            "callActiveIndex": {
              "type": "string",
              "description": "callActiveIndex",
              "x-yang-type": "leafref",
              "readOnly": true
            },
            "cvVoIPCallActiveConnectionId": {
              "type": "string",
              "description": "The global connection identifier for\n            the active VoIP leg of the call.",
              "x-yang-type": "cisco-voice:CvcGUid",
              "readOnly": true
            },
            "cvVoIPCallActiveRemoteIPAddress": {
              "type": "string",
              "description": "Remote system IP address for the VoIP call.",
              "format": "inet:ipv4-address",
              "readOnly": true
            },
            "cvVoIPCallActiveRemoteUDPPort": {
              "type": "integer",
              "description": "Remote system UDP listener port to which to transmit voice\n            packets.",
              "minimum": -2147483648,
              "maximum": 2147483647,
              "readOnly": true
            },
            "cvVoIPCallActiveRoundTripDelay": {
              "type": "integer",
              "description": "The voice packet round trip delay between local and\n            the remote system on the IP backbone during the call.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "cvVoIPCallActiveSelectedQoS": {
              "type": "string",
              "description": "The selected RSVP QoS for the voice call.",
              "x-yang-type": "int-serv:QosService",
              "readOnly": true
            },
            "cvVoIPCallActiveSessionProtocol": {
              "type": "string",
              "description": "The object specifies the session protocol to be used\n            for Internet call between local and remote router via\n            IP backbone.",
              "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvSessionProtocol",
              "readOnly": true
            },
            "cvVoIPCallActiveSessionTarget": {
              "type": "string",
              "description": "The object specifies the session target of the peer that\n            is used for the call. This object is set with the\n            information in the call associated\n            cvVoIPPeerCfgSessionTarget object when the voice over IP\n            call is connected.",
              "x-yang-type": "snmpv2-tc:DisplayString",
              "readOnly": true
            },
            "cvVoIPCallActiveOnTimeRvPlayout": {
              "type": "string",
              "description": "Duration of voice playout from data received on time for\n            this call. This plus the durations for the GapFills in the\n            following entries gives the Total Voice Playout Duration\n            for Active Voice.\n            This does not include duration for which no data was sent by the\n            Transmit end as voice signal, e.g., silence suppression\n            and fax signal. The On Time Playout Rate can be computed\n            by dividing this entry by the Total Voice Playout Duration.\n            This counter object will lock at the maximum value which\n            is approximately two days.",
              "x-yang-type": "dial-control:AbsoluteCounter32",
              "readOnly": true
            },
            "cvVoIPCallActiveGapFillWithSilence": {
              "type": "string",
              "description": "Duration of voice signal replaced with signal played out\n            during silence due to voice data not received on time\n            (or lost) from voice gateway this call. This counter\n            object will lock at the maximum value which is\n            approximately two days.",
              "x-yang-type": "dial-control:AbsoluteCounter32",
              "readOnly": true
            },
            "cvVoIPCallActiveGapFillWithPrediction": {
              "type": "string",
              "description": "Duration of voice signal played out with signal synthesized\n            from parameters or samples of data preceding in time due\n            to voice data not received on time (or lost) from voice\n            gateway for this call. An example of such playout is\n            frame-erasure or frame-concealment strategies in G.729 and\n            G.723.1 compression algorithms. This counter object will\n            lock at the maximum value which is approximately two days.",
              "x-yang-type": "dial-control:AbsoluteCounter32",
              "readOnly": true
            },
            "cvVoIPCallActiveGapFillWithInterpolation": {
              "type": "string",
              "description": "Duration of voice signal played out with signal synthesized\n            from parameters or samples of data preceding and following\n            in time due to voice data not received on time (or lost)\n            from voice gateway for this call. This counter object\n            will lock at the maximum value which is approximately two\n            days.",
              "x-yang-type": "dial-control:AbsoluteCounter32",
              "readOnly": true
            },
            "cvVoIPCallActiveGapFillWithRedundancy": {
              "type": "string",
              "description": "Duration of voice signal played out with signal synthesized\n            from redundancy parameters available due to voice data not\n            received on time (or lost) from voice gateway for this call.\n            This counter object will lock at the maximum value which\n            is approximately two days.",
              "x-yang-type": "dial-control:AbsoluteCounter32",
              "readOnly": true
            },
            "cvVoIPCallActiveHiWaterPlayoutDelay": {
              "type": "string",
              "description": "The high water mark Voice Playout FIFO Delay during\n            the voice call. This counter object will lock at the\n            maximum value which is approximately two days.",
              "x-yang-type": "dial-control:AbsoluteCounter32",
              "readOnly": true
            },
            "cvVoIPCallActiveLoWaterPlayoutDelay": {
              "type": "integer",
              "description": "The low water mark Voice Playout FIFO Delay during\n            the voice call.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "cvVoIPCallActiveReceiveDelay": {
              "type": "integer",
              "description": "The average Playout FIFO Delay plus the decoder delay\n            during the voice call.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "cvVoIPCallActiveVADEnable": {
              "type": "boolean",
              "description": "The object indicates whether or not the VAD (Voice Activity\n            Detection) was enabled for the voice call.",
              "readOnly": true
            },
            "cvVoIPCallActiveCoderTypeRate": {
              "type": "string",
              "description": "The negotiated coder rate. It specifies the transmit rate of\n            voice/fax compression to its associated call leg for the\n            call. This rate is different from the configuration rate\n            because of rate negotiation during the call.",
              "x-yang-type": "cisco-voice:CvcCoderTypeRate",
              "readOnly": true
            },
            "cvVoIPCallActiveLostPackets": {
              "type": "string",
              "description": "The number of lost voice packets during the call.",
              "x-yang-type": "dial-control:AbsoluteCounter32",
              "readOnly": true
            },
            "cvVoIPCallActiveEarlyPackets": {
              "type": "string",
              "description": "The number of received voice packets that\n            arrived too early to store in jitter buffer\n            during the call.",
              "x-yang-type": "dial-control:AbsoluteCounter32",
              "readOnly": true
            },
            "cvVoIPCallActiveLatePackets": {
              "type": "string",
              "description": "The number of received voice packets that\n            arrived too late to playout with CODEC (Coder/Decoder)\n            during the call.",
              "x-yang-type": "dial-control:AbsoluteCounter32",
              "readOnly": true
            },
            "cvVoIPCallActiveUsername": {
              "type": "string",
              "description": "The textual identifier of the calling party (user) of the\n            call. If the username is not available, then the value of\n            this object will have a length of zero.",
              "x-yang-type": "snmp-framework:SnmpAdminString",
              "readOnly": true
            },
            "cvVoIPCallActiveProtocolCallId": {
              "type": "string",
              "description": "The protocol-specific call identifier for the VoIP call.",
              "format": "binary",
              "readOnly": true
            },
            "cvVoIPCallActiveRemSigIPAddrT": {
              "type": "string",
              "description": "This object specifies the type of address contained in\n            the associated instance of cvVoIPCallActiveRemSigIPAddr.",
              "x-yang-type": "inet-address:InetAddressType",
              "readOnly": true
            },
            "cvVoIPCallActiveRemSigIPAddr": {
              "type": "string",
              "description": "Remote signalling IP address for the VoIP call.",
              "x-yang-type": "inet-address:InetAddress",
              "readOnly": true
            },
            "cvVoIPCallActiveRemSigPort": {
              "type": "integer",
              "description": "Remote signalling listener port to which to transmit\n            voice packets.",
              "minimum": -2147483648,
              "maximum": 2147483647,
              "readOnly": true
            },
            "cvVoIPCallActiveRemMediaIPAddrT": {
              "type": "string",
              "description": "This object specifies the type of address contained in\n            the associated instance of\n            cvVoIPCallActiveRemMediaIPAddr.",
              "x-yang-type": "inet-address:InetAddressType",
              "readOnly": true
            },
            "cvVoIPCallActiveRemMediaIPAddr": {
              "type": "string",
              "description": "Remote media end point IP address for the VoIP call.",
              "x-yang-type": "inet-address:InetAddress",
              "readOnly": true
            },
            "cvVoIPCallActiveRemMediaPort": {
              "type": "integer",
              "description": "Remote media end point listener port to which to transmit\n            voice packets.",
              "minimum": -2147483648,
              "maximum": 2147483647,
              "readOnly": true
            },
            "cvVoIPCallActiveSRTPEnable": {
              "type": "boolean",
              "description": "The object indicates whether or not the SRTP (Secured RTP)\n            was enabled for the voice call.",
              "readOnly": true
            },
            "cvVoIPCallActiveOctetAligned": {
              "type": "boolean",
              "description": "If the object has a value true(1) octet align operation\n            is used, and if the value is false(2), bandwidth efficient\n            operation is used. This object is not instantiated when\n            the object cvVoIPCallActiveCoderTypeRate is not equal to\n            gsmAmrNb enum.",
              "readOnly": true
            },
            "cvVoIPCallActiveBitRates": {
              "type": "string",
              "description": "This object indicates modes of Bit rates.\n            This object is not instantiated when the object\n            cvVoIPCallActiveCoderTypeRate is not equal to\n            gsmAmrNb enum.",
              "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvAmrNbBitRateMode",
              "readOnly": true
            },
            "cvVoIPCallActiveModeChgPeriod": {
              "type": "integer",
              "description": "The object indicates the interval (N frame-blocks) at which\n            codec mode changes are allowed. This object is not\n            instantiated when the object cvVoIPCallActiveCoderTypeRate\n            is not equal to gsmAmrNb enum.",
              "minimum": -2147483648,
              "maximum": 2147483647,
              "readOnly": true
            },
            "cvVoIPCallActiveModeChgNeighbor": {
              "type": "boolean",
              "description": "If the object has a value of true(1), mode changes will be\n            made to only neighboring modes set to\n            cvVoIPCallActiveBitRates object. If the value is false(2),\n            mode changes will be allowed to any modes set to\n            cvVoIPCallActiveBitRates object. This object is not\n            instantiated when the object cvVoIPCallActiveCoderTypeRate\n            is not equal to gsmAmrNb enum.",
              "readOnly": true
            },
            "cvVoIPCallActiveMaxPtime": {
              "type": "integer",
              "description": "The object indicates the maximum amount of media that\n            can be encapsulated in a payload. Supported value is\n            20 msec. This object is not instantiated when the\n            object cvVoIPCallActiveCoderTypeRate is not equal to\n            gsmAmrNb enum.",
              "minimum": -2147483648,
              "maximum": 2147483647,
              "readOnly": true
            },
            "cvVoIPCallActiveCRC": {
              "type": "boolean",
              "description": "If the object has a value of true(1), frame CRC will be\n            included in the payload and if the value is false(2),\n            frame CRC will not be included in the payload.\n            This object is applicable only when RTP frame type\n            is octet aligned. This object is not instantiated when\n            the object cvVoIPCallActiveCoderTypeRate is not equal to\n            gsmAmrNb enum.",
              "readOnly": true
            },
            "cvVoIPCallActiveRobustSorting": {
              "type": "boolean",
              "description": "If the object has a value of true(1), payload employs\n            robust sorting and if the value is false(2), payload\n            does not employ robust sorting. This object is applicable\n            only when RTP frame type is octet aligned. This object\n            is not instantiated when the object\n            cvVoIPCallActiveCoderTypeRate is not equal to gsmAmrNb\n            enum.",
              "readOnly": true
            },
            "cvVoIPCallActiveEncap": {
              "type": "string",
              "description": "The object indicates the RTP encapsulation type.\n            Supported RTP encapsulation type is RFC3267.\n            This object is not instantiated when the object\n            cvVoIPCallActiveCoderTypeRate is not equal to\n            gsmAmrNb enum.",
              "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvAmrNbRtpEncap",
              "readOnly": true
            },
            "cvVoIPCallActiveInterleaving": {
              "type": "integer",
              "description": "The object indicates the maximum number of frame-blocks\n            allowed in an interleaving group. It indicates that\n            frame-block level interleaving will be used for that\n            session. If this object is not set, interleaving\n            is not used. This object is applicable only when\n            RTP frame type is octet aligned. This object is not\n            instantiated when the object cvVoIPCallActiveCoderTypeRate\n            is not equal to gsmAmrNb enum.",
              "minimum": -2147483648,
              "maximum": 2147483647,
              "readOnly": true
            },
            "cvVoIPCallActivePtime": {
              "type": "integer",
              "description": "The object indicates the length of the time in milliseconds\n            represented by the media of the packet. Supported value is\n            20 milliseconds. This object is not instantiated when the\n            object cvVoIPCallActiveCoderTypeRate is not equal to\n            gsmAmrNb enum.",
              "minimum": -2147483648,
              "maximum": 2147483647,
              "readOnly": true
            },
            "cvVoIPCallActiveChannels": {
              "type": "integer",
              "description": "The object indicates the number of audio channels.\n            Supported value is 1. This object is not instantiated\n            when the object cvVoIPCallActiveCoderTypeRate is not equal\n            to gsmAmrNb enum.",
              "minimum": -2147483648,
              "maximum": 2147483647,
              "readOnly": true
            },
            "cvVoIPCallActiveCoderMode": {
              "type": "string",
              "description": "The object indicates the iLBC codec mode.\n            The value of this object is valid only if \n            cvVoIPCallActiveCoderTypeRate is equal to \n            'iLBC'.",
              "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvIlbcFrameMode",
              "readOnly": true
            },
            "cvVoIPCallActiveCallId": {
              "type": "integer",
              "description": "This object represents the call identifier\n            for the active VoIP leg of the call.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "cvVoIPCallActiveCallReferenceId": {
              "type": "string",
              "description": "The call reference ID associates the video call entry and voice\n            call entry of the same endpoint.  An audio-only call may or may\n            not have a valid call reference ID (i.e. value greater than\n            zero), but in both cases, there will not be a video call entry\n            associated with it.  \n            \n            For a video call, the video-specific information  is stored in a\n            call entry in cVideoSessionActive of CISCO-VIDEO-SESSION-MIB, in\n            which the call reference ID is also identified.",
              "x-yang-type": "cisco-voice:CvcCallReferenceIdOrZero",
              "readOnly": true
            },
            "ccVoIPCallActivePolicyName": {
              "type": "string",
              "description": "This object holds the policy name. It could be media\n            policy, DSCP policy etc.",
              "x-yang-type": "snmpv2-tc:DisplayString",
              "readOnly": true
            },
            "cvVoIPCallActiveReversedDirectionPeerAddress": {
              "type": "string",
              "description": "This object store the reversed direction peer address  If the\n            address is not available, then it will have a length of zero.\n            \n            If the call is ingress then it contains called number and if the\n            call is egress then it contains calling number.",
              "x-yang-type": "snmpv2-tc:DisplayString",
              "readOnly": true
            },
            "cvVoIPCallActiveSessionId": {
              "type": "integer",
              "description": "This object indicates the active session ID assigned by the\n            call manager to identify call legs that belong to the same call\n            session.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            }
          }
        }
      },
      "CISCO-VOICE-DIAL-CONTROL-MIB_cvCallVolConnEntry": {
        "type": "array",
        "description": "An entry in the cvCallVolConnTable indicates\n          number of active calls for a call connection type\n          in the voice gateway.",
        "items": {
          "type": "object",
          "properties": {
            "cvCallVolConnIndex": {
              "type": "string",
              "description": "This object represents index to the\n            cvCallVolConnTable.",
              "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvCallConnectionType",
              "readOnly": true
            },
            "cvCallVolConnActiveConnection": {
              "type": "integer",
              "description": "This object represents the total number of\n            active calls for a connection type \n            in the voice gateway.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            }
          }
        }
      },
      "CISCO-VOICE-DIAL-CONTROL-MIB_cvCallVolIfEntry": {
        "type": "array",
        "description": "Each entry represents a row in cvCallVolIfTable\n          and corresponds to the information about an IP \n          interface in the voice gateway.",
        "items": {
          "type": "object",
          "properties": {
            "ifIndex": {
              "type": "string",
              "description": "ifIndex",
              "x-yang-type": "leafref",
              "readOnly": true
            },
            "cvCallVolMediaIncomingCalls": {
              "type": "integer",
              "description": "This object represents the total number of\n            inbound active media calls through this IP \n            interface.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "cvCallVolMediaOutgoingCalls": {
              "type": "integer",
              "description": "This object represents the total number of\n            outbound active media calls through the IP \n            interface.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            }
          }
        }
      },
      "CISCO-VOICE-DIAL-CONTROL-MIB_cvCallHistoryEntry": {
        "type": "array",
        "description": "cvCallHistoryEntry",
        "items": {
          "type": "object",
          "properties": {
            "cCallHistoryIndex": {
              "type": "string",
              "description": "cCallHistoryIndex",
              "x-yang-type": "leafref",
              "readOnly": true
            },
            "cvCallHistoryConnectionId": {
              "type": "string",
              "description": "The global connection identifier for the\n            telephony leg, which was assigned to the call.",
              "x-yang-type": "cisco-voice:CvcGUid",
              "readOnly": true
            },
            "cvCallHistoryTxDuration": {
              "type": "string",
              "description": "Duration of Transmit path open from this peer to the\n            voice gateway for the call leg. This counter object will\n            lock at the maximum value which is approximately two\n            days.",
              "x-yang-type": "dial-control:AbsoluteCounter32",
              "readOnly": true
            },
            "cvCallHistoryVoiceTxDuration": {
              "type": "string",
              "description": "Duration for this call leg. The Voice Utilization Rate\n            can be obtained by dividing this by\n            cvCallHistoryTXDuration object. This counter object will\n            lock at the maximum value which is approximately two\n            days.",
              "x-yang-type": "dial-control:AbsoluteCounter32",
              "readOnly": true
            },
            "cvCallHistoryFaxTxDuration": {
              "type": "string",
              "description": "Duration of fax transmitted from this peer to voice\n            gateway for this call leg. The FAX Utilization Rate can be\n            obtained by dividing this by cvCallHistoryTXDuration\n            object. This counter object will lock at the maximum\n            value which is approximately two days.",
              "x-yang-type": "dial-control:AbsoluteCounter32",
              "readOnly": true
            },
            "cvCallHistoryCoderTypeRate": {
              "type": "string",
              "description": "The negotiated coder rate. It specifies the transmit rate\n            of voice/fax compression to its associated call leg for\n            the call.",
              "x-yang-type": "cisco-voice:CvcCoderTypeRate",
              "readOnly": true
            },
            "cvCallHistoryNoiseLevel": {
              "type": "integer",
              "description": "The object contains the average noise level for the call\n            leg.",
              "minimum": -2147483648,
              "maximum": 2147483647,
              "readOnly": true
            },
            "cvCallHistoryACOMLevel": {
              "type": "integer",
              "description": "The object contains the average ACOM level for the call\n            leg. The value -1 indicates the level can not be\n            determined or level detection is disabled.",
              "minimum": -2147483648,
              "maximum": 2147483647,
              "readOnly": true
            },
            "cvCallHistorySessionTarget": {
              "type": "string",
              "description": "The object specifies the session target of the peer that\n            is used for the call leg via telephony interface.",
              "x-yang-type": "snmpv2-tc:DisplayString",
              "readOnly": true
            },
            "cvCallHistoryImgPageCount": {
              "type": "string",
              "description": "The number of FAX related image pages are received or\n            transmitted via the peer for the call leg.",
              "x-yang-type": "dial-control:AbsoluteCounter32",
              "readOnly": true
            },
            "cvCallHistoryCallingName": {
              "type": "string",
              "description": "The calling party name of the call. If the name is\n            not available, then it will have a length of zero.",
              "x-yang-type": "snmp-framework:SnmpAdminString",
              "readOnly": true
            },
            "cvCallHistoryCallerIDBlock": {
              "type": "boolean",
              "description": "The object indicates whether or not the caller ID feature\n            is blocked for this call.",
              "readOnly": true
            },
            "cvCallHistoryAccountCode": {
              "type": "string",
              "description": "The object indicates the account code input to the call.\n            It could be used by down stream billing server.\n            The value of empty string indicates no account code input.",
              "x-yang-type": "snmp-framework:SnmpAdminString",
              "readOnly": true
            },
            "cvCallHistoryCallId": {
              "type": "integer",
              "description": "This object represents the call identifier for the\n            telephony leg, which was assigned to the call.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            }
          }
        }
      },
      "CISCO-VOICE-DIAL-CONTROL-MIB_cvVoIPCallHistoryEntry": {
        "type": "array",
        "description": "cvVoIPCallHistoryEntry",
        "items": {
          "type": "object",
          "properties": {
            "cCallHistoryIndex": {
              "type": "string",
              "description": "cCallHistoryIndex",
              "x-yang-type": "leafref",
              "readOnly": true
            },
            "cvVoIPCallHistoryConnectionId": {
              "type": "string",
              "description": "The global connection identifier for the\n            VoIP leg, which was assigned to the call.",
              "x-yang-type": "cisco-voice:CvcGUid",
              "readOnly": true
            },
            "cvVoIPCallHistoryRemoteIPAddress": {
              "type": "string",
              "description": "Remote system IP address for the call.",
              "format": "inet:ipv4-address",
              "readOnly": true
            },
            "cvVoIPCallHistoryRemoteUDPPort": {
              "type": "integer",
              "description": "Remote system UDP listener port to which to transmit voice\n            packets for the call.",
              "minimum": -2147483648,
              "maximum": 2147483647,
              "readOnly": true
            },
            "cvVoIPCallHistoryRoundTripDelay": {
              "type": "integer",
              "description": "The voice packet round trip delay between local and\n            the remote system on the IP backbone during the call.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "cvVoIPCallHistorySelectedQoS": {
              "type": "string",
              "description": "The selected RSVP QoS for the call.",
              "x-yang-type": "int-serv:QosService",
              "readOnly": true
            },
            "cvVoIPCallHistorySessionProtocol": {
              "type": "string",
              "description": "The object specifies the session protocol to be used\n            for Internet call between local and remote router via\n            IP backbone.",
              "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvSessionProtocol",
              "readOnly": true
            },
            "cvVoIPCallHistorySessionTarget": {
              "type": "string",
              "description": "The object specifies the session target of the peer that\n            is used for the Voice over IP call.",
              "x-yang-type": "snmpv2-tc:DisplayString",
              "readOnly": true
            },
            "cvVoIPCallHistoryOnTimeRvPlayout": {
              "type": "string",
              "description": "Duration of voice playout from data received on time for\n            this call. This plus the durations for the GapFills in the\n            following entries gives the Total Voice Playout Duration\n            for Active Voice.\n            This does not include duration for which no data was sent by the\n            Transmit end as voice signal, e.g., silence suppression\n            and fax signal. The On Time Playout Rate can be computed\n            by dividing this entry by the Total Voice Playout Duration.\n            This counter object will lock at the maximum value which\n            is approximately two days.",
              "x-yang-type": "dial-control:AbsoluteCounter32",
              "readOnly": true
            },
            "cvVoIPCallHistoryGapFillWithSilence": {
              "type": "string",
              "description": "Duration of voice signal replaced with signal played out\n            during silence due to voice data not received on time\n            (or lost) from voice gateway this call. This counter\n            object will lock at the maximum value which is\n            approximately two days.",
              "x-yang-type": "dial-control:AbsoluteCounter32",
              "readOnly": true
            },
            "cvVoIPCallHistoryGapFillWithPrediction": {
              "type": "string",
              "description": "Duration of voice signal played out with signal synthesized\n            from parameters or samples of data preceding in time due to\n            voice data not received on time (or lost) from voice gateway\n            for this call. An example of such playout is frame-erasure\n            or  frame-concealment strategies in G.729 and G.723.1\n            compression algorithms. This counter object will lock at\n            the maximum value which is approximately two days.",
              "x-yang-type": "dial-control:AbsoluteCounter32",
              "readOnly": true
            },
            "cvVoIPCallHistoryGapFillWithInterpolation": {
              "type": "string",
              "description": "Duration of voice signal played out with signal synthesized\n            from parameters or samples of data preceding and following\n            in time due to voice data not received on time (or lost)\n            from voice gateway for this call. This counter object\n            will lock at the maximum value which is approximately two\n            days.",
              "x-yang-type": "dial-control:AbsoluteCounter32",
              "readOnly": true
            },
            "cvVoIPCallHistoryGapFillWithRedundancy": {
              "type": "string",
              "description": "Duration of voice signal played out with signal synthesized\n            from redundancy parameters available due to voice data not\n            received on time (or lost) from voice gateway for this call.\n            This counter object will lock at the maximum value which\n            is approximately two days.",
              "x-yang-type": "dial-control:AbsoluteCounter32",
              "readOnly": true
            },
            "cvVoIPCallHistoryHiWaterPlayoutDelay": {
              "type": "string",
              "description": "The high water mark Voice Playout FIFO Delay during\n            the voice call. This counter object will lock at the\n            maximum value which is approximately two days.",
              "x-yang-type": "dial-control:AbsoluteCounter32",
              "readOnly": true
            },
            "cvVoIPCallHistoryLoWaterPlayoutDelay": {
              "type": "integer",
              "description": "The low water mark Voice Playout FIFO Delay during\n            the voice call.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "cvVoIPCallHistoryReceiveDelay": {
              "type": "integer",
              "description": "The average Playout FIFO Delay plus the decoder delay\n            during the voice call.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "cvVoIPCallHistoryVADEnable": {
              "type": "boolean",
              "description": "The object indicates whether or not the VAD (Voice Activity\n            Detection) was enabled for the voice call.",
              "readOnly": true
            },
            "cvVoIPCallHistoryCoderTypeRate": {
              "type": "string",
              "description": "The negotiated coder rate. It specifies the transmit rate of\n            voice/fax compression to its associated call leg for the\n            call. This rate is different from the configuration rate\n            because of rate negotiation during the call.",
              "x-yang-type": "cisco-voice:CvcCoderTypeRate",
              "readOnly": true
            },
            "cvVoIPCallHistoryIcpif": {
              "type": "integer",
              "description": "The Calculated Planning Impairment Factor (Icpif) of the\n            call  that is associated to this call leg.\n            The value in this object is computed by the following\n            equation.\n            Icpif of the call =\n            Itotal (total impairment value) of the call - A\n            (Expectation Factor) in the cvVoIPPeerCfgExpectFactor of\n            the call leg associated peer.\n            A value of -1 implies that Icpif was not calculated and is\n            meaningless for this call.",
              "minimum": -2147483648,
              "maximum": 2147483647,
              "readOnly": true
            },
            "cvVoIPCallHistoryLostPackets": {
              "type": "string",
              "description": "The number of lost voice packets during the call.",
              "x-yang-type": "dial-control:AbsoluteCounter32",
              "readOnly": true
            },
            "cvVoIPCallHistoryEarlyPackets": {
              "type": "string",
              "description": "The number of received voice packets that are\n            arrived too early to store in jitter buffer\n            during the call.",
              "x-yang-type": "dial-control:AbsoluteCounter32",
              "readOnly": true
            },
            "cvVoIPCallHistoryLatePackets": {
              "type": "string",
              "description": "The number of received voice packets that are\n            arrived too late to playout with CODEC (Coder/Decoder)\n            during the call.",
              "x-yang-type": "dial-control:AbsoluteCounter32",
              "readOnly": true
            },
            "cvVoIPCallHistoryUsername": {
              "type": "string",
              "description": "The textual identifier of the calling party (user) of the\n            call. If the username is not available, then the value of\n            this object will have a length of zero.",
              "x-yang-type": "snmp-framework:SnmpAdminString",
              "readOnly": true
            },
            "cvVoIPCallHistoryProtocolCallId": {
              "type": "string",
              "description": "The protocol-specific call identifier for the VoIP call.",
              "format": "binary",
              "readOnly": true
            },
            "cvVoIPCallHistoryRemSigIPAddrT": {
              "type": "string",
              "description": "This object specifies the type of address contained in\n            the associated instance of cvVoIPCallHistoryRemSigIPAddr.",
              "x-yang-type": "inet-address:InetAddressType",
              "readOnly": true
            },
            "cvVoIPCallHistoryRemSigIPAddr": {
              "type": "string",
              "description": "Remote signalling IP address for the VoIP call.",
              "x-yang-type": "inet-address:InetAddress",
              "readOnly": true
            },
            "cvVoIPCallHistoryRemSigPort": {
              "type": "integer",
              "description": "Remote signalling listener port to which to transmit\n            voice packets.",
              "minimum": -2147483648,
              "maximum": 2147483647,
              "readOnly": true
            },
            "cvVoIPCallHistoryRemMediaIPAddrT": {
              "type": "string",
              "description": "This object specifies the type of address contained in\n            the associated instance of\n            cvVoIPCallHistoryRemMediaIPAddr.",
              "x-yang-type": "inet-address:InetAddressType",
              "readOnly": true
            },
            "cvVoIPCallHistoryRemMediaIPAddr": {
              "type": "string",
              "description": "Remote media end point IP address for the VoIP call.",
              "x-yang-type": "inet-address:InetAddress",
              "readOnly": true
            },
            "cvVoIPCallHistoryRemMediaPort": {
              "type": "integer",
              "description": "Remote media end point listener port to which to transmit\n            voice packets.",
              "minimum": -2147483648,
              "maximum": 2147483647,
              "readOnly": true
            },
            "cvVoIPCallHistorySRTPEnable": {
              "type": "boolean",
              "description": "The object indicates whether or not the SRTP (Secured RTP)\n            was enabled for the voice call.",
              "readOnly": true
            },
            "cvVoIPCallHistoryFallbackIcpif": {
              "type": "integer",
              "description": "The Calculated Planning Impairment Factor (Icpif) of the\n            call  that is associated to this call leg.\n            The value in this object is computed by the following\n            equation.\n            Icpif of the fallback probe =\n            Itotal (total impairment value)  - configured fallback\n            (Expectation Factor).\n            A value of 0 implies that Icpif was not calculated and is\n            meaningless for this attempt.",
              "minimum": -2147483648,
              "maximum": 2147483647,
              "readOnly": true
            },
            "cvVoIPCallHistoryFallbackLoss": {
              "type": "string",
              "description": "FallbackLoss is the percentage of loss packets based on\n            the total packets sent.",
              "x-yang-type": "dial-control:AbsoluteCounter32",
              "readOnly": true
            },
            "cvVoIPCallHistoryFallbackDelay": {
              "type": "integer",
              "description": "The FallbackDelay is calculated as follows -\n            Take the sum of the round trips for all the probes, \n            divide by the number of probes, \n            and divide by two to get the one-way delay.  \n            Then add in jitter_in or jiter_out,\n            which ever is higher.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "cvVoIPCallHistoryOctetAligned": {
              "type": "boolean",
              "description": "If the object has a value true(1) octet align operation\n            is used, and if the value is false(2), bandwidth efficient\n            operation is used. This object is not instantiated when\n            the object cvVoIPCallHistoryCoderTypeRate is not equal to\n            gsmAmrNb enum.",
              "readOnly": true
            },
            "cvVoIPCallHistoryBitRates": {
              "type": "string",
              "description": "This object indicates modes of Bit rates.\n            This object is not instantiated when the object\n            cvVoIPCallHistoryCoderTypeRate is not equal to\n            gsmAmrNb enum.",
              "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvAmrNbBitRateMode",
              "readOnly": true
            },
            "cvVoIPCallHistoryModeChgPeriod": {
              "type": "integer",
              "description": "The object indicates the interval (N frame-blocks) at which\n            codec mode changes are allowed. This object is not\n            instantiated when the object cvVoIPCallHistoryCoderTypeRate\n            is not equal to gsmAmrNb enum.",
              "minimum": -2147483648,
              "maximum": 2147483647,
              "readOnly": true
            },
            "cvVoIPCallHistoryModeChgNeighbor": {
              "type": "boolean",
              "description": "If the object has a value of true(1), mode changes will be\n            made to only neighboring modes set to\n            cvVoIPCallHistoryBitRates object. If the value is false(2),\n            mode changes will be allowed to any modes set to\n            cvVoIPCallHistoryBitRates object. This object is not\n            instantiated when the object cvVoIPCallHistoryCoderTypeRate\n            is not equal to gsmAmrNb enum.",
              "readOnly": true
            },
            "cvVoIPCallHistoryMaxPtime": {
              "type": "integer",
              "description": "The object indicates the maximum amount of media that\n            can be encapsulated in a payload. Supported value is\n            20 msec. This object is not instantiated when the\n            object cvVoIPCallHistoryCoderTypeRate is not equal to\n            gsmAmrNb enum.",
              "minimum": -2147483648,
              "maximum": 2147483647,
              "readOnly": true
            },
            "cvVoIPCallHistoryCRC": {
              "type": "boolean",
              "description": "If the object has a value of true(1), frame CRC will be\n            included in the payload and if the value is false(2),\n            frame CRC will not be included in the payload.\n            This object is applicable only when RTP frame type\n            is octet aligned. This object is not instantiated when\n            the object cvVoIPCallHistoryCoderTypeRate is not equal to\n            gsmAmrNb enum.",
              "readOnly": true
            },
            "cvVoIPCallHistoryRobustSorting": {
              "type": "boolean",
              "description": "If the object has a value of true(1), payload employs\n            robust sorting and if the value is false(2), payload\n            does not employ robust sorting. This object is applicable\n            only when RTP frame type is octet aligned. This object\n            is not instantiated when the object\n            cvVoIPCallHistoryCoderTypeRate is not equal to gsmAmrNb\n            enum.",
              "readOnly": true
            },
            "cvVoIPCallHistoryEncap": {
              "type": "string",
              "description": "The object indicates the RTP encapsulation type.\n            Supported RTP encapsulation type is RFC3267.\n            This object is not instantiated when the object\n            cvVoIPCallHistoryCoderTypeRate is not equal to\n            gsmAmrNb enum.",
              "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvAmrNbRtpEncap",
              "readOnly": true
            },
            "cvVoIPCallHistoryInterleaving": {
              "type": "integer",
              "description": "The object indicates the maximum number of frame-blocks\n            allowed in an interleaving group. It indicates that\n            frame-block level interleaving will be used for that\n            session. If this object is not set, interleaving\n            is not used. This object is applicable only when\n            RTP frame type is octet aligned. This object is not\n            instantiated when the object cvVoIPCallHistoryCoderTypeRate\n            is not equal to gsmAmrNb enum.",
              "minimum": -2147483648,
              "maximum": 2147483647,
              "readOnly": true
            },
            "cvVoIPCallHistoryPtime": {
              "type": "integer",
              "description": "The object indicates the length of the time in milliseconds\n            represented by the media of the packet. Supported value is\n            20 milliseconds. This object is not instantiated when the\n            object cvVoIPCallHistoryCoderTypeRate is not equal to\n            gsmAmrNb enum.",
              "minimum": -2147483648,
              "maximum": 2147483647,
              "readOnly": true
            },
            "cvVoIPCallHistoryChannels": {
              "type": "integer",
              "description": "The object indicates the number of audio channels.\n            Supported value is 1. This object is not instantiated\n            when the object cvVoIPCallHistoryCoderTypeRate is not equal\n            to gsmAmrNb enum.",
              "minimum": -2147483648,
              "maximum": 2147483647,
              "readOnly": true
            },
            "cvVoIPCallHistoryCoderMode": {
              "type": "string",
              "description": "The object indicates the iLBC mode.\n            The value of this object is valid only if \n            cvVoIPCallHistoryCoderTypeRate is equal to \n            'iLBC'.",
              "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvIlbcFrameMode",
              "readOnly": true
            },
            "cvVoIPCallHistoryCallId": {
              "type": "integer",
              "description": "This object represents the call identifier for the\n            VoIP leg, which was assigned to the call.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "cvVoIPCallHistoryCallReferenceId": {
              "type": "string",
              "description": "The call reference ID associates the video call entry and voice\n            call entry of the same endpoint.  An audio-only call may or may\n            not have a valid call reference ID (i.e. value greater than\n            zero), but in both cases, there will not be a video call entry\n            associated with it. \n            \n            For a video call, the video-specific information  is stored in a\n            call entry in cVideoSessionActive of CISCO-VIDEO-SESSION-MIB, in\n            which the call reference ID is also identified.",
              "x-yang-type": "cisco-voice:CvcCallReferenceIdOrZero",
              "readOnly": true
            },
            "cvVoIPCallHistorySessionId": {
              "type": "integer",
              "description": "This object indicates the session ID assigned by the call\n            manager to identify call legs that belong to the same call\n            session.  This session ID (history) represents a completed call\n            session, whereas the active session ID\n            (cvVoIPCallActiveSessionId) represents an ongoing session.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            }
          }
        }
      },
      "CISCO-VOICE-DIAL-CONTROL-MIB_cvCallRateStatsEntry": {
        "type": "array",
        "description": "This is a conceptual-row in cvCallRateStatsTable\n          This entry is created at the system initialization and is\n          updated at every epoch based on CvCallVolumeStatsIntvlType",
        "items": {
          "type": "object",
          "properties": {
            "cvCallRateStatsIntvlDurUnits": {
              "type": "string",
              "description": "The Object indexes in Call Rate Table to select one among three\n            interval-tables.\n            \n            The different types in this table are represented by \n            CvCallVolumeStatsIntvlType",
              "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvCallVolumeStatsIntvlType",
              "readOnly": true
            },
            "cvCallRateStatsIntvlDur": {
              "type": "integer",
              "description": "This is an index that references to the different past periods\n            in given in interval of call rate table.\n            This range is 1-60 for Seconds and Minutes table \n            wherein 1-72 for hours table.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "cvCallRateStatsMaxVal": {
              "type": "integer",
              "description": "This object indicates the maximum calls per second\n            that occured for the given period for the given interval.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "cvCallRateStatsAvgVal": {
              "type": "integer",
              "description": "This object indicates the average calls per second\n            that occured for the given period for the given interval.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            }
          }
        }
      },
      "CISCO-VOICE-DIAL-CONTROL-MIB_cvCallLegRateStatsEntry": {
        "type": "array",
        "description": "This is a conceptual-row in cvCallLegRateStatsTable\n          This entry is created at the system initialization and is\n          updated at every epoch based on CvCallVolumeStatsIntvlType",
        "items": {
          "type": "object",
          "properties": {
            "cvCallLegRateStatsIntvlDurUnits": {
              "type": "string",
              "description": "The Object indexes in Call Leg Rate Table to select one among\n            three\n            interval-tables.\n            \n            The different types in this table are represented by \n            CvCallVolumeStatsIntvlType",
              "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvCallVolumeStatsIntvlType",
              "readOnly": true
            },
            "cvCallLegRateStatsIntvlDur": {
              "type": "integer",
              "description": "This is an index that references to the different past periods\n            in given in interval of call rate table.\n            This range is 1-60 for Seconds and Minutes table \n            wherein 1-72 for hours table.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "cvCallLegRateStatsMaxVal": {
              "type": "integer",
              "description": "This object indicates the maximum call-legs per second\n            that occured for the given period for the given interval.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "cvCallLegRateStatsAvgVal": {
              "type": "integer",
              "description": "This object indicates the average call-legs per second\n            that occured for the given period for the given interval.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            }
          }
        }
      },
      "CISCO-VOICE-DIAL-CONTROL-MIB_cvActiveCallStatsEntry": {
        "type": "array",
        "description": "This is a conceptual-row in cvActiveCallStatsTable\n          This entry is created at the system initialization and is\n          updated at every epoch based on CvCallVolumeStatsIntvlType",
        "items": {
          "type": "object",
          "properties": {
            "cvActiveCallStatsIntvlDurUnits": {
              "type": "string",
              "description": "The Object indexes in Active Call Rate Table (con-current calls\n            table) to select one among three interval-tables.\n            \n            The different types in this table are represented by \n            CvCallVolumeStatsIntvlType",
              "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvCallVolumeStatsIntvlType",
              "readOnly": true
            },
            "cvActiveCallStatsIntvlDur": {
              "type": "integer",
              "description": "This is an index that references to the different past periods\n            in given in interval of active call table.\n            This range is 1-60 for Seconds and Minutes table \n            wherein 1-72 for hours table.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "cvActiveCallStatsMaxVal": {
              "type": "integer",
              "description": "This object indicates the maximum number of active call\n            that occured for the given period for the given interval.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "cvActiveCallStatsAvgVal": {
              "type": "integer",
              "description": "This object indicates the average number of active calls\n            that occured for the given period for the given interval.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            }
          }
        }
      },
      "CISCO-VOICE-DIAL-CONTROL-MIB_cvCallDurationStatsEntry": {
        "type": "array",
        "description": "This is a conceptual-row in cvCallDurationStatsTable\n          This entry is created at the system initialization and is\n          updated at every epoch based on CvCallVolumeStatsIntvlType",
        "items": {
          "type": "object",
          "properties": {
            "cvCallDurationStatsIntvlDurUnits": {
              "type": "string",
              "description": "The Object indexes in Call Duration Table to select one among\n            three interval-tables.\n            \n            The different types in this table are represented by \n            CvCallVolumeStatsIntvlType",
              "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvCallVolumeStatsIntvlType",
              "readOnly": true
            },
            "cvCallDurationStatsIntvlDur": {
              "type": "integer",
              "description": "This is an index that references to the different past periods\n            in given in interval of call Duration table.\n            This range is 1-60 for Seconds and Minutes table \n            wherein 1-72 for hours table.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "cvCallDurationStatsMaxVal": {
              "type": "integer",
              "description": "This object indicates the maximum number of calls having a\n            duration which is below the threshold for the given interval.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "cvCallDurationStatsAvgVal": {
              "type": "integer",
              "description": "This object indicates the average number of calls having a\n            duration which is below the threshold for the given interval.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            }
          }
        }
      },
      "CISCO-VOICE-DIAL-CONTROL-MIB_cvSipMsgRateStatsEntry": {
        "type": "array",
        "description": "This is a conceptual-row in cvSipMsgRateStatsTable\n          This entry is created at the system initialization and is\n          updated at every epoch based on CvCallVolumeStatsIntvlType",
        "items": {
          "type": "object",
          "properties": {
            "cvSipMsgRateStatsIntvlDurUnits": {
              "type": "string",
              "description": "The Object indexes in SIP Message Rate Table to select one\n            among three interval-tables.\n            \n            The different types in this table are represented by \n            CvCallVolumeStatsIntvlType",
              "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvCallVolumeStatsIntvlType",
              "readOnly": true
            },
            "cvSipMsgRateStatsIntvlDur": {
              "type": "integer",
              "description": "This is an index that references to the different past\n            periods in given in interval of SIP message rate table.\n            This range is 1-60 for Seconds and Minutes table \n            wherein 1-72 for hours table.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "cvSipMsgRateStatsMaxVal": {
              "type": "integer",
              "description": "This object indicates the maximum SIP messages  per second that\n            is received for the given interval.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "cvSipMsgRateStatsAvgVal": {
              "type": "integer",
              "description": "This object indicates the average SIP messages per second that\n            is received for the given interval.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            }
          }
        }
      },
      "CISCO-VOICE-DIAL-CONTROL-MIB_cvCallRateWMEntry": {
        "type": "array",
        "description": "This is a conceptual-row in cvCallRateWMTable\n          This entry is created at the system initialization and is\n          updated whenever \n          a) This entry is obsolete OR\n          b) A new/higher entry is available.\n          These entries are reinitialised/added/deleted  if\n          cvCallVolumeWMTableSize is changed",
        "items": {
          "type": "object",
          "properties": {
            "cvCallRateWMIntvlDurUnits": {
              "type": "string",
              "description": "The Object indexes in call rate Water mark Table to select one\n            among four interval-tables.\n            \n            The different types in this table are represented by \n            CvCallVolumeWMIntvlType",
              "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvCallVolumeWMIntvlType",
              "readOnly": true
            },
            "cvCallRateWMIndex": {
              "type": "integer",
              "description": "This is an index that references to different peaks in\n            past period in call rate watermark table.\n            \n            The number of watermarks entries stored for each table are \n            based on cvCallVolumeWMTableSize",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "cvCallRateWMValue": {
              "type": "integer",
              "description": "This object indicates high watermark value achieved by the\n            calls per second for the given interval",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "cvCallRateWMts": {
              "type": "string",
              "description": "This object indicates date and Time when the high watermark\n            is achieved for calls per second for the given interval",
              "x-yang-type": "snmpv2-tc:DateAndTime",
              "readOnly": true
            }
          }
        }
      },
      "CISCO-VOICE-DIAL-CONTROL-MIB_cvCallLegRateWMEntry": {
        "type": "array",
        "description": "This is a conceptual-row in cvCallLegRateWMTable\n          This entry is created at the system initialization and is\n          updated whenever \n          a) This entry is obsolete OR\n          b) A new/higher entry is available.\n          These entries are reinitialised/added/deleted  if\n          cvCallVolumeWMTableSize is changed",
        "items": {
          "type": "object",
          "properties": {
            "cvCallLegRateWMIntvlDurUnits": {
              "type": "string",
              "description": "The Object indexes in call leg rate Water mark Table to select\n            one\n            among four interval-tables.\n            \n            The different types in this table are represented by \n            CvCallVolumeWMIntvlType",
              "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvCallVolumeWMIntvlType",
              "readOnly": true
            },
            "cvCallLegRateWMIndex": {
              "type": "integer",
              "description": "This is an index that references to different peaks in\n            past period in call leg rate watermark table.\n            \n            The number of watermarks entries stored for each table are \n            based on cvCallVolumeWMTableSize",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "cvCallLegRateWMValue": {
              "type": "integer",
              "description": "This object indicates high watermark value achieved by the\n            call legs per second for the given interval",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "cvCallLegRateWMts": {
              "type": "string",
              "description": "This object indicates date and time when the high watermark\n            is achieved for call-legs per second for the given interval",
              "x-yang-type": "snmpv2-tc:DateAndTime",
              "readOnly": true
            }
          }
        }
      },
      "CISCO-VOICE-DIAL-CONTROL-MIB_cvActiveCallWMEntry": {
        "type": "array",
        "description": "This is a conceptual-row in cvActiveCallWMTable\n          This entry is created at the system initialization and is\n          updated whenever \n          a) This entry is obsolete OR\n          b) A new/higher entry is available.\n          These entries are reinitialised/added/deleted  if\n          cvCallVolumeWMTableSize is changed",
        "items": {
          "type": "object",
          "properties": {
            "cvActiveCallWMIntvlDurUnits": {
              "type": "string",
              "description": "The Object indexes in active call Water mark Table to select\n            one among four interval-tables.\n            \n            The different types in this table are represented by \n            CvCallVolumeWMIntvlType",
              "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvCallVolumeWMIntvlType",
              "readOnly": true
            },
            "cvActiveCallWMIndex": {
              "type": "integer",
              "description": "This is an index that references to different peaks in\n            past period in acive call watermark table.\n            \n            The number of watermarks entries stored for each table are \n            based on cvCallVolumeWMTableSize",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "cvActiveCallWMValue": {
              "type": "integer",
              "description": "This object indicates high watermark value achieved by the\n            active calls for the given interval",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "cvActiveCallWMts": {
              "type": "string",
              "description": "This object indicates date and time when the high watermark\n            is achieved for active calls for the given interval",
              "x-yang-type": "snmpv2-tc:DateAndTime",
              "readOnly": true
            }
          }
        }
      },
      "CISCO-VOICE-DIAL-CONTROL-MIB_cvSipMsgRateWMEntry": {
        "type": "array",
        "description": "This is a conceptual-row in cvSipMsgRateWMTable.\n          This entry is created at the system initialization and is\n          updated whenever \n          a) This entry is obsolete OR\n          b) A new/higher entry is available.\n          These entries are reinitialised/added/deleted if\n          cvCallVolumeWMTableSize is changed",
        "items": {
          "type": "object",
          "properties": {
            "cvSipMsgRateWMIntvlDurUnits": {
              "type": "string",
              "description": "The Object indexes in SIP Message rate Water mark Table to\n            select one among four interval-tables.\n            \n            The different types in this table are represented by \n            CvCallVolumeWMIntvlType",
              "x-yang-type": "CISCO-VOICE-DIAL-CONTROL-MIB:CvCallVolumeWMIntvlType",
              "readOnly": true
            },
            "cvSipMsgRateWMIndex": {
              "type": "integer",
              "description": "This is an index that references to different peaks in\n            past period in sip message rate watermark table.\n            \n            The number of watermarks entries stored for each table are \n            based on cvCallVolumeWMTableSize",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "cvSipMsgRateWMValue": {
              "type": "integer",
              "description": "This object indicates high watermark value achieved by the\n            SIP messages per second for the given interval",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "cvSipMsgRateWMts": {
              "type": "string",
              "description": "This object indicates date and time when the high watermark\n            is achieved for SIP messages per second for the given interval",
              "x-yang-type": "snmpv2-tc:DateAndTime",
              "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-VOICE-DIAL-CONTROL-MIB",
      "description": "MIB operations for CISCO-VOICE-DIAL-CONTROL-MIB"
    }
  ],
  "externalDocs": {
    "description": "Cisco SNMP Object Navigator",
    "url": "https://snmp.cloudapps.cisco.com/Support/IOS/do/BrowseMIB.do"
  }
}
