{
  "openapi": "3.0.0",
  "info": {
    "title": "DIAL-CONTROL-MIB MIB API",
    "version": "1.0.0",
    "description": "The MIB module to describe peer information for\n    demand access and possibly other kinds of interfaces.\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 DIAL-CONTROL-MIB structure](https://jeremycohoe.github.io/cisco-ios-xe-openapi-swagger/yang-trees/DIAL-CONTROL-MIB.html)",
    "contact": {
      "name": "Cisco DevNet",
      "url": "https://developer.cisco.com"
    },
    "x-yang-module": "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/DIAL-CONTROL-MIB:dialCtlConfiguration": {
      "get": {
        "summary": "Get dialCtlConfiguration data",
        "description": "Retrieve dialCtlConfiguration operational data from MIB",
        "tags": [
          "DIAL-CONTROL-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "description": "dialCtlConfiguration",
                  "properties": {
                    "dialCtlAcceptMode": {
                      "type": "string",
                      "description": "The security level for acceptance of incoming calls.\n          acceptNone(1)  - incoming calls will not be accepted\n          acceptAll(2)   - incoming calls will be accepted,\n                           even if there is no matching entry\n                           in the dialCtlPeerCfgTable\n          acceptKnown(3) - incoming calls will be accepted only\n                           if there is a matching entry in the\n                           dialCtlPeerCfgTable"
                    },
                    "dialCtlTrapEnable": {
                      "type": "string",
                      "description": "This object indicates whether dialCtlPeerCallInformation\n          and dialCtlPeerCallSetup traps should be generated for\n          all peers. If the value of this object is enabled(1),\n          traps will be generated for all peers. If the value\n          of this object is disabled(2), traps will be generated\n          only for peers having dialCtlPeerCfgTrapEnable set\n          to enabled(1)."
                    }
                  }
                },
                "example": {
                  "DIAL-CONTROL-MIB:dialCtlConfiguration": {
                    "dialCtlAcceptMode": "example-string",
                    "dialCtlTrapEnable": "example-string"
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-dialCtlConfiguration",
        "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": "/dialCtlConfiguration",
      "x-restconf-kind": "container"
    },
    "/data/DIAL-CONTROL-MIB:callHistory": {
      "get": {
        "summary": "Get callHistory data",
        "description": "Retrieve callHistory operational data from MIB",
        "tags": [
          "DIAL-CONTROL-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "description": "The upper limit on the number of entries that the\n          callHistoryTable may contain.  A value of 0\n          will prevent any history from being retained. When\n          this table is full, the oldest entry will be deleted\n          and the new one will be created.",
                  "properties": {
                    "callHistoryTableMaxLength": {
                      "type": "integer",
                      "description": "The upper limit on the number of entries that the\n          callHistoryTable may contain.  A value of 0\n          will prevent any history from being retained. When\n          this table is full, the oldest entry will be deleted\n          and the new one will be created.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "callHistoryRetainTimer": {
                      "type": "integer",
                      "description": "The minimum amount of time that an callHistoryEntry\n          will be maintained before being deleted. A value of\n          0 will prevent any history from being retained in the\n          callHistoryTable, but will neither prevent callCompletion\n          traps being generated nor affect other tables.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    }
                  }
                },
                "example": {
                  "DIAL-CONTROL-MIB:callHistory": {
                    "callHistoryTableMaxLength": -2147483648,
                    "callHistoryRetainTimer": -2147483648
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-callHistory",
        "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": "/callHistory",
      "x-restconf-kind": "container"
    },
    "/data/DIAL-CONTROL-MIB:dialCtlPeerCfgTable": {
      "get": {
        "summary": "Get dialCtlPeerCfgTable data",
        "description": "Retrieve dialCtlPeerCfgTable operational data from MIB",
        "tags": [
          "DIAL-CONTROL-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "description": "The list of peers from which the managed device\n        will accept calls or to which it will place them.",
                  "properties": {
                    "dialCtlPeerCfgEntry": {
                      "type": "array",
                      "description": "dialCtlPeerCfgEntry",
                      "items": {
                        "type": "object",
                        "properties": {
                          "ifIndex": {
                            "type": "string",
                            "description": "ifIndex",
                            "x-yang-type": "leafref"
                          },
                          "dialCtlPeerCfgId": {
                            "type": "integer",
                            "description": "This object identifies a single peer. There may\n            be several entries in this table for one peer,\n            defining different ways of reaching this peer.\n            Thus, there may be several entries in this table\n            with the same value of dialCtlPeerCfgId.\n            Multiple entries for one peer may be used to support\n            multilink as well as backup lines.\n            A single peer will be identified by a unique value\n            of this object. Several entries for one peer MUST\n            have the same value of dialCtlPeerCfgId, but different\n            ifEntries and thus different values of ifIndex.",
                            "minimum": -2147483648,
                            "maximum": 2147483647
                          },
                          "dialCtlPeerCfgIfType": {
                            "type": "string",
                            "description": "The interface type to be used for calling this peer.\n            In case of ISDN, the value of isdn(63) is to be used.",
                            "x-yang-type": "ianaiftype-mib:IANAifType"
                          },
                          "dialCtlPeerCfgLowerIf": {
                            "type": "string",
                            "description": "ifIndex value of an interface the peer will have to be\n            called on. For example, on an ISDN interface, this can be\n            the ifIndex value of a D channel or the ifIndex value of a\n            B channel, whatever is appropriate for a given peer.\n            As an example, for Basic Rate leased lines it will be\n            necessary to specify a B channel ifIndex, while for\n            \n            \n            \n            \n            semi-permanent connections the D channel ifIndex has\n            to be specified.\n            If the interface can be dynamically assigned, this object\n            has a value of zero.",
                            "x-yang-type": "if-mib:InterfaceIndexOrZero"
                          },
                          "dialCtlPeerCfgOriginateAddress": {
                            "type": "string",
                            "description": "Call Address at which the peer will be called.\n            Think of this as the set of characters following 'ATDT '\n            or the 'phone number' included in a D channel call request.\n            \n            The structure of this information will be switch type\n            specific. If there is no address information required\n            for reaching the peer, i.e., for leased lines,\n            this object will be a zero length string.",
                            "x-yang-type": "snmpv2-tc:DisplayString"
                          },
                          "dialCtlPeerCfgAnswerAddress": {
                            "type": "string",
                            "description": "Calling Party Number information element, as for example\n            passed in an ISDN SETUP message by a PBX or switch,\n            for incoming calls.\n            This address can be used to identify the peer.\n            If this address is either unknown or identical\n            to dialCtlPeerCfgOriginateAddress, this object will be\n            a zero length string.",
                            "x-yang-type": "snmpv2-tc:DisplayString"
                          },
                          "dialCtlPeerCfgSubAddress": {
                            "type": "string",
                            "description": "Subaddress at which the peer will be called.\n            If the subaddress is undefined for the given media or\n            unused, this is a zero length string.",
                            "x-yang-type": "snmpv2-tc:DisplayString"
                          },
                          "dialCtlPeerCfgClosedUserGroup": {
                            "type": "string",
                            "description": "Closed User Group at which the peer will be called.\n            If the Closed User Group is undefined for the given media\n            or unused, this is a zero length string.",
                            "x-yang-type": "snmpv2-tc:DisplayString"
                          },
                          "dialCtlPeerCfgSpeed": {
                            "type": "integer",
                            "description": "The desired information transfer speed in bits/second\n            when calling this peer.\n            The detailed media specific information, e.g. information\n            type and information transfer rate for ISDN circuits,\n            has to be extracted from this object.\n            If the transfer speed to be used is unknown or the default\n            speed for this type of interfaces, the value of this object\n            may be zero.",
                            "minimum": -2147483648,
                            "maximum": 2147483647
                          },
                          "dialCtlPeerCfgInfoType": {
                            "type": "string",
                            "description": "The Information Transfer Capability to be used when\n            calling this peer.\n            \n            speech(2) refers to a non-data connection, whereas\n            audio31(6) and audio7(7) refer to data mode\n            connections."
                          },
                          "dialCtlPeerCfgPermission": {
                            "type": "string",
                            "description": "Applicable permissions. callback(4) either rejects the\n            call and then calls back, or uses the 'Reverse charging'\n            information element if it is available.\n            Note that callback(4) is supposed to control charging, not\n            security, and applies to callback prior to accepting a\n            call. Callback for security reasons can be handled using\n            PPP callback."
                          },
                          "dialCtlPeerCfgInactivityTimer": {
                            "type": "integer",
                            "description": "The connection will be automatically disconnected\n            if no longer carrying useful data for a time\n            period, in seconds, specified in this object.\n            Useful data in this context refers to forwarding\n            packets, including routing information; it\n            excludes the encapsulator maintenance frames.\n            A value of zero means the connection will not be\n            automatically taken down due to inactivity,\n            which implies that it is a dedicated circuit.",
                            "minimum": -2147483648,
                            "maximum": 2147483647
                          },
                          "dialCtlPeerCfgMinDuration": {
                            "type": "integer",
                            "description": "Minimum duration of a call in seconds, starting from the\n            time the call is connected until the call is disconnected.\n            This is to accomplish the fact that in most countries\n            charging applies to units of time, which should be matched\n            as closely as possible.",
                            "minimum": -2147483648,
                            "maximum": 2147483647
                          },
                          "dialCtlPeerCfgMaxDuration": {
                            "type": "integer",
                            "description": "Maximum call duration in seconds. Zero means 'unlimited'.",
                            "minimum": -2147483648,
                            "maximum": 2147483647
                          },
                          "dialCtlPeerCfgCarrierDelay": {
                            "type": "integer",
                            "description": "The call timeout time in seconds. The default value\n            of zero means that the call timeout as specified for\n            the media in question will apply.",
                            "minimum": -2147483648,
                            "maximum": 2147483647
                          },
                          "dialCtlPeerCfgCallRetries": {
                            "type": "integer",
                            "description": "The number of calls to a non-responding address\n            that may be made. A retry count of zero means\n            there is no bound. The intent is to bound\n            the number of successive calls to an address\n            which is inaccessible, or which refuses those calls.\n            \n            Some countries regulate the number of call retries\n            to a given peer that can be made.",
                            "minimum": -2147483648,
                            "maximum": 2147483647
                          },
                          "dialCtlPeerCfgRetryDelay": {
                            "type": "integer",
                            "description": "The time in seconds between call retries if a peer\n            cannot be reached.\n            A value of zero means that call retries may be done\n            without any delay.",
                            "minimum": -2147483648,
                            "maximum": 2147483647
                          },
                          "dialCtlPeerCfgFailureDelay": {
                            "type": "integer",
                            "description": "The time in seconds after which call attempts are\n            to be placed again after a peer has been noticed\n            to be unreachable, i.e. after dialCtlPeerCfgCallRetries\n            unsuccessful call attempts.\n            A value of zero means that a peer will not be called\n            again after dialCtlPeerCfgCallRetries unsuccessful call\n            attempts.",
                            "minimum": -2147483648,
                            "maximum": 2147483647
                          },
                          "dialCtlPeerCfgTrapEnable": {
                            "type": "string",
                            "description": "This object indicates whether dialCtlPeerCallInformation\n            and dialCtlPeerCallSetup traps should be generated for\n            this peer."
                          },
                          "dialCtlPeerCfgStatus": {
                            "type": "string",
                            "description": "Status of one row in this table.",
                            "x-yang-type": "snmpv2-tc:RowStatus"
                          }
                        }
                      }
                    }
                  }
                },
                "example": {
                  "DIAL-CONTROL-MIB:dialCtlPeerCfgTable": {
                    "dialCtlPeerCfgEntry": [
                      {
                        "ifIndex": "1",
                        "dialCtlPeerCfgId": -2147483648,
                        "dialCtlPeerCfgIfType": "ethernetCsmacd(6)",
                        "dialCtlPeerCfgLowerIf": "example-string",
                        "dialCtlPeerCfgOriginateAddress": "192.168.1.1",
                        "dialCtlPeerCfgAnswerAddress": "192.168.1.1",
                        "dialCtlPeerCfgSubAddress": "192.168.1.1",
                        "dialCtlPeerCfgClosedUserGroup": "example-string",
                        "dialCtlPeerCfgSpeed": 1000000000,
                        "dialCtlPeerCfgInfoType": "ethernetCsmacd(6)",
                        "dialCtlPeerCfgPermission": "example-string",
                        "dialCtlPeerCfgInactivityTimer": -2147483648,
                        "dialCtlPeerCfgMinDuration": -2147483648,
                        "dialCtlPeerCfgMaxDuration": -2147483648,
                        "dialCtlPeerCfgCarrierDelay": -2147483648,
                        "dialCtlPeerCfgCallRetries": -2147483648,
                        "dialCtlPeerCfgRetryDelay": -2147483648,
                        "dialCtlPeerCfgFailureDelay": -2147483648,
                        "dialCtlPeerCfgTrapEnable": "example-string",
                        "dialCtlPeerCfgStatus": "up(1)"
                      },
                      {
                        "ifIndex": "2",
                        "dialCtlPeerCfgId": -2147483648,
                        "dialCtlPeerCfgIfType": "ethernetCsmacd(6)",
                        "dialCtlPeerCfgLowerIf": "example-string",
                        "dialCtlPeerCfgOriginateAddress": "192.168.1.1",
                        "dialCtlPeerCfgAnswerAddress": "192.168.1.1",
                        "dialCtlPeerCfgSubAddress": "192.168.1.1",
                        "dialCtlPeerCfgClosedUserGroup": "example-string",
                        "dialCtlPeerCfgSpeed": 1000000000,
                        "dialCtlPeerCfgInfoType": "ethernetCsmacd(6)",
                        "dialCtlPeerCfgPermission": "example-string",
                        "dialCtlPeerCfgInactivityTimer": -2147483648,
                        "dialCtlPeerCfgMinDuration": -2147483648,
                        "dialCtlPeerCfgMaxDuration": -2147483648,
                        "dialCtlPeerCfgCarrierDelay": -2147483648,
                        "dialCtlPeerCfgCallRetries": -2147483648,
                        "dialCtlPeerCfgRetryDelay": -2147483648,
                        "dialCtlPeerCfgFailureDelay": -2147483648,
                        "dialCtlPeerCfgTrapEnable": "example-string",
                        "dialCtlPeerCfgStatus": "up(1)"
                      },
                      {
                        "ifIndex": "3",
                        "dialCtlPeerCfgId": -2147483648,
                        "dialCtlPeerCfgIfType": "ethernetCsmacd(6)",
                        "dialCtlPeerCfgLowerIf": "example-string",
                        "dialCtlPeerCfgOriginateAddress": "192.168.1.1",
                        "dialCtlPeerCfgAnswerAddress": "192.168.1.1",
                        "dialCtlPeerCfgSubAddress": "192.168.1.1",
                        "dialCtlPeerCfgClosedUserGroup": "example-string",
                        "dialCtlPeerCfgSpeed": 1000000000,
                        "dialCtlPeerCfgInfoType": "ethernetCsmacd(6)",
                        "dialCtlPeerCfgPermission": "example-string",
                        "dialCtlPeerCfgInactivityTimer": -2147483648,
                        "dialCtlPeerCfgMinDuration": -2147483648,
                        "dialCtlPeerCfgMaxDuration": -2147483648,
                        "dialCtlPeerCfgCarrierDelay": -2147483648,
                        "dialCtlPeerCfgCallRetries": -2147483648,
                        "dialCtlPeerCfgRetryDelay": -2147483648,
                        "dialCtlPeerCfgFailureDelay": -2147483648,
                        "dialCtlPeerCfgTrapEnable": "example-string",
                        "dialCtlPeerCfgStatus": "up(1)"
                      }
                    ]
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-dialCtlPeerCfgTable",
        "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": "/dialCtlPeerCfgTable",
      "x-restconf-kind": "container"
    },
    "/data/DIAL-CONTROL-MIB:dialCtlPeerCfgTable/dialCtlPeerCfgEntry": {
      "get": {
        "summary": "Get dialCtlPeerCfgEntry list",
        "description": "Retrieve list of dialCtlPeerCfgEntry entries from MIB",
        "tags": [
          "DIAL-CONTROL-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "dialCtlPeerCfgEntry",
                  "items": {
                    "type": "object",
                    "properties": {
                      "ifIndex": {
                        "type": "string",
                        "description": "ifIndex",
                        "x-yang-type": "leafref"
                      },
                      "dialCtlPeerCfgId": {
                        "type": "integer",
                        "description": "This object identifies a single peer. There may\n            be several entries in this table for one peer,\n            defining different ways of reaching this peer.\n            Thus, there may be several entries in this table\n            with the same value of dialCtlPeerCfgId.\n            Multiple entries for one peer may be used to support\n            multilink as well as backup lines.\n            A single peer will be identified by a unique value\n            of this object. Several entries for one peer MUST\n            have the same value of dialCtlPeerCfgId, but different\n            ifEntries and thus different values of ifIndex.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "dialCtlPeerCfgIfType": {
                        "type": "string",
                        "description": "The interface type to be used for calling this peer.\n            In case of ISDN, the value of isdn(63) is to be used.",
                        "x-yang-type": "ianaiftype-mib:IANAifType"
                      },
                      "dialCtlPeerCfgLowerIf": {
                        "type": "string",
                        "description": "ifIndex value of an interface the peer will have to be\n            called on. For example, on an ISDN interface, this can be\n            the ifIndex value of a D channel or the ifIndex value of a\n            B channel, whatever is appropriate for a given peer.\n            As an example, for Basic Rate leased lines it will be\n            necessary to specify a B channel ifIndex, while for\n            \n            \n            \n            \n            semi-permanent connections the D channel ifIndex has\n            to be specified.\n            If the interface can be dynamically assigned, this object\n            has a value of zero.",
                        "x-yang-type": "if-mib:InterfaceIndexOrZero"
                      },
                      "dialCtlPeerCfgOriginateAddress": {
                        "type": "string",
                        "description": "Call Address at which the peer will be called.\n            Think of this as the set of characters following 'ATDT '\n            or the 'phone number' included in a D channel call request.\n            \n            The structure of this information will be switch type\n            specific. If there is no address information required\n            for reaching the peer, i.e., for leased lines,\n            this object will be a zero length string.",
                        "x-yang-type": "snmpv2-tc:DisplayString"
                      },
                      "dialCtlPeerCfgAnswerAddress": {
                        "type": "string",
                        "description": "Calling Party Number information element, as for example\n            passed in an ISDN SETUP message by a PBX or switch,\n            for incoming calls.\n            This address can be used to identify the peer.\n            If this address is either unknown or identical\n            to dialCtlPeerCfgOriginateAddress, this object will be\n            a zero length string.",
                        "x-yang-type": "snmpv2-tc:DisplayString"
                      },
                      "dialCtlPeerCfgSubAddress": {
                        "type": "string",
                        "description": "Subaddress at which the peer will be called.\n            If the subaddress is undefined for the given media or\n            unused, this is a zero length string.",
                        "x-yang-type": "snmpv2-tc:DisplayString"
                      },
                      "dialCtlPeerCfgClosedUserGroup": {
                        "type": "string",
                        "description": "Closed User Group at which the peer will be called.\n            If the Closed User Group is undefined for the given media\n            or unused, this is a zero length string.",
                        "x-yang-type": "snmpv2-tc:DisplayString"
                      },
                      "dialCtlPeerCfgSpeed": {
                        "type": "integer",
                        "description": "The desired information transfer speed in bits/second\n            when calling this peer.\n            The detailed media specific information, e.g. information\n            type and information transfer rate for ISDN circuits,\n            has to be extracted from this object.\n            If the transfer speed to be used is unknown or the default\n            speed for this type of interfaces, the value of this object\n            may be zero.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "dialCtlPeerCfgInfoType": {
                        "type": "string",
                        "description": "The Information Transfer Capability to be used when\n            calling this peer.\n            \n            speech(2) refers to a non-data connection, whereas\n            audio31(6) and audio7(7) refer to data mode\n            connections."
                      },
                      "dialCtlPeerCfgPermission": {
                        "type": "string",
                        "description": "Applicable permissions. callback(4) either rejects the\n            call and then calls back, or uses the 'Reverse charging'\n            information element if it is available.\n            Note that callback(4) is supposed to control charging, not\n            security, and applies to callback prior to accepting a\n            call. Callback for security reasons can be handled using\n            PPP callback."
                      },
                      "dialCtlPeerCfgInactivityTimer": {
                        "type": "integer",
                        "description": "The connection will be automatically disconnected\n            if no longer carrying useful data for a time\n            period, in seconds, specified in this object.\n            Useful data in this context refers to forwarding\n            packets, including routing information; it\n            excludes the encapsulator maintenance frames.\n            A value of zero means the connection will not be\n            automatically taken down due to inactivity,\n            which implies that it is a dedicated circuit.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "dialCtlPeerCfgMinDuration": {
                        "type": "integer",
                        "description": "Minimum duration of a call in seconds, starting from the\n            time the call is connected until the call is disconnected.\n            This is to accomplish the fact that in most countries\n            charging applies to units of time, which should be matched\n            as closely as possible.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "dialCtlPeerCfgMaxDuration": {
                        "type": "integer",
                        "description": "Maximum call duration in seconds. Zero means 'unlimited'.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "dialCtlPeerCfgCarrierDelay": {
                        "type": "integer",
                        "description": "The call timeout time in seconds. The default value\n            of zero means that the call timeout as specified for\n            the media in question will apply.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "dialCtlPeerCfgCallRetries": {
                        "type": "integer",
                        "description": "The number of calls to a non-responding address\n            that may be made. A retry count of zero means\n            there is no bound. The intent is to bound\n            the number of successive calls to an address\n            which is inaccessible, or which refuses those calls.\n            \n            Some countries regulate the number of call retries\n            to a given peer that can be made.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "dialCtlPeerCfgRetryDelay": {
                        "type": "integer",
                        "description": "The time in seconds between call retries if a peer\n            cannot be reached.\n            A value of zero means that call retries may be done\n            without any delay.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "dialCtlPeerCfgFailureDelay": {
                        "type": "integer",
                        "description": "The time in seconds after which call attempts are\n            to be placed again after a peer has been noticed\n            to be unreachable, i.e. after dialCtlPeerCfgCallRetries\n            unsuccessful call attempts.\n            A value of zero means that a peer will not be called\n            again after dialCtlPeerCfgCallRetries unsuccessful call\n            attempts.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "dialCtlPeerCfgTrapEnable": {
                        "type": "string",
                        "description": "This object indicates whether dialCtlPeerCallInformation\n            and dialCtlPeerCallSetup traps should be generated for\n            this peer."
                      },
                      "dialCtlPeerCfgStatus": {
                        "type": "string",
                        "description": "Status of one row in this table.",
                        "x-yang-type": "snmpv2-tc:RowStatus"
                      }
                    }
                  }
                },
                "example": {
                  "DIAL-CONTROL-MIB:dialCtlPeerCfgEntry": [
                    {
                      "ifIndex": "example-string",
                      "dialCtlPeerCfgId": -2147483648,
                      "dialCtlPeerCfgIfType": "ethernetCsmacd(6)",
                      "dialCtlPeerCfgLowerIf": "example-string",
                      "dialCtlPeerCfgOriginateAddress": "192.168.1.1",
                      "dialCtlPeerCfgAnswerAddress": "192.168.1.1",
                      "dialCtlPeerCfgSubAddress": "192.168.1.1",
                      "dialCtlPeerCfgClosedUserGroup": "example-string",
                      "dialCtlPeerCfgSpeed": 1000000000,
                      "dialCtlPeerCfgInfoType": "ethernetCsmacd(6)",
                      "dialCtlPeerCfgPermission": "example-string",
                      "dialCtlPeerCfgInactivityTimer": -2147483648,
                      "dialCtlPeerCfgMinDuration": -2147483648,
                      "dialCtlPeerCfgMaxDuration": -2147483648,
                      "dialCtlPeerCfgCarrierDelay": -2147483648,
                      "dialCtlPeerCfgCallRetries": -2147483648,
                      "dialCtlPeerCfgRetryDelay": -2147483648,
                      "dialCtlPeerCfgFailureDelay": -2147483648,
                      "dialCtlPeerCfgTrapEnable": "example-string",
                      "dialCtlPeerCfgStatus": "up(1)"
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-dialCtlPeerCfgEntry",
        "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": "/dialCtlPeerCfgTable/dialCtlPeerCfgEntry",
      "x-restconf-kind": "container"
    },
    "/data/DIAL-CONTROL-MIB:callActiveTable": {
      "get": {
        "summary": "Get callActiveTable data",
        "description": "Retrieve callActiveTable operational data from MIB",
        "tags": [
          "DIAL-CONTROL-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "description": "A table containing information about active\n        calls to a specific destination.",
                  "properties": {
                    "callActiveEntry": {
                      "type": "array",
                      "description": "The information regarding a single active Connection.\n          An entry in this table will be created when a call is\n          started. An entry in this table will be deleted when\n          an active call clears.",
                      "items": {
                        "type": "object",
                        "properties": {
                          "callActiveSetupTime": {
                            "type": "string",
                            "description": "The value of sysUpTime when the call associated to this\n            entry was started. This will be useful for an NMS to\n            retrieve all calls after a specific time. Also, this object\n            can be useful in finding large delays between the time the\n            call was started and the time the call was connected.\n            For ISDN media, this will be the time when the setup\n            message was received from or sent to the network.",
                            "x-yang-type": "yang:timestamp"
                          },
                          "callActiveIndex": {
                            "type": "integer",
                            "description": "Small index variable to distinguish calls that start in\n            the same hundredth of a second.",
                            "minimum": -2147483648,
                            "maximum": 2147483647
                          },
                          "callActivePeerAddress": {
                            "type": "string",
                            "description": "The number this call is connected to. If the number is\n            not available, then it will have a length of zero.",
                            "x-yang-type": "snmpv2-tc:DisplayString"
                          },
                          "callActivePeerSubAddress": {
                            "type": "string",
                            "description": "The subaddress this call is connected to. If the subaddress\n            is undefined or not available, this will be a zero length\n            string.",
                            "x-yang-type": "snmpv2-tc:DisplayString"
                          },
                          "callActivePeerId": {
                            "type": "integer",
                            "description": "This is the Id value of the peer table entry\n            to which this call was made. If a peer table entry\n            for this call does not exist or is unknown, the value\n            of this object will be zero.",
                            "minimum": -2147483648,
                            "maximum": 2147483647
                          },
                          "callActivePeerIfIndex": {
                            "type": "integer",
                            "description": "This is the ifIndex value of the peer table entry\n            to which this call was made. If a peer table entry\n            for this call does not exist or is unknown, the value\n            of this object will be zero.",
                            "minimum": -2147483648,
                            "maximum": 2147483647
                          },
                          "callActiveLogicalIfIndex": {
                            "type": "string",
                            "description": "This is the ifIndex value of the logical interface through\n            which this call was made. For ISDN media, this would be\n            the ifIndex of the B channel which was used for this call.\n            If the ifIndex value is unknown, the value of this object\n            will be zero.",
                            "x-yang-type": "if-mib:InterfaceIndexOrZero"
                          },
                          "callActiveConnectTime": {
                            "type": "string",
                            "description": "The value of sysUpTime when the call was connected.\n            If the call is not connected, this object will have a\n            value of zero.",
                            "x-yang-type": "yang:timestamp"
                          },
                          "callActiveCallState": {
                            "type": "string",
                            "description": "The current call state.\n            unknown(1)     - The call state is unknown.\n            connecting(2)  - A connection attempt (outgoing call)\n                             is being made.\n            connected(3)   - An incoming call is in the process\n                             of validation.\n            active(4)      - The call is active."
                          },
                          "callActiveCallOrigin": {
                            "type": "string",
                            "description": "The call origin."
                          },
                          "callActiveChargedUnits": {
                            "type": "string",
                            "description": "The number of charged units for this connection.\n            For incoming calls or if charging information is\n            not supplied by the switch, the value of this object\n            will be zero.",
                            "x-yang-type": "DIAL-CONTROL-MIB:AbsoluteCounter32"
                          },
                          "callActiveInfoType": {
                            "type": "string",
                            "description": "The information type for this call."
                          },
                          "callActiveTransmitPackets": {
                            "type": "string",
                            "description": "The number of packets which were transmitted for this\n            call.",
                            "x-yang-type": "DIAL-CONTROL-MIB:AbsoluteCounter32"
                          },
                          "callActiveTransmitBytes": {
                            "type": "string",
                            "description": "The number of bytes which were transmitted for this\n            call.",
                            "x-yang-type": "DIAL-CONTROL-MIB:AbsoluteCounter32"
                          },
                          "callActiveReceivePackets": {
                            "type": "string",
                            "description": "The number of packets which were received for this\n            call.",
                            "x-yang-type": "DIAL-CONTROL-MIB:AbsoluteCounter32"
                          },
                          "callActiveReceiveBytes": {
                            "type": "string",
                            "description": "The number of bytes which were received for this call.",
                            "x-yang-type": "DIAL-CONTROL-MIB:AbsoluteCounter32"
                          }
                        }
                      }
                    }
                  }
                },
                "example": {
                  "DIAL-CONTROL-MIB:callActiveTable": {
                    "callActiveEntry": [
                      {
                        "callActiveSetupTime": "example-string",
                        "callActiveIndex": 1,
                        "callActivePeerAddress": "192.168.1.1",
                        "callActivePeerSubAddress": "192.168.1.1",
                        "callActivePeerId": -2147483648,
                        "callActivePeerIfIndex": 1,
                        "callActiveLogicalIfIndex": "1",
                        "callActiveConnectTime": "example-string",
                        "callActiveCallState": "up(1)",
                        "callActiveCallOrigin": "example-string",
                        "callActiveChargedUnits": "example-string",
                        "callActiveInfoType": "ethernetCsmacd(6)",
                        "callActiveTransmitPackets": "example-string",
                        "callActiveTransmitBytes": "example-string",
                        "callActiveReceivePackets": "example-string",
                        "callActiveReceiveBytes": "example-string"
                      },
                      {
                        "callActiveSetupTime": "example-string",
                        "callActiveIndex": 2,
                        "callActivePeerAddress": "192.168.1.1",
                        "callActivePeerSubAddress": "192.168.1.1",
                        "callActivePeerId": -2147483648,
                        "callActivePeerIfIndex": 2,
                        "callActiveLogicalIfIndex": "2",
                        "callActiveConnectTime": "example-string",
                        "callActiveCallState": "up(1)",
                        "callActiveCallOrigin": "example-string",
                        "callActiveChargedUnits": "example-string",
                        "callActiveInfoType": "ethernetCsmacd(6)",
                        "callActiveTransmitPackets": "example-string",
                        "callActiveTransmitBytes": "example-string",
                        "callActiveReceivePackets": "example-string",
                        "callActiveReceiveBytes": "example-string"
                      },
                      {
                        "callActiveSetupTime": "example-string",
                        "callActiveIndex": 3,
                        "callActivePeerAddress": "192.168.1.1",
                        "callActivePeerSubAddress": "192.168.1.1",
                        "callActivePeerId": -2147483648,
                        "callActivePeerIfIndex": 3,
                        "callActiveLogicalIfIndex": "3",
                        "callActiveConnectTime": "example-string",
                        "callActiveCallState": "up(1)",
                        "callActiveCallOrigin": "example-string",
                        "callActiveChargedUnits": "example-string",
                        "callActiveInfoType": "ethernetCsmacd(6)",
                        "callActiveTransmitPackets": "example-string",
                        "callActiveTransmitBytes": "example-string",
                        "callActiveReceivePackets": "example-string",
                        "callActiveReceiveBytes": "example-string"
                      }
                    ]
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-callActiveTable",
        "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": "/callActiveTable",
      "x-restconf-kind": "container"
    },
    "/data/DIAL-CONTROL-MIB:callActiveTable/callActiveEntry": {
      "get": {
        "summary": "Get callActiveEntry list",
        "description": "Retrieve list of callActiveEntry entries from MIB",
        "tags": [
          "DIAL-CONTROL-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "The information regarding a single active Connection.\n          An entry in this table will be created when a call is\n          started. An entry in this table will be deleted when\n          an active call clears.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "callActiveSetupTime": {
                        "type": "string",
                        "description": "The value of sysUpTime when the call associated to this\n            entry was started. This will be useful for an NMS to\n            retrieve all calls after a specific time. Also, this object\n            can be useful in finding large delays between the time the\n            call was started and the time the call was connected.\n            For ISDN media, this will be the time when the setup\n            message was received from or sent to the network.",
                        "x-yang-type": "yang:timestamp"
                      },
                      "callActiveIndex": {
                        "type": "integer",
                        "description": "Small index variable to distinguish calls that start in\n            the same hundredth of a second.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "callActivePeerAddress": {
                        "type": "string",
                        "description": "The number this call is connected to. If the number is\n            not available, then it will have a length of zero.",
                        "x-yang-type": "snmpv2-tc:DisplayString"
                      },
                      "callActivePeerSubAddress": {
                        "type": "string",
                        "description": "The subaddress this call is connected to. If the subaddress\n            is undefined or not available, this will be a zero length\n            string.",
                        "x-yang-type": "snmpv2-tc:DisplayString"
                      },
                      "callActivePeerId": {
                        "type": "integer",
                        "description": "This is the Id value of the peer table entry\n            to which this call was made. If a peer table entry\n            for this call does not exist or is unknown, the value\n            of this object will be zero.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "callActivePeerIfIndex": {
                        "type": "integer",
                        "description": "This is the ifIndex value of the peer table entry\n            to which this call was made. If a peer table entry\n            for this call does not exist or is unknown, the value\n            of this object will be zero.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "callActiveLogicalIfIndex": {
                        "type": "string",
                        "description": "This is the ifIndex value of the logical interface through\n            which this call was made. For ISDN media, this would be\n            the ifIndex of the B channel which was used for this call.\n            If the ifIndex value is unknown, the value of this object\n            will be zero.",
                        "x-yang-type": "if-mib:InterfaceIndexOrZero"
                      },
                      "callActiveConnectTime": {
                        "type": "string",
                        "description": "The value of sysUpTime when the call was connected.\n            If the call is not connected, this object will have a\n            value of zero.",
                        "x-yang-type": "yang:timestamp"
                      },
                      "callActiveCallState": {
                        "type": "string",
                        "description": "The current call state.\n            unknown(1)     - The call state is unknown.\n            connecting(2)  - A connection attempt (outgoing call)\n                             is being made.\n            connected(3)   - An incoming call is in the process\n                             of validation.\n            active(4)      - The call is active."
                      },
                      "callActiveCallOrigin": {
                        "type": "string",
                        "description": "The call origin."
                      },
                      "callActiveChargedUnits": {
                        "type": "string",
                        "description": "The number of charged units for this connection.\n            For incoming calls or if charging information is\n            not supplied by the switch, the value of this object\n            will be zero.",
                        "x-yang-type": "DIAL-CONTROL-MIB:AbsoluteCounter32"
                      },
                      "callActiveInfoType": {
                        "type": "string",
                        "description": "The information type for this call."
                      },
                      "callActiveTransmitPackets": {
                        "type": "string",
                        "description": "The number of packets which were transmitted for this\n            call.",
                        "x-yang-type": "DIAL-CONTROL-MIB:AbsoluteCounter32"
                      },
                      "callActiveTransmitBytes": {
                        "type": "string",
                        "description": "The number of bytes which were transmitted for this\n            call.",
                        "x-yang-type": "DIAL-CONTROL-MIB:AbsoluteCounter32"
                      },
                      "callActiveReceivePackets": {
                        "type": "string",
                        "description": "The number of packets which were received for this\n            call.",
                        "x-yang-type": "DIAL-CONTROL-MIB:AbsoluteCounter32"
                      },
                      "callActiveReceiveBytes": {
                        "type": "string",
                        "description": "The number of bytes which were received for this call.",
                        "x-yang-type": "DIAL-CONTROL-MIB:AbsoluteCounter32"
                      }
                    }
                  }
                },
                "example": {
                  "DIAL-CONTROL-MIB:callActiveEntry": [
                    {
                      "callActiveSetupTime": "example-string",
                      "callActiveIndex": 1,
                      "callActivePeerAddress": "192.168.1.1",
                      "callActivePeerSubAddress": "192.168.1.1",
                      "callActivePeerId": -2147483648,
                      "callActivePeerIfIndex": 1,
                      "callActiveLogicalIfIndex": "example-string",
                      "callActiveConnectTime": "example-string",
                      "callActiveCallState": "up(1)",
                      "callActiveCallOrigin": "example-string",
                      "callActiveChargedUnits": "example-string",
                      "callActiveInfoType": "ethernetCsmacd(6)",
                      "callActiveTransmitPackets": "example-string",
                      "callActiveTransmitBytes": "example-string",
                      "callActiveReceivePackets": "example-string",
                      "callActiveReceiveBytes": "example-string"
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-callActiveEntry",
        "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": "/callActiveTable/callActiveEntry",
      "x-restconf-kind": "container"
    },
    "/data/DIAL-CONTROL-MIB:callHistoryTable": {
      "get": {
        "summary": "Get callHistoryTable data",
        "description": "Retrieve callHistoryTable operational data from MIB",
        "tags": [
          "DIAL-CONTROL-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "description": "A table containing information about specific\n        calls to a specific destination.",
                  "properties": {
                    "callHistoryEntry": {
                      "type": "array",
                      "description": "The information regarding a single Connection.",
                      "items": {
                        "type": "object",
                        "properties": {
                          "callActiveSetupTime": {
                            "type": "string",
                            "description": "callActiveSetupTime",
                            "x-yang-type": "leafref"
                          },
                          "callActiveIndex": {
                            "type": "string",
                            "description": "callActiveIndex",
                            "x-yang-type": "leafref"
                          },
                          "callHistoryPeerAddress": {
                            "type": "string",
                            "description": "The number this call was connected to. If the number is\n            not available, then it will have a length of zero.",
                            "x-yang-type": "snmpv2-tc:DisplayString"
                          },
                          "callHistoryPeerSubAddress": {
                            "type": "string",
                            "description": "The subaddress this call was connected to. If the subaddress\n            is undefined or not available, this will be a zero length\n            string.",
                            "x-yang-type": "snmpv2-tc:DisplayString"
                          },
                          "callHistoryPeerId": {
                            "type": "integer",
                            "description": "This is the Id value of the peer table entry\n            to which this call was made. If a peer table entry\n            for this call does not exist, the value of this object\n            will be zero.",
                            "minimum": -2147483648,
                            "maximum": 2147483647
                          },
                          "callHistoryPeerIfIndex": {
                            "type": "integer",
                            "description": "This is the ifIndex value of the peer table entry\n            to which this call was made. If a peer table entry\n            for this call does not exist, the value of this object\n            will be zero.",
                            "minimum": -2147483648,
                            "maximum": 2147483647
                          },
                          "callHistoryLogicalIfIndex": {
                            "type": "string",
                            "description": "This is the ifIndex value of the logical interface through\n            which this call was made. For ISDN media, this would be\n            the ifIndex of the B channel which was used for this call.",
                            "x-yang-type": "if-mib:InterfaceIndex"
                          },
                          "callHistoryDisconnectCause": {
                            "type": "string",
                            "description": "The encoded network cause value associated with this call.\n            \n            The value of this object will depend on the interface type\n            as well as on the protocol and protocol version being\n            used on this interface. Some references for possible cause\n            values are given below.",
                            "format": "binary"
                          },
                          "callHistoryDisconnectText": {
                            "type": "string",
                            "description": "ASCII text describing the reason for call termination.\n            \n            This object exists because it would be impossible for\n            a management station to store all possible cause values\n            for all types of interfaces. It should be used only if\n            a management station is unable to decode the value of\n            dialCtlPeerStatsLastDisconnectCause.",
                            "x-yang-type": "snmpv2-tc:DisplayString"
                          },
                          "callHistoryConnectTime": {
                            "type": "string",
                            "description": "The value of sysUpTime when the call was connected.",
                            "x-yang-type": "yang:timestamp"
                          },
                          "callHistoryDisconnectTime": {
                            "type": "string",
                            "description": "The value of sysUpTime when the call was disconnected.",
                            "x-yang-type": "yang:timestamp"
                          },
                          "callHistoryCallOrigin": {
                            "type": "string",
                            "description": "The call origin."
                          },
                          "callHistoryChargedUnits": {
                            "type": "string",
                            "description": "The number of charged units for this connection.\n            For incoming calls or if charging information is\n            not supplied by the switch, the value of this object\n            will be zero.",
                            "x-yang-type": "DIAL-CONTROL-MIB:AbsoluteCounter32"
                          },
                          "callHistoryInfoType": {
                            "type": "string",
                            "description": "The information type for this call."
                          },
                          "callHistoryTransmitPackets": {
                            "type": "string",
                            "description": "The number of packets which were transmitted while this\n            call was active.",
                            "x-yang-type": "DIAL-CONTROL-MIB:AbsoluteCounter32"
                          },
                          "callHistoryTransmitBytes": {
                            "type": "string",
                            "description": "The number of bytes which were transmitted while this\n            call was active.",
                            "x-yang-type": "DIAL-CONTROL-MIB:AbsoluteCounter32"
                          },
                          "callHistoryReceivePackets": {
                            "type": "string",
                            "description": "The number of packets which were received while this\n            call was active.",
                            "x-yang-type": "DIAL-CONTROL-MIB:AbsoluteCounter32"
                          },
                          "callHistoryReceiveBytes": {
                            "type": "string",
                            "description": "The number of bytes which were received while this\n            call was active.",
                            "x-yang-type": "DIAL-CONTROL-MIB:AbsoluteCounter32"
                          }
                        }
                      }
                    }
                  }
                },
                "example": {
                  "DIAL-CONTROL-MIB:callHistoryTable": {
                    "callHistoryEntry": [
                      {
                        "callActiveSetupTime": "example-string",
                        "callActiveIndex": "1",
                        "callHistoryPeerAddress": "192.168.1.1",
                        "callHistoryPeerSubAddress": "192.168.1.1",
                        "callHistoryPeerId": -2147483648,
                        "callHistoryPeerIfIndex": 1,
                        "callHistoryLogicalIfIndex": "1",
                        "callHistoryDisconnectCause": "example-string",
                        "callHistoryDisconnectText": "example-string",
                        "callHistoryConnectTime": "example-string",
                        "callHistoryDisconnectTime": "example-string",
                        "callHistoryCallOrigin": "example-string",
                        "callHistoryChargedUnits": "example-string",
                        "callHistoryInfoType": "ethernetCsmacd(6)",
                        "callHistoryTransmitPackets": "example-string",
                        "callHistoryTransmitBytes": "example-string",
                        "callHistoryReceivePackets": "example-string",
                        "callHistoryReceiveBytes": "example-string"
                      },
                      {
                        "callActiveSetupTime": "example-string",
                        "callActiveIndex": "2",
                        "callHistoryPeerAddress": "192.168.1.1",
                        "callHistoryPeerSubAddress": "192.168.1.1",
                        "callHistoryPeerId": -2147483648,
                        "callHistoryPeerIfIndex": 2,
                        "callHistoryLogicalIfIndex": "2",
                        "callHistoryDisconnectCause": "example-string",
                        "callHistoryDisconnectText": "example-string",
                        "callHistoryConnectTime": "example-string",
                        "callHistoryDisconnectTime": "example-string",
                        "callHistoryCallOrigin": "example-string",
                        "callHistoryChargedUnits": "example-string",
                        "callHistoryInfoType": "ethernetCsmacd(6)",
                        "callHistoryTransmitPackets": "example-string",
                        "callHistoryTransmitBytes": "example-string",
                        "callHistoryReceivePackets": "example-string",
                        "callHistoryReceiveBytes": "example-string"
                      },
                      {
                        "callActiveSetupTime": "example-string",
                        "callActiveIndex": "3",
                        "callHistoryPeerAddress": "192.168.1.1",
                        "callHistoryPeerSubAddress": "192.168.1.1",
                        "callHistoryPeerId": -2147483648,
                        "callHistoryPeerIfIndex": 3,
                        "callHistoryLogicalIfIndex": "3",
                        "callHistoryDisconnectCause": "example-string",
                        "callHistoryDisconnectText": "example-string",
                        "callHistoryConnectTime": "example-string",
                        "callHistoryDisconnectTime": "example-string",
                        "callHistoryCallOrigin": "example-string",
                        "callHistoryChargedUnits": "example-string",
                        "callHistoryInfoType": "ethernetCsmacd(6)",
                        "callHistoryTransmitPackets": "example-string",
                        "callHistoryTransmitBytes": "example-string",
                        "callHistoryReceivePackets": "example-string",
                        "callHistoryReceiveBytes": "example-string"
                      }
                    ]
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-callHistoryTable",
        "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": "/callHistoryTable",
      "x-restconf-kind": "container"
    },
    "/data/DIAL-CONTROL-MIB:callHistoryTable/callHistoryEntry": {
      "get": {
        "summary": "Get callHistoryEntry list",
        "description": "Retrieve list of callHistoryEntry entries from MIB",
        "tags": [
          "DIAL-CONTROL-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "The information regarding a single Connection.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "callActiveSetupTime": {
                        "type": "string",
                        "description": "callActiveSetupTime",
                        "x-yang-type": "leafref"
                      },
                      "callActiveIndex": {
                        "type": "string",
                        "description": "callActiveIndex",
                        "x-yang-type": "leafref"
                      },
                      "callHistoryPeerAddress": {
                        "type": "string",
                        "description": "The number this call was connected to. If the number is\n            not available, then it will have a length of zero.",
                        "x-yang-type": "snmpv2-tc:DisplayString"
                      },
                      "callHistoryPeerSubAddress": {
                        "type": "string",
                        "description": "The subaddress this call was connected to. If the subaddress\n            is undefined or not available, this will be a zero length\n            string.",
                        "x-yang-type": "snmpv2-tc:DisplayString"
                      },
                      "callHistoryPeerId": {
                        "type": "integer",
                        "description": "This is the Id value of the peer table entry\n            to which this call was made. If a peer table entry\n            for this call does not exist, the value of this object\n            will be zero.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "callHistoryPeerIfIndex": {
                        "type": "integer",
                        "description": "This is the ifIndex value of the peer table entry\n            to which this call was made. If a peer table entry\n            for this call does not exist, the value of this object\n            will be zero.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "callHistoryLogicalIfIndex": {
                        "type": "string",
                        "description": "This is the ifIndex value of the logical interface through\n            which this call was made. For ISDN media, this would be\n            the ifIndex of the B channel which was used for this call.",
                        "x-yang-type": "if-mib:InterfaceIndex"
                      },
                      "callHistoryDisconnectCause": {
                        "type": "string",
                        "description": "The encoded network cause value associated with this call.\n            \n            The value of this object will depend on the interface type\n            as well as on the protocol and protocol version being\n            used on this interface. Some references for possible cause\n            values are given below.",
                        "format": "binary"
                      },
                      "callHistoryDisconnectText": {
                        "type": "string",
                        "description": "ASCII text describing the reason for call termination.\n            \n            This object exists because it would be impossible for\n            a management station to store all possible cause values\n            for all types of interfaces. It should be used only if\n            a management station is unable to decode the value of\n            dialCtlPeerStatsLastDisconnectCause.",
                        "x-yang-type": "snmpv2-tc:DisplayString"
                      },
                      "callHistoryConnectTime": {
                        "type": "string",
                        "description": "The value of sysUpTime when the call was connected.",
                        "x-yang-type": "yang:timestamp"
                      },
                      "callHistoryDisconnectTime": {
                        "type": "string",
                        "description": "The value of sysUpTime when the call was disconnected.",
                        "x-yang-type": "yang:timestamp"
                      },
                      "callHistoryCallOrigin": {
                        "type": "string",
                        "description": "The call origin."
                      },
                      "callHistoryChargedUnits": {
                        "type": "string",
                        "description": "The number of charged units for this connection.\n            For incoming calls or if charging information is\n            not supplied by the switch, the value of this object\n            will be zero.",
                        "x-yang-type": "DIAL-CONTROL-MIB:AbsoluteCounter32"
                      },
                      "callHistoryInfoType": {
                        "type": "string",
                        "description": "The information type for this call."
                      },
                      "callHistoryTransmitPackets": {
                        "type": "string",
                        "description": "The number of packets which were transmitted while this\n            call was active.",
                        "x-yang-type": "DIAL-CONTROL-MIB:AbsoluteCounter32"
                      },
                      "callHistoryTransmitBytes": {
                        "type": "string",
                        "description": "The number of bytes which were transmitted while this\n            call was active.",
                        "x-yang-type": "DIAL-CONTROL-MIB:AbsoluteCounter32"
                      },
                      "callHistoryReceivePackets": {
                        "type": "string",
                        "description": "The number of packets which were received while this\n            call was active.",
                        "x-yang-type": "DIAL-CONTROL-MIB:AbsoluteCounter32"
                      },
                      "callHistoryReceiveBytes": {
                        "type": "string",
                        "description": "The number of bytes which were received while this\n            call was active.",
                        "x-yang-type": "DIAL-CONTROL-MIB:AbsoluteCounter32"
                      }
                    }
                  }
                },
                "example": {
                  "DIAL-CONTROL-MIB:callHistoryEntry": [
                    {
                      "callActiveSetupTime": "example-string",
                      "callActiveIndex": "example-string",
                      "callHistoryPeerAddress": "192.168.1.1",
                      "callHistoryPeerSubAddress": "192.168.1.1",
                      "callHistoryPeerId": -2147483648,
                      "callHistoryPeerIfIndex": 1,
                      "callHistoryLogicalIfIndex": "example-string",
                      "callHistoryDisconnectCause": "example-string",
                      "callHistoryDisconnectText": "example-string",
                      "callHistoryConnectTime": "example-string",
                      "callHistoryDisconnectTime": "example-string",
                      "callHistoryCallOrigin": "example-string",
                      "callHistoryChargedUnits": "example-string",
                      "callHistoryInfoType": "ethernetCsmacd(6)",
                      "callHistoryTransmitPackets": "example-string",
                      "callHistoryTransmitBytes": "example-string",
                      "callHistoryReceivePackets": "example-string",
                      "callHistoryReceiveBytes": "example-string"
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-callHistoryEntry",
        "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": "/callHistoryTable/callHistoryEntry",
      "x-restconf-kind": "container"
    },
    "/data/DIAL-CONTROL-MIB:dialCtlPeerCfgEntry": {
      "get": {
        "summary": "Get dialCtlPeerCfgEntry list",
        "description": "Retrieve list of dialCtlPeerCfgEntry entries from MIB",
        "tags": [
          "DIAL-CONTROL-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "dialCtlPeerCfgEntry",
                  "items": {
                    "type": "object",
                    "properties": {
                      "ifIndex": {
                        "type": "string",
                        "description": "ifIndex",
                        "x-yang-type": "leafref"
                      },
                      "dialCtlPeerCfgId": {
                        "type": "integer",
                        "description": "This object identifies a single peer. There may\n            be several entries in this table for one peer,\n            defining different ways of reaching this peer.\n            Thus, there may be several entries in this table\n            with the same value of dialCtlPeerCfgId.\n            Multiple entries for one peer may be used to support\n            multilink as well as backup lines.\n            A single peer will be identified by a unique value\n            of this object. Several entries for one peer MUST\n            have the same value of dialCtlPeerCfgId, but different\n            ifEntries and thus different values of ifIndex.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "dialCtlPeerCfgIfType": {
                        "type": "string",
                        "description": "The interface type to be used for calling this peer.\n            In case of ISDN, the value of isdn(63) is to be used.",
                        "x-yang-type": "ianaiftype-mib:IANAifType"
                      },
                      "dialCtlPeerCfgLowerIf": {
                        "type": "string",
                        "description": "ifIndex value of an interface the peer will have to be\n            called on. For example, on an ISDN interface, this can be\n            the ifIndex value of a D channel or the ifIndex value of a\n            B channel, whatever is appropriate for a given peer.\n            As an example, for Basic Rate leased lines it will be\n            necessary to specify a B channel ifIndex, while for\n            \n            \n            \n            \n            semi-permanent connections the D channel ifIndex has\n            to be specified.\n            If the interface can be dynamically assigned, this object\n            has a value of zero.",
                        "x-yang-type": "if-mib:InterfaceIndexOrZero"
                      },
                      "dialCtlPeerCfgOriginateAddress": {
                        "type": "string",
                        "description": "Call Address at which the peer will be called.\n            Think of this as the set of characters following 'ATDT '\n            or the 'phone number' included in a D channel call request.\n            \n            The structure of this information will be switch type\n            specific. If there is no address information required\n            for reaching the peer, i.e., for leased lines,\n            this object will be a zero length string.",
                        "x-yang-type": "snmpv2-tc:DisplayString"
                      },
                      "dialCtlPeerCfgAnswerAddress": {
                        "type": "string",
                        "description": "Calling Party Number information element, as for example\n            passed in an ISDN SETUP message by a PBX or switch,\n            for incoming calls.\n            This address can be used to identify the peer.\n            If this address is either unknown or identical\n            to dialCtlPeerCfgOriginateAddress, this object will be\n            a zero length string.",
                        "x-yang-type": "snmpv2-tc:DisplayString"
                      },
                      "dialCtlPeerCfgSubAddress": {
                        "type": "string",
                        "description": "Subaddress at which the peer will be called.\n            If the subaddress is undefined for the given media or\n            unused, this is a zero length string.",
                        "x-yang-type": "snmpv2-tc:DisplayString"
                      },
                      "dialCtlPeerCfgClosedUserGroup": {
                        "type": "string",
                        "description": "Closed User Group at which the peer will be called.\n            If the Closed User Group is undefined for the given media\n            or unused, this is a zero length string.",
                        "x-yang-type": "snmpv2-tc:DisplayString"
                      },
                      "dialCtlPeerCfgSpeed": {
                        "type": "integer",
                        "description": "The desired information transfer speed in bits/second\n            when calling this peer.\n            The detailed media specific information, e.g. information\n            type and information transfer rate for ISDN circuits,\n            has to be extracted from this object.\n            If the transfer speed to be used is unknown or the default\n            speed for this type of interfaces, the value of this object\n            may be zero.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "dialCtlPeerCfgInfoType": {
                        "type": "string",
                        "description": "The Information Transfer Capability to be used when\n            calling this peer.\n            \n            speech(2) refers to a non-data connection, whereas\n            audio31(6) and audio7(7) refer to data mode\n            connections."
                      },
                      "dialCtlPeerCfgPermission": {
                        "type": "string",
                        "description": "Applicable permissions. callback(4) either rejects the\n            call and then calls back, or uses the 'Reverse charging'\n            information element if it is available.\n            Note that callback(4) is supposed to control charging, not\n            security, and applies to callback prior to accepting a\n            call. Callback for security reasons can be handled using\n            PPP callback."
                      },
                      "dialCtlPeerCfgInactivityTimer": {
                        "type": "integer",
                        "description": "The connection will be automatically disconnected\n            if no longer carrying useful data for a time\n            period, in seconds, specified in this object.\n            Useful data in this context refers to forwarding\n            packets, including routing information; it\n            excludes the encapsulator maintenance frames.\n            A value of zero means the connection will not be\n            automatically taken down due to inactivity,\n            which implies that it is a dedicated circuit.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "dialCtlPeerCfgMinDuration": {
                        "type": "integer",
                        "description": "Minimum duration of a call in seconds, starting from the\n            time the call is connected until the call is disconnected.\n            This is to accomplish the fact that in most countries\n            charging applies to units of time, which should be matched\n            as closely as possible.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "dialCtlPeerCfgMaxDuration": {
                        "type": "integer",
                        "description": "Maximum call duration in seconds. Zero means 'unlimited'.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "dialCtlPeerCfgCarrierDelay": {
                        "type": "integer",
                        "description": "The call timeout time in seconds. The default value\n            of zero means that the call timeout as specified for\n            the media in question will apply.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "dialCtlPeerCfgCallRetries": {
                        "type": "integer",
                        "description": "The number of calls to a non-responding address\n            that may be made. A retry count of zero means\n            there is no bound. The intent is to bound\n            the number of successive calls to an address\n            which is inaccessible, or which refuses those calls.\n            \n            Some countries regulate the number of call retries\n            to a given peer that can be made.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "dialCtlPeerCfgRetryDelay": {
                        "type": "integer",
                        "description": "The time in seconds between call retries if a peer\n            cannot be reached.\n            A value of zero means that call retries may be done\n            without any delay.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "dialCtlPeerCfgFailureDelay": {
                        "type": "integer",
                        "description": "The time in seconds after which call attempts are\n            to be placed again after a peer has been noticed\n            to be unreachable, i.e. after dialCtlPeerCfgCallRetries\n            unsuccessful call attempts.\n            A value of zero means that a peer will not be called\n            again after dialCtlPeerCfgCallRetries unsuccessful call\n            attempts.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "dialCtlPeerCfgTrapEnable": {
                        "type": "string",
                        "description": "This object indicates whether dialCtlPeerCallInformation\n            and dialCtlPeerCallSetup traps should be generated for\n            this peer."
                      },
                      "dialCtlPeerCfgStatus": {
                        "type": "string",
                        "description": "Status of one row in this table.",
                        "x-yang-type": "snmpv2-tc:RowStatus"
                      }
                    }
                  }
                },
                "example": {
                  "DIAL-CONTROL-MIB:dialCtlPeerCfgEntry": [
                    {
                      "ifIndex": "example-string",
                      "dialCtlPeerCfgId": -2147483648,
                      "dialCtlPeerCfgIfType": "ethernetCsmacd(6)",
                      "dialCtlPeerCfgLowerIf": "example-string",
                      "dialCtlPeerCfgOriginateAddress": "192.168.1.1",
                      "dialCtlPeerCfgAnswerAddress": "192.168.1.1",
                      "dialCtlPeerCfgSubAddress": "192.168.1.1",
                      "dialCtlPeerCfgClosedUserGroup": "example-string",
                      "dialCtlPeerCfgSpeed": 1000000000,
                      "dialCtlPeerCfgInfoType": "ethernetCsmacd(6)",
                      "dialCtlPeerCfgPermission": "example-string",
                      "dialCtlPeerCfgInactivityTimer": -2147483648,
                      "dialCtlPeerCfgMinDuration": -2147483648,
                      "dialCtlPeerCfgMaxDuration": -2147483648,
                      "dialCtlPeerCfgCarrierDelay": -2147483648,
                      "dialCtlPeerCfgCallRetries": -2147483648,
                      "dialCtlPeerCfgRetryDelay": -2147483648,
                      "dialCtlPeerCfgFailureDelay": -2147483648,
                      "dialCtlPeerCfgTrapEnable": "example-string",
                      "dialCtlPeerCfgStatus": "up(1)"
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-dialCtlPeerCfgEntry-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": "/dialCtlPeerCfgEntry",
      "x-restconf-kind": "container"
    },
    "/data/DIAL-CONTROL-MIB:callActiveEntry": {
      "get": {
        "summary": "Get callActiveEntry list",
        "description": "Retrieve list of callActiveEntry entries from MIB",
        "tags": [
          "DIAL-CONTROL-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "The information regarding a single active Connection.\n          An entry in this table will be created when a call is\n          started. An entry in this table will be deleted when\n          an active call clears.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "callActiveSetupTime": {
                        "type": "string",
                        "description": "The value of sysUpTime when the call associated to this\n            entry was started. This will be useful for an NMS to\n            retrieve all calls after a specific time. Also, this object\n            can be useful in finding large delays between the time the\n            call was started and the time the call was connected.\n            For ISDN media, this will be the time when the setup\n            message was received from or sent to the network.",
                        "x-yang-type": "yang:timestamp"
                      },
                      "callActiveIndex": {
                        "type": "integer",
                        "description": "Small index variable to distinguish calls that start in\n            the same hundredth of a second.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "callActivePeerAddress": {
                        "type": "string",
                        "description": "The number this call is connected to. If the number is\n            not available, then it will have a length of zero.",
                        "x-yang-type": "snmpv2-tc:DisplayString"
                      },
                      "callActivePeerSubAddress": {
                        "type": "string",
                        "description": "The subaddress this call is connected to. If the subaddress\n            is undefined or not available, this will be a zero length\n            string.",
                        "x-yang-type": "snmpv2-tc:DisplayString"
                      },
                      "callActivePeerId": {
                        "type": "integer",
                        "description": "This is the Id value of the peer table entry\n            to which this call was made. If a peer table entry\n            for this call does not exist or is unknown, the value\n            of this object will be zero.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "callActivePeerIfIndex": {
                        "type": "integer",
                        "description": "This is the ifIndex value of the peer table entry\n            to which this call was made. If a peer table entry\n            for this call does not exist or is unknown, the value\n            of this object will be zero.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "callActiveLogicalIfIndex": {
                        "type": "string",
                        "description": "This is the ifIndex value of the logical interface through\n            which this call was made. For ISDN media, this would be\n            the ifIndex of the B channel which was used for this call.\n            If the ifIndex value is unknown, the value of this object\n            will be zero.",
                        "x-yang-type": "if-mib:InterfaceIndexOrZero"
                      },
                      "callActiveConnectTime": {
                        "type": "string",
                        "description": "The value of sysUpTime when the call was connected.\n            If the call is not connected, this object will have a\n            value of zero.",
                        "x-yang-type": "yang:timestamp"
                      },
                      "callActiveCallState": {
                        "type": "string",
                        "description": "The current call state.\n            unknown(1)     - The call state is unknown.\n            connecting(2)  - A connection attempt (outgoing call)\n                             is being made.\n            connected(3)   - An incoming call is in the process\n                             of validation.\n            active(4)      - The call is active."
                      },
                      "callActiveCallOrigin": {
                        "type": "string",
                        "description": "The call origin."
                      },
                      "callActiveChargedUnits": {
                        "type": "string",
                        "description": "The number of charged units for this connection.\n            For incoming calls or if charging information is\n            not supplied by the switch, the value of this object\n            will be zero.",
                        "x-yang-type": "DIAL-CONTROL-MIB:AbsoluteCounter32"
                      },
                      "callActiveInfoType": {
                        "type": "string",
                        "description": "The information type for this call."
                      },
                      "callActiveTransmitPackets": {
                        "type": "string",
                        "description": "The number of packets which were transmitted for this\n            call.",
                        "x-yang-type": "DIAL-CONTROL-MIB:AbsoluteCounter32"
                      },
                      "callActiveTransmitBytes": {
                        "type": "string",
                        "description": "The number of bytes which were transmitted for this\n            call.",
                        "x-yang-type": "DIAL-CONTROL-MIB:AbsoluteCounter32"
                      },
                      "callActiveReceivePackets": {
                        "type": "string",
                        "description": "The number of packets which were received for this\n            call.",
                        "x-yang-type": "DIAL-CONTROL-MIB:AbsoluteCounter32"
                      },
                      "callActiveReceiveBytes": {
                        "type": "string",
                        "description": "The number of bytes which were received for this call.",
                        "x-yang-type": "DIAL-CONTROL-MIB:AbsoluteCounter32"
                      }
                    }
                  }
                },
                "example": {
                  "DIAL-CONTROL-MIB:callActiveEntry": [
                    {
                      "callActiveSetupTime": "example-string",
                      "callActiveIndex": 1,
                      "callActivePeerAddress": "192.168.1.1",
                      "callActivePeerSubAddress": "192.168.1.1",
                      "callActivePeerId": -2147483648,
                      "callActivePeerIfIndex": 1,
                      "callActiveLogicalIfIndex": "example-string",
                      "callActiveConnectTime": "example-string",
                      "callActiveCallState": "up(1)",
                      "callActiveCallOrigin": "example-string",
                      "callActiveChargedUnits": "example-string",
                      "callActiveInfoType": "ethernetCsmacd(6)",
                      "callActiveTransmitPackets": "example-string",
                      "callActiveTransmitBytes": "example-string",
                      "callActiveReceivePackets": "example-string",
                      "callActiveReceiveBytes": "example-string"
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-callActiveEntry-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": "/callActiveEntry",
      "x-restconf-kind": "container"
    },
    "/data/DIAL-CONTROL-MIB:callHistoryEntry": {
      "get": {
        "summary": "Get callHistoryEntry list",
        "description": "Retrieve list of callHistoryEntry entries from MIB",
        "tags": [
          "DIAL-CONTROL-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "The information regarding a single Connection.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "callActiveSetupTime": {
                        "type": "string",
                        "description": "callActiveSetupTime",
                        "x-yang-type": "leafref"
                      },
                      "callActiveIndex": {
                        "type": "string",
                        "description": "callActiveIndex",
                        "x-yang-type": "leafref"
                      },
                      "callHistoryPeerAddress": {
                        "type": "string",
                        "description": "The number this call was connected to. If the number is\n            not available, then it will have a length of zero.",
                        "x-yang-type": "snmpv2-tc:DisplayString"
                      },
                      "callHistoryPeerSubAddress": {
                        "type": "string",
                        "description": "The subaddress this call was connected to. If the subaddress\n            is undefined or not available, this will be a zero length\n            string.",
                        "x-yang-type": "snmpv2-tc:DisplayString"
                      },
                      "callHistoryPeerId": {
                        "type": "integer",
                        "description": "This is the Id value of the peer table entry\n            to which this call was made. If a peer table entry\n            for this call does not exist, the value of this object\n            will be zero.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "callHistoryPeerIfIndex": {
                        "type": "integer",
                        "description": "This is the ifIndex value of the peer table entry\n            to which this call was made. If a peer table entry\n            for this call does not exist, the value of this object\n            will be zero.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "callHistoryLogicalIfIndex": {
                        "type": "string",
                        "description": "This is the ifIndex value of the logical interface through\n            which this call was made. For ISDN media, this would be\n            the ifIndex of the B channel which was used for this call.",
                        "x-yang-type": "if-mib:InterfaceIndex"
                      },
                      "callHistoryDisconnectCause": {
                        "type": "string",
                        "description": "The encoded network cause value associated with this call.\n            \n            The value of this object will depend on the interface type\n            as well as on the protocol and protocol version being\n            used on this interface. Some references for possible cause\n            values are given below.",
                        "format": "binary"
                      },
                      "callHistoryDisconnectText": {
                        "type": "string",
                        "description": "ASCII text describing the reason for call termination.\n            \n            This object exists because it would be impossible for\n            a management station to store all possible cause values\n            for all types of interfaces. It should be used only if\n            a management station is unable to decode the value of\n            dialCtlPeerStatsLastDisconnectCause.",
                        "x-yang-type": "snmpv2-tc:DisplayString"
                      },
                      "callHistoryConnectTime": {
                        "type": "string",
                        "description": "The value of sysUpTime when the call was connected.",
                        "x-yang-type": "yang:timestamp"
                      },
                      "callHistoryDisconnectTime": {
                        "type": "string",
                        "description": "The value of sysUpTime when the call was disconnected.",
                        "x-yang-type": "yang:timestamp"
                      },
                      "callHistoryCallOrigin": {
                        "type": "string",
                        "description": "The call origin."
                      },
                      "callHistoryChargedUnits": {
                        "type": "string",
                        "description": "The number of charged units for this connection.\n            For incoming calls or if charging information is\n            not supplied by the switch, the value of this object\n            will be zero.",
                        "x-yang-type": "DIAL-CONTROL-MIB:AbsoluteCounter32"
                      },
                      "callHistoryInfoType": {
                        "type": "string",
                        "description": "The information type for this call."
                      },
                      "callHistoryTransmitPackets": {
                        "type": "string",
                        "description": "The number of packets which were transmitted while this\n            call was active.",
                        "x-yang-type": "DIAL-CONTROL-MIB:AbsoluteCounter32"
                      },
                      "callHistoryTransmitBytes": {
                        "type": "string",
                        "description": "The number of bytes which were transmitted while this\n            call was active.",
                        "x-yang-type": "DIAL-CONTROL-MIB:AbsoluteCounter32"
                      },
                      "callHistoryReceivePackets": {
                        "type": "string",
                        "description": "The number of packets which were received while this\n            call was active.",
                        "x-yang-type": "DIAL-CONTROL-MIB:AbsoluteCounter32"
                      },
                      "callHistoryReceiveBytes": {
                        "type": "string",
                        "description": "The number of bytes which were received while this\n            call was active.",
                        "x-yang-type": "DIAL-CONTROL-MIB:AbsoluteCounter32"
                      }
                    }
                  }
                },
                "example": {
                  "DIAL-CONTROL-MIB:callHistoryEntry": [
                    {
                      "callActiveSetupTime": "example-string",
                      "callActiveIndex": "example-string",
                      "callHistoryPeerAddress": "192.168.1.1",
                      "callHistoryPeerSubAddress": "192.168.1.1",
                      "callHistoryPeerId": -2147483648,
                      "callHistoryPeerIfIndex": 1,
                      "callHistoryLogicalIfIndex": "example-string",
                      "callHistoryDisconnectCause": "example-string",
                      "callHistoryDisconnectText": "example-string",
                      "callHistoryConnectTime": "example-string",
                      "callHistoryDisconnectTime": "example-string",
                      "callHistoryCallOrigin": "example-string",
                      "callHistoryChargedUnits": "example-string",
                      "callHistoryInfoType": "ethernetCsmacd(6)",
                      "callHistoryTransmitPackets": "example-string",
                      "callHistoryTransmitBytes": "example-string",
                      "callHistoryReceivePackets": "example-string",
                      "callHistoryReceiveBytes": "example-string"
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-callHistoryEntry-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": "/callHistoryEntry",
      "x-restconf-kind": "container"
    },
    "/data/DIAL-CONTROL-MIB:dialCtlPeerCfgTable/dialCtlPeerCfgEntry={dialCtlPeerCfgId},{ifIndex}": {
      "get": {
        "summary": "Get dialCtlPeerCfgEntry entry",
        "description": "Retrieve specific dialCtlPeerCfgEntry entry by key from MIB",
        "tags": [
          "DIAL-CONTROL-MIB"
        ],
        "parameters": [
          {
            "name": "dialCtlPeerCfgId",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "ifIndex",
            "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": {
                    "ifIndex": {
                      "type": "string",
                      "description": "ifIndex",
                      "x-yang-type": "leafref"
                    },
                    "dialCtlPeerCfgId": {
                      "type": "integer",
                      "description": "This object identifies a single peer. There may\n            be several entries in this table for one peer,\n            defining different ways of reaching this peer.\n            Thus, there may be several entries in this table\n            with the same value of dialCtlPeerCfgId.\n            Multiple entries for one peer may be used to support\n            multilink as well as backup lines.\n            A single peer will be identified by a unique value\n            of this object. Several entries for one peer MUST\n            have the same value of dialCtlPeerCfgId, but different\n            ifEntries and thus different values of ifIndex.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "dialCtlPeerCfgIfType": {
                      "type": "string",
                      "description": "The interface type to be used for calling this peer.\n            In case of ISDN, the value of isdn(63) is to be used.",
                      "x-yang-type": "ianaiftype-mib:IANAifType"
                    },
                    "dialCtlPeerCfgLowerIf": {
                      "type": "string",
                      "description": "ifIndex value of an interface the peer will have to be\n            called on. For example, on an ISDN interface, this can be\n            the ifIndex value of a D channel or the ifIndex value of a\n            B channel, whatever is appropriate for a given peer.\n            As an example, for Basic Rate leased lines it will be\n            necessary to specify a B channel ifIndex, while for\n            \n            \n            \n            \n            semi-permanent connections the D channel ifIndex has\n            to be specified.\n            If the interface can be dynamically assigned, this object\n            has a value of zero.",
                      "x-yang-type": "if-mib:InterfaceIndexOrZero"
                    },
                    "dialCtlPeerCfgOriginateAddress": {
                      "type": "string",
                      "description": "Call Address at which the peer will be called.\n            Think of this as the set of characters following 'ATDT '\n            or the 'phone number' included in a D channel call request.\n            \n            The structure of this information will be switch type\n            specific. If there is no address information required\n            for reaching the peer, i.e., for leased lines,\n            this object will be a zero length string.",
                      "x-yang-type": "snmpv2-tc:DisplayString"
                    },
                    "dialCtlPeerCfgAnswerAddress": {
                      "type": "string",
                      "description": "Calling Party Number information element, as for example\n            passed in an ISDN SETUP message by a PBX or switch,\n            for incoming calls.\n            This address can be used to identify the peer.\n            If this address is either unknown or identical\n            to dialCtlPeerCfgOriginateAddress, this object will be\n            a zero length string.",
                      "x-yang-type": "snmpv2-tc:DisplayString"
                    },
                    "dialCtlPeerCfgSubAddress": {
                      "type": "string",
                      "description": "Subaddress at which the peer will be called.\n            If the subaddress is undefined for the given media or\n            unused, this is a zero length string.",
                      "x-yang-type": "snmpv2-tc:DisplayString"
                    },
                    "dialCtlPeerCfgClosedUserGroup": {
                      "type": "string",
                      "description": "Closed User Group at which the peer will be called.\n            If the Closed User Group is undefined for the given media\n            or unused, this is a zero length string.",
                      "x-yang-type": "snmpv2-tc:DisplayString"
                    },
                    "dialCtlPeerCfgSpeed": {
                      "type": "integer",
                      "description": "The desired information transfer speed in bits/second\n            when calling this peer.\n            The detailed media specific information, e.g. information\n            type and information transfer rate for ISDN circuits,\n            has to be extracted from this object.\n            If the transfer speed to be used is unknown or the default\n            speed for this type of interfaces, the value of this object\n            may be zero.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "dialCtlPeerCfgInfoType": {
                      "type": "string",
                      "description": "The Information Transfer Capability to be used when\n            calling this peer.\n            \n            speech(2) refers to a non-data connection, whereas\n            audio31(6) and audio7(7) refer to data mode\n            connections."
                    },
                    "dialCtlPeerCfgPermission": {
                      "type": "string",
                      "description": "Applicable permissions. callback(4) either rejects the\n            call and then calls back, or uses the 'Reverse charging'\n            information element if it is available.\n            Note that callback(4) is supposed to control charging, not\n            security, and applies to callback prior to accepting a\n            call. Callback for security reasons can be handled using\n            PPP callback."
                    },
                    "dialCtlPeerCfgInactivityTimer": {
                      "type": "integer",
                      "description": "The connection will be automatically disconnected\n            if no longer carrying useful data for a time\n            period, in seconds, specified in this object.\n            Useful data in this context refers to forwarding\n            packets, including routing information; it\n            excludes the encapsulator maintenance frames.\n            A value of zero means the connection will not be\n            automatically taken down due to inactivity,\n            which implies that it is a dedicated circuit.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "dialCtlPeerCfgMinDuration": {
                      "type": "integer",
                      "description": "Minimum duration of a call in seconds, starting from the\n            time the call is connected until the call is disconnected.\n            This is to accomplish the fact that in most countries\n            charging applies to units of time, which should be matched\n            as closely as possible.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "dialCtlPeerCfgMaxDuration": {
                      "type": "integer",
                      "description": "Maximum call duration in seconds. Zero means 'unlimited'.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "dialCtlPeerCfgCarrierDelay": {
                      "type": "integer",
                      "description": "The call timeout time in seconds. The default value\n            of zero means that the call timeout as specified for\n            the media in question will apply.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "dialCtlPeerCfgCallRetries": {
                      "type": "integer",
                      "description": "The number of calls to a non-responding address\n            that may be made. A retry count of zero means\n            there is no bound. The intent is to bound\n            the number of successive calls to an address\n            which is inaccessible, or which refuses those calls.\n            \n            Some countries regulate the number of call retries\n            to a given peer that can be made.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "dialCtlPeerCfgRetryDelay": {
                      "type": "integer",
                      "description": "The time in seconds between call retries if a peer\n            cannot be reached.\n            A value of zero means that call retries may be done\n            without any delay.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "dialCtlPeerCfgFailureDelay": {
                      "type": "integer",
                      "description": "The time in seconds after which call attempts are\n            to be placed again after a peer has been noticed\n            to be unreachable, i.e. after dialCtlPeerCfgCallRetries\n            unsuccessful call attempts.\n            A value of zero means that a peer will not be called\n            again after dialCtlPeerCfgCallRetries unsuccessful call\n            attempts.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "dialCtlPeerCfgTrapEnable": {
                      "type": "string",
                      "description": "This object indicates whether dialCtlPeerCallInformation\n            and dialCtlPeerCallSetup traps should be generated for\n            this peer."
                    },
                    "dialCtlPeerCfgStatus": {
                      "type": "string",
                      "description": "Status of one row in this table.",
                      "x-yang-type": "snmpv2-tc:RowStatus"
                    }
                  }
                },
                "example": {
                  "DIAL-CONTROL-MIB:dialCtlPeerCfgEntry": {
                    "ifIndex": "example-string",
                    "dialCtlPeerCfgId": -2147483648,
                    "dialCtlPeerCfgIfType": "ethernetCsmacd(6)",
                    "dialCtlPeerCfgLowerIf": "example-string",
                    "dialCtlPeerCfgOriginateAddress": "192.168.1.1",
                    "dialCtlPeerCfgAnswerAddress": "192.168.1.1",
                    "dialCtlPeerCfgSubAddress": "192.168.1.1",
                    "dialCtlPeerCfgClosedUserGroup": "example-string",
                    "dialCtlPeerCfgSpeed": 1000000000,
                    "dialCtlPeerCfgInfoType": "ethernetCsmacd(6)",
                    "dialCtlPeerCfgPermission": "example-string",
                    "dialCtlPeerCfgInactivityTimer": -2147483648,
                    "dialCtlPeerCfgMinDuration": -2147483648,
                    "dialCtlPeerCfgMaxDuration": -2147483648,
                    "dialCtlPeerCfgCarrierDelay": -2147483648,
                    "dialCtlPeerCfgCallRetries": -2147483648,
                    "dialCtlPeerCfgRetryDelay": -2147483648,
                    "dialCtlPeerCfgFailureDelay": -2147483648,
                    "dialCtlPeerCfgTrapEnable": "example-string",
                    "dialCtlPeerCfgStatus": "up(1)"
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-dialCtlPeerCfgEntry-2"
      },
      "x-yang-path": "/dialCtlPeerCfgTable/dialCtlPeerCfgEntry={dialCtlPeerCfgId ifIndex}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "dialCtlPeerCfgId ifIndex"
      ]
    },
    "/data/DIAL-CONTROL-MIB:callActiveTable/callActiveEntry={callActiveSetupTime},{callActiveIndex}": {
      "get": {
        "summary": "Get callActiveEntry entry",
        "description": "Retrieve specific callActiveEntry entry by key from MIB",
        "tags": [
          "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": "The value of sysUpTime when the call associated to this\n            entry was started. This will be useful for an NMS to\n            retrieve all calls after a specific time. Also, this object\n            can be useful in finding large delays between the time the\n            call was started and the time the call was connected.\n            For ISDN media, this will be the time when the setup\n            message was received from or sent to the network.",
                      "x-yang-type": "yang:timestamp"
                    },
                    "callActiveIndex": {
                      "type": "integer",
                      "description": "Small index variable to distinguish calls that start in\n            the same hundredth of a second.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "callActivePeerAddress": {
                      "type": "string",
                      "description": "The number this call is connected to. If the number is\n            not available, then it will have a length of zero.",
                      "x-yang-type": "snmpv2-tc:DisplayString"
                    },
                    "callActivePeerSubAddress": {
                      "type": "string",
                      "description": "The subaddress this call is connected to. If the subaddress\n            is undefined or not available, this will be a zero length\n            string.",
                      "x-yang-type": "snmpv2-tc:DisplayString"
                    },
                    "callActivePeerId": {
                      "type": "integer",
                      "description": "This is the Id value of the peer table entry\n            to which this call was made. If a peer table entry\n            for this call does not exist or is unknown, the value\n            of this object will be zero.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "callActivePeerIfIndex": {
                      "type": "integer",
                      "description": "This is the ifIndex value of the peer table entry\n            to which this call was made. If a peer table entry\n            for this call does not exist or is unknown, the value\n            of this object will be zero.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "callActiveLogicalIfIndex": {
                      "type": "string",
                      "description": "This is the ifIndex value of the logical interface through\n            which this call was made. For ISDN media, this would be\n            the ifIndex of the B channel which was used for this call.\n            If the ifIndex value is unknown, the value of this object\n            will be zero.",
                      "x-yang-type": "if-mib:InterfaceIndexOrZero"
                    },
                    "callActiveConnectTime": {
                      "type": "string",
                      "description": "The value of sysUpTime when the call was connected.\n            If the call is not connected, this object will have a\n            value of zero.",
                      "x-yang-type": "yang:timestamp"
                    },
                    "callActiveCallState": {
                      "type": "string",
                      "description": "The current call state.\n            unknown(1)     - The call state is unknown.\n            connecting(2)  - A connection attempt (outgoing call)\n                             is being made.\n            connected(3)   - An incoming call is in the process\n                             of validation.\n            active(4)      - The call is active."
                    },
                    "callActiveCallOrigin": {
                      "type": "string",
                      "description": "The call origin."
                    },
                    "callActiveChargedUnits": {
                      "type": "string",
                      "description": "The number of charged units for this connection.\n            For incoming calls or if charging information is\n            not supplied by the switch, the value of this object\n            will be zero.",
                      "x-yang-type": "DIAL-CONTROL-MIB:AbsoluteCounter32"
                    },
                    "callActiveInfoType": {
                      "type": "string",
                      "description": "The information type for this call."
                    },
                    "callActiveTransmitPackets": {
                      "type": "string",
                      "description": "The number of packets which were transmitted for this\n            call.",
                      "x-yang-type": "DIAL-CONTROL-MIB:AbsoluteCounter32"
                    },
                    "callActiveTransmitBytes": {
                      "type": "string",
                      "description": "The number of bytes which were transmitted for this\n            call.",
                      "x-yang-type": "DIAL-CONTROL-MIB:AbsoluteCounter32"
                    },
                    "callActiveReceivePackets": {
                      "type": "string",
                      "description": "The number of packets which were received for this\n            call.",
                      "x-yang-type": "DIAL-CONTROL-MIB:AbsoluteCounter32"
                    },
                    "callActiveReceiveBytes": {
                      "type": "string",
                      "description": "The number of bytes which were received for this call.",
                      "x-yang-type": "DIAL-CONTROL-MIB:AbsoluteCounter32"
                    }
                  }
                },
                "example": {
                  "DIAL-CONTROL-MIB:callActiveEntry": {
                    "callActiveSetupTime": "example-string",
                    "callActiveIndex": 1,
                    "callActivePeerAddress": "192.168.1.1",
                    "callActivePeerSubAddress": "192.168.1.1",
                    "callActivePeerId": -2147483648,
                    "callActivePeerIfIndex": 1,
                    "callActiveLogicalIfIndex": "example-string",
                    "callActiveConnectTime": "example-string",
                    "callActiveCallState": "up(1)",
                    "callActiveCallOrigin": "example-string",
                    "callActiveChargedUnits": "example-string",
                    "callActiveInfoType": "ethernetCsmacd(6)",
                    "callActiveTransmitPackets": "example-string",
                    "callActiveTransmitBytes": "example-string",
                    "callActiveReceivePackets": "example-string",
                    "callActiveReceiveBytes": "example-string"
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-callActiveEntry-2"
      },
      "x-yang-path": "/callActiveTable/callActiveEntry={callActiveSetupTime callActiveIndex}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "callActiveSetupTime callActiveIndex"
      ]
    },
    "/data/DIAL-CONTROL-MIB:callHistoryTable/callHistoryEntry={callActiveSetupTime},{callActiveIndex}": {
      "get": {
        "summary": "Get callHistoryEntry entry",
        "description": "Retrieve specific callHistoryEntry entry by key from MIB",
        "tags": [
          "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"
                    },
                    "callHistoryPeerAddress": {
                      "type": "string",
                      "description": "The number this call was connected to. If the number is\n            not available, then it will have a length of zero.",
                      "x-yang-type": "snmpv2-tc:DisplayString"
                    },
                    "callHistoryPeerSubAddress": {
                      "type": "string",
                      "description": "The subaddress this call was connected to. If the subaddress\n            is undefined or not available, this will be a zero length\n            string.",
                      "x-yang-type": "snmpv2-tc:DisplayString"
                    },
                    "callHistoryPeerId": {
                      "type": "integer",
                      "description": "This is the Id value of the peer table entry\n            to which this call was made. If a peer table entry\n            for this call does not exist, the value of this object\n            will be zero.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "callHistoryPeerIfIndex": {
                      "type": "integer",
                      "description": "This is the ifIndex value of the peer table entry\n            to which this call was made. If a peer table entry\n            for this call does not exist, the value of this object\n            will be zero.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "callHistoryLogicalIfIndex": {
                      "type": "string",
                      "description": "This is the ifIndex value of the logical interface through\n            which this call was made. For ISDN media, this would be\n            the ifIndex of the B channel which was used for this call.",
                      "x-yang-type": "if-mib:InterfaceIndex"
                    },
                    "callHistoryDisconnectCause": {
                      "type": "string",
                      "description": "The encoded network cause value associated with this call.\n            \n            The value of this object will depend on the interface type\n            as well as on the protocol and protocol version being\n            used on this interface. Some references for possible cause\n            values are given below.",
                      "format": "binary"
                    },
                    "callHistoryDisconnectText": {
                      "type": "string",
                      "description": "ASCII text describing the reason for call termination.\n            \n            This object exists because it would be impossible for\n            a management station to store all possible cause values\n            for all types of interfaces. It should be used only if\n            a management station is unable to decode the value of\n            dialCtlPeerStatsLastDisconnectCause.",
                      "x-yang-type": "snmpv2-tc:DisplayString"
                    },
                    "callHistoryConnectTime": {
                      "type": "string",
                      "description": "The value of sysUpTime when the call was connected.",
                      "x-yang-type": "yang:timestamp"
                    },
                    "callHistoryDisconnectTime": {
                      "type": "string",
                      "description": "The value of sysUpTime when the call was disconnected.",
                      "x-yang-type": "yang:timestamp"
                    },
                    "callHistoryCallOrigin": {
                      "type": "string",
                      "description": "The call origin."
                    },
                    "callHistoryChargedUnits": {
                      "type": "string",
                      "description": "The number of charged units for this connection.\n            For incoming calls or if charging information is\n            not supplied by the switch, the value of this object\n            will be zero.",
                      "x-yang-type": "DIAL-CONTROL-MIB:AbsoluteCounter32"
                    },
                    "callHistoryInfoType": {
                      "type": "string",
                      "description": "The information type for this call."
                    },
                    "callHistoryTransmitPackets": {
                      "type": "string",
                      "description": "The number of packets which were transmitted while this\n            call was active.",
                      "x-yang-type": "DIAL-CONTROL-MIB:AbsoluteCounter32"
                    },
                    "callHistoryTransmitBytes": {
                      "type": "string",
                      "description": "The number of bytes which were transmitted while this\n            call was active.",
                      "x-yang-type": "DIAL-CONTROL-MIB:AbsoluteCounter32"
                    },
                    "callHistoryReceivePackets": {
                      "type": "string",
                      "description": "The number of packets which were received while this\n            call was active.",
                      "x-yang-type": "DIAL-CONTROL-MIB:AbsoluteCounter32"
                    },
                    "callHistoryReceiveBytes": {
                      "type": "string",
                      "description": "The number of bytes which were received while this\n            call was active.",
                      "x-yang-type": "DIAL-CONTROL-MIB:AbsoluteCounter32"
                    }
                  }
                },
                "example": {
                  "DIAL-CONTROL-MIB:callHistoryEntry": {
                    "callActiveSetupTime": "example-string",
                    "callActiveIndex": "example-string",
                    "callHistoryPeerAddress": "192.168.1.1",
                    "callHistoryPeerSubAddress": "192.168.1.1",
                    "callHistoryPeerId": -2147483648,
                    "callHistoryPeerIfIndex": 1,
                    "callHistoryLogicalIfIndex": "example-string",
                    "callHistoryDisconnectCause": "example-string",
                    "callHistoryDisconnectText": "example-string",
                    "callHistoryConnectTime": "example-string",
                    "callHistoryDisconnectTime": "example-string",
                    "callHistoryCallOrigin": "example-string",
                    "callHistoryChargedUnits": "example-string",
                    "callHistoryInfoType": "ethernetCsmacd(6)",
                    "callHistoryTransmitPackets": "example-string",
                    "callHistoryTransmitBytes": "example-string",
                    "callHistoryReceivePackets": "example-string",
                    "callHistoryReceiveBytes": "example-string"
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-callHistoryEntry-2"
      },
      "x-yang-path": "/callHistoryTable/callHistoryEntry={callActiveSetupTime callActiveIndex}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "callActiveSetupTime callActiveIndex"
      ]
    },
    "/data/DIAL-CONTROL-MIB:dialCtlPeerCfgEntry={dialCtlPeerCfgId},{ifIndex}": {
      "get": {
        "summary": "Get dialCtlPeerCfgEntry entry",
        "description": "Retrieve specific dialCtlPeerCfgEntry entry by key from MIB",
        "tags": [
          "DIAL-CONTROL-MIB"
        ],
        "parameters": [
          {
            "name": "dialCtlPeerCfgId",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "ifIndex",
            "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": {
                    "ifIndex": {
                      "type": "string",
                      "description": "ifIndex",
                      "x-yang-type": "leafref"
                    },
                    "dialCtlPeerCfgId": {
                      "type": "integer",
                      "description": "This object identifies a single peer. There may\n            be several entries in this table for one peer,\n            defining different ways of reaching this peer.\n            Thus, there may be several entries in this table\n            with the same value of dialCtlPeerCfgId.\n            Multiple entries for one peer may be used to support\n            multilink as well as backup lines.\n            A single peer will be identified by a unique value\n            of this object. Several entries for one peer MUST\n            have the same value of dialCtlPeerCfgId, but different\n            ifEntries and thus different values of ifIndex.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "dialCtlPeerCfgIfType": {
                      "type": "string",
                      "description": "The interface type to be used for calling this peer.\n            In case of ISDN, the value of isdn(63) is to be used.",
                      "x-yang-type": "ianaiftype-mib:IANAifType"
                    },
                    "dialCtlPeerCfgLowerIf": {
                      "type": "string",
                      "description": "ifIndex value of an interface the peer will have to be\n            called on. For example, on an ISDN interface, this can be\n            the ifIndex value of a D channel or the ifIndex value of a\n            B channel, whatever is appropriate for a given peer.\n            As an example, for Basic Rate leased lines it will be\n            necessary to specify a B channel ifIndex, while for\n            \n            \n            \n            \n            semi-permanent connections the D channel ifIndex has\n            to be specified.\n            If the interface can be dynamically assigned, this object\n            has a value of zero.",
                      "x-yang-type": "if-mib:InterfaceIndexOrZero"
                    },
                    "dialCtlPeerCfgOriginateAddress": {
                      "type": "string",
                      "description": "Call Address at which the peer will be called.\n            Think of this as the set of characters following 'ATDT '\n            or the 'phone number' included in a D channel call request.\n            \n            The structure of this information will be switch type\n            specific. If there is no address information required\n            for reaching the peer, i.e., for leased lines,\n            this object will be a zero length string.",
                      "x-yang-type": "snmpv2-tc:DisplayString"
                    },
                    "dialCtlPeerCfgAnswerAddress": {
                      "type": "string",
                      "description": "Calling Party Number information element, as for example\n            passed in an ISDN SETUP message by a PBX or switch,\n            for incoming calls.\n            This address can be used to identify the peer.\n            If this address is either unknown or identical\n            to dialCtlPeerCfgOriginateAddress, this object will be\n            a zero length string.",
                      "x-yang-type": "snmpv2-tc:DisplayString"
                    },
                    "dialCtlPeerCfgSubAddress": {
                      "type": "string",
                      "description": "Subaddress at which the peer will be called.\n            If the subaddress is undefined for the given media or\n            unused, this is a zero length string.",
                      "x-yang-type": "snmpv2-tc:DisplayString"
                    },
                    "dialCtlPeerCfgClosedUserGroup": {
                      "type": "string",
                      "description": "Closed User Group at which the peer will be called.\n            If the Closed User Group is undefined for the given media\n            or unused, this is a zero length string.",
                      "x-yang-type": "snmpv2-tc:DisplayString"
                    },
                    "dialCtlPeerCfgSpeed": {
                      "type": "integer",
                      "description": "The desired information transfer speed in bits/second\n            when calling this peer.\n            The detailed media specific information, e.g. information\n            type and information transfer rate for ISDN circuits,\n            has to be extracted from this object.\n            If the transfer speed to be used is unknown or the default\n            speed for this type of interfaces, the value of this object\n            may be zero.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "dialCtlPeerCfgInfoType": {
                      "type": "string",
                      "description": "The Information Transfer Capability to be used when\n            calling this peer.\n            \n            speech(2) refers to a non-data connection, whereas\n            audio31(6) and audio7(7) refer to data mode\n            connections."
                    },
                    "dialCtlPeerCfgPermission": {
                      "type": "string",
                      "description": "Applicable permissions. callback(4) either rejects the\n            call and then calls back, or uses the 'Reverse charging'\n            information element if it is available.\n            Note that callback(4) is supposed to control charging, not\n            security, and applies to callback prior to accepting a\n            call. Callback for security reasons can be handled using\n            PPP callback."
                    },
                    "dialCtlPeerCfgInactivityTimer": {
                      "type": "integer",
                      "description": "The connection will be automatically disconnected\n            if no longer carrying useful data for a time\n            period, in seconds, specified in this object.\n            Useful data in this context refers to forwarding\n            packets, including routing information; it\n            excludes the encapsulator maintenance frames.\n            A value of zero means the connection will not be\n            automatically taken down due to inactivity,\n            which implies that it is a dedicated circuit.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "dialCtlPeerCfgMinDuration": {
                      "type": "integer",
                      "description": "Minimum duration of a call in seconds, starting from the\n            time the call is connected until the call is disconnected.\n            This is to accomplish the fact that in most countries\n            charging applies to units of time, which should be matched\n            as closely as possible.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "dialCtlPeerCfgMaxDuration": {
                      "type": "integer",
                      "description": "Maximum call duration in seconds. Zero means 'unlimited'.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "dialCtlPeerCfgCarrierDelay": {
                      "type": "integer",
                      "description": "The call timeout time in seconds. The default value\n            of zero means that the call timeout as specified for\n            the media in question will apply.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "dialCtlPeerCfgCallRetries": {
                      "type": "integer",
                      "description": "The number of calls to a non-responding address\n            that may be made. A retry count of zero means\n            there is no bound. The intent is to bound\n            the number of successive calls to an address\n            which is inaccessible, or which refuses those calls.\n            \n            Some countries regulate the number of call retries\n            to a given peer that can be made.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "dialCtlPeerCfgRetryDelay": {
                      "type": "integer",
                      "description": "The time in seconds between call retries if a peer\n            cannot be reached.\n            A value of zero means that call retries may be done\n            without any delay.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "dialCtlPeerCfgFailureDelay": {
                      "type": "integer",
                      "description": "The time in seconds after which call attempts are\n            to be placed again after a peer has been noticed\n            to be unreachable, i.e. after dialCtlPeerCfgCallRetries\n            unsuccessful call attempts.\n            A value of zero means that a peer will not be called\n            again after dialCtlPeerCfgCallRetries unsuccessful call\n            attempts.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "dialCtlPeerCfgTrapEnable": {
                      "type": "string",
                      "description": "This object indicates whether dialCtlPeerCallInformation\n            and dialCtlPeerCallSetup traps should be generated for\n            this peer."
                    },
                    "dialCtlPeerCfgStatus": {
                      "type": "string",
                      "description": "Status of one row in this table.",
                      "x-yang-type": "snmpv2-tc:RowStatus"
                    }
                  }
                },
                "example": {
                  "DIAL-CONTROL-MIB:dialCtlPeerCfgEntry": {
                    "ifIndex": "example-string",
                    "dialCtlPeerCfgId": -2147483648,
                    "dialCtlPeerCfgIfType": "ethernetCsmacd(6)",
                    "dialCtlPeerCfgLowerIf": "example-string",
                    "dialCtlPeerCfgOriginateAddress": "192.168.1.1",
                    "dialCtlPeerCfgAnswerAddress": "192.168.1.1",
                    "dialCtlPeerCfgSubAddress": "192.168.1.1",
                    "dialCtlPeerCfgClosedUserGroup": "example-string",
                    "dialCtlPeerCfgSpeed": 1000000000,
                    "dialCtlPeerCfgInfoType": "ethernetCsmacd(6)",
                    "dialCtlPeerCfgPermission": "example-string",
                    "dialCtlPeerCfgInactivityTimer": -2147483648,
                    "dialCtlPeerCfgMinDuration": -2147483648,
                    "dialCtlPeerCfgMaxDuration": -2147483648,
                    "dialCtlPeerCfgCarrierDelay": -2147483648,
                    "dialCtlPeerCfgCallRetries": -2147483648,
                    "dialCtlPeerCfgRetryDelay": -2147483648,
                    "dialCtlPeerCfgFailureDelay": -2147483648,
                    "dialCtlPeerCfgTrapEnable": "example-string",
                    "dialCtlPeerCfgStatus": "up(1)"
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-dialCtlPeerCfgEntry-4"
      },
      "x-yang-path": "/dialCtlPeerCfgEntry={dialCtlPeerCfgId ifIndex}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "dialCtlPeerCfgId ifIndex"
      ]
    },
    "/data/DIAL-CONTROL-MIB:callActiveEntry={callActiveSetupTime},{callActiveIndex}": {
      "get": {
        "summary": "Get callActiveEntry entry",
        "description": "Retrieve specific callActiveEntry entry by key from MIB",
        "tags": [
          "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": "The value of sysUpTime when the call associated to this\n            entry was started. This will be useful for an NMS to\n            retrieve all calls after a specific time. Also, this object\n            can be useful in finding large delays between the time the\n            call was started and the time the call was connected.\n            For ISDN media, this will be the time when the setup\n            message was received from or sent to the network.",
                      "x-yang-type": "yang:timestamp"
                    },
                    "callActiveIndex": {
                      "type": "integer",
                      "description": "Small index variable to distinguish calls that start in\n            the same hundredth of a second.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "callActivePeerAddress": {
                      "type": "string",
                      "description": "The number this call is connected to. If the number is\n            not available, then it will have a length of zero.",
                      "x-yang-type": "snmpv2-tc:DisplayString"
                    },
                    "callActivePeerSubAddress": {
                      "type": "string",
                      "description": "The subaddress this call is connected to. If the subaddress\n            is undefined or not available, this will be a zero length\n            string.",
                      "x-yang-type": "snmpv2-tc:DisplayString"
                    },
                    "callActivePeerId": {
                      "type": "integer",
                      "description": "This is the Id value of the peer table entry\n            to which this call was made. If a peer table entry\n            for this call does not exist or is unknown, the value\n            of this object will be zero.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "callActivePeerIfIndex": {
                      "type": "integer",
                      "description": "This is the ifIndex value of the peer table entry\n            to which this call was made. If a peer table entry\n            for this call does not exist or is unknown, the value\n            of this object will be zero.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "callActiveLogicalIfIndex": {
                      "type": "string",
                      "description": "This is the ifIndex value of the logical interface through\n            which this call was made. For ISDN media, this would be\n            the ifIndex of the B channel which was used for this call.\n            If the ifIndex value is unknown, the value of this object\n            will be zero.",
                      "x-yang-type": "if-mib:InterfaceIndexOrZero"
                    },
                    "callActiveConnectTime": {
                      "type": "string",
                      "description": "The value of sysUpTime when the call was connected.\n            If the call is not connected, this object will have a\n            value of zero.",
                      "x-yang-type": "yang:timestamp"
                    },
                    "callActiveCallState": {
                      "type": "string",
                      "description": "The current call state.\n            unknown(1)     - The call state is unknown.\n            connecting(2)  - A connection attempt (outgoing call)\n                             is being made.\n            connected(3)   - An incoming call is in the process\n                             of validation.\n            active(4)      - The call is active."
                    },
                    "callActiveCallOrigin": {
                      "type": "string",
                      "description": "The call origin."
                    },
                    "callActiveChargedUnits": {
                      "type": "string",
                      "description": "The number of charged units for this connection.\n            For incoming calls or if charging information is\n            not supplied by the switch, the value of this object\n            will be zero.",
                      "x-yang-type": "DIAL-CONTROL-MIB:AbsoluteCounter32"
                    },
                    "callActiveInfoType": {
                      "type": "string",
                      "description": "The information type for this call."
                    },
                    "callActiveTransmitPackets": {
                      "type": "string",
                      "description": "The number of packets which were transmitted for this\n            call.",
                      "x-yang-type": "DIAL-CONTROL-MIB:AbsoluteCounter32"
                    },
                    "callActiveTransmitBytes": {
                      "type": "string",
                      "description": "The number of bytes which were transmitted for this\n            call.",
                      "x-yang-type": "DIAL-CONTROL-MIB:AbsoluteCounter32"
                    },
                    "callActiveReceivePackets": {
                      "type": "string",
                      "description": "The number of packets which were received for this\n            call.",
                      "x-yang-type": "DIAL-CONTROL-MIB:AbsoluteCounter32"
                    },
                    "callActiveReceiveBytes": {
                      "type": "string",
                      "description": "The number of bytes which were received for this call.",
                      "x-yang-type": "DIAL-CONTROL-MIB:AbsoluteCounter32"
                    }
                  }
                },
                "example": {
                  "DIAL-CONTROL-MIB:callActiveEntry": {
                    "callActiveSetupTime": "example-string",
                    "callActiveIndex": 1,
                    "callActivePeerAddress": "192.168.1.1",
                    "callActivePeerSubAddress": "192.168.1.1",
                    "callActivePeerId": -2147483648,
                    "callActivePeerIfIndex": 1,
                    "callActiveLogicalIfIndex": "example-string",
                    "callActiveConnectTime": "example-string",
                    "callActiveCallState": "up(1)",
                    "callActiveCallOrigin": "example-string",
                    "callActiveChargedUnits": "example-string",
                    "callActiveInfoType": "ethernetCsmacd(6)",
                    "callActiveTransmitPackets": "example-string",
                    "callActiveTransmitBytes": "example-string",
                    "callActiveReceivePackets": "example-string",
                    "callActiveReceiveBytes": "example-string"
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-callActiveEntry-4"
      },
      "x-yang-path": "/callActiveEntry={callActiveSetupTime callActiveIndex}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "callActiveSetupTime callActiveIndex"
      ]
    },
    "/data/DIAL-CONTROL-MIB:callHistoryEntry={callActiveSetupTime},{callActiveIndex}": {
      "get": {
        "summary": "Get callHistoryEntry entry",
        "description": "Retrieve specific callHistoryEntry entry by key from MIB",
        "tags": [
          "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"
                    },
                    "callHistoryPeerAddress": {
                      "type": "string",
                      "description": "The number this call was connected to. If the number is\n            not available, then it will have a length of zero.",
                      "x-yang-type": "snmpv2-tc:DisplayString"
                    },
                    "callHistoryPeerSubAddress": {
                      "type": "string",
                      "description": "The subaddress this call was connected to. If the subaddress\n            is undefined or not available, this will be a zero length\n            string.",
                      "x-yang-type": "snmpv2-tc:DisplayString"
                    },
                    "callHistoryPeerId": {
                      "type": "integer",
                      "description": "This is the Id value of the peer table entry\n            to which this call was made. If a peer table entry\n            for this call does not exist, the value of this object\n            will be zero.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "callHistoryPeerIfIndex": {
                      "type": "integer",
                      "description": "This is the ifIndex value of the peer table entry\n            to which this call was made. If a peer table entry\n            for this call does not exist, the value of this object\n            will be zero.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "callHistoryLogicalIfIndex": {
                      "type": "string",
                      "description": "This is the ifIndex value of the logical interface through\n            which this call was made. For ISDN media, this would be\n            the ifIndex of the B channel which was used for this call.",
                      "x-yang-type": "if-mib:InterfaceIndex"
                    },
                    "callHistoryDisconnectCause": {
                      "type": "string",
                      "description": "The encoded network cause value associated with this call.\n            \n            The value of this object will depend on the interface type\n            as well as on the protocol and protocol version being\n            used on this interface. Some references for possible cause\n            values are given below.",
                      "format": "binary"
                    },
                    "callHistoryDisconnectText": {
                      "type": "string",
                      "description": "ASCII text describing the reason for call termination.\n            \n            This object exists because it would be impossible for\n            a management station to store all possible cause values\n            for all types of interfaces. It should be used only if\n            a management station is unable to decode the value of\n            dialCtlPeerStatsLastDisconnectCause.",
                      "x-yang-type": "snmpv2-tc:DisplayString"
                    },
                    "callHistoryConnectTime": {
                      "type": "string",
                      "description": "The value of sysUpTime when the call was connected.",
                      "x-yang-type": "yang:timestamp"
                    },
                    "callHistoryDisconnectTime": {
                      "type": "string",
                      "description": "The value of sysUpTime when the call was disconnected.",
                      "x-yang-type": "yang:timestamp"
                    },
                    "callHistoryCallOrigin": {
                      "type": "string",
                      "description": "The call origin."
                    },
                    "callHistoryChargedUnits": {
                      "type": "string",
                      "description": "The number of charged units for this connection.\n            For incoming calls or if charging information is\n            not supplied by the switch, the value of this object\n            will be zero.",
                      "x-yang-type": "DIAL-CONTROL-MIB:AbsoluteCounter32"
                    },
                    "callHistoryInfoType": {
                      "type": "string",
                      "description": "The information type for this call."
                    },
                    "callHistoryTransmitPackets": {
                      "type": "string",
                      "description": "The number of packets which were transmitted while this\n            call was active.",
                      "x-yang-type": "DIAL-CONTROL-MIB:AbsoluteCounter32"
                    },
                    "callHistoryTransmitBytes": {
                      "type": "string",
                      "description": "The number of bytes which were transmitted while this\n            call was active.",
                      "x-yang-type": "DIAL-CONTROL-MIB:AbsoluteCounter32"
                    },
                    "callHistoryReceivePackets": {
                      "type": "string",
                      "description": "The number of packets which were received while this\n            call was active.",
                      "x-yang-type": "DIAL-CONTROL-MIB:AbsoluteCounter32"
                    },
                    "callHistoryReceiveBytes": {
                      "type": "string",
                      "description": "The number of bytes which were received while this\n            call was active.",
                      "x-yang-type": "DIAL-CONTROL-MIB:AbsoluteCounter32"
                    }
                  }
                },
                "example": {
                  "DIAL-CONTROL-MIB:callHistoryEntry": {
                    "callActiveSetupTime": "example-string",
                    "callActiveIndex": "example-string",
                    "callHistoryPeerAddress": "192.168.1.1",
                    "callHistoryPeerSubAddress": "192.168.1.1",
                    "callHistoryPeerId": -2147483648,
                    "callHistoryPeerIfIndex": 1,
                    "callHistoryLogicalIfIndex": "example-string",
                    "callHistoryDisconnectCause": "example-string",
                    "callHistoryDisconnectText": "example-string",
                    "callHistoryConnectTime": "example-string",
                    "callHistoryDisconnectTime": "example-string",
                    "callHistoryCallOrigin": "example-string",
                    "callHistoryChargedUnits": "example-string",
                    "callHistoryInfoType": "ethernetCsmacd(6)",
                    "callHistoryTransmitPackets": "example-string",
                    "callHistoryTransmitBytes": "example-string",
                    "callHistoryReceivePackets": "example-string",
                    "callHistoryReceiveBytes": "example-string"
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-callHistoryEntry-4"
      },
      "x-yang-path": "/callHistoryEntry={callActiveSetupTime callActiveIndex}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "callActiveSetupTime callActiveIndex"
      ]
    }
  },
  "components": {
    "schemas": {
      "DIAL-CONTROL-MIB_DIAL-CONTROL-MIB": {
        "type": "object",
        "description": "DIAL-CONTROL-MIB",
        "properties": {
          "dialCtlPeerCfgEntry": {
            "type": "array",
            "description": "dialCtlPeerCfgEntry",
            "items": {
              "type": "object",
              "properties": {
                "ifIndex": {
                  "type": "string",
                  "description": "ifIndex",
                  "x-yang-type": "leafref",
                  "readOnly": true
                },
                "dialCtlPeerCfgId": {
                  "type": "integer",
                  "description": "This object identifies a single peer. There may\n            be several entries in this table for one peer,\n            defining different ways of reaching this peer.\n            Thus, there may be several entries in this table\n            with the same value of dialCtlPeerCfgId.\n            Multiple entries for one peer may be used to support\n            multilink as well as backup lines.\n            A single peer will be identified by a unique value\n            of this object. Several entries for one peer MUST\n            have the same value of dialCtlPeerCfgId, but different\n            ifEntries and thus different values of ifIndex.",
                  "minimum": -2147483648,
                  "maximum": 2147483647,
                  "readOnly": true
                },
                "dialCtlPeerCfgIfType": {
                  "type": "string",
                  "description": "The interface type to be used for calling this peer.\n            In case of ISDN, the value of isdn(63) is to be used.",
                  "x-yang-type": "ianaiftype-mib:IANAifType",
                  "readOnly": true
                },
                "dialCtlPeerCfgLowerIf": {
                  "type": "string",
                  "description": "ifIndex value of an interface the peer will have to be\n            called on. For example, on an ISDN interface, this can be\n            the ifIndex value of a D channel or the ifIndex value of a\n            B channel, whatever is appropriate for a given peer.\n            As an example, for Basic Rate leased lines it will be\n            necessary to specify a B channel ifIndex, while for\n            \n            \n            \n            \n            semi-permanent connections the D channel ifIndex has\n            to be specified.\n            If the interface can be dynamically assigned, this object\n            has a value of zero.",
                  "x-yang-type": "if-mib:InterfaceIndexOrZero",
                  "readOnly": true
                },
                "dialCtlPeerCfgOriginateAddress": {
                  "type": "string",
                  "description": "Call Address at which the peer will be called.\n            Think of this as the set of characters following 'ATDT '\n            or the 'phone number' included in a D channel call request.\n            \n            The structure of this information will be switch type\n            specific. If there is no address information required\n            for reaching the peer, i.e., for leased lines,\n            this object will be a zero length string.",
                  "x-yang-type": "snmpv2-tc:DisplayString",
                  "readOnly": true
                },
                "dialCtlPeerCfgAnswerAddress": {
                  "type": "string",
                  "description": "Calling Party Number information element, as for example\n            passed in an ISDN SETUP message by a PBX or switch,\n            for incoming calls.\n            This address can be used to identify the peer.\n            If this address is either unknown or identical\n            to dialCtlPeerCfgOriginateAddress, this object will be\n            a zero length string.",
                  "x-yang-type": "snmpv2-tc:DisplayString",
                  "readOnly": true
                },
                "dialCtlPeerCfgSubAddress": {
                  "type": "string",
                  "description": "Subaddress at which the peer will be called.\n            If the subaddress is undefined for the given media or\n            unused, this is a zero length string.",
                  "x-yang-type": "snmpv2-tc:DisplayString",
                  "readOnly": true
                },
                "dialCtlPeerCfgClosedUserGroup": {
                  "type": "string",
                  "description": "Closed User Group at which the peer will be called.\n            If the Closed User Group is undefined for the given media\n            or unused, this is a zero length string.",
                  "x-yang-type": "snmpv2-tc:DisplayString",
                  "readOnly": true
                },
                "dialCtlPeerCfgSpeed": {
                  "type": "integer",
                  "description": "The desired information transfer speed in bits/second\n            when calling this peer.\n            The detailed media specific information, e.g. information\n            type and information transfer rate for ISDN circuits,\n            has to be extracted from this object.\n            If the transfer speed to be used is unknown or the default\n            speed for this type of interfaces, the value of this object\n            may be zero.",
                  "minimum": -2147483648,
                  "maximum": 2147483647,
                  "readOnly": true
                },
                "dialCtlPeerCfgInfoType": {
                  "type": "string",
                  "description": "The Information Transfer Capability to be used when\n            calling this peer.\n            \n            speech(2) refers to a non-data connection, whereas\n            audio31(6) and audio7(7) refer to data mode\n            connections.",
                  "readOnly": true
                },
                "dialCtlPeerCfgPermission": {
                  "type": "string",
                  "description": "Applicable permissions. callback(4) either rejects the\n            call and then calls back, or uses the 'Reverse charging'\n            information element if it is available.\n            Note that callback(4) is supposed to control charging, not\n            security, and applies to callback prior to accepting a\n            call. Callback for security reasons can be handled using\n            PPP callback.",
                  "readOnly": true
                },
                "dialCtlPeerCfgInactivityTimer": {
                  "type": "integer",
                  "description": "The connection will be automatically disconnected\n            if no longer carrying useful data for a time\n            period, in seconds, specified in this object.\n            Useful data in this context refers to forwarding\n            packets, including routing information; it\n            excludes the encapsulator maintenance frames.\n            A value of zero means the connection will not be\n            automatically taken down due to inactivity,\n            which implies that it is a dedicated circuit.",
                  "minimum": -2147483648,
                  "maximum": 2147483647,
                  "readOnly": true
                },
                "dialCtlPeerCfgMinDuration": {
                  "type": "integer",
                  "description": "Minimum duration of a call in seconds, starting from the\n            time the call is connected until the call is disconnected.\n            This is to accomplish the fact that in most countries\n            charging applies to units of time, which should be matched\n            as closely as possible.",
                  "minimum": -2147483648,
                  "maximum": 2147483647,
                  "readOnly": true
                },
                "dialCtlPeerCfgMaxDuration": {
                  "type": "integer",
                  "description": "Maximum call duration in seconds. Zero means 'unlimited'.",
                  "minimum": -2147483648,
                  "maximum": 2147483647,
                  "readOnly": true
                },
                "dialCtlPeerCfgCarrierDelay": {
                  "type": "integer",
                  "description": "The call timeout time in seconds. The default value\n            of zero means that the call timeout as specified for\n            the media in question will apply.",
                  "minimum": -2147483648,
                  "maximum": 2147483647,
                  "readOnly": true
                },
                "dialCtlPeerCfgCallRetries": {
                  "type": "integer",
                  "description": "The number of calls to a non-responding address\n            that may be made. A retry count of zero means\n            there is no bound. The intent is to bound\n            the number of successive calls to an address\n            which is inaccessible, or which refuses those calls.\n            \n            Some countries regulate the number of call retries\n            to a given peer that can be made.",
                  "minimum": -2147483648,
                  "maximum": 2147483647,
                  "readOnly": true
                },
                "dialCtlPeerCfgRetryDelay": {
                  "type": "integer",
                  "description": "The time in seconds between call retries if a peer\n            cannot be reached.\n            A value of zero means that call retries may be done\n            without any delay.",
                  "minimum": -2147483648,
                  "maximum": 2147483647,
                  "readOnly": true
                },
                "dialCtlPeerCfgFailureDelay": {
                  "type": "integer",
                  "description": "The time in seconds after which call attempts are\n            to be placed again after a peer has been noticed\n            to be unreachable, i.e. after dialCtlPeerCfgCallRetries\n            unsuccessful call attempts.\n            A value of zero means that a peer will not be called\n            again after dialCtlPeerCfgCallRetries unsuccessful call\n            attempts.",
                  "minimum": -2147483648,
                  "maximum": 2147483647,
                  "readOnly": true
                },
                "dialCtlPeerCfgTrapEnable": {
                  "type": "string",
                  "description": "This object indicates whether dialCtlPeerCallInformation\n            and dialCtlPeerCallSetup traps should be generated for\n            this peer.",
                  "readOnly": true
                },
                "dialCtlPeerCfgStatus": {
                  "type": "string",
                  "description": "Status of one row in this table.",
                  "x-yang-type": "snmpv2-tc:RowStatus",
                  "readOnly": true
                }
              }
            },
            "readOnly": true
          },
          "callActiveEntry": {
            "type": "array",
            "description": "The information regarding a single active Connection.\n          An entry in this table will be created when a call is\n          started. An entry in this table will be deleted when\n          an active call clears.",
            "items": {
              "type": "object",
              "properties": {
                "callActiveSetupTime": {
                  "type": "string",
                  "description": "The value of sysUpTime when the call associated to this\n            entry was started. This will be useful for an NMS to\n            retrieve all calls after a specific time. Also, this object\n            can be useful in finding large delays between the time the\n            call was started and the time the call was connected.\n            For ISDN media, this will be the time when the setup\n            message was received from or sent to the network.",
                  "x-yang-type": "yang:timestamp",
                  "readOnly": true
                },
                "callActiveIndex": {
                  "type": "integer",
                  "description": "Small index variable to distinguish calls that start in\n            the same hundredth of a second.",
                  "minimum": -2147483648,
                  "maximum": 2147483647,
                  "readOnly": true
                },
                "callActivePeerAddress": {
                  "type": "string",
                  "description": "The number this call is connected to. If the number is\n            not available, then it will have a length of zero.",
                  "x-yang-type": "snmpv2-tc:DisplayString",
                  "readOnly": true
                },
                "callActivePeerSubAddress": {
                  "type": "string",
                  "description": "The subaddress this call is connected to. If the subaddress\n            is undefined or not available, this will be a zero length\n            string.",
                  "x-yang-type": "snmpv2-tc:DisplayString",
                  "readOnly": true
                },
                "callActivePeerId": {
                  "type": "integer",
                  "description": "This is the Id value of the peer table entry\n            to which this call was made. If a peer table entry\n            for this call does not exist or is unknown, the value\n            of this object will be zero.",
                  "minimum": -2147483648,
                  "maximum": 2147483647,
                  "readOnly": true
                },
                "callActivePeerIfIndex": {
                  "type": "integer",
                  "description": "This is the ifIndex value of the peer table entry\n            to which this call was made. If a peer table entry\n            for this call does not exist or is unknown, the value\n            of this object will be zero.",
                  "minimum": -2147483648,
                  "maximum": 2147483647,
                  "readOnly": true
                },
                "callActiveLogicalIfIndex": {
                  "type": "string",
                  "description": "This is the ifIndex value of the logical interface through\n            which this call was made. For ISDN media, this would be\n            the ifIndex of the B channel which was used for this call.\n            If the ifIndex value is unknown, the value of this object\n            will be zero.",
                  "x-yang-type": "if-mib:InterfaceIndexOrZero",
                  "readOnly": true
                },
                "callActiveConnectTime": {
                  "type": "string",
                  "description": "The value of sysUpTime when the call was connected.\n            If the call is not connected, this object will have a\n            value of zero.",
                  "x-yang-type": "yang:timestamp",
                  "readOnly": true
                },
                "callActiveCallState": {
                  "type": "string",
                  "description": "The current call state.\n            unknown(1)     - The call state is unknown.\n            connecting(2)  - A connection attempt (outgoing call)\n                             is being made.\n            connected(3)   - An incoming call is in the process\n                             of validation.\n            active(4)      - The call is active.",
                  "readOnly": true
                },
                "callActiveCallOrigin": {
                  "type": "string",
                  "description": "The call origin.",
                  "readOnly": true
                },
                "callActiveChargedUnits": {
                  "type": "string",
                  "description": "The number of charged units for this connection.\n            For incoming calls or if charging information is\n            not supplied by the switch, the value of this object\n            will be zero.",
                  "x-yang-type": "DIAL-CONTROL-MIB:AbsoluteCounter32",
                  "readOnly": true
                },
                "callActiveInfoType": {
                  "type": "string",
                  "description": "The information type for this call.",
                  "readOnly": true
                },
                "callActiveTransmitPackets": {
                  "type": "string",
                  "description": "The number of packets which were transmitted for this\n            call.",
                  "x-yang-type": "DIAL-CONTROL-MIB:AbsoluteCounter32",
                  "readOnly": true
                },
                "callActiveTransmitBytes": {
                  "type": "string",
                  "description": "The number of bytes which were transmitted for this\n            call.",
                  "x-yang-type": "DIAL-CONTROL-MIB:AbsoluteCounter32",
                  "readOnly": true
                },
                "callActiveReceivePackets": {
                  "type": "string",
                  "description": "The number of packets which were received for this\n            call.",
                  "x-yang-type": "DIAL-CONTROL-MIB:AbsoluteCounter32",
                  "readOnly": true
                },
                "callActiveReceiveBytes": {
                  "type": "string",
                  "description": "The number of bytes which were received for this call.",
                  "x-yang-type": "DIAL-CONTROL-MIB:AbsoluteCounter32",
                  "readOnly": true
                }
              }
            },
            "readOnly": true
          },
          "callHistoryEntry": {
            "type": "array",
            "description": "The information regarding a single Connection.",
            "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
                },
                "callHistoryPeerAddress": {
                  "type": "string",
                  "description": "The number this call was connected to. If the number is\n            not available, then it will have a length of zero.",
                  "x-yang-type": "snmpv2-tc:DisplayString",
                  "readOnly": true
                },
                "callHistoryPeerSubAddress": {
                  "type": "string",
                  "description": "The subaddress this call was connected to. If the subaddress\n            is undefined or not available, this will be a zero length\n            string.",
                  "x-yang-type": "snmpv2-tc:DisplayString",
                  "readOnly": true
                },
                "callHistoryPeerId": {
                  "type": "integer",
                  "description": "This is the Id value of the peer table entry\n            to which this call was made. If a peer table entry\n            for this call does not exist, the value of this object\n            will be zero.",
                  "minimum": -2147483648,
                  "maximum": 2147483647,
                  "readOnly": true
                },
                "callHistoryPeerIfIndex": {
                  "type": "integer",
                  "description": "This is the ifIndex value of the peer table entry\n            to which this call was made. If a peer table entry\n            for this call does not exist, the value of this object\n            will be zero.",
                  "minimum": -2147483648,
                  "maximum": 2147483647,
                  "readOnly": true
                },
                "callHistoryLogicalIfIndex": {
                  "type": "string",
                  "description": "This is the ifIndex value of the logical interface through\n            which this call was made. For ISDN media, this would be\n            the ifIndex of the B channel which was used for this call.",
                  "x-yang-type": "if-mib:InterfaceIndex",
                  "readOnly": true
                },
                "callHistoryDisconnectCause": {
                  "type": "string",
                  "description": "The encoded network cause value associated with this call.\n            \n            The value of this object will depend on the interface type\n            as well as on the protocol and protocol version being\n            used on this interface. Some references for possible cause\n            values are given below.",
                  "format": "binary",
                  "readOnly": true
                },
                "callHistoryDisconnectText": {
                  "type": "string",
                  "description": "ASCII text describing the reason for call termination.\n            \n            This object exists because it would be impossible for\n            a management station to store all possible cause values\n            for all types of interfaces. It should be used only if\n            a management station is unable to decode the value of\n            dialCtlPeerStatsLastDisconnectCause.",
                  "x-yang-type": "snmpv2-tc:DisplayString",
                  "readOnly": true
                },
                "callHistoryConnectTime": {
                  "type": "string",
                  "description": "The value of sysUpTime when the call was connected.",
                  "x-yang-type": "yang:timestamp",
                  "readOnly": true
                },
                "callHistoryDisconnectTime": {
                  "type": "string",
                  "description": "The value of sysUpTime when the call was disconnected.",
                  "x-yang-type": "yang:timestamp",
                  "readOnly": true
                },
                "callHistoryCallOrigin": {
                  "type": "string",
                  "description": "The call origin.",
                  "readOnly": true
                },
                "callHistoryChargedUnits": {
                  "type": "string",
                  "description": "The number of charged units for this connection.\n            For incoming calls or if charging information is\n            not supplied by the switch, the value of this object\n            will be zero.",
                  "x-yang-type": "DIAL-CONTROL-MIB:AbsoluteCounter32",
                  "readOnly": true
                },
                "callHistoryInfoType": {
                  "type": "string",
                  "description": "The information type for this call.",
                  "readOnly": true
                },
                "callHistoryTransmitPackets": {
                  "type": "string",
                  "description": "The number of packets which were transmitted while this\n            call was active.",
                  "x-yang-type": "DIAL-CONTROL-MIB:AbsoluteCounter32",
                  "readOnly": true
                },
                "callHistoryTransmitBytes": {
                  "type": "string",
                  "description": "The number of bytes which were transmitted while this\n            call was active.",
                  "x-yang-type": "DIAL-CONTROL-MIB:AbsoluteCounter32",
                  "readOnly": true
                },
                "callHistoryReceivePackets": {
                  "type": "string",
                  "description": "The number of packets which were received while this\n            call was active.",
                  "x-yang-type": "DIAL-CONTROL-MIB:AbsoluteCounter32",
                  "readOnly": true
                },
                "callHistoryReceiveBytes": {
                  "type": "string",
                  "description": "The number of bytes which were received while this\n            call was active.",
                  "x-yang-type": "DIAL-CONTROL-MIB:AbsoluteCounter32",
                  "readOnly": true
                }
              }
            },
            "readOnly": true
          },
          "dialCtlConfiguration": {
            "type": "object",
            "description": "dialCtlConfiguration",
            "properties": {
              "dialCtlAcceptMode": {
                "type": "string",
                "description": "The security level for acceptance of incoming calls.\n          acceptNone(1)  - incoming calls will not be accepted\n          acceptAll(2)   - incoming calls will be accepted,\n                           even if there is no matching entry\n                           in the dialCtlPeerCfgTable\n          acceptKnown(3) - incoming calls will be accepted only\n                           if there is a matching entry in the\n                           dialCtlPeerCfgTable",
                "readOnly": true
              },
              "dialCtlTrapEnable": {
                "type": "string",
                "description": "This object indicates whether dialCtlPeerCallInformation\n          and dialCtlPeerCallSetup traps should be generated for\n          all peers. If the value of this object is enabled(1),\n          traps will be generated for all peers. If the value\n          of this object is disabled(2), traps will be generated\n          only for peers having dialCtlPeerCfgTrapEnable set\n          to enabled(1).",
                "readOnly": true
              }
            },
            "readOnly": true
          },
          "callHistory": {
            "type": "object",
            "description": "The upper limit on the number of entries that the\n          callHistoryTable may contain.  A value of 0\n          will prevent any history from being retained. When\n          this table is full, the oldest entry will be deleted\n          and the new one will be created.",
            "properties": {
              "callHistoryTableMaxLength": {
                "type": "integer",
                "description": "The upper limit on the number of entries that the\n          callHistoryTable may contain.  A value of 0\n          will prevent any history from being retained. When\n          this table is full, the oldest entry will be deleted\n          and the new one will be created.",
                "minimum": -2147483648,
                "maximum": 2147483647,
                "readOnly": true
              },
              "callHistoryRetainTimer": {
                "type": "integer",
                "description": "The minimum amount of time that an callHistoryEntry\n          will be maintained before being deleted. A value of\n          0 will prevent any history from being retained in the\n          callHistoryTable, but will neither prevent callCompletion\n          traps being generated nor affect other tables.",
                "minimum": -2147483648,
                "maximum": 2147483647,
                "readOnly": true
              }
            },
            "readOnly": true
          },
          "dialCtlPeerCfgTable": {
            "type": "object",
            "description": "The list of peers from which the managed device\n        will accept calls or to which it will place them.",
            "properties": {
              "dialCtlPeerCfgEntry": {
                "type": "array",
                "description": "dialCtlPeerCfgEntry",
                "items": {
                  "type": "object",
                  "properties": {
                    "ifIndex": {
                      "type": "string",
                      "description": "ifIndex",
                      "x-yang-type": "leafref",
                      "readOnly": true
                    },
                    "dialCtlPeerCfgId": {
                      "type": "integer",
                      "description": "This object identifies a single peer. There may\n            be several entries in this table for one peer,\n            defining different ways of reaching this peer.\n            Thus, there may be several entries in this table\n            with the same value of dialCtlPeerCfgId.\n            Multiple entries for one peer may be used to support\n            multilink as well as backup lines.\n            A single peer will be identified by a unique value\n            of this object. Several entries for one peer MUST\n            have the same value of dialCtlPeerCfgId, but different\n            ifEntries and thus different values of ifIndex.",
                      "minimum": -2147483648,
                      "maximum": 2147483647,
                      "readOnly": true
                    },
                    "dialCtlPeerCfgIfType": {
                      "type": "string",
                      "description": "The interface type to be used for calling this peer.\n            In case of ISDN, the value of isdn(63) is to be used.",
                      "x-yang-type": "ianaiftype-mib:IANAifType",
                      "readOnly": true
                    },
                    "dialCtlPeerCfgLowerIf": {
                      "type": "string",
                      "description": "ifIndex value of an interface the peer will have to be\n            called on. For example, on an ISDN interface, this can be\n            the ifIndex value of a D channel or the ifIndex value of a\n            B channel, whatever is appropriate for a given peer.\n            As an example, for Basic Rate leased lines it will be\n            necessary to specify a B channel ifIndex, while for\n            \n            \n            \n            \n            semi-permanent connections the D channel ifIndex has\n            to be specified.\n            If the interface can be dynamically assigned, this object\n            has a value of zero.",
                      "x-yang-type": "if-mib:InterfaceIndexOrZero",
                      "readOnly": true
                    },
                    "dialCtlPeerCfgOriginateAddress": {
                      "type": "string",
                      "description": "Call Address at which the peer will be called.\n            Think of this as the set of characters following 'ATDT '\n            or the 'phone number' included in a D channel call request.\n            \n            The structure of this information will be switch type\n            specific. If there is no address information required\n            for reaching the peer, i.e., for leased lines,\n            this object will be a zero length string.",
                      "x-yang-type": "snmpv2-tc:DisplayString",
                      "readOnly": true
                    },
                    "dialCtlPeerCfgAnswerAddress": {
                      "type": "string",
                      "description": "Calling Party Number information element, as for example\n            passed in an ISDN SETUP message by a PBX or switch,\n            for incoming calls.\n            This address can be used to identify the peer.\n            If this address is either unknown or identical\n            to dialCtlPeerCfgOriginateAddress, this object will be\n            a zero length string.",
                      "x-yang-type": "snmpv2-tc:DisplayString",
                      "readOnly": true
                    },
                    "dialCtlPeerCfgSubAddress": {
                      "type": "string",
                      "description": "Subaddress at which the peer will be called.\n            If the subaddress is undefined for the given media or\n            unused, this is a zero length string.",
                      "x-yang-type": "snmpv2-tc:DisplayString",
                      "readOnly": true
                    },
                    "dialCtlPeerCfgClosedUserGroup": {
                      "type": "string",
                      "description": "Closed User Group at which the peer will be called.\n            If the Closed User Group is undefined for the given media\n            or unused, this is a zero length string.",
                      "x-yang-type": "snmpv2-tc:DisplayString",
                      "readOnly": true
                    },
                    "dialCtlPeerCfgSpeed": {
                      "type": "integer",
                      "description": "The desired information transfer speed in bits/second\n            when calling this peer.\n            The detailed media specific information, e.g. information\n            type and information transfer rate for ISDN circuits,\n            has to be extracted from this object.\n            If the transfer speed to be used is unknown or the default\n            speed for this type of interfaces, the value of this object\n            may be zero.",
                      "minimum": -2147483648,
                      "maximum": 2147483647,
                      "readOnly": true
                    },
                    "dialCtlPeerCfgInfoType": {
                      "type": "string",
                      "description": "The Information Transfer Capability to be used when\n            calling this peer.\n            \n            speech(2) refers to a non-data connection, whereas\n            audio31(6) and audio7(7) refer to data mode\n            connections.",
                      "readOnly": true
                    },
                    "dialCtlPeerCfgPermission": {
                      "type": "string",
                      "description": "Applicable permissions. callback(4) either rejects the\n            call and then calls back, or uses the 'Reverse charging'\n            information element if it is available.\n            Note that callback(4) is supposed to control charging, not\n            security, and applies to callback prior to accepting a\n            call. Callback for security reasons can be handled using\n            PPP callback.",
                      "readOnly": true
                    },
                    "dialCtlPeerCfgInactivityTimer": {
                      "type": "integer",
                      "description": "The connection will be automatically disconnected\n            if no longer carrying useful data for a time\n            period, in seconds, specified in this object.\n            Useful data in this context refers to forwarding\n            packets, including routing information; it\n            excludes the encapsulator maintenance frames.\n            A value of zero means the connection will not be\n            automatically taken down due to inactivity,\n            which implies that it is a dedicated circuit.",
                      "minimum": -2147483648,
                      "maximum": 2147483647,
                      "readOnly": true
                    },
                    "dialCtlPeerCfgMinDuration": {
                      "type": "integer",
                      "description": "Minimum duration of a call in seconds, starting from the\n            time the call is connected until the call is disconnected.\n            This is to accomplish the fact that in most countries\n            charging applies to units of time, which should be matched\n            as closely as possible.",
                      "minimum": -2147483648,
                      "maximum": 2147483647,
                      "readOnly": true
                    },
                    "dialCtlPeerCfgMaxDuration": {
                      "type": "integer",
                      "description": "Maximum call duration in seconds. Zero means 'unlimited'.",
                      "minimum": -2147483648,
                      "maximum": 2147483647,
                      "readOnly": true
                    },
                    "dialCtlPeerCfgCarrierDelay": {
                      "type": "integer",
                      "description": "The call timeout time in seconds. The default value\n            of zero means that the call timeout as specified for\n            the media in question will apply.",
                      "minimum": -2147483648,
                      "maximum": 2147483647,
                      "readOnly": true
                    },
                    "dialCtlPeerCfgCallRetries": {
                      "type": "integer",
                      "description": "The number of calls to a non-responding address\n            that may be made. A retry count of zero means\n            there is no bound. The intent is to bound\n            the number of successive calls to an address\n            which is inaccessible, or which refuses those calls.\n            \n            Some countries regulate the number of call retries\n            to a given peer that can be made.",
                      "minimum": -2147483648,
                      "maximum": 2147483647,
                      "readOnly": true
                    },
                    "dialCtlPeerCfgRetryDelay": {
                      "type": "integer",
                      "description": "The time in seconds between call retries if a peer\n            cannot be reached.\n            A value of zero means that call retries may be done\n            without any delay.",
                      "minimum": -2147483648,
                      "maximum": 2147483647,
                      "readOnly": true
                    },
                    "dialCtlPeerCfgFailureDelay": {
                      "type": "integer",
                      "description": "The time in seconds after which call attempts are\n            to be placed again after a peer has been noticed\n            to be unreachable, i.e. after dialCtlPeerCfgCallRetries\n            unsuccessful call attempts.\n            A value of zero means that a peer will not be called\n            again after dialCtlPeerCfgCallRetries unsuccessful call\n            attempts.",
                      "minimum": -2147483648,
                      "maximum": 2147483647,
                      "readOnly": true
                    },
                    "dialCtlPeerCfgTrapEnable": {
                      "type": "string",
                      "description": "This object indicates whether dialCtlPeerCallInformation\n            and dialCtlPeerCallSetup traps should be generated for\n            this peer.",
                      "readOnly": true
                    },
                    "dialCtlPeerCfgStatus": {
                      "type": "string",
                      "description": "Status of one row in this table.",
                      "x-yang-type": "snmpv2-tc:RowStatus",
                      "readOnly": true
                    }
                  }
                },
                "readOnly": true
              }
            },
            "readOnly": true
          },
          "callActiveTable": {
            "type": "object",
            "description": "A table containing information about active\n        calls to a specific destination.",
            "properties": {
              "callActiveEntry": {
                "type": "array",
                "description": "The information regarding a single active Connection.\n          An entry in this table will be created when a call is\n          started. An entry in this table will be deleted when\n          an active call clears.",
                "items": {
                  "type": "object",
                  "properties": {
                    "callActiveSetupTime": {
                      "type": "string",
                      "description": "The value of sysUpTime when the call associated to this\n            entry was started. This will be useful for an NMS to\n            retrieve all calls after a specific time. Also, this object\n            can be useful in finding large delays between the time the\n            call was started and the time the call was connected.\n            For ISDN media, this will be the time when the setup\n            message was received from or sent to the network.",
                      "x-yang-type": "yang:timestamp",
                      "readOnly": true
                    },
                    "callActiveIndex": {
                      "type": "integer",
                      "description": "Small index variable to distinguish calls that start in\n            the same hundredth of a second.",
                      "minimum": -2147483648,
                      "maximum": 2147483647,
                      "readOnly": true
                    },
                    "callActivePeerAddress": {
                      "type": "string",
                      "description": "The number this call is connected to. If the number is\n            not available, then it will have a length of zero.",
                      "x-yang-type": "snmpv2-tc:DisplayString",
                      "readOnly": true
                    },
                    "callActivePeerSubAddress": {
                      "type": "string",
                      "description": "The subaddress this call is connected to. If the subaddress\n            is undefined or not available, this will be a zero length\n            string.",
                      "x-yang-type": "snmpv2-tc:DisplayString",
                      "readOnly": true
                    },
                    "callActivePeerId": {
                      "type": "integer",
                      "description": "This is the Id value of the peer table entry\n            to which this call was made. If a peer table entry\n            for this call does not exist or is unknown, the value\n            of this object will be zero.",
                      "minimum": -2147483648,
                      "maximum": 2147483647,
                      "readOnly": true
                    },
                    "callActivePeerIfIndex": {
                      "type": "integer",
                      "description": "This is the ifIndex value of the peer table entry\n            to which this call was made. If a peer table entry\n            for this call does not exist or is unknown, the value\n            of this object will be zero.",
                      "minimum": -2147483648,
                      "maximum": 2147483647,
                      "readOnly": true
                    },
                    "callActiveLogicalIfIndex": {
                      "type": "string",
                      "description": "This is the ifIndex value of the logical interface through\n            which this call was made. For ISDN media, this would be\n            the ifIndex of the B channel which was used for this call.\n            If the ifIndex value is unknown, the value of this object\n            will be zero.",
                      "x-yang-type": "if-mib:InterfaceIndexOrZero",
                      "readOnly": true
                    },
                    "callActiveConnectTime": {
                      "type": "string",
                      "description": "The value of sysUpTime when the call was connected.\n            If the call is not connected, this object will have a\n            value of zero.",
                      "x-yang-type": "yang:timestamp",
                      "readOnly": true
                    },
                    "callActiveCallState": {
                      "type": "string",
                      "description": "The current call state.\n            unknown(1)     - The call state is unknown.\n            connecting(2)  - A connection attempt (outgoing call)\n                             is being made.\n            connected(3)   - An incoming call is in the process\n                             of validation.\n            active(4)      - The call is active.",
                      "readOnly": true
                    },
                    "callActiveCallOrigin": {
                      "type": "string",
                      "description": "The call origin.",
                      "readOnly": true
                    },
                    "callActiveChargedUnits": {
                      "type": "string",
                      "description": "The number of charged units for this connection.\n            For incoming calls or if charging information is\n            not supplied by the switch, the value of this object\n            will be zero.",
                      "x-yang-type": "DIAL-CONTROL-MIB:AbsoluteCounter32",
                      "readOnly": true
                    },
                    "callActiveInfoType": {
                      "type": "string",
                      "description": "The information type for this call.",
                      "readOnly": true
                    },
                    "callActiveTransmitPackets": {
                      "type": "string",
                      "description": "The number of packets which were transmitted for this\n            call.",
                      "x-yang-type": "DIAL-CONTROL-MIB:AbsoluteCounter32",
                      "readOnly": true
                    },
                    "callActiveTransmitBytes": {
                      "type": "string",
                      "description": "The number of bytes which were transmitted for this\n            call.",
                      "x-yang-type": "DIAL-CONTROL-MIB:AbsoluteCounter32",
                      "readOnly": true
                    },
                    "callActiveReceivePackets": {
                      "type": "string",
                      "description": "The number of packets which were received for this\n            call.",
                      "x-yang-type": "DIAL-CONTROL-MIB:AbsoluteCounter32",
                      "readOnly": true
                    },
                    "callActiveReceiveBytes": {
                      "type": "string",
                      "description": "The number of bytes which were received for this call.",
                      "x-yang-type": "DIAL-CONTROL-MIB:AbsoluteCounter32",
                      "readOnly": true
                    }
                  }
                },
                "readOnly": true
              }
            },
            "readOnly": true
          },
          "callHistoryTable": {
            "type": "object",
            "description": "A table containing information about specific\n        calls to a specific destination.",
            "properties": {
              "callHistoryEntry": {
                "type": "array",
                "description": "The information regarding a single Connection.",
                "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
                    },
                    "callHistoryPeerAddress": {
                      "type": "string",
                      "description": "The number this call was connected to. If the number is\n            not available, then it will have a length of zero.",
                      "x-yang-type": "snmpv2-tc:DisplayString",
                      "readOnly": true
                    },
                    "callHistoryPeerSubAddress": {
                      "type": "string",
                      "description": "The subaddress this call was connected to. If the subaddress\n            is undefined or not available, this will be a zero length\n            string.",
                      "x-yang-type": "snmpv2-tc:DisplayString",
                      "readOnly": true
                    },
                    "callHistoryPeerId": {
                      "type": "integer",
                      "description": "This is the Id value of the peer table entry\n            to which this call was made. If a peer table entry\n            for this call does not exist, the value of this object\n            will be zero.",
                      "minimum": -2147483648,
                      "maximum": 2147483647,
                      "readOnly": true
                    },
                    "callHistoryPeerIfIndex": {
                      "type": "integer",
                      "description": "This is the ifIndex value of the peer table entry\n            to which this call was made. If a peer table entry\n            for this call does not exist, the value of this object\n            will be zero.",
                      "minimum": -2147483648,
                      "maximum": 2147483647,
                      "readOnly": true
                    },
                    "callHistoryLogicalIfIndex": {
                      "type": "string",
                      "description": "This is the ifIndex value of the logical interface through\n            which this call was made. For ISDN media, this would be\n            the ifIndex of the B channel which was used for this call.",
                      "x-yang-type": "if-mib:InterfaceIndex",
                      "readOnly": true
                    },
                    "callHistoryDisconnectCause": {
                      "type": "string",
                      "description": "The encoded network cause value associated with this call.\n            \n            The value of this object will depend on the interface type\n            as well as on the protocol and protocol version being\n            used on this interface. Some references for possible cause\n            values are given below.",
                      "format": "binary",
                      "readOnly": true
                    },
                    "callHistoryDisconnectText": {
                      "type": "string",
                      "description": "ASCII text describing the reason for call termination.\n            \n            This object exists because it would be impossible for\n            a management station to store all possible cause values\n            for all types of interfaces. It should be used only if\n            a management station is unable to decode the value of\n            dialCtlPeerStatsLastDisconnectCause.",
                      "x-yang-type": "snmpv2-tc:DisplayString",
                      "readOnly": true
                    },
                    "callHistoryConnectTime": {
                      "type": "string",
                      "description": "The value of sysUpTime when the call was connected.",
                      "x-yang-type": "yang:timestamp",
                      "readOnly": true
                    },
                    "callHistoryDisconnectTime": {
                      "type": "string",
                      "description": "The value of sysUpTime when the call was disconnected.",
                      "x-yang-type": "yang:timestamp",
                      "readOnly": true
                    },
                    "callHistoryCallOrigin": {
                      "type": "string",
                      "description": "The call origin.",
                      "readOnly": true
                    },
                    "callHistoryChargedUnits": {
                      "type": "string",
                      "description": "The number of charged units for this connection.\n            For incoming calls or if charging information is\n            not supplied by the switch, the value of this object\n            will be zero.",
                      "x-yang-type": "DIAL-CONTROL-MIB:AbsoluteCounter32",
                      "readOnly": true
                    },
                    "callHistoryInfoType": {
                      "type": "string",
                      "description": "The information type for this call.",
                      "readOnly": true
                    },
                    "callHistoryTransmitPackets": {
                      "type": "string",
                      "description": "The number of packets which were transmitted while this\n            call was active.",
                      "x-yang-type": "DIAL-CONTROL-MIB:AbsoluteCounter32",
                      "readOnly": true
                    },
                    "callHistoryTransmitBytes": {
                      "type": "string",
                      "description": "The number of bytes which were transmitted while this\n            call was active.",
                      "x-yang-type": "DIAL-CONTROL-MIB:AbsoluteCounter32",
                      "readOnly": true
                    },
                    "callHistoryReceivePackets": {
                      "type": "string",
                      "description": "The number of packets which were received while this\n            call was active.",
                      "x-yang-type": "DIAL-CONTROL-MIB:AbsoluteCounter32",
                      "readOnly": true
                    },
                    "callHistoryReceiveBytes": {
                      "type": "string",
                      "description": "The number of bytes which were received while this\n            call was active.",
                      "x-yang-type": "DIAL-CONTROL-MIB:AbsoluteCounter32",
                      "readOnly": true
                    }
                  }
                },
                "readOnly": true
              }
            },
            "readOnly": true
          }
        }
      },
      "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
          },
          "callActivePeerId": {
            "type": "string",
            "description": "callActivePeerId",
            "x-yang-type": "leafref",
            "readOnly": true
          }
        }
      },
      "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
          },
          "callActivePeerIfIndex": {
            "type": "string",
            "description": "callActivePeerIfIndex",
            "x-yang-type": "leafref",
            "readOnly": true
          }
        }
      },
      "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
          },
          "callActiveLogicalIfIndex": {
            "type": "string",
            "description": "callActiveLogicalIfIndex",
            "x-yang-type": "leafref",
            "readOnly": true
          }
        }
      },
      "DIAL-CONTROL-MIB_object-4": {
        "type": "object",
        "description": "object-4",
        "properties": {
          "ifIndex": {
            "type": "string",
            "description": "ifIndex",
            "x-yang-type": "leafref",
            "readOnly": true
          },
          "ifOperStatus": {
            "type": "string",
            "description": "ifOperStatus",
            "x-yang-type": "leafref",
            "readOnly": true
          }
        }
      },
      "DIAL-CONTROL-MIB_object-5": {
        "type": "object",
        "description": "object-5",
        "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
          }
        }
      },
      "DIAL-CONTROL-MIB_object-6": {
        "type": "object",
        "description": "object-6",
        "properties": {
          "callActiveSetupTime": {
            "type": "string",
            "description": "callActiveSetupTime",
            "x-yang-type": "leafref",
            "readOnly": true
          },
          "callActiveIndex": {
            "type": "string",
            "description": "callActiveIndex",
            "x-yang-type": "leafref",
            "readOnly": true
          },
          "callActivePeerSubAddress": {
            "type": "string",
            "description": "callActivePeerSubAddress",
            "x-yang-type": "leafref",
            "readOnly": true
          }
        }
      },
      "DIAL-CONTROL-MIB_object-7": {
        "type": "object",
        "description": "object-7",
        "properties": {
          "callActiveSetupTime": {
            "type": "string",
            "description": "callActiveSetupTime",
            "x-yang-type": "leafref",
            "readOnly": true
          },
          "callActiveIndex": {
            "type": "string",
            "description": "callActiveIndex",
            "x-yang-type": "leafref",
            "readOnly": true
          },
          "callActiveInfoType": {
            "type": "string",
            "description": "callActiveInfoType",
            "x-yang-type": "leafref",
            "readOnly": true
          }
        }
      },
      "DIAL-CONTROL-MIB_object-8": {
        "type": "object",
        "description": "object-8",
        "properties": {
          "callActiveSetupTime": {
            "type": "string",
            "description": "callActiveSetupTime",
            "x-yang-type": "leafref",
            "readOnly": true
          },
          "callActiveIndex": {
            "type": "string",
            "description": "callActiveIndex",
            "x-yang-type": "leafref",
            "readOnly": true
          },
          "callActiveCallOrigin": {
            "type": "string",
            "description": "callActiveCallOrigin",
            "x-yang-type": "leafref",
            "readOnly": true
          }
        }
      },
      "DIAL-CONTROL-MIB_object-9": {
        "type": "object",
        "description": "object-9",
        "properties": {
          "callActiveSetupTime": {
            "type": "string",
            "description": "callActiveSetupTime",
            "x-yang-type": "leafref",
            "readOnly": true
          },
          "callActiveIndex": {
            "type": "string",
            "description": "callActiveIndex",
            "x-yang-type": "leafref",
            "readOnly": true
          },
          "callHistoryDisconnectTime": {
            "type": "string",
            "description": "callHistoryDisconnectTime",
            "x-yang-type": "leafref",
            "readOnly": true
          }
        }
      },
      "DIAL-CONTROL-MIB_object-10": {
        "type": "object",
        "description": "object-10",
        "properties": {
          "callActiveSetupTime": {
            "type": "string",
            "description": "callActiveSetupTime",
            "x-yang-type": "leafref",
            "readOnly": true
          },
          "callActiveIndex": {
            "type": "string",
            "description": "callActiveIndex",
            "x-yang-type": "leafref",
            "readOnly": true
          },
          "callHistoryInfoType": {
            "type": "string",
            "description": "callHistoryInfoType",
            "x-yang-type": "leafref",
            "readOnly": true
          }
        }
      },
      "DIAL-CONTROL-MIB_object-11": {
        "type": "object",
        "description": "object-11",
        "properties": {
          "callActiveSetupTime": {
            "type": "string",
            "description": "callActiveSetupTime",
            "x-yang-type": "leafref",
            "readOnly": true
          },
          "callActiveIndex": {
            "type": "string",
            "description": "callActiveIndex",
            "x-yang-type": "leafref",
            "readOnly": true
          },
          "callHistoryCallOrigin": {
            "type": "string",
            "description": "callHistoryCallOrigin",
            "x-yang-type": "leafref",
            "readOnly": true
          }
        }
      },
      "DIAL-CONTROL-MIB_dialCtlPeerCfgEntry": {
        "type": "array",
        "description": "dialCtlPeerCfgEntry",
        "items": {
          "type": "object",
          "properties": {
            "ifIndex": {
              "type": "string",
              "description": "ifIndex",
              "x-yang-type": "leafref",
              "readOnly": true
            },
            "dialCtlPeerCfgId": {
              "type": "integer",
              "description": "This object identifies a single peer. There may\n            be several entries in this table for one peer,\n            defining different ways of reaching this peer.\n            Thus, there may be several entries in this table\n            with the same value of dialCtlPeerCfgId.\n            Multiple entries for one peer may be used to support\n            multilink as well as backup lines.\n            A single peer will be identified by a unique value\n            of this object. Several entries for one peer MUST\n            have the same value of dialCtlPeerCfgId, but different\n            ifEntries and thus different values of ifIndex.",
              "minimum": -2147483648,
              "maximum": 2147483647,
              "readOnly": true
            },
            "dialCtlPeerCfgIfType": {
              "type": "string",
              "description": "The interface type to be used for calling this peer.\n            In case of ISDN, the value of isdn(63) is to be used.",
              "x-yang-type": "ianaiftype-mib:IANAifType",
              "readOnly": true
            },
            "dialCtlPeerCfgLowerIf": {
              "type": "string",
              "description": "ifIndex value of an interface the peer will have to be\n            called on. For example, on an ISDN interface, this can be\n            the ifIndex value of a D channel or the ifIndex value of a\n            B channel, whatever is appropriate for a given peer.\n            As an example, for Basic Rate leased lines it will be\n            necessary to specify a B channel ifIndex, while for\n            \n            \n            \n            \n            semi-permanent connections the D channel ifIndex has\n            to be specified.\n            If the interface can be dynamically assigned, this object\n            has a value of zero.",
              "x-yang-type": "if-mib:InterfaceIndexOrZero",
              "readOnly": true
            },
            "dialCtlPeerCfgOriginateAddress": {
              "type": "string",
              "description": "Call Address at which the peer will be called.\n            Think of this as the set of characters following 'ATDT '\n            or the 'phone number' included in a D channel call request.\n            \n            The structure of this information will be switch type\n            specific. If there is no address information required\n            for reaching the peer, i.e., for leased lines,\n            this object will be a zero length string.",
              "x-yang-type": "snmpv2-tc:DisplayString",
              "readOnly": true
            },
            "dialCtlPeerCfgAnswerAddress": {
              "type": "string",
              "description": "Calling Party Number information element, as for example\n            passed in an ISDN SETUP message by a PBX or switch,\n            for incoming calls.\n            This address can be used to identify the peer.\n            If this address is either unknown or identical\n            to dialCtlPeerCfgOriginateAddress, this object will be\n            a zero length string.",
              "x-yang-type": "snmpv2-tc:DisplayString",
              "readOnly": true
            },
            "dialCtlPeerCfgSubAddress": {
              "type": "string",
              "description": "Subaddress at which the peer will be called.\n            If the subaddress is undefined for the given media or\n            unused, this is a zero length string.",
              "x-yang-type": "snmpv2-tc:DisplayString",
              "readOnly": true
            },
            "dialCtlPeerCfgClosedUserGroup": {
              "type": "string",
              "description": "Closed User Group at which the peer will be called.\n            If the Closed User Group is undefined for the given media\n            or unused, this is a zero length string.",
              "x-yang-type": "snmpv2-tc:DisplayString",
              "readOnly": true
            },
            "dialCtlPeerCfgSpeed": {
              "type": "integer",
              "description": "The desired information transfer speed in bits/second\n            when calling this peer.\n            The detailed media specific information, e.g. information\n            type and information transfer rate for ISDN circuits,\n            has to be extracted from this object.\n            If the transfer speed to be used is unknown or the default\n            speed for this type of interfaces, the value of this object\n            may be zero.",
              "minimum": -2147483648,
              "maximum": 2147483647,
              "readOnly": true
            },
            "dialCtlPeerCfgInfoType": {
              "type": "string",
              "description": "The Information Transfer Capability to be used when\n            calling this peer.\n            \n            speech(2) refers to a non-data connection, whereas\n            audio31(6) and audio7(7) refer to data mode\n            connections.",
              "readOnly": true
            },
            "dialCtlPeerCfgPermission": {
              "type": "string",
              "description": "Applicable permissions. callback(4) either rejects the\n            call and then calls back, or uses the 'Reverse charging'\n            information element if it is available.\n            Note that callback(4) is supposed to control charging, not\n            security, and applies to callback prior to accepting a\n            call. Callback for security reasons can be handled using\n            PPP callback.",
              "readOnly": true
            },
            "dialCtlPeerCfgInactivityTimer": {
              "type": "integer",
              "description": "The connection will be automatically disconnected\n            if no longer carrying useful data for a time\n            period, in seconds, specified in this object.\n            Useful data in this context refers to forwarding\n            packets, including routing information; it\n            excludes the encapsulator maintenance frames.\n            A value of zero means the connection will not be\n            automatically taken down due to inactivity,\n            which implies that it is a dedicated circuit.",
              "minimum": -2147483648,
              "maximum": 2147483647,
              "readOnly": true
            },
            "dialCtlPeerCfgMinDuration": {
              "type": "integer",
              "description": "Minimum duration of a call in seconds, starting from the\n            time the call is connected until the call is disconnected.\n            This is to accomplish the fact that in most countries\n            charging applies to units of time, which should be matched\n            as closely as possible.",
              "minimum": -2147483648,
              "maximum": 2147483647,
              "readOnly": true
            },
            "dialCtlPeerCfgMaxDuration": {
              "type": "integer",
              "description": "Maximum call duration in seconds. Zero means 'unlimited'.",
              "minimum": -2147483648,
              "maximum": 2147483647,
              "readOnly": true
            },
            "dialCtlPeerCfgCarrierDelay": {
              "type": "integer",
              "description": "The call timeout time in seconds. The default value\n            of zero means that the call timeout as specified for\n            the media in question will apply.",
              "minimum": -2147483648,
              "maximum": 2147483647,
              "readOnly": true
            },
            "dialCtlPeerCfgCallRetries": {
              "type": "integer",
              "description": "The number of calls to a non-responding address\n            that may be made. A retry count of zero means\n            there is no bound. The intent is to bound\n            the number of successive calls to an address\n            which is inaccessible, or which refuses those calls.\n            \n            Some countries regulate the number of call retries\n            to a given peer that can be made.",
              "minimum": -2147483648,
              "maximum": 2147483647,
              "readOnly": true
            },
            "dialCtlPeerCfgRetryDelay": {
              "type": "integer",
              "description": "The time in seconds between call retries if a peer\n            cannot be reached.\n            A value of zero means that call retries may be done\n            without any delay.",
              "minimum": -2147483648,
              "maximum": 2147483647,
              "readOnly": true
            },
            "dialCtlPeerCfgFailureDelay": {
              "type": "integer",
              "description": "The time in seconds after which call attempts are\n            to be placed again after a peer has been noticed\n            to be unreachable, i.e. after dialCtlPeerCfgCallRetries\n            unsuccessful call attempts.\n            A value of zero means that a peer will not be called\n            again after dialCtlPeerCfgCallRetries unsuccessful call\n            attempts.",
              "minimum": -2147483648,
              "maximum": 2147483647,
              "readOnly": true
            },
            "dialCtlPeerCfgTrapEnable": {
              "type": "string",
              "description": "This object indicates whether dialCtlPeerCallInformation\n            and dialCtlPeerCallSetup traps should be generated for\n            this peer.",
              "readOnly": true
            },
            "dialCtlPeerCfgStatus": {
              "type": "string",
              "description": "Status of one row in this table.",
              "x-yang-type": "snmpv2-tc:RowStatus",
              "readOnly": true
            }
          }
        }
      },
      "DIAL-CONTROL-MIB_callActiveEntry": {
        "type": "array",
        "description": "The information regarding a single active Connection.\n          An entry in this table will be created when a call is\n          started. An entry in this table will be deleted when\n          an active call clears.",
        "items": {
          "type": "object",
          "properties": {
            "callActiveSetupTime": {
              "type": "string",
              "description": "The value of sysUpTime when the call associated to this\n            entry was started. This will be useful for an NMS to\n            retrieve all calls after a specific time. Also, this object\n            can be useful in finding large delays between the time the\n            call was started and the time the call was connected.\n            For ISDN media, this will be the time when the setup\n            message was received from or sent to the network.",
              "x-yang-type": "yang:timestamp",
              "readOnly": true
            },
            "callActiveIndex": {
              "type": "integer",
              "description": "Small index variable to distinguish calls that start in\n            the same hundredth of a second.",
              "minimum": -2147483648,
              "maximum": 2147483647,
              "readOnly": true
            },
            "callActivePeerAddress": {
              "type": "string",
              "description": "The number this call is connected to. If the number is\n            not available, then it will have a length of zero.",
              "x-yang-type": "snmpv2-tc:DisplayString",
              "readOnly": true
            },
            "callActivePeerSubAddress": {
              "type": "string",
              "description": "The subaddress this call is connected to. If the subaddress\n            is undefined or not available, this will be a zero length\n            string.",
              "x-yang-type": "snmpv2-tc:DisplayString",
              "readOnly": true
            },
            "callActivePeerId": {
              "type": "integer",
              "description": "This is the Id value of the peer table entry\n            to which this call was made. If a peer table entry\n            for this call does not exist or is unknown, the value\n            of this object will be zero.",
              "minimum": -2147483648,
              "maximum": 2147483647,
              "readOnly": true
            },
            "callActivePeerIfIndex": {
              "type": "integer",
              "description": "This is the ifIndex value of the peer table entry\n            to which this call was made. If a peer table entry\n            for this call does not exist or is unknown, the value\n            of this object will be zero.",
              "minimum": -2147483648,
              "maximum": 2147483647,
              "readOnly": true
            },
            "callActiveLogicalIfIndex": {
              "type": "string",
              "description": "This is the ifIndex value of the logical interface through\n            which this call was made. For ISDN media, this would be\n            the ifIndex of the B channel which was used for this call.\n            If the ifIndex value is unknown, the value of this object\n            will be zero.",
              "x-yang-type": "if-mib:InterfaceIndexOrZero",
              "readOnly": true
            },
            "callActiveConnectTime": {
              "type": "string",
              "description": "The value of sysUpTime when the call was connected.\n            If the call is not connected, this object will have a\n            value of zero.",
              "x-yang-type": "yang:timestamp",
              "readOnly": true
            },
            "callActiveCallState": {
              "type": "string",
              "description": "The current call state.\n            unknown(1)     - The call state is unknown.\n            connecting(2)  - A connection attempt (outgoing call)\n                             is being made.\n            connected(3)   - An incoming call is in the process\n                             of validation.\n            active(4)      - The call is active.",
              "readOnly": true
            },
            "callActiveCallOrigin": {
              "type": "string",
              "description": "The call origin.",
              "readOnly": true
            },
            "callActiveChargedUnits": {
              "type": "string",
              "description": "The number of charged units for this connection.\n            For incoming calls or if charging information is\n            not supplied by the switch, the value of this object\n            will be zero.",
              "x-yang-type": "DIAL-CONTROL-MIB:AbsoluteCounter32",
              "readOnly": true
            },
            "callActiveInfoType": {
              "type": "string",
              "description": "The information type for this call.",
              "readOnly": true
            },
            "callActiveTransmitPackets": {
              "type": "string",
              "description": "The number of packets which were transmitted for this\n            call.",
              "x-yang-type": "DIAL-CONTROL-MIB:AbsoluteCounter32",
              "readOnly": true
            },
            "callActiveTransmitBytes": {
              "type": "string",
              "description": "The number of bytes which were transmitted for this\n            call.",
              "x-yang-type": "DIAL-CONTROL-MIB:AbsoluteCounter32",
              "readOnly": true
            },
            "callActiveReceivePackets": {
              "type": "string",
              "description": "The number of packets which were received for this\n            call.",
              "x-yang-type": "DIAL-CONTROL-MIB:AbsoluteCounter32",
              "readOnly": true
            },
            "callActiveReceiveBytes": {
              "type": "string",
              "description": "The number of bytes which were received for this call.",
              "x-yang-type": "DIAL-CONTROL-MIB:AbsoluteCounter32",
              "readOnly": true
            }
          }
        }
      },
      "DIAL-CONTROL-MIB_callHistoryEntry": {
        "type": "array",
        "description": "The information regarding a single Connection.",
        "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
            },
            "callHistoryPeerAddress": {
              "type": "string",
              "description": "The number this call was connected to. If the number is\n            not available, then it will have a length of zero.",
              "x-yang-type": "snmpv2-tc:DisplayString",
              "readOnly": true
            },
            "callHistoryPeerSubAddress": {
              "type": "string",
              "description": "The subaddress this call was connected to. If the subaddress\n            is undefined or not available, this will be a zero length\n            string.",
              "x-yang-type": "snmpv2-tc:DisplayString",
              "readOnly": true
            },
            "callHistoryPeerId": {
              "type": "integer",
              "description": "This is the Id value of the peer table entry\n            to which this call was made. If a peer table entry\n            for this call does not exist, the value of this object\n            will be zero.",
              "minimum": -2147483648,
              "maximum": 2147483647,
              "readOnly": true
            },
            "callHistoryPeerIfIndex": {
              "type": "integer",
              "description": "This is the ifIndex value of the peer table entry\n            to which this call was made. If a peer table entry\n            for this call does not exist, the value of this object\n            will be zero.",
              "minimum": -2147483648,
              "maximum": 2147483647,
              "readOnly": true
            },
            "callHistoryLogicalIfIndex": {
              "type": "string",
              "description": "This is the ifIndex value of the logical interface through\n            which this call was made. For ISDN media, this would be\n            the ifIndex of the B channel which was used for this call.",
              "x-yang-type": "if-mib:InterfaceIndex",
              "readOnly": true
            },
            "callHistoryDisconnectCause": {
              "type": "string",
              "description": "The encoded network cause value associated with this call.\n            \n            The value of this object will depend on the interface type\n            as well as on the protocol and protocol version being\n            used on this interface. Some references for possible cause\n            values are given below.",
              "format": "binary",
              "readOnly": true
            },
            "callHistoryDisconnectText": {
              "type": "string",
              "description": "ASCII text describing the reason for call termination.\n            \n            This object exists because it would be impossible for\n            a management station to store all possible cause values\n            for all types of interfaces. It should be used only if\n            a management station is unable to decode the value of\n            dialCtlPeerStatsLastDisconnectCause.",
              "x-yang-type": "snmpv2-tc:DisplayString",
              "readOnly": true
            },
            "callHistoryConnectTime": {
              "type": "string",
              "description": "The value of sysUpTime when the call was connected.",
              "x-yang-type": "yang:timestamp",
              "readOnly": true
            },
            "callHistoryDisconnectTime": {
              "type": "string",
              "description": "The value of sysUpTime when the call was disconnected.",
              "x-yang-type": "yang:timestamp",
              "readOnly": true
            },
            "callHistoryCallOrigin": {
              "type": "string",
              "description": "The call origin.",
              "readOnly": true
            },
            "callHistoryChargedUnits": {
              "type": "string",
              "description": "The number of charged units for this connection.\n            For incoming calls or if charging information is\n            not supplied by the switch, the value of this object\n            will be zero.",
              "x-yang-type": "DIAL-CONTROL-MIB:AbsoluteCounter32",
              "readOnly": true
            },
            "callHistoryInfoType": {
              "type": "string",
              "description": "The information type for this call.",
              "readOnly": true
            },
            "callHistoryTransmitPackets": {
              "type": "string",
              "description": "The number of packets which were transmitted while this\n            call was active.",
              "x-yang-type": "DIAL-CONTROL-MIB:AbsoluteCounter32",
              "readOnly": true
            },
            "callHistoryTransmitBytes": {
              "type": "string",
              "description": "The number of bytes which were transmitted while this\n            call was active.",
              "x-yang-type": "DIAL-CONTROL-MIB:AbsoluteCounter32",
              "readOnly": true
            },
            "callHistoryReceivePackets": {
              "type": "string",
              "description": "The number of packets which were received while this\n            call was active.",
              "x-yang-type": "DIAL-CONTROL-MIB:AbsoluteCounter32",
              "readOnly": true
            },
            "callHistoryReceiveBytes": {
              "type": "string",
              "description": "The number of bytes which were received while this\n            call was active.",
              "x-yang-type": "DIAL-CONTROL-MIB:AbsoluteCounter32",
              "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": "DIAL-CONTROL-MIB",
      "description": "MIB operations for DIAL-CONTROL-MIB"
    }
  ],
  "externalDocs": {
    "description": "Cisco SNMP Object Navigator",
    "url": "https://snmp.cloudapps.cisco.com/Support/IOS/do/BrowseMIB.do"
  }
}
