{
  "openapi": "3.0.0",
  "info": {
    "title": "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB MIB API",
    "version": "1.0.0",
    "description": "SNMP MIB translated to YANG data model\n\n⚠️ **IMPORTANT - MIB DATA ACCESS**:\nThis YANG model exists for SMIv2-to-YANG translation purposes, but MIB data on IOS-XE devices is primarily accessed via **SNMP protocol**, not RESTCONF.\n\n**RESTCONF Limitation**: Many MIB paths may return 404 errors via RESTCONF `/data` endpoints because the device exposes MIB data through SNMP, not the YANG datastore.\n\n**Recommended Access Methods**:\n- Use SNMP (v2c/v3) to query MIB data directly\n- Use NETCONF `<get>` operations for devices supporting YANG-modeled MIB access\n- Check device capabilities: some newer IOS-XE versions may support limited RESTCONF access to specific MIBs\n\n**YANG Model Purpose**: These YANG models define the structure of SNMP MIBs in YANG format for tooling compatibility, but do not guarantee RESTCONF data availability.\n\n\n**📊 YANG Tree:** [View CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB structure](https://jeremycohoe.github.io/cisco-ios-xe-openapi-swagger/yang-trees/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB.html)",
    "contact": {
      "name": "Cisco DevNet",
      "url": "https://developer.cisco.com"
    },
    "x-yang-module": "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
    "x-model-type": "mib"
  },
  "servers": [
    {
      "url": "https://{device}/restconf",
      "description": "RESTCONF server",
      "variables": {
        "device": {
          "default": "10.1.1.1",
          "description": "Device hostname or IP address"
        }
      }
    }
  ],
  "paths": {
    "/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:csbCallStatsInstanceTable": {
      "get": {
        "summary": "Get csbCallStatsInstanceTable data",
        "description": "Retrieve csbCallStatsInstanceTable operational data from MIB",
        "tags": [
          "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "description": "The call stats instance table contains the physical index for\n        each of the physical entity (line card, primary, secondary\n        cards). The index of the table is instance index which uniquely\n        identifies the physical entity present on the box.",
                  "properties": {
                    "csbCallStatsInstanceEntry": {
                      "type": "array",
                      "description": "A conceptual row in csbCallStatsInstanceTable. There is an\n          entry in this table for each SBC instance, as identified by a \n          value of csbCallStatsInstanceIndex.",
                      "items": {
                        "type": "object",
                        "properties": {
                          "csbCallStatsInstanceIndex": {
                            "type": "integer",
                            "description": "This object uniquely identifies the sequence number of an\n            entity or slot that is configured per device. This index is\n            assigned arbitrarily by the engine and is not saved over\n            reboots.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "csbCallStatsInstancePhysicalIndex": {
                            "type": "string",
                            "description": "This object indicates the physical entity for which all the\n            measurements are maintained. The exact type of this\n            entity is described by its entPhysicalVendorType value.",
                            "x-yang-type": "cisco-tc:EntPhysicalIndexOrZero"
                          }
                        }
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:csbCallStatsInstanceTable": {
                    "csbCallStatsInstanceEntry": [
                      {
                        "csbCallStatsInstanceIndex": 1,
                        "csbCallStatsInstancePhysicalIndex": "1"
                      },
                      {
                        "csbCallStatsInstanceIndex": 2,
                        "csbCallStatsInstancePhysicalIndex": "2"
                      },
                      {
                        "csbCallStatsInstanceIndex": 3,
                        "csbCallStatsInstancePhysicalIndex": "3"
                      }
                    ]
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-csbCallStatsInstanceTable",
        "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": "/csbCallStatsInstanceTable",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:csbCallStatsInstanceTable/csbCallStatsInstanceEntry": {
      "get": {
        "summary": "Get csbCallStatsInstanceEntry list",
        "description": "Retrieve list of csbCallStatsInstanceEntry entries from MIB",
        "tags": [
          "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "A conceptual row in csbCallStatsInstanceTable. There is an\n          entry in this table for each SBC instance, as identified by a \n          value of csbCallStatsInstanceIndex.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "csbCallStatsInstanceIndex": {
                        "type": "integer",
                        "description": "This object uniquely identifies the sequence number of an\n            entity or slot that is configured per device. This index is\n            assigned arbitrarily by the engine and is not saved over\n            reboots.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbCallStatsInstancePhysicalIndex": {
                        "type": "string",
                        "description": "This object indicates the physical entity for which all the\n            measurements are maintained. The exact type of this\n            entity is described by its entPhysicalVendorType value.",
                        "x-yang-type": "cisco-tc:EntPhysicalIndexOrZero"
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:csbCallStatsInstanceEntry": [
                    {
                      "csbCallStatsInstanceIndex": 1,
                      "csbCallStatsInstancePhysicalIndex": "example-string"
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-csbCallStatsInstanceEntry",
        "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": "/csbCallStatsInstanceTable/csbCallStatsInstanceEntry",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:csbCallStatsInstanceTable/csbCallStatsInstanceEntry={csbCallStatsInstanceIndex}": {
      "get": {
        "summary": "Get csbCallStatsInstanceEntry entry",
        "description": "Retrieve specific csbCallStatsInstanceEntry entry by key from MIB",
        "tags": [
          "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB"
        ],
        "parameters": [
          {
            "name": "csbCallStatsInstanceIndex",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            },
            "example": "1"
          },
          {
            "name": "Accept",
            "in": "header",
            "required": false,
            "description": "RESTCONF response media type (RFC 8040)",
            "schema": {
              "type": "string",
              "default": "application/yang-data+json",
              "enum": [
                "application/yang-data+json",
                "application/yang-data+xml"
              ]
            }
          },
          {
            "name": "depth",
            "in": "query",
            "required": false,
            "description": "Limit the depth of returned sub-tree data (RFC 8040 Section 4.8.2). Use 'unbounded' for full depth.",
            "schema": {
              "type": "string",
              "default": "unbounded"
            }
          },
          {
            "name": "fields",
            "in": "query",
            "required": false,
            "description": "Select specific fields to return (RFC 8040 Section 4.8.3). Example: fields=name;status",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "content",
            "in": "query",
            "required": false,
            "description": "Filter by config state: 'config' (config true only), 'nonconfig' (config false only), or 'all'.",
            "schema": {
              "type": "string",
              "enum": [
                "config",
                "nonconfig",
                "all"
              ],
              "default": "all"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "csbCallStatsInstanceIndex": {
                      "type": "integer",
                      "description": "This object uniquely identifies the sequence number of an\n            entity or slot that is configured per device. This index is\n            assigned arbitrarily by the engine and is not saved over\n            reboots.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbCallStatsInstancePhysicalIndex": {
                      "type": "string",
                      "description": "This object indicates the physical entity for which all the\n            measurements are maintained. The exact type of this\n            entity is described by its entPhysicalVendorType value.",
                      "x-yang-type": "cisco-tc:EntPhysicalIndexOrZero"
                    }
                  }
                },
                "example": {
                  "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:csbCallStatsInstanceEntry": {
                    "csbCallStatsInstanceIndex": 1,
                    "csbCallStatsInstancePhysicalIndex": "example-string"
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-csbCallStatsInstanceEntry-2"
      },
      "x-yang-path": "/csbCallStatsInstanceTable/csbCallStatsInstanceEntry={csbCallStatsInstanceIndex}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "csbCallStatsInstanceIndex"
      ]
    },
    "/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:csbCallStatsTable": {
      "get": {
        "summary": "Get csbCallStatsTable data",
        "description": "Retrieve csbCallStatsTable operational data from MIB",
        "tags": [
          "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "description": "csbCallStatsTable",
                  "properties": {
                    "csbCallStatsEntry": {
                      "type": "array",
                      "description": "An conceptual row in the csbCallStatsGlobalStatsTable. There is\n          an entry in this table for the particular service configured on\n          SBC identified by a value of csbCallStatsInstanceIndex. The\n          other index of this table is csbCallStatsInstanceIndex which is\n          defined in csbCallStatsInstanceTable.",
                      "items": {
                        "type": "object",
                        "properties": {
                          "csbCallStatsInstanceIndex": {
                            "type": "string",
                            "description": "csbCallStatsInstanceIndex",
                            "x-yang-type": "leafref"
                          },
                          "csbCallStatsServiceIndex": {
                            "type": "integer",
                            "description": "This object identifies the index of the name of the SBC\n            service configured. This object also acts as an index for the\n            table.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "csbCallStatsSbcName": {
                            "type": "string",
                            "description": "This object indicates the configured name of the SBC service.\n            The length of this object is zero when value is not assigned\n            to it.",
                            "x-yang-type": "snmp-framework:SnmpAdminString"
                          },
                          "csbCallStatsCallsHigh": {
                            "type": "integer",
                            "description": "This object indicates the maximum number of calls per second\n            processed by the Session Border Controller in past 24 hours.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "csbCallStatsRate1Sec": {
                            "type": "integer",
                            "description": "This object indicates the average calls per second processed by\n            the Session Border Controller.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "csbCallStatsCallsLow": {
                            "type": "integer",
                            "description": "This object indicates the minimum calls per second in past 24\n            hours.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "csbCallStatsAvailableFlows": {
                            "type": "integer",
                            "description": "This object indicates the number of media flows which are\n            available.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "csbCallStatsUsedFlows": {
                            "type": "integer",
                            "description": "This object indicates the number of media flows which are\n            used. This is for the flow allocated and connected. The flow\n            allocated but not connected is not counted.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "csbCallStatsPeakFlows": {
                            "type": "integer",
                            "description": "This object indicates the number of peak flows in SBC.\n            This is the highest recorded value for the active flows since\n            the box was booted/reseted.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "csbCallStatsTotalFlows": {
                            "type": "integer",
                            "description": "This object indicates the total number of media support by this\n            instance of SBC. The total number of flows include the\n            available\n            flows and the active flows. This value is since box was\n            booted/reseted. Total flows include the active flows and the\n            flows allocated but not connected.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "csbCallStatsUsedSigFlows": {
                            "type": "integer",
                            "description": "This object indicates the number of active signaling flows for\n            signaling pinholes.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "csbCallStatsPeakSigFlows": {
                            "type": "integer",
                            "description": "This object indicates the peak signaling flow in SBC.\n            This is the highest recorded value for the active signaling\n            flows. This object is calculated using csbCallStatsUsedFlows.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "csbCallStatsTotalSigFlows": {
                            "type": "integer",
                            "description": "This object indicates the maximum number of Signalling Flows\n            that can be supported by this instance of SBC.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "csbCallStatsAvailablePktRate": {
                            "type": "integer",
                            "description": "This object indicates the remaining capacity that can be\n            supported by SBC.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "csbCallStatsUnclassifiedPkts": {
                            "type": "integer",
                            "description": "This object indicates the number of unclassified packets\n            processed by SBC.",
                            "minimum": 0
                          },
                          "csbCallStatsRTPPktsSent": {
                            "type": "integer",
                            "description": "This object indicates the total number of RTP packets sent.",
                            "minimum": 0
                          },
                          "csbCallStatsRTPPktsRcvd": {
                            "type": "integer",
                            "description": "This object indicates the total number of RTP packets\n            received.",
                            "minimum": 0
                          },
                          "csbCallStatsRTPPktsDiscard": {
                            "type": "integer",
                            "description": "This object indicates the total number of RTP packets\n            discarded.",
                            "minimum": 0
                          },
                          "csbCallStatsRTPOctetsSent": {
                            "type": "integer",
                            "description": "This object indicates the number of RTP octets sent by the\n            SBC.",
                            "minimum": 0
                          },
                          "csbCallStatsRTPOctetsRcvd": {
                            "type": "integer",
                            "description": "This object indicates the number of RTP octets received by\n            the SBC.",
                            "minimum": 0
                          },
                          "csbCallStatsRTPOctetsDiscard": {
                            "type": "integer",
                            "description": "This object indicates the number of RTP octets discarded by\n            the SBC.",
                            "minimum": 0
                          },
                          "csbCallStatsNoMediaCount": {
                            "type": "integer",
                            "description": "This object indicates the accumulated No media event\n            count.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "csbCallStatsRouteErrors": {
                            "type": "integer",
                            "description": "This object indicates the accumulated route error event\n            count. This counter is for the route error of media stream.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "csbCallStatsAvailableTranscodeFlows": {
                            "type": "integer",
                            "description": "This object indicates the number of additional transcoded flows\n            that this media gateway manager (MGM) entity is currently able\n            to configure.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "csbCallStatsActiveTranscodeFlows": {
                            "type": "integer",
                            "description": "This object indicates the current number of transcoded\n            flows that are actively forwarding media traffic.  In this\n            context, a flow is a media stream passing through the device.\n            So a single voice call will be counted only once.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "csbCallStatsPeakTranscodeFlows": {
                            "type": "integer",
                            "description": "This object indicates the peak number of active transcoded\n            flows since the statistics were last reset.  In this context, a\n            flow is a media stream passing through the device, so a single\n            voice call will be counted once.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "csbCallStatsTotalTranscodeFlows": {
                            "type": "integer",
                            "description": "This object indicates the accumulated total number of\n            transcoded flows.  This count contains both active flows and\n            flows that were allocated but never connected.  In this context,\n            a flow is a media stream passing through the device, so a single\n            voice call will be counted once.",
                            "minimum": 0,
                            "maximum": 4294967295
                          }
                        }
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:csbCallStatsTable": {
                    "csbCallStatsEntry": [
                      {
                        "csbCallStatsInstanceIndex": "1",
                        "csbCallStatsServiceIndex": 1,
                        "csbCallStatsSbcName": "interface-1",
                        "csbCallStatsCallsHigh": 0,
                        "csbCallStatsRate1Sec": 0,
                        "csbCallStatsCallsLow": 0,
                        "csbCallStatsAvailableFlows": 0,
                        "csbCallStatsUsedFlows": 0,
                        "csbCallStatsPeakFlows": 0,
                        "csbCallStatsTotalFlows": 0,
                        "csbCallStatsUsedSigFlows": 0,
                        "csbCallStatsPeakSigFlows": 0,
                        "csbCallStatsTotalSigFlows": 0,
                        "csbCallStatsAvailablePktRate": 0,
                        "csbCallStatsUnclassifiedPkts": 0,
                        "csbCallStatsRTPPktsSent": 0,
                        "csbCallStatsRTPPktsRcvd": 0,
                        "csbCallStatsRTPPktsDiscard": 0,
                        "csbCallStatsRTPOctetsSent": 1234567890,
                        "csbCallStatsRTPOctetsRcvd": 1234567890,
                        "csbCallStatsRTPOctetsDiscard": 1234567890,
                        "csbCallStatsNoMediaCount": 0,
                        "csbCallStatsRouteErrors": 0,
                        "csbCallStatsAvailableTranscodeFlows": 0,
                        "csbCallStatsActiveTranscodeFlows": 0,
                        "csbCallStatsPeakTranscodeFlows": 0,
                        "csbCallStatsTotalTranscodeFlows": 0
                      },
                      {
                        "csbCallStatsInstanceIndex": "2",
                        "csbCallStatsServiceIndex": 2,
                        "csbCallStatsSbcName": "interface-1",
                        "csbCallStatsCallsHigh": 0,
                        "csbCallStatsRate1Sec": 0,
                        "csbCallStatsCallsLow": 0,
                        "csbCallStatsAvailableFlows": 0,
                        "csbCallStatsUsedFlows": 0,
                        "csbCallStatsPeakFlows": 0,
                        "csbCallStatsTotalFlows": 0,
                        "csbCallStatsUsedSigFlows": 0,
                        "csbCallStatsPeakSigFlows": 0,
                        "csbCallStatsTotalSigFlows": 0,
                        "csbCallStatsAvailablePktRate": 0,
                        "csbCallStatsUnclassifiedPkts": 0,
                        "csbCallStatsRTPPktsSent": 0,
                        "csbCallStatsRTPPktsRcvd": 0,
                        "csbCallStatsRTPPktsDiscard": 0,
                        "csbCallStatsRTPOctetsSent": 1234567890,
                        "csbCallStatsRTPOctetsRcvd": 1234567890,
                        "csbCallStatsRTPOctetsDiscard": 1234567890,
                        "csbCallStatsNoMediaCount": 0,
                        "csbCallStatsRouteErrors": 0,
                        "csbCallStatsAvailableTranscodeFlows": 0,
                        "csbCallStatsActiveTranscodeFlows": 0,
                        "csbCallStatsPeakTranscodeFlows": 0,
                        "csbCallStatsTotalTranscodeFlows": 0
                      },
                      {
                        "csbCallStatsInstanceIndex": "3",
                        "csbCallStatsServiceIndex": 3,
                        "csbCallStatsSbcName": "interface-1",
                        "csbCallStatsCallsHigh": 0,
                        "csbCallStatsRate1Sec": 0,
                        "csbCallStatsCallsLow": 0,
                        "csbCallStatsAvailableFlows": 0,
                        "csbCallStatsUsedFlows": 0,
                        "csbCallStatsPeakFlows": 0,
                        "csbCallStatsTotalFlows": 0,
                        "csbCallStatsUsedSigFlows": 0,
                        "csbCallStatsPeakSigFlows": 0,
                        "csbCallStatsTotalSigFlows": 0,
                        "csbCallStatsAvailablePktRate": 0,
                        "csbCallStatsUnclassifiedPkts": 0,
                        "csbCallStatsRTPPktsSent": 0,
                        "csbCallStatsRTPPktsRcvd": 0,
                        "csbCallStatsRTPPktsDiscard": 0,
                        "csbCallStatsRTPOctetsSent": 1234567890,
                        "csbCallStatsRTPOctetsRcvd": 1234567890,
                        "csbCallStatsRTPOctetsDiscard": 1234567890,
                        "csbCallStatsNoMediaCount": 0,
                        "csbCallStatsRouteErrors": 0,
                        "csbCallStatsAvailableTranscodeFlows": 0,
                        "csbCallStatsActiveTranscodeFlows": 0,
                        "csbCallStatsPeakTranscodeFlows": 0,
                        "csbCallStatsTotalTranscodeFlows": 0
                      }
                    ]
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-csbCallStatsTable",
        "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": "/csbCallStatsTable",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:csbCallStatsTable/csbCallStatsEntry": {
      "get": {
        "summary": "Get csbCallStatsEntry list",
        "description": "Retrieve list of csbCallStatsEntry entries from MIB",
        "tags": [
          "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "An conceptual row in the csbCallStatsGlobalStatsTable. There is\n          an entry in this table for the particular service configured on\n          SBC identified by a value of csbCallStatsInstanceIndex. The\n          other index of this table is csbCallStatsInstanceIndex which is\n          defined in csbCallStatsInstanceTable.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "csbCallStatsInstanceIndex": {
                        "type": "string",
                        "description": "csbCallStatsInstanceIndex",
                        "x-yang-type": "leafref"
                      },
                      "csbCallStatsServiceIndex": {
                        "type": "integer",
                        "description": "This object identifies the index of the name of the SBC\n            service configured. This object also acts as an index for the\n            table.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbCallStatsSbcName": {
                        "type": "string",
                        "description": "This object indicates the configured name of the SBC service.\n            The length of this object is zero when value is not assigned\n            to it.",
                        "x-yang-type": "snmp-framework:SnmpAdminString"
                      },
                      "csbCallStatsCallsHigh": {
                        "type": "integer",
                        "description": "This object indicates the maximum number of calls per second\n            processed by the Session Border Controller in past 24 hours.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbCallStatsRate1Sec": {
                        "type": "integer",
                        "description": "This object indicates the average calls per second processed by\n            the Session Border Controller.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbCallStatsCallsLow": {
                        "type": "integer",
                        "description": "This object indicates the minimum calls per second in past 24\n            hours.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbCallStatsAvailableFlows": {
                        "type": "integer",
                        "description": "This object indicates the number of media flows which are\n            available.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbCallStatsUsedFlows": {
                        "type": "integer",
                        "description": "This object indicates the number of media flows which are\n            used. This is for the flow allocated and connected. The flow\n            allocated but not connected is not counted.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbCallStatsPeakFlows": {
                        "type": "integer",
                        "description": "This object indicates the number of peak flows in SBC.\n            This is the highest recorded value for the active flows since\n            the box was booted/reseted.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbCallStatsTotalFlows": {
                        "type": "integer",
                        "description": "This object indicates the total number of media support by this\n            instance of SBC. The total number of flows include the\n            available\n            flows and the active flows. This value is since box was\n            booted/reseted. Total flows include the active flows and the\n            flows allocated but not connected.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbCallStatsUsedSigFlows": {
                        "type": "integer",
                        "description": "This object indicates the number of active signaling flows for\n            signaling pinholes.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbCallStatsPeakSigFlows": {
                        "type": "integer",
                        "description": "This object indicates the peak signaling flow in SBC.\n            This is the highest recorded value for the active signaling\n            flows. This object is calculated using csbCallStatsUsedFlows.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbCallStatsTotalSigFlows": {
                        "type": "integer",
                        "description": "This object indicates the maximum number of Signalling Flows\n            that can be supported by this instance of SBC.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbCallStatsAvailablePktRate": {
                        "type": "integer",
                        "description": "This object indicates the remaining capacity that can be\n            supported by SBC.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbCallStatsUnclassifiedPkts": {
                        "type": "integer",
                        "description": "This object indicates the number of unclassified packets\n            processed by SBC.",
                        "minimum": 0
                      },
                      "csbCallStatsRTPPktsSent": {
                        "type": "integer",
                        "description": "This object indicates the total number of RTP packets sent.",
                        "minimum": 0
                      },
                      "csbCallStatsRTPPktsRcvd": {
                        "type": "integer",
                        "description": "This object indicates the total number of RTP packets\n            received.",
                        "minimum": 0
                      },
                      "csbCallStatsRTPPktsDiscard": {
                        "type": "integer",
                        "description": "This object indicates the total number of RTP packets\n            discarded.",
                        "minimum": 0
                      },
                      "csbCallStatsRTPOctetsSent": {
                        "type": "integer",
                        "description": "This object indicates the number of RTP octets sent by the\n            SBC.",
                        "minimum": 0
                      },
                      "csbCallStatsRTPOctetsRcvd": {
                        "type": "integer",
                        "description": "This object indicates the number of RTP octets received by\n            the SBC.",
                        "minimum": 0
                      },
                      "csbCallStatsRTPOctetsDiscard": {
                        "type": "integer",
                        "description": "This object indicates the number of RTP octets discarded by\n            the SBC.",
                        "minimum": 0
                      },
                      "csbCallStatsNoMediaCount": {
                        "type": "integer",
                        "description": "This object indicates the accumulated No media event\n            count.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbCallStatsRouteErrors": {
                        "type": "integer",
                        "description": "This object indicates the accumulated route error event\n            count. This counter is for the route error of media stream.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbCallStatsAvailableTranscodeFlows": {
                        "type": "integer",
                        "description": "This object indicates the number of additional transcoded flows\n            that this media gateway manager (MGM) entity is currently able\n            to configure.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbCallStatsActiveTranscodeFlows": {
                        "type": "integer",
                        "description": "This object indicates the current number of transcoded\n            flows that are actively forwarding media traffic.  In this\n            context, a flow is a media stream passing through the device.\n            So a single voice call will be counted only once.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbCallStatsPeakTranscodeFlows": {
                        "type": "integer",
                        "description": "This object indicates the peak number of active transcoded\n            flows since the statistics were last reset.  In this context, a\n            flow is a media stream passing through the device, so a single\n            voice call will be counted once.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbCallStatsTotalTranscodeFlows": {
                        "type": "integer",
                        "description": "This object indicates the accumulated total number of\n            transcoded flows.  This count contains both active flows and\n            flows that were allocated but never connected.  In this context,\n            a flow is a media stream passing through the device, so a single\n            voice call will be counted once.",
                        "minimum": 0,
                        "maximum": 4294967295
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:csbCallStatsEntry": [
                    {
                      "csbCallStatsInstanceIndex": "example-string",
                      "csbCallStatsServiceIndex": 1,
                      "csbCallStatsSbcName": "interface-1",
                      "csbCallStatsCallsHigh": 0,
                      "csbCallStatsRate1Sec": 0,
                      "csbCallStatsCallsLow": 0,
                      "csbCallStatsAvailableFlows": 0,
                      "csbCallStatsUsedFlows": 0,
                      "csbCallStatsPeakFlows": 0,
                      "csbCallStatsTotalFlows": 0,
                      "csbCallStatsUsedSigFlows": 0,
                      "csbCallStatsPeakSigFlows": 0,
                      "csbCallStatsTotalSigFlows": 0,
                      "csbCallStatsAvailablePktRate": 0,
                      "csbCallStatsUnclassifiedPkts": 0,
                      "csbCallStatsRTPPktsSent": 0,
                      "csbCallStatsRTPPktsRcvd": 0,
                      "csbCallStatsRTPPktsDiscard": 0,
                      "csbCallStatsRTPOctetsSent": 1234567890,
                      "csbCallStatsRTPOctetsRcvd": 1234567890,
                      "csbCallStatsRTPOctetsDiscard": 1234567890,
                      "csbCallStatsNoMediaCount": 0,
                      "csbCallStatsRouteErrors": 0,
                      "csbCallStatsAvailableTranscodeFlows": 0,
                      "csbCallStatsActiveTranscodeFlows": 0,
                      "csbCallStatsPeakTranscodeFlows": 0,
                      "csbCallStatsTotalTranscodeFlows": 0
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-csbCallStatsEntry",
        "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": "/csbCallStatsTable/csbCallStatsEntry",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:csbCurrPeriodicStatsTable": {
      "get": {
        "summary": "Get csbCurrPeriodicStatsTable data",
        "description": "Retrieve csbCurrPeriodicStatsTable operational data from MIB",
        "tags": [
          "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "description": "csbCurrPeriodicStatsTable",
                  "properties": {
                    "csbCurrPeriodicStatsEntry": {
                      "type": "array",
                      "description": "An conceptual row in the csbCurrPeriodicStatsTable. There is\n          an entry in this table for the particular controller by a value\n          of csbH248StatsCtrlrIndex. The other indices of this table are\n          csbCallStatsInstanceIndex defined in csbCallStatsInstanceTable\n          and csbCallStatsServiceIndex defined in csbCallStatsTable.",
                      "items": {
                        "type": "object",
                        "properties": {
                          "csbCallStatsInstanceIndex": {
                            "type": "string",
                            "description": "csbCallStatsInstanceIndex",
                            "x-yang-type": "leafref"
                          },
                          "csbCallStatsServiceIndex": {
                            "type": "string",
                            "description": "csbCallStatsServiceIndex",
                            "x-yang-type": "leafref"
                          },
                          "csbCurrPeriodicStatsInterval": {
                            "type": "string",
                            "description": "This object identifies the interval for which the periodic\n            statistics information is to be displayed. The interval\n            values can be 5 min, 15 mins, 1 hour , 1 Day. This object acts\n            as index for the table.",
                            "x-yang-type": "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CiscoSbcPeriodicStatsInterval"
                          },
                          "csbCurrPeriodicStatsActiveCalls": {
                            "type": "integer",
                            "description": "This object indicates the number of calls that have become\n            active during this interval.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "csbCurrPeriodicStatsActivatingCalls": {
                            "type": "integer",
                            "description": "This object indicates the number of calls that have become\n            activing during this interval.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "csbCurrPeriodicStatsDeactivatingCalls": {
                            "type": "integer",
                            "description": "This object indicates the number of calls that have become\n            deactiving during this interval.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "csbCurrPeriodicStatsTotalCallAttempts": {
                            "type": "integer",
                            "description": "This object indicates the number of total call attempts during\n            this interval.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "csbCurrPeriodicStatsFailedCallAttempts": {
                            "type": "integer",
                            "description": "This object indicates the number of failed call attempts during\n            this interval.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "csbCurrPeriodicStatsCallRoutingFailure": {
                            "type": "integer",
                            "description": "This object indicates the number of call setup failures due\n            to routing failures during this interval.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "csbCurrPeriodicStatsCallResourceFailure": {
                            "type": "integer",
                            "description": "This object indicates the number of call setup failures due\n            to resource failures during this interval.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "csbCurrPeriodicStatsCallMediaFailure": {
                            "type": "integer",
                            "description": "This object indicates the number of call setup failures due\n            to media failure during this interval.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "csbCurrPeriodicStatsCallSigFailure": {
                            "type": "integer",
                            "description": "This object indicates the number of call setup failures due\n            to signaling failure during this interval.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "csbCurrPeriodicStatsActiveCallFailure": {
                            "type": "integer",
                            "description": "This object indicates the number of active call failures during\n            this interval.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "csbCurrPeriodicStatsCongestionFailure": {
                            "type": "integer",
                            "description": "This object indicates the number of call setup failures due\n            to congestion during this interval.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "csbCurrPeriodicStatsCallSetupPolicyFailure": {
                            "type": "integer",
                            "description": "This object indicates the number of call setup failures due\n            to policy failure during this interval.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "csbCurrPeriodicStatsCallSetupNAPolicyFailure": {
                            "type": "integer",
                            "description": "This object indicates the number of call setup failures due\n            to NA policy failure during this interval.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "csbCurrPeriodicStatsCallSetupRoutingPolicyFailure": {
                            "type": "integer",
                            "description": "This object indicates the number of call setup failures due\n            to routing policy failure during this interval.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "csbCurrPeriodicStatsCallSetupCACPolicyFailure": {
                            "type": "integer",
                            "description": "This object indicates the number of call setup failures due\n            to CAC policy failure during this interval.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "csbCurrPeriodicStatsCallSetupCACCallLimitFailure": {
                            "type": "integer",
                            "description": "This object indicates the number of call setup failures due\n            to CAC call limit during this interval.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "csbCurrPeriodicStatsCallSetupCACRateLimitFailure": {
                            "type": "integer",
                            "description": "This object indicates the number of call setup failures due\n            to CAC call rate limit during this interval.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "csbCurrPeriodicStatsCallSetupCACBandwidthFailure": {
                            "type": "integer",
                            "description": "This object indicates the number of call setup failures due\n            to CAC bandwidth limit during this interval.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "csbCurrPeriodicStatsCallSetupCACMediaLimitFailure": {
                            "type": "integer",
                            "description": "This object indicates the number of call setup failures due\n            to CAC media limit during this interval.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "csbCurrPeriodicStatsCallSetupCACMediaUpdateFailure": {
                            "type": "integer",
                            "description": "This object indicates the number of call update failure due\n            to policy failure during this interval.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "csbCurrPeriodicStatsTimestamp": {
                            "type": "string",
                            "description": "This object indicates the current time at the start of each\n            interval.",
                            "format": "binary"
                          },
                          "csbCurrPeriodicStatsTranscodedCalls": {
                            "type": "integer",
                            "description": "The object indicates the number of transcoded calls that are\n            active during this interval.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "csbCurrPeriodicStatsTransratedCalls": {
                            "type": "integer",
                            "description": "The object indicates the number of transrated calls that are\n            active during this interval.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "csbCurrPeriodicStatsTotalCallUpdateFailure": {
                            "type": "integer",
                            "description": "This object indicates the total number of call update failures\n            during this interval.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "csbCurrPeriodicStatsActiveIpv6Calls": {
                            "type": "integer",
                            "description": "This Object indicates the number of calls through SBC that use\n            IPv6 signaling.  This statistic totals all calls that traverse\n            an IPv6 adjacency on either or both sides of SBC during this\n            interval.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "csbCurrPeriodicStatsActiveEmergencyCalls": {
                            "type": "integer",
                            "description": "This object indicates the number of calls through SBC that have\n            been identified as emergency calls (by Number Analysis) during\n            this interval.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "csbCurrPeriodicStatsActiveE2EmergencyCalls": {
                            "type": "integer",
                            "description": "This object indicates the number of calls through SBC that have\n            been identified as emergency calls (by Number Analysis) and\n            have used the e2 interface to obtain location information for\n            the caller during this interval.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "csbCurrPeriodicStatsImsRxActiveCalls": {
                            "type": "integer",
                            "description": "This object indicates the total number of active calls which\n            use IMS Rx, during this interval.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "csbCurrPeriodicStatsImsRxCallSetupFaiures": {
                            "type": "integer",
                            "description": "This object indicates the total call Setup failures owing to\n            IMS Rx failure during this interval.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "csbCurrPeriodicStatsImsRxCallRenegotiationAttempts": {
                            "type": "integer",
                            "description": "This object indicates the total call renegotiation attempts\n            using IMS Rx during this interval.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "csbCurrPeriodicStatsImsRxCallRenegotiationFailures": {
                            "type": "integer",
                            "description": "This object indicates the total call renegotiation failures\n            owing to IMS Rx failure during this interval.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "csbCurrPeriodicStatsAudioTranscodedCalls": {
                            "type": "integer",
                            "description": "The number of active audio transcoded calls through\n            this adjacency or account during this interval.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "csbCurrPeriodicStatsFaxTranscodedCalls": {
                            "type": "integer",
                            "description": "This object indicates the the number of active fax\n            transcoded calls through this adjacency or account during this\n            interval.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "csbCurrPeriodicStatsRtpDisallowedFailures": {
                            "type": "integer",
                            "description": "This object indicates the total call setup failures due to RTP\n            being proposed when not permitted during this interval.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "csbCurrPeriodicStatsSrtpDisallowedFailures": {
                            "type": "integer",
                            "description": "This object indicates the total call setup failures due to SRTP\n            being proposed when not permitted during this interval.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "csbCurrPeriodicStatsNonSrtpCalls": {
                            "type": "integer",
                            "description": "This object indicates the number of active calls\n            through this adjacency or account which do not use SRTP on any\n            media channels during this interval.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "csbCurrPeriodicStatsSrtpNonIwCalls": {
                            "type": "integer",
                            "description": "This object indicates the number of active calls\n            through this adjacency or account that have one or more media\n            channels which use SRTP. This count does not include media \n            channels that provide interworking between RTP and SRTP during\n            this interval.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "csbCurrPeriodicStatsSrtpIwCalls": {
                            "type": "integer",
                            "description": "This object indicates the number of active calls\n            through this adjacency or account that have one or more media\n            channels that provide interworking between RTP and SRTP during\n            this interval.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "csbCurrPeriodicStatsDtmfIw2833Calls": {
                            "type": "integer",
                            "description": "This object indicates the number of active calls\n            through this adjacency or account for which DTMF interworking\n            is enabled between DTMF in signaling and DTMF in media via RFC\n            2833 during this interval.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "csbCurrPeriodicStatsDtmfIwInbandCalls": {
                            "type": "integer",
                            "description": "This object indicates the number of active calls\n            through this adjacency or account for which DTMF interworking\n            is enabled between DTMF in signaling and DTMF in media via \n            inband DTMF tones during this interval.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "csbCurrPeriodicStatsDtmfIw2833InbandCalls": {
                            "type": "integer",
                            "description": "This object indicates the number of active calls\n            through this adjacency or account for which DTMF interworking\n            is enabled between DTMF in media via RFC 2833 and DTMF in media\n            via inband DTMF tones during this interval.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "csbCurrPeriodicStatsTotalTapsRequested": {
                            "type": "integer",
                            "description": "This object indicates the lawful intercept tap attempts\n            requested within the scope of this query during this interval.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "csbCurrPeriodicStatsTotalTapsSucceeded": {
                            "type": "integer",
                            "description": "This object indicates the lawful intercept tap attempts that\n            have been successfully implemented within the scope of this\n            query during this interval.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "csbCurrPeriodicStatsCurrentTaps": {
                            "type": "integer",
                            "description": "This object indicates the Lawful intercept taps currently in\n            place on calls within the scope of this query during this\n            interval.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "csbCurrPeriodicIpsecCalls": {
                            "type": "integer",
                            "description": "The number of active calls on this adjacency or account which\n            are to or from registered subscribers using IPSEC during this\n            interval.",
                            "minimum": 0,
                            "maximum": 4294967295
                          }
                        }
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:csbCurrPeriodicStatsTable": {
                    "csbCurrPeriodicStatsEntry": [
                      {
                        "csbCallStatsInstanceIndex": "1",
                        "csbCallStatsServiceIndex": "1",
                        "csbCurrPeriodicStatsInterval": "example-string",
                        "csbCurrPeriodicStatsActiveCalls": 0,
                        "csbCurrPeriodicStatsActivatingCalls": 0,
                        "csbCurrPeriodicStatsDeactivatingCalls": 0,
                        "csbCurrPeriodicStatsTotalCallAttempts": 0,
                        "csbCurrPeriodicStatsFailedCallAttempts": 0,
                        "csbCurrPeriodicStatsCallRoutingFailure": 0,
                        "csbCurrPeriodicStatsCallResourceFailure": 0,
                        "csbCurrPeriodicStatsCallMediaFailure": 0,
                        "csbCurrPeriodicStatsCallSigFailure": 0,
                        "csbCurrPeriodicStatsActiveCallFailure": 0,
                        "csbCurrPeriodicStatsCongestionFailure": 0,
                        "csbCurrPeriodicStatsCallSetupPolicyFailure": 0,
                        "csbCurrPeriodicStatsCallSetupNAPolicyFailure": 0,
                        "csbCurrPeriodicStatsCallSetupRoutingPolicyFailure": 0,
                        "csbCurrPeriodicStatsCallSetupCACPolicyFailure": 0,
                        "csbCurrPeriodicStatsCallSetupCACCallLimitFailure": 0,
                        "csbCurrPeriodicStatsCallSetupCACRateLimitFailure": 0,
                        "csbCurrPeriodicStatsCallSetupCACBandwidthFailure": 0,
                        "csbCurrPeriodicStatsCallSetupCACMediaLimitFailure": 0,
                        "csbCurrPeriodicStatsCallSetupCACMediaUpdateFailure": 0,
                        "csbCurrPeriodicStatsTimestamp": "example-string",
                        "csbCurrPeriodicStatsTranscodedCalls": 0,
                        "csbCurrPeriodicStatsTransratedCalls": 0,
                        "csbCurrPeriodicStatsTotalCallUpdateFailure": 0,
                        "csbCurrPeriodicStatsActiveIpv6Calls": 0,
                        "csbCurrPeriodicStatsActiveEmergencyCalls": 0,
                        "csbCurrPeriodicStatsActiveE2EmergencyCalls": 0,
                        "csbCurrPeriodicStatsImsRxActiveCalls": 0,
                        "csbCurrPeriodicStatsImsRxCallSetupFaiures": 0,
                        "csbCurrPeriodicStatsImsRxCallRenegotiationAttempts": 0,
                        "csbCurrPeriodicStatsImsRxCallRenegotiationFailures": 0,
                        "csbCurrPeriodicStatsAudioTranscodedCalls": 0,
                        "csbCurrPeriodicStatsFaxTranscodedCalls": 0,
                        "csbCurrPeriodicStatsRtpDisallowedFailures": 0,
                        "csbCurrPeriodicStatsSrtpDisallowedFailures": 0,
                        "csbCurrPeriodicStatsNonSrtpCalls": 0,
                        "csbCurrPeriodicStatsSrtpNonIwCalls": 0,
                        "csbCurrPeriodicStatsSrtpIwCalls": 0,
                        "csbCurrPeriodicStatsDtmfIw2833Calls": 0,
                        "csbCurrPeriodicStatsDtmfIwInbandCalls": 0,
                        "csbCurrPeriodicStatsDtmfIw2833InbandCalls": 0,
                        "csbCurrPeriodicStatsTotalTapsRequested": 0,
                        "csbCurrPeriodicStatsTotalTapsSucceeded": 0,
                        "csbCurrPeriodicStatsCurrentTaps": 0,
                        "csbCurrPeriodicIpsecCalls": 0
                      },
                      {
                        "csbCallStatsInstanceIndex": "2",
                        "csbCallStatsServiceIndex": "2",
                        "csbCurrPeriodicStatsInterval": "example-string",
                        "csbCurrPeriodicStatsActiveCalls": 0,
                        "csbCurrPeriodicStatsActivatingCalls": 0,
                        "csbCurrPeriodicStatsDeactivatingCalls": 0,
                        "csbCurrPeriodicStatsTotalCallAttempts": 0,
                        "csbCurrPeriodicStatsFailedCallAttempts": 0,
                        "csbCurrPeriodicStatsCallRoutingFailure": 0,
                        "csbCurrPeriodicStatsCallResourceFailure": 0,
                        "csbCurrPeriodicStatsCallMediaFailure": 0,
                        "csbCurrPeriodicStatsCallSigFailure": 0,
                        "csbCurrPeriodicStatsActiveCallFailure": 0,
                        "csbCurrPeriodicStatsCongestionFailure": 0,
                        "csbCurrPeriodicStatsCallSetupPolicyFailure": 0,
                        "csbCurrPeriodicStatsCallSetupNAPolicyFailure": 0,
                        "csbCurrPeriodicStatsCallSetupRoutingPolicyFailure": 0,
                        "csbCurrPeriodicStatsCallSetupCACPolicyFailure": 0,
                        "csbCurrPeriodicStatsCallSetupCACCallLimitFailure": 0,
                        "csbCurrPeriodicStatsCallSetupCACRateLimitFailure": 0,
                        "csbCurrPeriodicStatsCallSetupCACBandwidthFailure": 0,
                        "csbCurrPeriodicStatsCallSetupCACMediaLimitFailure": 0,
                        "csbCurrPeriodicStatsCallSetupCACMediaUpdateFailure": 0,
                        "csbCurrPeriodicStatsTimestamp": "example-string",
                        "csbCurrPeriodicStatsTranscodedCalls": 0,
                        "csbCurrPeriodicStatsTransratedCalls": 0,
                        "csbCurrPeriodicStatsTotalCallUpdateFailure": 0,
                        "csbCurrPeriodicStatsActiveIpv6Calls": 0,
                        "csbCurrPeriodicStatsActiveEmergencyCalls": 0,
                        "csbCurrPeriodicStatsActiveE2EmergencyCalls": 0,
                        "csbCurrPeriodicStatsImsRxActiveCalls": 0,
                        "csbCurrPeriodicStatsImsRxCallSetupFaiures": 0,
                        "csbCurrPeriodicStatsImsRxCallRenegotiationAttempts": 0,
                        "csbCurrPeriodicStatsImsRxCallRenegotiationFailures": 0,
                        "csbCurrPeriodicStatsAudioTranscodedCalls": 0,
                        "csbCurrPeriodicStatsFaxTranscodedCalls": 0,
                        "csbCurrPeriodicStatsRtpDisallowedFailures": 0,
                        "csbCurrPeriodicStatsSrtpDisallowedFailures": 0,
                        "csbCurrPeriodicStatsNonSrtpCalls": 0,
                        "csbCurrPeriodicStatsSrtpNonIwCalls": 0,
                        "csbCurrPeriodicStatsSrtpIwCalls": 0,
                        "csbCurrPeriodicStatsDtmfIw2833Calls": 0,
                        "csbCurrPeriodicStatsDtmfIwInbandCalls": 0,
                        "csbCurrPeriodicStatsDtmfIw2833InbandCalls": 0,
                        "csbCurrPeriodicStatsTotalTapsRequested": 0,
                        "csbCurrPeriodicStatsTotalTapsSucceeded": 0,
                        "csbCurrPeriodicStatsCurrentTaps": 0,
                        "csbCurrPeriodicIpsecCalls": 0
                      },
                      {
                        "csbCallStatsInstanceIndex": "3",
                        "csbCallStatsServiceIndex": "3",
                        "csbCurrPeriodicStatsInterval": "example-string",
                        "csbCurrPeriodicStatsActiveCalls": 0,
                        "csbCurrPeriodicStatsActivatingCalls": 0,
                        "csbCurrPeriodicStatsDeactivatingCalls": 0,
                        "csbCurrPeriodicStatsTotalCallAttempts": 0,
                        "csbCurrPeriodicStatsFailedCallAttempts": 0,
                        "csbCurrPeriodicStatsCallRoutingFailure": 0,
                        "csbCurrPeriodicStatsCallResourceFailure": 0,
                        "csbCurrPeriodicStatsCallMediaFailure": 0,
                        "csbCurrPeriodicStatsCallSigFailure": 0,
                        "csbCurrPeriodicStatsActiveCallFailure": 0,
                        "csbCurrPeriodicStatsCongestionFailure": 0,
                        "csbCurrPeriodicStatsCallSetupPolicyFailure": 0,
                        "csbCurrPeriodicStatsCallSetupNAPolicyFailure": 0,
                        "csbCurrPeriodicStatsCallSetupRoutingPolicyFailure": 0,
                        "csbCurrPeriodicStatsCallSetupCACPolicyFailure": 0,
                        "csbCurrPeriodicStatsCallSetupCACCallLimitFailure": 0,
                        "csbCurrPeriodicStatsCallSetupCACRateLimitFailure": 0,
                        "csbCurrPeriodicStatsCallSetupCACBandwidthFailure": 0,
                        "csbCurrPeriodicStatsCallSetupCACMediaLimitFailure": 0,
                        "csbCurrPeriodicStatsCallSetupCACMediaUpdateFailure": 0,
                        "csbCurrPeriodicStatsTimestamp": "example-string",
                        "csbCurrPeriodicStatsTranscodedCalls": 0,
                        "csbCurrPeriodicStatsTransratedCalls": 0,
                        "csbCurrPeriodicStatsTotalCallUpdateFailure": 0,
                        "csbCurrPeriodicStatsActiveIpv6Calls": 0,
                        "csbCurrPeriodicStatsActiveEmergencyCalls": 0,
                        "csbCurrPeriodicStatsActiveE2EmergencyCalls": 0,
                        "csbCurrPeriodicStatsImsRxActiveCalls": 0,
                        "csbCurrPeriodicStatsImsRxCallSetupFaiures": 0,
                        "csbCurrPeriodicStatsImsRxCallRenegotiationAttempts": 0,
                        "csbCurrPeriodicStatsImsRxCallRenegotiationFailures": 0,
                        "csbCurrPeriodicStatsAudioTranscodedCalls": 0,
                        "csbCurrPeriodicStatsFaxTranscodedCalls": 0,
                        "csbCurrPeriodicStatsRtpDisallowedFailures": 0,
                        "csbCurrPeriodicStatsSrtpDisallowedFailures": 0,
                        "csbCurrPeriodicStatsNonSrtpCalls": 0,
                        "csbCurrPeriodicStatsSrtpNonIwCalls": 0,
                        "csbCurrPeriodicStatsSrtpIwCalls": 0,
                        "csbCurrPeriodicStatsDtmfIw2833Calls": 0,
                        "csbCurrPeriodicStatsDtmfIwInbandCalls": 0,
                        "csbCurrPeriodicStatsDtmfIw2833InbandCalls": 0,
                        "csbCurrPeriodicStatsTotalTapsRequested": 0,
                        "csbCurrPeriodicStatsTotalTapsSucceeded": 0,
                        "csbCurrPeriodicStatsCurrentTaps": 0,
                        "csbCurrPeriodicIpsecCalls": 0
                      }
                    ]
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-csbCurrPeriodicStatsTable",
        "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": "/csbCurrPeriodicStatsTable",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:csbCurrPeriodicStatsTable/csbCurrPeriodicStatsEntry": {
      "get": {
        "summary": "Get csbCurrPeriodicStatsEntry list",
        "description": "Retrieve list of csbCurrPeriodicStatsEntry entries from MIB",
        "tags": [
          "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "An conceptual row in the csbCurrPeriodicStatsTable. There is\n          an entry in this table for the particular controller by a value\n          of csbH248StatsCtrlrIndex. The other indices of this table are\n          csbCallStatsInstanceIndex defined in csbCallStatsInstanceTable\n          and csbCallStatsServiceIndex defined in csbCallStatsTable.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "csbCallStatsInstanceIndex": {
                        "type": "string",
                        "description": "csbCallStatsInstanceIndex",
                        "x-yang-type": "leafref"
                      },
                      "csbCallStatsServiceIndex": {
                        "type": "string",
                        "description": "csbCallStatsServiceIndex",
                        "x-yang-type": "leafref"
                      },
                      "csbCurrPeriodicStatsInterval": {
                        "type": "string",
                        "description": "This object identifies the interval for which the periodic\n            statistics information is to be displayed. The interval\n            values can be 5 min, 15 mins, 1 hour , 1 Day. This object acts\n            as index for the table.",
                        "x-yang-type": "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CiscoSbcPeriodicStatsInterval"
                      },
                      "csbCurrPeriodicStatsActiveCalls": {
                        "type": "integer",
                        "description": "This object indicates the number of calls that have become\n            active during this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbCurrPeriodicStatsActivatingCalls": {
                        "type": "integer",
                        "description": "This object indicates the number of calls that have become\n            activing during this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbCurrPeriodicStatsDeactivatingCalls": {
                        "type": "integer",
                        "description": "This object indicates the number of calls that have become\n            deactiving during this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbCurrPeriodicStatsTotalCallAttempts": {
                        "type": "integer",
                        "description": "This object indicates the number of total call attempts during\n            this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbCurrPeriodicStatsFailedCallAttempts": {
                        "type": "integer",
                        "description": "This object indicates the number of failed call attempts during\n            this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbCurrPeriodicStatsCallRoutingFailure": {
                        "type": "integer",
                        "description": "This object indicates the number of call setup failures due\n            to routing failures during this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbCurrPeriodicStatsCallResourceFailure": {
                        "type": "integer",
                        "description": "This object indicates the number of call setup failures due\n            to resource failures during this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbCurrPeriodicStatsCallMediaFailure": {
                        "type": "integer",
                        "description": "This object indicates the number of call setup failures due\n            to media failure during this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbCurrPeriodicStatsCallSigFailure": {
                        "type": "integer",
                        "description": "This object indicates the number of call setup failures due\n            to signaling failure during this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbCurrPeriodicStatsActiveCallFailure": {
                        "type": "integer",
                        "description": "This object indicates the number of active call failures during\n            this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbCurrPeriodicStatsCongestionFailure": {
                        "type": "integer",
                        "description": "This object indicates the number of call setup failures due\n            to congestion during this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbCurrPeriodicStatsCallSetupPolicyFailure": {
                        "type": "integer",
                        "description": "This object indicates the number of call setup failures due\n            to policy failure during this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbCurrPeriodicStatsCallSetupNAPolicyFailure": {
                        "type": "integer",
                        "description": "This object indicates the number of call setup failures due\n            to NA policy failure during this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbCurrPeriodicStatsCallSetupRoutingPolicyFailure": {
                        "type": "integer",
                        "description": "This object indicates the number of call setup failures due\n            to routing policy failure during this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbCurrPeriodicStatsCallSetupCACPolicyFailure": {
                        "type": "integer",
                        "description": "This object indicates the number of call setup failures due\n            to CAC policy failure during this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbCurrPeriodicStatsCallSetupCACCallLimitFailure": {
                        "type": "integer",
                        "description": "This object indicates the number of call setup failures due\n            to CAC call limit during this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbCurrPeriodicStatsCallSetupCACRateLimitFailure": {
                        "type": "integer",
                        "description": "This object indicates the number of call setup failures due\n            to CAC call rate limit during this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbCurrPeriodicStatsCallSetupCACBandwidthFailure": {
                        "type": "integer",
                        "description": "This object indicates the number of call setup failures due\n            to CAC bandwidth limit during this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbCurrPeriodicStatsCallSetupCACMediaLimitFailure": {
                        "type": "integer",
                        "description": "This object indicates the number of call setup failures due\n            to CAC media limit during this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbCurrPeriodicStatsCallSetupCACMediaUpdateFailure": {
                        "type": "integer",
                        "description": "This object indicates the number of call update failure due\n            to policy failure during this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbCurrPeriodicStatsTimestamp": {
                        "type": "string",
                        "description": "This object indicates the current time at the start of each\n            interval.",
                        "format": "binary"
                      },
                      "csbCurrPeriodicStatsTranscodedCalls": {
                        "type": "integer",
                        "description": "The object indicates the number of transcoded calls that are\n            active during this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbCurrPeriodicStatsTransratedCalls": {
                        "type": "integer",
                        "description": "The object indicates the number of transrated calls that are\n            active during this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbCurrPeriodicStatsTotalCallUpdateFailure": {
                        "type": "integer",
                        "description": "This object indicates the total number of call update failures\n            during this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbCurrPeriodicStatsActiveIpv6Calls": {
                        "type": "integer",
                        "description": "This Object indicates the number of calls through SBC that use\n            IPv6 signaling.  This statistic totals all calls that traverse\n            an IPv6 adjacency on either or both sides of SBC during this\n            interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbCurrPeriodicStatsActiveEmergencyCalls": {
                        "type": "integer",
                        "description": "This object indicates the number of calls through SBC that have\n            been identified as emergency calls (by Number Analysis) during\n            this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbCurrPeriodicStatsActiveE2EmergencyCalls": {
                        "type": "integer",
                        "description": "This object indicates the number of calls through SBC that have\n            been identified as emergency calls (by Number Analysis) and\n            have used the e2 interface to obtain location information for\n            the caller during this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbCurrPeriodicStatsImsRxActiveCalls": {
                        "type": "integer",
                        "description": "This object indicates the total number of active calls which\n            use IMS Rx, during this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbCurrPeriodicStatsImsRxCallSetupFaiures": {
                        "type": "integer",
                        "description": "This object indicates the total call Setup failures owing to\n            IMS Rx failure during this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbCurrPeriodicStatsImsRxCallRenegotiationAttempts": {
                        "type": "integer",
                        "description": "This object indicates the total call renegotiation attempts\n            using IMS Rx during this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbCurrPeriodicStatsImsRxCallRenegotiationFailures": {
                        "type": "integer",
                        "description": "This object indicates the total call renegotiation failures\n            owing to IMS Rx failure during this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbCurrPeriodicStatsAudioTranscodedCalls": {
                        "type": "integer",
                        "description": "The number of active audio transcoded calls through\n            this adjacency or account during this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbCurrPeriodicStatsFaxTranscodedCalls": {
                        "type": "integer",
                        "description": "This object indicates the the number of active fax\n            transcoded calls through this adjacency or account during this\n            interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbCurrPeriodicStatsRtpDisallowedFailures": {
                        "type": "integer",
                        "description": "This object indicates the total call setup failures due to RTP\n            being proposed when not permitted during this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbCurrPeriodicStatsSrtpDisallowedFailures": {
                        "type": "integer",
                        "description": "This object indicates the total call setup failures due to SRTP\n            being proposed when not permitted during this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbCurrPeriodicStatsNonSrtpCalls": {
                        "type": "integer",
                        "description": "This object indicates the number of active calls\n            through this adjacency or account which do not use SRTP on any\n            media channels during this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbCurrPeriodicStatsSrtpNonIwCalls": {
                        "type": "integer",
                        "description": "This object indicates the number of active calls\n            through this adjacency or account that have one or more media\n            channels which use SRTP. This count does not include media \n            channels that provide interworking between RTP and SRTP during\n            this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbCurrPeriodicStatsSrtpIwCalls": {
                        "type": "integer",
                        "description": "This object indicates the number of active calls\n            through this adjacency or account that have one or more media\n            channels that provide interworking between RTP and SRTP during\n            this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbCurrPeriodicStatsDtmfIw2833Calls": {
                        "type": "integer",
                        "description": "This object indicates the number of active calls\n            through this adjacency or account for which DTMF interworking\n            is enabled between DTMF in signaling and DTMF in media via RFC\n            2833 during this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbCurrPeriodicStatsDtmfIwInbandCalls": {
                        "type": "integer",
                        "description": "This object indicates the number of active calls\n            through this adjacency or account for which DTMF interworking\n            is enabled between DTMF in signaling and DTMF in media via \n            inband DTMF tones during this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbCurrPeriodicStatsDtmfIw2833InbandCalls": {
                        "type": "integer",
                        "description": "This object indicates the number of active calls\n            through this adjacency or account for which DTMF interworking\n            is enabled between DTMF in media via RFC 2833 and DTMF in media\n            via inband DTMF tones during this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbCurrPeriodicStatsTotalTapsRequested": {
                        "type": "integer",
                        "description": "This object indicates the lawful intercept tap attempts\n            requested within the scope of this query during this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbCurrPeriodicStatsTotalTapsSucceeded": {
                        "type": "integer",
                        "description": "This object indicates the lawful intercept tap attempts that\n            have been successfully implemented within the scope of this\n            query during this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbCurrPeriodicStatsCurrentTaps": {
                        "type": "integer",
                        "description": "This object indicates the Lawful intercept taps currently in\n            place on calls within the scope of this query during this\n            interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbCurrPeriodicIpsecCalls": {
                        "type": "integer",
                        "description": "The number of active calls on this adjacency or account which\n            are to or from registered subscribers using IPSEC during this\n            interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:csbCurrPeriodicStatsEntry": [
                    {
                      "csbCallStatsInstanceIndex": "example-string",
                      "csbCallStatsServiceIndex": "example-string",
                      "csbCurrPeriodicStatsInterval": "example-string",
                      "csbCurrPeriodicStatsActiveCalls": 0,
                      "csbCurrPeriodicStatsActivatingCalls": 0,
                      "csbCurrPeriodicStatsDeactivatingCalls": 0,
                      "csbCurrPeriodicStatsTotalCallAttempts": 0,
                      "csbCurrPeriodicStatsFailedCallAttempts": 0,
                      "csbCurrPeriodicStatsCallRoutingFailure": 0,
                      "csbCurrPeriodicStatsCallResourceFailure": 0,
                      "csbCurrPeriodicStatsCallMediaFailure": 0,
                      "csbCurrPeriodicStatsCallSigFailure": 0,
                      "csbCurrPeriodicStatsActiveCallFailure": 0,
                      "csbCurrPeriodicStatsCongestionFailure": 0,
                      "csbCurrPeriodicStatsCallSetupPolicyFailure": 0,
                      "csbCurrPeriodicStatsCallSetupNAPolicyFailure": 0,
                      "csbCurrPeriodicStatsCallSetupRoutingPolicyFailure": 0,
                      "csbCurrPeriodicStatsCallSetupCACPolicyFailure": 0,
                      "csbCurrPeriodicStatsCallSetupCACCallLimitFailure": 0,
                      "csbCurrPeriodicStatsCallSetupCACRateLimitFailure": 0,
                      "csbCurrPeriodicStatsCallSetupCACBandwidthFailure": 0,
                      "csbCurrPeriodicStatsCallSetupCACMediaLimitFailure": 0,
                      "csbCurrPeriodicStatsCallSetupCACMediaUpdateFailure": 0,
                      "csbCurrPeriodicStatsTimestamp": "example-string",
                      "csbCurrPeriodicStatsTranscodedCalls": 0,
                      "csbCurrPeriodicStatsTransratedCalls": 0,
                      "csbCurrPeriodicStatsTotalCallUpdateFailure": 0,
                      "csbCurrPeriodicStatsActiveIpv6Calls": 0,
                      "csbCurrPeriodicStatsActiveEmergencyCalls": 0,
                      "csbCurrPeriodicStatsActiveE2EmergencyCalls": 0,
                      "csbCurrPeriodicStatsImsRxActiveCalls": 0,
                      "csbCurrPeriodicStatsImsRxCallSetupFaiures": 0,
                      "csbCurrPeriodicStatsImsRxCallRenegotiationAttempts": 0,
                      "csbCurrPeriodicStatsImsRxCallRenegotiationFailures": 0,
                      "csbCurrPeriodicStatsAudioTranscodedCalls": 0,
                      "csbCurrPeriodicStatsFaxTranscodedCalls": 0,
                      "csbCurrPeriodicStatsRtpDisallowedFailures": 0,
                      "csbCurrPeriodicStatsSrtpDisallowedFailures": 0,
                      "csbCurrPeriodicStatsNonSrtpCalls": 0,
                      "csbCurrPeriodicStatsSrtpNonIwCalls": 0,
                      "csbCurrPeriodicStatsSrtpIwCalls": 0,
                      "csbCurrPeriodicStatsDtmfIw2833Calls": 0,
                      "csbCurrPeriodicStatsDtmfIwInbandCalls": 0,
                      "csbCurrPeriodicStatsDtmfIw2833InbandCalls": 0,
                      "csbCurrPeriodicStatsTotalTapsRequested": 0,
                      "csbCurrPeriodicStatsTotalTapsSucceeded": 0,
                      "csbCurrPeriodicStatsCurrentTaps": 0,
                      "csbCurrPeriodicIpsecCalls": 0
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-csbCurrPeriodicStatsEntry",
        "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": "/csbCurrPeriodicStatsTable/csbCurrPeriodicStatsEntry",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:csbHistoryStatsTable": {
      "get": {
        "summary": "Get csbHistoryStatsTable data",
        "description": "Retrieve csbHistoryStatsTable operational data from MIB",
        "tags": [
          "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "description": "csbHistoryStatsTable",
                  "properties": {
                    "csbHistoryStatsEntry": {
                      "type": "array",
                      "description": "A conceptual row in the csbHistoryStatsTable. The entries in\n          this table are updated as interval completes in the\n          csbCurrPeriodicStatsTable table and the data is moved from that\n          table to this one.",
                      "items": {
                        "type": "object",
                        "properties": {
                          "csbCallStatsInstanceIndex": {
                            "type": "string",
                            "description": "csbCallStatsInstanceIndex",
                            "x-yang-type": "leafref"
                          },
                          "csbCallStatsServiceIndex": {
                            "type": "string",
                            "description": "csbCallStatsServiceIndex",
                            "x-yang-type": "leafref"
                          },
                          "csbHistoryStatsInterval": {
                            "type": "string",
                            "description": "This object identifies the interval for which the history\n            statistics information is to be displayed. The interval\n            values can be 5 min, 15 mins, 1 hour , 1 day. This object acts\n            as index for the table.",
                            "x-yang-type": "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CiscoSbcPeriodicStatsInterval"
                          },
                          "csbHistoryStatsElements": {
                            "type": "integer",
                            "description": "The platform assigns a number starting with one and\n            increments it each for each new row. When the maximum         \n            number of row is reached the oldest rows are deleted. It is up\n            to the platform to determine the number of entries for each\n            interval. It is recommended that each platform support at least\n            one entry for 5 min, 15 mins, 1 hour and 1 day intervals.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "csbHistoryStatsActiveCalls": {
                            "type": "integer",
                            "description": "This object indicates the number of active calls history during\n            this interval.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "csbHistoryStatsTotalCallAttempts": {
                            "type": "integer",
                            "description": "This object indicates the number of total call attempts history\n            during this interval.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "csbHistoryStatsFailedCallAttempts": {
                            "type": "integer",
                            "description": "This object indicates the number of failed call attempts during\n            this interval.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "csbHistoryStatsCallRoutingFailure": {
                            "type": "integer",
                            "description": "This object indicates the number of call setup failures due\n            to routing failures during this interval.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "csbHistoryStatsCallResourceFailure": {
                            "type": "integer",
                            "description": "This object indicates the number of call setup failures due\n            to resource failures during this interval.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "csbHistoryStatsCallMediaFailure": {
                            "type": "integer",
                            "description": "This object indicates the number of call setup failures due\n            to media failure during this interval.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "csbHistoryStatsFailSigFailure": {
                            "type": "integer",
                            "description": "This object indicates the number of call setup failures due\n            to signaling failure during this interval.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "csbHistoryStatsActiveCallFailure": {
                            "type": "integer",
                            "description": "This object indicates the number of active call failures during\n            this interval.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "csbHistoryStatsCongestionFailure": {
                            "type": "integer",
                            "description": "This object indicates the number of call setup failures due\n            to congestion during this interval.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "csbHistoryStatsCallSetupPolicyFailure": {
                            "type": "integer",
                            "description": "This object indicates the number of call setup failures due\n            to some policy violations during this interval.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "csbHistoryStatsCallSetupNAPolicyFailure": {
                            "type": "integer",
                            "description": "This object indicates the number of call setup failures due\n            to NA policy failure during this interval.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "csbHistoryStatsCallSetupRoutingPolicyFailure": {
                            "type": "integer",
                            "description": "This object indicates the number of call setup failures due\n            to routing policy failure during this interval.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "csbHistoryStatsCallSetupCACPolicyFailure": {
                            "type": "integer",
                            "description": "This object indicates the number of call setup failures due\n            to CAC policy failure during this interval.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "csbHistoryStatsCallSetupCACCallLimitFailure": {
                            "type": "integer",
                            "description": "This object indicates the number of call setup failures due\n            to CAC call limit during this interval.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "csbHistoryStatsCallSetupCACRateLimitFailure": {
                            "type": "integer",
                            "description": "This object indicates the number of call setup failures due\n            to CAC call rate limit during this interval.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "csbHistoryStatsCallSetupCACBandwidthFailure": {
                            "type": "integer",
                            "description": "This object indicates the number of call setup failures due\n            to CAC bandwidth limit during this interval.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "csbHistoryStatsCallSetupCACMediaLimitFailure": {
                            "type": "integer",
                            "description": "This object indicates the number of call setup failures due\n            to CAC media limit during this interval.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "csbHistoryStatsCallSetupCACMediaUpdateFailure": {
                            "type": "integer",
                            "description": "This object indicates the number of call update failure due\n            to policy failure during this interval.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "csbHistoryStatsTimestamp": {
                            "type": "string",
                            "description": "This object indicates the time at the start of the interval\n            when measurements were first collected for this interval in the\n            csbCurrPeriodicStatsTable.",
                            "format": "binary"
                          },
                          "csbHistroyStatsTranscodedCalls": {
                            "type": "integer",
                            "description": "The object indicates the number of active transcoded\n            calls during this interval.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "csbHistroyStatsTransratedCalls": {
                            "type": "integer",
                            "description": "The object indicates the number of active transrated\n            calls during this interval.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "csbHistoryStatsTotalCallUpdateFailure": {
                            "type": "integer",
                            "description": "This object indicates the total call update failures during\n            this interval.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "csbHistoryStatsActiveIpv6Calls": {
                            "type": "integer",
                            "description": "This Object indicates the number of calls through SBC that use\n            IPv6 signaling.  This statistic totals all calls that traverse\n            an IPv6 adjacency on either or both sides of SBC during this\n            interval.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "csbHistoryStatsActiveEmergencyCalls": {
                            "type": "integer",
                            "description": "This object indicates the number of calls through SBC that have\n            been identified as emergency calls (by Number Analysis)  during\n            this interval.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "csbHistoryStatsActiveE2EmergencyCalls": {
                            "type": "integer",
                            "description": "This object indicates the number of calls through SBC that have\n            been identified as emergency calls (by Number Analysis) and\n            have used the e2 interface to obtain location information for\n            the\n            caller.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "csbHistoryStatsImsRxActiveCalls": {
                            "type": "integer",
                            "description": "This object indicates the total number of active calls which\n            use IMS Rx, during this interval.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "csbHistoryStatsImsRxCallSetupFailures": {
                            "type": "integer",
                            "description": "This object indicates the total call setup failures owing to\n            IMS Rx failure during this interval.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "csbHistoryStatsImsRxCallRenegotiationAttempts": {
                            "type": "integer",
                            "description": "This object indicates the total call renegotiation attempts\n            using IMS Rx during this interval.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "csbHistoryStatsImsRxCallRenegotiationFailures": {
                            "type": "integer",
                            "description": "This object indicates the total call renegotiation failures\n            owing to IMS Rx failure during this interval.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "csbHistoryStatsAudioTranscodedCalls": {
                            "type": "integer",
                            "description": "The number of active audio transcoded calls through\n            this adjacency or account during this interval.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "csbHistoryStatsFaxTranscodedCalls": {
                            "type": "integer",
                            "description": "This object indicates the the number of active fax\n            transcoded calls through this adjacency or account during this\n            interval.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "csbHistoryStatsRtpDisallowedFailures": {
                            "type": "integer",
                            "description": "This object indicates the total call setup failures due to RTP\n            being proposed when not permitted during this interval.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "csbHistoryStatsSrtpDisallowedFailures": {
                            "type": "integer",
                            "description": "This object indicates the total call setup failures due to SRTP\n            being proposed when not permitted during this interval.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "csbHistoryStatsNonSrtpCalls": {
                            "type": "integer",
                            "description": "This object indicates the number of active calls\n            through this adjacency or account which do not use SRTP on any\n            media channels during this interval.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "csbHistoryStatsSrtpNonIwCalls": {
                            "type": "integer",
                            "description": "This object indicates the number of active calls\n            through this adjacency or account that have one or more media\n            channels that use SRTP but no media channels that provide\n            interworking between RTP and SRTP during this interval.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "csbHistoryStatsSrtpIwCalls": {
                            "type": "integer",
                            "description": "This object indicates the number of active calls\n            through this adjacency or account that have one or more media\n            channels that provide interworking between RTP and SRTP during\n            this interval.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "csbHistoryStatsDtmfIw2833Calls": {
                            "type": "integer",
                            "description": "This object indicates the number of active calls\n            through this adjacency or account for which DTMF interworking\n            is enabled between DTMF in signaling and DTMF in media via RFC\n            2833 during this interval.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "csbHistoryStatsDtmfIwInbandCalls": {
                            "type": "integer",
                            "description": "This object indicates the number of active calls\n            through this adjacency or account for which DTMF interworking\n            is enabled between DTMF in signaling and DTMF in media via\n            inband DTMF tones during this interval.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "csbHistoryStatsDtmfIw2833InbandCalls": {
                            "type": "integer",
                            "description": "This object indicates the number of active calls\n            through this adjacency or account for which DTMF interworking\n            is enabled between DTMF in media via RFC 2833 and DTMF in media\n            via inband DTMF tones during this interval.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "csbHistoryStatsTotalTapsRequested": {
                            "type": "integer",
                            "description": "This object indicates the lawful intercept tap attempts\n            requested within the scope of this query during this interval.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "csbHistoryStatsTotalTapsSucceeded": {
                            "type": "integer",
                            "description": "This object indicates the lawful intercept tap attempts that\n            have been successfully implemented within the scope of this\n            query during this interval.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "csbHistoryStatsCurrentTaps": {
                            "type": "integer",
                            "description": "This object indicates the Lawful intercept taps currently in\n            place on calls within the scope of this query during this\n            interval.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "csbHistoryStatsIpsecCalls": {
                            "type": "integer",
                            "description": "The number of active calls on this adjacency or account which\n            are to or from registered subscribers using IPSEC during this\n            interval.",
                            "minimum": 0,
                            "maximum": 4294967295
                          }
                        }
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:csbHistoryStatsTable": {
                    "csbHistoryStatsEntry": [
                      {
                        "csbCallStatsInstanceIndex": "1",
                        "csbCallStatsServiceIndex": "1",
                        "csbHistoryStatsInterval": "example-string",
                        "csbHistoryStatsElements": 0,
                        "csbHistoryStatsActiveCalls": 0,
                        "csbHistoryStatsTotalCallAttempts": 0,
                        "csbHistoryStatsFailedCallAttempts": 0,
                        "csbHistoryStatsCallRoutingFailure": 0,
                        "csbHistoryStatsCallResourceFailure": 0,
                        "csbHistoryStatsCallMediaFailure": 0,
                        "csbHistoryStatsFailSigFailure": 0,
                        "csbHistoryStatsActiveCallFailure": 0,
                        "csbHistoryStatsCongestionFailure": 0,
                        "csbHistoryStatsCallSetupPolicyFailure": 0,
                        "csbHistoryStatsCallSetupNAPolicyFailure": 0,
                        "csbHistoryStatsCallSetupRoutingPolicyFailure": 0,
                        "csbHistoryStatsCallSetupCACPolicyFailure": 0,
                        "csbHistoryStatsCallSetupCACCallLimitFailure": 0,
                        "csbHistoryStatsCallSetupCACRateLimitFailure": 0,
                        "csbHistoryStatsCallSetupCACBandwidthFailure": 0,
                        "csbHistoryStatsCallSetupCACMediaLimitFailure": 0,
                        "csbHistoryStatsCallSetupCACMediaUpdateFailure": 0,
                        "csbHistoryStatsTimestamp": "example-string",
                        "csbHistroyStatsTranscodedCalls": 0,
                        "csbHistroyStatsTransratedCalls": 0,
                        "csbHistoryStatsTotalCallUpdateFailure": 0,
                        "csbHistoryStatsActiveIpv6Calls": 0,
                        "csbHistoryStatsActiveEmergencyCalls": 0,
                        "csbHistoryStatsActiveE2EmergencyCalls": 0,
                        "csbHistoryStatsImsRxActiveCalls": 0,
                        "csbHistoryStatsImsRxCallSetupFailures": 0,
                        "csbHistoryStatsImsRxCallRenegotiationAttempts": 0,
                        "csbHistoryStatsImsRxCallRenegotiationFailures": 0,
                        "csbHistoryStatsAudioTranscodedCalls": 0,
                        "csbHistoryStatsFaxTranscodedCalls": 0,
                        "csbHistoryStatsRtpDisallowedFailures": 0,
                        "csbHistoryStatsSrtpDisallowedFailures": 0,
                        "csbHistoryStatsNonSrtpCalls": 0,
                        "csbHistoryStatsSrtpNonIwCalls": 0,
                        "csbHistoryStatsSrtpIwCalls": 0,
                        "csbHistoryStatsDtmfIw2833Calls": 0,
                        "csbHistoryStatsDtmfIwInbandCalls": 0,
                        "csbHistoryStatsDtmfIw2833InbandCalls": 0,
                        "csbHistoryStatsTotalTapsRequested": 0,
                        "csbHistoryStatsTotalTapsSucceeded": 0,
                        "csbHistoryStatsCurrentTaps": 0,
                        "csbHistoryStatsIpsecCalls": 0
                      },
                      {
                        "csbCallStatsInstanceIndex": "2",
                        "csbCallStatsServiceIndex": "2",
                        "csbHistoryStatsInterval": "example-string",
                        "csbHistoryStatsElements": 0,
                        "csbHistoryStatsActiveCalls": 0,
                        "csbHistoryStatsTotalCallAttempts": 0,
                        "csbHistoryStatsFailedCallAttempts": 0,
                        "csbHistoryStatsCallRoutingFailure": 0,
                        "csbHistoryStatsCallResourceFailure": 0,
                        "csbHistoryStatsCallMediaFailure": 0,
                        "csbHistoryStatsFailSigFailure": 0,
                        "csbHistoryStatsActiveCallFailure": 0,
                        "csbHistoryStatsCongestionFailure": 0,
                        "csbHistoryStatsCallSetupPolicyFailure": 0,
                        "csbHistoryStatsCallSetupNAPolicyFailure": 0,
                        "csbHistoryStatsCallSetupRoutingPolicyFailure": 0,
                        "csbHistoryStatsCallSetupCACPolicyFailure": 0,
                        "csbHistoryStatsCallSetupCACCallLimitFailure": 0,
                        "csbHistoryStatsCallSetupCACRateLimitFailure": 0,
                        "csbHistoryStatsCallSetupCACBandwidthFailure": 0,
                        "csbHistoryStatsCallSetupCACMediaLimitFailure": 0,
                        "csbHistoryStatsCallSetupCACMediaUpdateFailure": 0,
                        "csbHistoryStatsTimestamp": "example-string",
                        "csbHistroyStatsTranscodedCalls": 0,
                        "csbHistroyStatsTransratedCalls": 0,
                        "csbHistoryStatsTotalCallUpdateFailure": 0,
                        "csbHistoryStatsActiveIpv6Calls": 0,
                        "csbHistoryStatsActiveEmergencyCalls": 0,
                        "csbHistoryStatsActiveE2EmergencyCalls": 0,
                        "csbHistoryStatsImsRxActiveCalls": 0,
                        "csbHistoryStatsImsRxCallSetupFailures": 0,
                        "csbHistoryStatsImsRxCallRenegotiationAttempts": 0,
                        "csbHistoryStatsImsRxCallRenegotiationFailures": 0,
                        "csbHistoryStatsAudioTranscodedCalls": 0,
                        "csbHistoryStatsFaxTranscodedCalls": 0,
                        "csbHistoryStatsRtpDisallowedFailures": 0,
                        "csbHistoryStatsSrtpDisallowedFailures": 0,
                        "csbHistoryStatsNonSrtpCalls": 0,
                        "csbHistoryStatsSrtpNonIwCalls": 0,
                        "csbHistoryStatsSrtpIwCalls": 0,
                        "csbHistoryStatsDtmfIw2833Calls": 0,
                        "csbHistoryStatsDtmfIwInbandCalls": 0,
                        "csbHistoryStatsDtmfIw2833InbandCalls": 0,
                        "csbHistoryStatsTotalTapsRequested": 0,
                        "csbHistoryStatsTotalTapsSucceeded": 0,
                        "csbHistoryStatsCurrentTaps": 0,
                        "csbHistoryStatsIpsecCalls": 0
                      },
                      {
                        "csbCallStatsInstanceIndex": "3",
                        "csbCallStatsServiceIndex": "3",
                        "csbHistoryStatsInterval": "example-string",
                        "csbHistoryStatsElements": 0,
                        "csbHistoryStatsActiveCalls": 0,
                        "csbHistoryStatsTotalCallAttempts": 0,
                        "csbHistoryStatsFailedCallAttempts": 0,
                        "csbHistoryStatsCallRoutingFailure": 0,
                        "csbHistoryStatsCallResourceFailure": 0,
                        "csbHistoryStatsCallMediaFailure": 0,
                        "csbHistoryStatsFailSigFailure": 0,
                        "csbHistoryStatsActiveCallFailure": 0,
                        "csbHistoryStatsCongestionFailure": 0,
                        "csbHistoryStatsCallSetupPolicyFailure": 0,
                        "csbHistoryStatsCallSetupNAPolicyFailure": 0,
                        "csbHistoryStatsCallSetupRoutingPolicyFailure": 0,
                        "csbHistoryStatsCallSetupCACPolicyFailure": 0,
                        "csbHistoryStatsCallSetupCACCallLimitFailure": 0,
                        "csbHistoryStatsCallSetupCACRateLimitFailure": 0,
                        "csbHistoryStatsCallSetupCACBandwidthFailure": 0,
                        "csbHistoryStatsCallSetupCACMediaLimitFailure": 0,
                        "csbHistoryStatsCallSetupCACMediaUpdateFailure": 0,
                        "csbHistoryStatsTimestamp": "example-string",
                        "csbHistroyStatsTranscodedCalls": 0,
                        "csbHistroyStatsTransratedCalls": 0,
                        "csbHistoryStatsTotalCallUpdateFailure": 0,
                        "csbHistoryStatsActiveIpv6Calls": 0,
                        "csbHistoryStatsActiveEmergencyCalls": 0,
                        "csbHistoryStatsActiveE2EmergencyCalls": 0,
                        "csbHistoryStatsImsRxActiveCalls": 0,
                        "csbHistoryStatsImsRxCallSetupFailures": 0,
                        "csbHistoryStatsImsRxCallRenegotiationAttempts": 0,
                        "csbHistoryStatsImsRxCallRenegotiationFailures": 0,
                        "csbHistoryStatsAudioTranscodedCalls": 0,
                        "csbHistoryStatsFaxTranscodedCalls": 0,
                        "csbHistoryStatsRtpDisallowedFailures": 0,
                        "csbHistoryStatsSrtpDisallowedFailures": 0,
                        "csbHistoryStatsNonSrtpCalls": 0,
                        "csbHistoryStatsSrtpNonIwCalls": 0,
                        "csbHistoryStatsSrtpIwCalls": 0,
                        "csbHistoryStatsDtmfIw2833Calls": 0,
                        "csbHistoryStatsDtmfIwInbandCalls": 0,
                        "csbHistoryStatsDtmfIw2833InbandCalls": 0,
                        "csbHistoryStatsTotalTapsRequested": 0,
                        "csbHistoryStatsTotalTapsSucceeded": 0,
                        "csbHistoryStatsCurrentTaps": 0,
                        "csbHistoryStatsIpsecCalls": 0
                      }
                    ]
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-csbHistoryStatsTable",
        "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": "/csbHistoryStatsTable",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:csbHistoryStatsTable/csbHistoryStatsEntry": {
      "get": {
        "summary": "Get csbHistoryStatsEntry list",
        "description": "Retrieve list of csbHistoryStatsEntry entries from MIB",
        "tags": [
          "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "A conceptual row in the csbHistoryStatsTable. The entries in\n          this table are updated as interval completes in the\n          csbCurrPeriodicStatsTable table and the data is moved from that\n          table to this one.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "csbCallStatsInstanceIndex": {
                        "type": "string",
                        "description": "csbCallStatsInstanceIndex",
                        "x-yang-type": "leafref"
                      },
                      "csbCallStatsServiceIndex": {
                        "type": "string",
                        "description": "csbCallStatsServiceIndex",
                        "x-yang-type": "leafref"
                      },
                      "csbHistoryStatsInterval": {
                        "type": "string",
                        "description": "This object identifies the interval for which the history\n            statistics information is to be displayed. The interval\n            values can be 5 min, 15 mins, 1 hour , 1 day. This object acts\n            as index for the table.",
                        "x-yang-type": "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CiscoSbcPeriodicStatsInterval"
                      },
                      "csbHistoryStatsElements": {
                        "type": "integer",
                        "description": "The platform assigns a number starting with one and\n            increments it each for each new row. When the maximum         \n            number of row is reached the oldest rows are deleted. It is up\n            to the platform to determine the number of entries for each\n            interval. It is recommended that each platform support at least\n            one entry for 5 min, 15 mins, 1 hour and 1 day intervals.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbHistoryStatsActiveCalls": {
                        "type": "integer",
                        "description": "This object indicates the number of active calls history during\n            this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbHistoryStatsTotalCallAttempts": {
                        "type": "integer",
                        "description": "This object indicates the number of total call attempts history\n            during this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbHistoryStatsFailedCallAttempts": {
                        "type": "integer",
                        "description": "This object indicates the number of failed call attempts during\n            this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbHistoryStatsCallRoutingFailure": {
                        "type": "integer",
                        "description": "This object indicates the number of call setup failures due\n            to routing failures during this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbHistoryStatsCallResourceFailure": {
                        "type": "integer",
                        "description": "This object indicates the number of call setup failures due\n            to resource failures during this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbHistoryStatsCallMediaFailure": {
                        "type": "integer",
                        "description": "This object indicates the number of call setup failures due\n            to media failure during this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbHistoryStatsFailSigFailure": {
                        "type": "integer",
                        "description": "This object indicates the number of call setup failures due\n            to signaling failure during this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbHistoryStatsActiveCallFailure": {
                        "type": "integer",
                        "description": "This object indicates the number of active call failures during\n            this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbHistoryStatsCongestionFailure": {
                        "type": "integer",
                        "description": "This object indicates the number of call setup failures due\n            to congestion during this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbHistoryStatsCallSetupPolicyFailure": {
                        "type": "integer",
                        "description": "This object indicates the number of call setup failures due\n            to some policy violations during this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbHistoryStatsCallSetupNAPolicyFailure": {
                        "type": "integer",
                        "description": "This object indicates the number of call setup failures due\n            to NA policy failure during this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbHistoryStatsCallSetupRoutingPolicyFailure": {
                        "type": "integer",
                        "description": "This object indicates the number of call setup failures due\n            to routing policy failure during this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbHistoryStatsCallSetupCACPolicyFailure": {
                        "type": "integer",
                        "description": "This object indicates the number of call setup failures due\n            to CAC policy failure during this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbHistoryStatsCallSetupCACCallLimitFailure": {
                        "type": "integer",
                        "description": "This object indicates the number of call setup failures due\n            to CAC call limit during this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbHistoryStatsCallSetupCACRateLimitFailure": {
                        "type": "integer",
                        "description": "This object indicates the number of call setup failures due\n            to CAC call rate limit during this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbHistoryStatsCallSetupCACBandwidthFailure": {
                        "type": "integer",
                        "description": "This object indicates the number of call setup failures due\n            to CAC bandwidth limit during this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbHistoryStatsCallSetupCACMediaLimitFailure": {
                        "type": "integer",
                        "description": "This object indicates the number of call setup failures due\n            to CAC media limit during this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbHistoryStatsCallSetupCACMediaUpdateFailure": {
                        "type": "integer",
                        "description": "This object indicates the number of call update failure due\n            to policy failure during this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbHistoryStatsTimestamp": {
                        "type": "string",
                        "description": "This object indicates the time at the start of the interval\n            when measurements were first collected for this interval in the\n            csbCurrPeriodicStatsTable.",
                        "format": "binary"
                      },
                      "csbHistroyStatsTranscodedCalls": {
                        "type": "integer",
                        "description": "The object indicates the number of active transcoded\n            calls during this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbHistroyStatsTransratedCalls": {
                        "type": "integer",
                        "description": "The object indicates the number of active transrated\n            calls during this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbHistoryStatsTotalCallUpdateFailure": {
                        "type": "integer",
                        "description": "This object indicates the total call update failures during\n            this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbHistoryStatsActiveIpv6Calls": {
                        "type": "integer",
                        "description": "This Object indicates the number of calls through SBC that use\n            IPv6 signaling.  This statistic totals all calls that traverse\n            an IPv6 adjacency on either or both sides of SBC during this\n            interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbHistoryStatsActiveEmergencyCalls": {
                        "type": "integer",
                        "description": "This object indicates the number of calls through SBC that have\n            been identified as emergency calls (by Number Analysis)  during\n            this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbHistoryStatsActiveE2EmergencyCalls": {
                        "type": "integer",
                        "description": "This object indicates the number of calls through SBC that have\n            been identified as emergency calls (by Number Analysis) and\n            have used the e2 interface to obtain location information for\n            the\n            caller.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbHistoryStatsImsRxActiveCalls": {
                        "type": "integer",
                        "description": "This object indicates the total number of active calls which\n            use IMS Rx, during this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbHistoryStatsImsRxCallSetupFailures": {
                        "type": "integer",
                        "description": "This object indicates the total call setup failures owing to\n            IMS Rx failure during this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbHistoryStatsImsRxCallRenegotiationAttempts": {
                        "type": "integer",
                        "description": "This object indicates the total call renegotiation attempts\n            using IMS Rx during this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbHistoryStatsImsRxCallRenegotiationFailures": {
                        "type": "integer",
                        "description": "This object indicates the total call renegotiation failures\n            owing to IMS Rx failure during this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbHistoryStatsAudioTranscodedCalls": {
                        "type": "integer",
                        "description": "The number of active audio transcoded calls through\n            this adjacency or account during this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbHistoryStatsFaxTranscodedCalls": {
                        "type": "integer",
                        "description": "This object indicates the the number of active fax\n            transcoded calls through this adjacency or account during this\n            interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbHistoryStatsRtpDisallowedFailures": {
                        "type": "integer",
                        "description": "This object indicates the total call setup failures due to RTP\n            being proposed when not permitted during this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbHistoryStatsSrtpDisallowedFailures": {
                        "type": "integer",
                        "description": "This object indicates the total call setup failures due to SRTP\n            being proposed when not permitted during this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbHistoryStatsNonSrtpCalls": {
                        "type": "integer",
                        "description": "This object indicates the number of active calls\n            through this adjacency or account which do not use SRTP on any\n            media channels during this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbHistoryStatsSrtpNonIwCalls": {
                        "type": "integer",
                        "description": "This object indicates the number of active calls\n            through this adjacency or account that have one or more media\n            channels that use SRTP but no media channels that provide\n            interworking between RTP and SRTP during this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbHistoryStatsSrtpIwCalls": {
                        "type": "integer",
                        "description": "This object indicates the number of active calls\n            through this adjacency or account that have one or more media\n            channels that provide interworking between RTP and SRTP during\n            this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbHistoryStatsDtmfIw2833Calls": {
                        "type": "integer",
                        "description": "This object indicates the number of active calls\n            through this adjacency or account for which DTMF interworking\n            is enabled between DTMF in signaling and DTMF in media via RFC\n            2833 during this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbHistoryStatsDtmfIwInbandCalls": {
                        "type": "integer",
                        "description": "This object indicates the number of active calls\n            through this adjacency or account for which DTMF interworking\n            is enabled between DTMF in signaling and DTMF in media via\n            inband DTMF tones during this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbHistoryStatsDtmfIw2833InbandCalls": {
                        "type": "integer",
                        "description": "This object indicates the number of active calls\n            through this adjacency or account for which DTMF interworking\n            is enabled between DTMF in media via RFC 2833 and DTMF in media\n            via inband DTMF tones during this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbHistoryStatsTotalTapsRequested": {
                        "type": "integer",
                        "description": "This object indicates the lawful intercept tap attempts\n            requested within the scope of this query during this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbHistoryStatsTotalTapsSucceeded": {
                        "type": "integer",
                        "description": "This object indicates the lawful intercept tap attempts that\n            have been successfully implemented within the scope of this\n            query during this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbHistoryStatsCurrentTaps": {
                        "type": "integer",
                        "description": "This object indicates the Lawful intercept taps currently in\n            place on calls within the scope of this query during this\n            interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbHistoryStatsIpsecCalls": {
                        "type": "integer",
                        "description": "The number of active calls on this adjacency or account which\n            are to or from registered subscribers using IPSEC during this\n            interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:csbHistoryStatsEntry": [
                    {
                      "csbCallStatsInstanceIndex": "example-string",
                      "csbCallStatsServiceIndex": "example-string",
                      "csbHistoryStatsInterval": "example-string",
                      "csbHistoryStatsElements": 0,
                      "csbHistoryStatsActiveCalls": 0,
                      "csbHistoryStatsTotalCallAttempts": 0,
                      "csbHistoryStatsFailedCallAttempts": 0,
                      "csbHistoryStatsCallRoutingFailure": 0,
                      "csbHistoryStatsCallResourceFailure": 0,
                      "csbHistoryStatsCallMediaFailure": 0,
                      "csbHistoryStatsFailSigFailure": 0,
                      "csbHistoryStatsActiveCallFailure": 0,
                      "csbHistoryStatsCongestionFailure": 0,
                      "csbHistoryStatsCallSetupPolicyFailure": 0,
                      "csbHistoryStatsCallSetupNAPolicyFailure": 0,
                      "csbHistoryStatsCallSetupRoutingPolicyFailure": 0,
                      "csbHistoryStatsCallSetupCACPolicyFailure": 0,
                      "csbHistoryStatsCallSetupCACCallLimitFailure": 0,
                      "csbHistoryStatsCallSetupCACRateLimitFailure": 0,
                      "csbHistoryStatsCallSetupCACBandwidthFailure": 0,
                      "csbHistoryStatsCallSetupCACMediaLimitFailure": 0,
                      "csbHistoryStatsCallSetupCACMediaUpdateFailure": 0,
                      "csbHistoryStatsTimestamp": "example-string",
                      "csbHistroyStatsTranscodedCalls": 0,
                      "csbHistroyStatsTransratedCalls": 0,
                      "csbHistoryStatsTotalCallUpdateFailure": 0,
                      "csbHistoryStatsActiveIpv6Calls": 0,
                      "csbHistoryStatsActiveEmergencyCalls": 0,
                      "csbHistoryStatsActiveE2EmergencyCalls": 0,
                      "csbHistoryStatsImsRxActiveCalls": 0,
                      "csbHistoryStatsImsRxCallSetupFailures": 0,
                      "csbHistoryStatsImsRxCallRenegotiationAttempts": 0,
                      "csbHistoryStatsImsRxCallRenegotiationFailures": 0,
                      "csbHistoryStatsAudioTranscodedCalls": 0,
                      "csbHistoryStatsFaxTranscodedCalls": 0,
                      "csbHistoryStatsRtpDisallowedFailures": 0,
                      "csbHistoryStatsSrtpDisallowedFailures": 0,
                      "csbHistoryStatsNonSrtpCalls": 0,
                      "csbHistoryStatsSrtpNonIwCalls": 0,
                      "csbHistoryStatsSrtpIwCalls": 0,
                      "csbHistoryStatsDtmfIw2833Calls": 0,
                      "csbHistoryStatsDtmfIwInbandCalls": 0,
                      "csbHistoryStatsDtmfIw2833InbandCalls": 0,
                      "csbHistoryStatsTotalTapsRequested": 0,
                      "csbHistoryStatsTotalTapsSucceeded": 0,
                      "csbHistoryStatsCurrentTaps": 0,
                      "csbHistoryStatsIpsecCalls": 0
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-csbHistoryStatsEntry",
        "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": "/csbHistoryStatsTable/csbHistoryStatsEntry",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:csbPerFlowStatsTable": {
      "get": {
        "summary": "Get csbPerFlowStatsTable data",
        "description": "Retrieve csbPerFlowStatsTable operational data from MIB",
        "tags": [
          "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "description": "This table describes statistics table for each call flow. The\n        indices of the table are virtual media gateway id, gate id,\n        falow pair id and side id (indices for side A or side B). The\n        other indices of this table are csbCallStatsInstanceIndex\n        defined in csbCallStatsInstanceTable and\n        csbCallStatsServiceIndex defined in csbCallStatsTable.",
                  "properties": {
                    "csbPerFlowStatsEntry": {
                      "type": "array",
                      "description": "csbPerFlowStatsEntry",
                      "items": {
                        "type": "object",
                        "properties": {
                          "csbCallStatsInstanceIndex": {
                            "type": "string",
                            "description": "csbCallStatsInstanceIndex",
                            "x-yang-type": "leafref"
                          },
                          "csbCallStatsServiceIndex": {
                            "type": "string",
                            "description": "csbCallStatsServiceIndex",
                            "x-yang-type": "leafref"
                          },
                          "csbPerFlowStatsVdbeId": {
                            "type": "integer",
                            "description": "This object identifies the virtual media gateway id. This\n            object also acts as an index for the table.",
                            "minimum": -2147483648,
                            "maximum": 2147483647
                          },
                          "csbPerFlowStatsGateId": {
                            "type": "integer",
                            "description": "This object identifies the gate id. This object also acts as\n            an index for the table.",
                            "minimum": -2147483648,
                            "maximum": 2147483647
                          },
                          "csbPerFlowStatsFlowPairId": {
                            "type": "integer",
                            "description": "This object identifies the flow pair id. This object also acts\n            as an index for the table.",
                            "minimum": -2147483648,
                            "maximum": 2147483647
                          },
                          "csbPerFlowStatsSideId": {
                            "type": "string",
                            "description": "This object identifies the index corresponding to side of flow\n            pair either side A or side B. This object also acts as an index\n            for the table."
                          },
                          "csbPerFlowStatsFlowType": {
                            "type": "string",
                            "description": "This object indicates the type of the flow, like media flow,\n            signaling flow etc."
                          },
                          "csbPerFlowStatsRTPPktsSent": {
                            "type": "integer",
                            "description": "This object indicates the number of RTP packets sent per flow\n            by the SBC.",
                            "minimum": 0
                          },
                          "csbPerFlowStatsRTPPktsRcvd": {
                            "type": "integer",
                            "description": "This object indicates the number of RTP packets received per\n            flow by the SBC.",
                            "minimum": 0
                          },
                          "csbPerFlowStatsRTPPktsDiscard": {
                            "type": "integer",
                            "description": "This object indicates the number of RTP packets discarded  per\n            flow by the SBC.",
                            "minimum": 0
                          },
                          "csbPerFlowStatsRTPOctetsSent": {
                            "type": "integer",
                            "description": "This object indicates the number of RTP octets sent\n            per flow by the SBC.",
                            "minimum": 0
                          },
                          "csbPerFlowStatsRTPOctetsRcvd": {
                            "type": "integer",
                            "description": "This object indicates the number of RTP octets received\n            per flow by the SBC.",
                            "minimum": 0
                          },
                          "csbPerFlowStatsRTPOctetsDiscard": {
                            "type": "integer",
                            "description": "This object indicates the number of RTP octets discarded\n            per flow by the SBC.",
                            "minimum": 0
                          },
                          "csbPerFlowStatsRTCPPktsSent": {
                            "type": "integer",
                            "description": "The number of RTP packets sent by the remote end point to this\n            MG on this flow. Comparing this with the local number of RTP\n            packets received from the remote end point gives an indication\n            of how many incoming  packets were dropped on this leg of the\n            call. This information is from RTCP packet. Not all endpoints\n            report this statistic, if it is not available it will be set to\n            zero. This statistic will not be available for signaling flows.",
                            "minimum": 0
                          },
                          "csbPerFlowStatsRTCPPktsRcvd": {
                            "type": "integer",
                            "description": "The number of RTP packets received by the remote end point from\n            this MG on this flow. Comparing this with the local number of\n            RTP packets sent from this MG to the remote endpoint gives an\n            indication of how many outgoing packets were dropped on this\n            leg of the call. This information is from RTCP packet. Not all\n            endpoints report this statistic, if it is not available it will\n            be set to zero. This statistic will not be available for\n            signaling flows.",
                            "minimum": 0
                          },
                          "csbPerFlowStatsRTCPPktsLost": {
                            "type": "integer",
                            "description": "The number of RTP packets reported as lost by the remote end\n            point on this flow. This information is from RTCP packet. Not\n            all endpoints report this statistic, if it is not available it\n            will be set to zero. This statistic will not be available for\n            signaling flows.",
                            "minimum": 0
                          },
                          "csbPerFlowStatsEPJitter": {
                            "type": "integer",
                            "description": "This object indicates the End Point jitter per flow in the\n            SBC.",
                            "minimum": 0
                          },
                          "csbPerFlowStatsTmanPerMbs": {
                            "type": "integer",
                            "description": "This object indicates the maximum burst size for the\n            current FlowPair.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "csbPerFlowStatsTmanPerSdr": {
                            "type": "integer",
                            "description": "This object indicates the bandwidth reserved for flow in\n            kilobytes/second.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "csbPerFlowStatsDscpSettings": {
                            "type": "string",
                            "description": "This object indicates the mark packets sent for the\n            current FlowPair with, or zero if none set. The DSCP is a 6-bit\n            value, which will be present in the top 6 bits of the lowest\n            byte of this field.",
                            "x-yang-type": "snmp-framework:SnmpAdminString"
                          },
                          "csbPerFlowStatsAdrStatus": {
                            "type": "string",
                            "description": "This object indicates whether the flow on the current\n            FlowPair has subscribed for the NAT latch event.",
                            "format": "binary"
                          },
                          "csbPerFlowStatsQASettings": {
                            "type": "string",
                            "description": "This object indicates the flow on the current FlowPair has\n            subscribed for the media loss event.",
                            "format": "binary"
                          },
                          "csbPerFlowStatsRTPPktsLost": {
                            "type": "integer",
                            "description": "This object indicates the number of RTP packets lost per flow\n            by the SBC.",
                            "minimum": 0
                          }
                        }
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:csbPerFlowStatsTable": {
                    "csbPerFlowStatsEntry": [
                      {
                        "csbCallStatsInstanceIndex": "1",
                        "csbCallStatsServiceIndex": "1",
                        "csbPerFlowStatsVdbeId": -2147483648,
                        "csbPerFlowStatsGateId": -2147483648,
                        "csbPerFlowStatsFlowPairId": -2147483648,
                        "csbPerFlowStatsSideId": "example-string",
                        "csbPerFlowStatsFlowType": "ethernetCsmacd(6)",
                        "csbPerFlowStatsRTPPktsSent": 0,
                        "csbPerFlowStatsRTPPktsRcvd": 0,
                        "csbPerFlowStatsRTPPktsDiscard": 0,
                        "csbPerFlowStatsRTPOctetsSent": 1234567890,
                        "csbPerFlowStatsRTPOctetsRcvd": 1234567890,
                        "csbPerFlowStatsRTPOctetsDiscard": 1234567890,
                        "csbPerFlowStatsRTCPPktsSent": 0,
                        "csbPerFlowStatsRTCPPktsRcvd": 0,
                        "csbPerFlowStatsRTCPPktsLost": 0,
                        "csbPerFlowStatsEPJitter": 0,
                        "csbPerFlowStatsTmanPerMbs": 0,
                        "csbPerFlowStatsTmanPerSdr": 0,
                        "csbPerFlowStatsDscpSettings": "example-string",
                        "csbPerFlowStatsAdrStatus": "up(1)",
                        "csbPerFlowStatsQASettings": "example-string",
                        "csbPerFlowStatsRTPPktsLost": 0
                      },
                      {
                        "csbCallStatsInstanceIndex": "2",
                        "csbCallStatsServiceIndex": "2",
                        "csbPerFlowStatsVdbeId": -2147483648,
                        "csbPerFlowStatsGateId": -2147483648,
                        "csbPerFlowStatsFlowPairId": -2147483648,
                        "csbPerFlowStatsSideId": "example-string",
                        "csbPerFlowStatsFlowType": "ethernetCsmacd(6)",
                        "csbPerFlowStatsRTPPktsSent": 0,
                        "csbPerFlowStatsRTPPktsRcvd": 0,
                        "csbPerFlowStatsRTPPktsDiscard": 0,
                        "csbPerFlowStatsRTPOctetsSent": 1234567890,
                        "csbPerFlowStatsRTPOctetsRcvd": 1234567890,
                        "csbPerFlowStatsRTPOctetsDiscard": 1234567890,
                        "csbPerFlowStatsRTCPPktsSent": 0,
                        "csbPerFlowStatsRTCPPktsRcvd": 0,
                        "csbPerFlowStatsRTCPPktsLost": 0,
                        "csbPerFlowStatsEPJitter": 0,
                        "csbPerFlowStatsTmanPerMbs": 0,
                        "csbPerFlowStatsTmanPerSdr": 0,
                        "csbPerFlowStatsDscpSettings": "example-string",
                        "csbPerFlowStatsAdrStatus": "up(1)",
                        "csbPerFlowStatsQASettings": "example-string",
                        "csbPerFlowStatsRTPPktsLost": 0
                      },
                      {
                        "csbCallStatsInstanceIndex": "3",
                        "csbCallStatsServiceIndex": "3",
                        "csbPerFlowStatsVdbeId": -2147483648,
                        "csbPerFlowStatsGateId": -2147483648,
                        "csbPerFlowStatsFlowPairId": -2147483648,
                        "csbPerFlowStatsSideId": "example-string",
                        "csbPerFlowStatsFlowType": "ethernetCsmacd(6)",
                        "csbPerFlowStatsRTPPktsSent": 0,
                        "csbPerFlowStatsRTPPktsRcvd": 0,
                        "csbPerFlowStatsRTPPktsDiscard": 0,
                        "csbPerFlowStatsRTPOctetsSent": 1234567890,
                        "csbPerFlowStatsRTPOctetsRcvd": 1234567890,
                        "csbPerFlowStatsRTPOctetsDiscard": 1234567890,
                        "csbPerFlowStatsRTCPPktsSent": 0,
                        "csbPerFlowStatsRTCPPktsRcvd": 0,
                        "csbPerFlowStatsRTCPPktsLost": 0,
                        "csbPerFlowStatsEPJitter": 0,
                        "csbPerFlowStatsTmanPerMbs": 0,
                        "csbPerFlowStatsTmanPerSdr": 0,
                        "csbPerFlowStatsDscpSettings": "example-string",
                        "csbPerFlowStatsAdrStatus": "up(1)",
                        "csbPerFlowStatsQASettings": "example-string",
                        "csbPerFlowStatsRTPPktsLost": 0
                      }
                    ]
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-csbPerFlowStatsTable",
        "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": "/csbPerFlowStatsTable",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:csbPerFlowStatsTable/csbPerFlowStatsEntry": {
      "get": {
        "summary": "Get csbPerFlowStatsEntry list",
        "description": "Retrieve list of csbPerFlowStatsEntry entries from MIB",
        "tags": [
          "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "csbPerFlowStatsEntry",
                  "items": {
                    "type": "object",
                    "properties": {
                      "csbCallStatsInstanceIndex": {
                        "type": "string",
                        "description": "csbCallStatsInstanceIndex",
                        "x-yang-type": "leafref"
                      },
                      "csbCallStatsServiceIndex": {
                        "type": "string",
                        "description": "csbCallStatsServiceIndex",
                        "x-yang-type": "leafref"
                      },
                      "csbPerFlowStatsVdbeId": {
                        "type": "integer",
                        "description": "This object identifies the virtual media gateway id. This\n            object also acts as an index for the table.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "csbPerFlowStatsGateId": {
                        "type": "integer",
                        "description": "This object identifies the gate id. This object also acts as\n            an index for the table.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "csbPerFlowStatsFlowPairId": {
                        "type": "integer",
                        "description": "This object identifies the flow pair id. This object also acts\n            as an index for the table.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "csbPerFlowStatsSideId": {
                        "type": "string",
                        "description": "This object identifies the index corresponding to side of flow\n            pair either side A or side B. This object also acts as an index\n            for the table."
                      },
                      "csbPerFlowStatsFlowType": {
                        "type": "string",
                        "description": "This object indicates the type of the flow, like media flow,\n            signaling flow etc."
                      },
                      "csbPerFlowStatsRTPPktsSent": {
                        "type": "integer",
                        "description": "This object indicates the number of RTP packets sent per flow\n            by the SBC.",
                        "minimum": 0
                      },
                      "csbPerFlowStatsRTPPktsRcvd": {
                        "type": "integer",
                        "description": "This object indicates the number of RTP packets received per\n            flow by the SBC.",
                        "minimum": 0
                      },
                      "csbPerFlowStatsRTPPktsDiscard": {
                        "type": "integer",
                        "description": "This object indicates the number of RTP packets discarded  per\n            flow by the SBC.",
                        "minimum": 0
                      },
                      "csbPerFlowStatsRTPOctetsSent": {
                        "type": "integer",
                        "description": "This object indicates the number of RTP octets sent\n            per flow by the SBC.",
                        "minimum": 0
                      },
                      "csbPerFlowStatsRTPOctetsRcvd": {
                        "type": "integer",
                        "description": "This object indicates the number of RTP octets received\n            per flow by the SBC.",
                        "minimum": 0
                      },
                      "csbPerFlowStatsRTPOctetsDiscard": {
                        "type": "integer",
                        "description": "This object indicates the number of RTP octets discarded\n            per flow by the SBC.",
                        "minimum": 0
                      },
                      "csbPerFlowStatsRTCPPktsSent": {
                        "type": "integer",
                        "description": "The number of RTP packets sent by the remote end point to this\n            MG on this flow. Comparing this with the local number of RTP\n            packets received from the remote end point gives an indication\n            of how many incoming  packets were dropped on this leg of the\n            call. This information is from RTCP packet. Not all endpoints\n            report this statistic, if it is not available it will be set to\n            zero. This statistic will not be available for signaling flows.",
                        "minimum": 0
                      },
                      "csbPerFlowStatsRTCPPktsRcvd": {
                        "type": "integer",
                        "description": "The number of RTP packets received by the remote end point from\n            this MG on this flow. Comparing this with the local number of\n            RTP packets sent from this MG to the remote endpoint gives an\n            indication of how many outgoing packets were dropped on this\n            leg of the call. This information is from RTCP packet. Not all\n            endpoints report this statistic, if it is not available it will\n            be set to zero. This statistic will not be available for\n            signaling flows.",
                        "minimum": 0
                      },
                      "csbPerFlowStatsRTCPPktsLost": {
                        "type": "integer",
                        "description": "The number of RTP packets reported as lost by the remote end\n            point on this flow. This information is from RTCP packet. Not\n            all endpoints report this statistic, if it is not available it\n            will be set to zero. This statistic will not be available for\n            signaling flows.",
                        "minimum": 0
                      },
                      "csbPerFlowStatsEPJitter": {
                        "type": "integer",
                        "description": "This object indicates the End Point jitter per flow in the\n            SBC.",
                        "minimum": 0
                      },
                      "csbPerFlowStatsTmanPerMbs": {
                        "type": "integer",
                        "description": "This object indicates the maximum burst size for the\n            current FlowPair.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbPerFlowStatsTmanPerSdr": {
                        "type": "integer",
                        "description": "This object indicates the bandwidth reserved for flow in\n            kilobytes/second.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbPerFlowStatsDscpSettings": {
                        "type": "string",
                        "description": "This object indicates the mark packets sent for the\n            current FlowPair with, or zero if none set. The DSCP is a 6-bit\n            value, which will be present in the top 6 bits of the lowest\n            byte of this field.",
                        "x-yang-type": "snmp-framework:SnmpAdminString"
                      },
                      "csbPerFlowStatsAdrStatus": {
                        "type": "string",
                        "description": "This object indicates whether the flow on the current\n            FlowPair has subscribed for the NAT latch event.",
                        "format": "binary"
                      },
                      "csbPerFlowStatsQASettings": {
                        "type": "string",
                        "description": "This object indicates the flow on the current FlowPair has\n            subscribed for the media loss event.",
                        "format": "binary"
                      },
                      "csbPerFlowStatsRTPPktsLost": {
                        "type": "integer",
                        "description": "This object indicates the number of RTP packets lost per flow\n            by the SBC.",
                        "minimum": 0
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:csbPerFlowStatsEntry": [
                    {
                      "csbCallStatsInstanceIndex": "example-string",
                      "csbCallStatsServiceIndex": "example-string",
                      "csbPerFlowStatsVdbeId": -2147483648,
                      "csbPerFlowStatsGateId": -2147483648,
                      "csbPerFlowStatsFlowPairId": -2147483648,
                      "csbPerFlowStatsSideId": "example-string",
                      "csbPerFlowStatsFlowType": "ethernetCsmacd(6)",
                      "csbPerFlowStatsRTPPktsSent": 0,
                      "csbPerFlowStatsRTPPktsRcvd": 0,
                      "csbPerFlowStatsRTPPktsDiscard": 0,
                      "csbPerFlowStatsRTPOctetsSent": 1234567890,
                      "csbPerFlowStatsRTPOctetsRcvd": 1234567890,
                      "csbPerFlowStatsRTPOctetsDiscard": 1234567890,
                      "csbPerFlowStatsRTCPPktsSent": 0,
                      "csbPerFlowStatsRTCPPktsRcvd": 0,
                      "csbPerFlowStatsRTCPPktsLost": 0,
                      "csbPerFlowStatsEPJitter": 0,
                      "csbPerFlowStatsTmanPerMbs": 0,
                      "csbPerFlowStatsTmanPerSdr": 0,
                      "csbPerFlowStatsDscpSettings": "example-string",
                      "csbPerFlowStatsAdrStatus": "up(1)",
                      "csbPerFlowStatsQASettings": "example-string",
                      "csbPerFlowStatsRTPPktsLost": 0
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-csbPerFlowStatsEntry",
        "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": "/csbPerFlowStatsTable/csbPerFlowStatsEntry",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:csbH248StatsTable": {
      "get": {
        "summary": "Get csbH248StatsTable data",
        "description": "Retrieve csbH248StatsTable operational data from MIB",
        "tags": [
          "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "description": "This table describes the H.248 statistics for SBC. The index of\n        the table is service index which corresponds to a particular \n        service configured on the SBC and the index assigned to a\n        particular H.248 controller. The other index of this table is\n        csbCallStatsInstanceIndex defined in csbCallStatsInstanceTable.\n        This table is replaced by the csbH248StatsRev1Table.",
                  "properties": {
                    "csbH248StatsEntry": {
                      "type": "array",
                      "description": "An conceptual row in the csbCallStath248Table. There is\n          an entry in this table for the particular controller by a value\n          of csbH248StatsCtrlrIndex. The other indices of this table are\n          csbCallStatsInstanceIndex defined in csbCallStatsInstanceTable\n          and csbCallStatsServiceIndex defined in csbCallStatsTable.",
                      "items": {
                        "type": "object",
                        "properties": {
                          "csbCallStatsInstanceIndex": {
                            "type": "string",
                            "description": "csbCallStatsInstanceIndex",
                            "x-yang-type": "leafref"
                          },
                          "csbCallStatsServiceIndex": {
                            "type": "string",
                            "description": "csbCallStatsServiceIndex",
                            "x-yang-type": "leafref"
                          },
                          "csbH248StatsCtrlrIndex": {
                            "type": "integer",
                            "description": "This object identifies the controller index of the H.248\n            server. This is also the index for the table.",
                            "minimum": -2147483648,
                            "maximum": 2147483647
                          },
                          "csbH248StatsRequestsSent": {
                            "type": "integer",
                            "description": "This object indicates the requests sent through the Session\n            Controller Interface to an SBE or DBE.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "csbH248StatsRequestsRcvd": {
                            "type": "integer",
                            "description": "This object indicates the requests received through the\n            Session Controller Interface to an SBE or DBE.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "csbH248StatsRequestsFailed": {
                            "type": "integer",
                            "description": "This object indicates the requests failed on session\n            Controller Interface to an SBE or DBE.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "csbH248StatsRequestsRetried": {
                            "type": "integer",
                            "description": "This object indicates the requests retried through the Session\n            Controller Interface to an SBE or DBE.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "csbH248StatsRepliesSent": {
                            "type": "integer",
                            "description": "This object indicates the number of replies sent through the\n            Session Controller Interface to an SBE or DBE.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "csbH248StatsRepliesRcvd": {
                            "type": "integer",
                            "description": "This object indicates the number of replies received from the\n            Session Controller Interface to an SBE or DBE.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "csbH248StatsRepliesRetried": {
                            "type": "integer",
                            "description": "This object indicates the number of replies retried through\n            the Session Controller Interface to an SBE or DBE.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "csbH248StatsSegPktsSent": {
                            "type": "integer",
                            "description": "This object indicates the number of packets sent through the\n            Session Controller Interface to an SBE or DBE.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "csbH248StatsSegPktsRcvd": {
                            "type": "integer",
                            "description": "This object indicates the number of packets received from the\n            Session Controller Interface to an SBE or DBE.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "csbH248StatsEstablishedTime": {
                            "type": "string",
                            "description": "This object indicates the H.248 Controller established\n            time (the time at which the association became established).",
                            "format": "binary"
                          },
                          "csbH248StatsTMaxTimeoutVal": {
                            "type": "integer",
                            "description": "This object indicates the T-Max timeout value. This field\n            specifies the maximum delay (in milliseconds) for a response\n            from an MGC before deciding that the request has failed.",
                            "minimum": -2147483648,
                            "maximum": 2147483647
                          },
                          "csbH248StatsRTT": {
                            "type": "integer",
                            "description": "This object indicates the calculated RTT value. This field\n            specifies the maximum round trip propagation delay in the \n            network (in milliseconds).",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "csbH248StatsLT": {
                            "type": "integer",
                            "description": "This object indicates the LT value calculated from RTT\n            value and Max timeout value. This field specifies the maximum\n            delay (in milliseconds) for a response from an MGC plus the\n            maximum round trip propagation delay in the network (in\n            milliseconds).",
                            "minimum": 0,
                            "maximum": 4294967295
                          }
                        }
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:csbH248StatsTable": {
                    "csbH248StatsEntry": [
                      {
                        "csbCallStatsInstanceIndex": "1",
                        "csbCallStatsServiceIndex": "1",
                        "csbH248StatsCtrlrIndex": 1,
                        "csbH248StatsRequestsSent": 0,
                        "csbH248StatsRequestsRcvd": 0,
                        "csbH248StatsRequestsFailed": 0,
                        "csbH248StatsRequestsRetried": 0,
                        "csbH248StatsRepliesSent": 0,
                        "csbH248StatsRepliesRcvd": 0,
                        "csbH248StatsRepliesRetried": 0,
                        "csbH248StatsSegPktsSent": 0,
                        "csbH248StatsSegPktsRcvd": 0,
                        "csbH248StatsEstablishedTime": "example-string",
                        "csbH248StatsTMaxTimeoutVal": -2147483648,
                        "csbH248StatsRTT": 0,
                        "csbH248StatsLT": 0
                      },
                      {
                        "csbCallStatsInstanceIndex": "2",
                        "csbCallStatsServiceIndex": "2",
                        "csbH248StatsCtrlrIndex": 2,
                        "csbH248StatsRequestsSent": 0,
                        "csbH248StatsRequestsRcvd": 0,
                        "csbH248StatsRequestsFailed": 0,
                        "csbH248StatsRequestsRetried": 0,
                        "csbH248StatsRepliesSent": 0,
                        "csbH248StatsRepliesRcvd": 0,
                        "csbH248StatsRepliesRetried": 0,
                        "csbH248StatsSegPktsSent": 0,
                        "csbH248StatsSegPktsRcvd": 0,
                        "csbH248StatsEstablishedTime": "example-string",
                        "csbH248StatsTMaxTimeoutVal": -2147483648,
                        "csbH248StatsRTT": 0,
                        "csbH248StatsLT": 0
                      },
                      {
                        "csbCallStatsInstanceIndex": "3",
                        "csbCallStatsServiceIndex": "3",
                        "csbH248StatsCtrlrIndex": 3,
                        "csbH248StatsRequestsSent": 0,
                        "csbH248StatsRequestsRcvd": 0,
                        "csbH248StatsRequestsFailed": 0,
                        "csbH248StatsRequestsRetried": 0,
                        "csbH248StatsRepliesSent": 0,
                        "csbH248StatsRepliesRcvd": 0,
                        "csbH248StatsRepliesRetried": 0,
                        "csbH248StatsSegPktsSent": 0,
                        "csbH248StatsSegPktsRcvd": 0,
                        "csbH248StatsEstablishedTime": "example-string",
                        "csbH248StatsTMaxTimeoutVal": -2147483648,
                        "csbH248StatsRTT": 0,
                        "csbH248StatsLT": 0
                      }
                    ]
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-csbH248StatsTable",
        "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": "/csbH248StatsTable",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:csbH248StatsTable/csbH248StatsEntry": {
      "get": {
        "summary": "Get csbH248StatsEntry list",
        "description": "Retrieve list of csbH248StatsEntry entries from MIB",
        "tags": [
          "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "An conceptual row in the csbCallStath248Table. There is\n          an entry in this table for the particular controller by a value\n          of csbH248StatsCtrlrIndex. The other indices of this table are\n          csbCallStatsInstanceIndex defined in csbCallStatsInstanceTable\n          and csbCallStatsServiceIndex defined in csbCallStatsTable.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "csbCallStatsInstanceIndex": {
                        "type": "string",
                        "description": "csbCallStatsInstanceIndex",
                        "x-yang-type": "leafref"
                      },
                      "csbCallStatsServiceIndex": {
                        "type": "string",
                        "description": "csbCallStatsServiceIndex",
                        "x-yang-type": "leafref"
                      },
                      "csbH248StatsCtrlrIndex": {
                        "type": "integer",
                        "description": "This object identifies the controller index of the H.248\n            server. This is also the index for the table.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "csbH248StatsRequestsSent": {
                        "type": "integer",
                        "description": "This object indicates the requests sent through the Session\n            Controller Interface to an SBE or DBE.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbH248StatsRequestsRcvd": {
                        "type": "integer",
                        "description": "This object indicates the requests received through the\n            Session Controller Interface to an SBE or DBE.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbH248StatsRequestsFailed": {
                        "type": "integer",
                        "description": "This object indicates the requests failed on session\n            Controller Interface to an SBE or DBE.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbH248StatsRequestsRetried": {
                        "type": "integer",
                        "description": "This object indicates the requests retried through the Session\n            Controller Interface to an SBE or DBE.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbH248StatsRepliesSent": {
                        "type": "integer",
                        "description": "This object indicates the number of replies sent through the\n            Session Controller Interface to an SBE or DBE.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbH248StatsRepliesRcvd": {
                        "type": "integer",
                        "description": "This object indicates the number of replies received from the\n            Session Controller Interface to an SBE or DBE.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbH248StatsRepliesRetried": {
                        "type": "integer",
                        "description": "This object indicates the number of replies retried through\n            the Session Controller Interface to an SBE or DBE.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbH248StatsSegPktsSent": {
                        "type": "integer",
                        "description": "This object indicates the number of packets sent through the\n            Session Controller Interface to an SBE or DBE.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbH248StatsSegPktsRcvd": {
                        "type": "integer",
                        "description": "This object indicates the number of packets received from the\n            Session Controller Interface to an SBE or DBE.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbH248StatsEstablishedTime": {
                        "type": "string",
                        "description": "This object indicates the H.248 Controller established\n            time (the time at which the association became established).",
                        "format": "binary"
                      },
                      "csbH248StatsTMaxTimeoutVal": {
                        "type": "integer",
                        "description": "This object indicates the T-Max timeout value. This field\n            specifies the maximum delay (in milliseconds) for a response\n            from an MGC before deciding that the request has failed.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "csbH248StatsRTT": {
                        "type": "integer",
                        "description": "This object indicates the calculated RTT value. This field\n            specifies the maximum round trip propagation delay in the \n            network (in milliseconds).",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbH248StatsLT": {
                        "type": "integer",
                        "description": "This object indicates the LT value calculated from RTT\n            value and Max timeout value. This field specifies the maximum\n            delay (in milliseconds) for a response from an MGC plus the\n            maximum round trip propagation delay in the network (in\n            milliseconds).",
                        "minimum": 0,
                        "maximum": 4294967295
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:csbH248StatsEntry": [
                    {
                      "csbCallStatsInstanceIndex": "example-string",
                      "csbCallStatsServiceIndex": "example-string",
                      "csbH248StatsCtrlrIndex": 1,
                      "csbH248StatsRequestsSent": 0,
                      "csbH248StatsRequestsRcvd": 0,
                      "csbH248StatsRequestsFailed": 0,
                      "csbH248StatsRequestsRetried": 0,
                      "csbH248StatsRepliesSent": 0,
                      "csbH248StatsRepliesRcvd": 0,
                      "csbH248StatsRepliesRetried": 0,
                      "csbH248StatsSegPktsSent": 0,
                      "csbH248StatsSegPktsRcvd": 0,
                      "csbH248StatsEstablishedTime": "example-string",
                      "csbH248StatsTMaxTimeoutVal": -2147483648,
                      "csbH248StatsRTT": 0,
                      "csbH248StatsLT": 0
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-csbH248StatsEntry",
        "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": "/csbH248StatsTable/csbH248StatsEntry",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:csbH248StatsRev1Table": {
      "get": {
        "summary": "Get csbH248StatsRev1Table data",
        "description": "Retrieve csbH248StatsRev1Table operational data from MIB",
        "tags": [
          "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "description": "This table describes the H.248 statistics for SBC. The index of\n        the table is service index which corresponds to a particular \n        service configured on the SBC and the index assigned to a\n        particular H.248 controller. The other index of this table is\n        csbCallStatsInstanceIndex defined in csbCallStatsInstanceTable.",
                  "properties": {
                    "csbH248StatsRev1Entry": {
                      "type": "array",
                      "description": "An conceptual row in the csbCallStath248Table. There is\n          an entry in this table for the particular Vdbe by a value\n          of csbH248StatsVdbeId. The other indices of this table are\n          csbCallStatsInstanceIndex defined in csbCallStatsInstanceTable\n          and csbCallStatsServiceIndex defined in csbCallStatsTable.",
                      "items": {
                        "type": "object",
                        "properties": {
                          "csbCallStatsInstanceIndex": {
                            "type": "string",
                            "description": "csbCallStatsInstanceIndex",
                            "x-yang-type": "leafref"
                          },
                          "csbCallStatsServiceIndex": {
                            "type": "string",
                            "description": "csbCallStatsServiceIndex",
                            "x-yang-type": "leafref"
                          },
                          "csbH248StatsVdbeId": {
                            "type": "integer",
                            "description": "This object identifies the virtual media gateway id. This is\n            also the index for the table.",
                            "minimum": -2147483648,
                            "maximum": 2147483647
                          },
                          "csbH248StatsRequestsSentRev1": {
                            "type": "integer",
                            "description": "This object indicates the requests sent through the Session\n            Controller Interface to an SBE or DBE.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "csbH248StatsRequestsRcvdRev1": {
                            "type": "integer",
                            "description": "This object indicates the requests received through the\n            Session Controller Interface to an SBE or DBE.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "csbH248StatsRequestsFailedRev1": {
                            "type": "integer",
                            "description": "This object indicates the requests failed on session\n            Controller Interface to an SBE or DBE.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "csbH248StatsRequestsRetriedRev1": {
                            "type": "integer",
                            "description": "This object indicates the requests retried through the Session\n            Controller Interface to an SBE or DBE.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "csbH248StatsRepliesSentRev1": {
                            "type": "integer",
                            "description": "This object indicates the number of replies sent through the\n            Session Controller Interface to an SBE or DBE.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "csbH248StatsRepliesRcvdRev1": {
                            "type": "integer",
                            "description": "This object indicates the number of replies received from the\n            Session Controller Interface to an SBE or DBE.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "csbH248StatsRepliesRetriedRev1": {
                            "type": "integer",
                            "description": "This object indicates the number of replies retried through\n            the Session Controller Interface to an SBE or DBE.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "csbH248StatsSegPktsSentRev1": {
                            "type": "integer",
                            "description": "This object indicates the number of response segments sent by\n            DBE. This field will only be present if segmentation is enabled\n            on this association.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "csbH248StatsSegPktsRcvdRev1": {
                            "type": "integer",
                            "description": "This object indicates the number of response segments received\n            by DBE. This field will only be present if segmentation is\n            enabled on this association.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "csbH248StatsEstablishedTimeRev1": {
                            "type": "string",
                            "description": "This object indicates the H.248 Controller established\n            time (the time at which the association became established).",
                            "format": "binary"
                          },
                          "csbH248StatsTMaxTimeoutValRev1": {
                            "type": "integer",
                            "description": "This object indicates the T-Max timeout value. This field\n            specifies the maximum delay (in milliseconds) for a response\n            from an MGC before deciding that the request has failed.",
                            "minimum": -2147483648,
                            "maximum": 2147483647
                          },
                          "csbH248StatsRTTRev1": {
                            "type": "integer",
                            "description": "This object indicates the calculated RTT value. This field\n            specifies the maximum round trip propagation delay in the \n            network (in milliseconds).",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "csbH248StatsLTRev1": {
                            "type": "integer",
                            "description": "This object indicates the LT value calculated from RTT\n            value and Max timeout value. This field specifies the maximum\n            delay (in milliseconds) for a response from an MGC plus the\n            maximum round trip propagation delay in the network (in\n            milliseconds).",
                            "minimum": 0,
                            "maximum": 4294967295
                          }
                        }
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:csbH248StatsRev1Table": {
                    "csbH248StatsRev1Entry": [
                      {
                        "csbCallStatsInstanceIndex": "1",
                        "csbCallStatsServiceIndex": "1",
                        "csbH248StatsVdbeId": -2147483648,
                        "csbH248StatsRequestsSentRev1": 0,
                        "csbH248StatsRequestsRcvdRev1": 0,
                        "csbH248StatsRequestsFailedRev1": 0,
                        "csbH248StatsRequestsRetriedRev1": 0,
                        "csbH248StatsRepliesSentRev1": 0,
                        "csbH248StatsRepliesRcvdRev1": 0,
                        "csbH248StatsRepliesRetriedRev1": 0,
                        "csbH248StatsSegPktsSentRev1": 0,
                        "csbH248StatsSegPktsRcvdRev1": 0,
                        "csbH248StatsEstablishedTimeRev1": "example-string",
                        "csbH248StatsTMaxTimeoutValRev1": -2147483648,
                        "csbH248StatsRTTRev1": 0,
                        "csbH248StatsLTRev1": 0
                      },
                      {
                        "csbCallStatsInstanceIndex": "2",
                        "csbCallStatsServiceIndex": "2",
                        "csbH248StatsVdbeId": -2147483648,
                        "csbH248StatsRequestsSentRev1": 0,
                        "csbH248StatsRequestsRcvdRev1": 0,
                        "csbH248StatsRequestsFailedRev1": 0,
                        "csbH248StatsRequestsRetriedRev1": 0,
                        "csbH248StatsRepliesSentRev1": 0,
                        "csbH248StatsRepliesRcvdRev1": 0,
                        "csbH248StatsRepliesRetriedRev1": 0,
                        "csbH248StatsSegPktsSentRev1": 0,
                        "csbH248StatsSegPktsRcvdRev1": 0,
                        "csbH248StatsEstablishedTimeRev1": "example-string",
                        "csbH248StatsTMaxTimeoutValRev1": -2147483648,
                        "csbH248StatsRTTRev1": 0,
                        "csbH248StatsLTRev1": 0
                      },
                      {
                        "csbCallStatsInstanceIndex": "3",
                        "csbCallStatsServiceIndex": "3",
                        "csbH248StatsVdbeId": -2147483648,
                        "csbH248StatsRequestsSentRev1": 0,
                        "csbH248StatsRequestsRcvdRev1": 0,
                        "csbH248StatsRequestsFailedRev1": 0,
                        "csbH248StatsRequestsRetriedRev1": 0,
                        "csbH248StatsRepliesSentRev1": 0,
                        "csbH248StatsRepliesRcvdRev1": 0,
                        "csbH248StatsRepliesRetriedRev1": 0,
                        "csbH248StatsSegPktsSentRev1": 0,
                        "csbH248StatsSegPktsRcvdRev1": 0,
                        "csbH248StatsEstablishedTimeRev1": "example-string",
                        "csbH248StatsTMaxTimeoutValRev1": -2147483648,
                        "csbH248StatsRTTRev1": 0,
                        "csbH248StatsLTRev1": 0
                      }
                    ]
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-csbH248StatsRev1Table",
        "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": "/csbH248StatsRev1Table",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:csbH248StatsRev1Table/csbH248StatsRev1Entry": {
      "get": {
        "summary": "Get csbH248StatsRev1Entry list",
        "description": "Retrieve list of csbH248StatsRev1Entry entries from MIB",
        "tags": [
          "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "An conceptual row in the csbCallStath248Table. There is\n          an entry in this table for the particular Vdbe by a value\n          of csbH248StatsVdbeId. The other indices of this table are\n          csbCallStatsInstanceIndex defined in csbCallStatsInstanceTable\n          and csbCallStatsServiceIndex defined in csbCallStatsTable.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "csbCallStatsInstanceIndex": {
                        "type": "string",
                        "description": "csbCallStatsInstanceIndex",
                        "x-yang-type": "leafref"
                      },
                      "csbCallStatsServiceIndex": {
                        "type": "string",
                        "description": "csbCallStatsServiceIndex",
                        "x-yang-type": "leafref"
                      },
                      "csbH248StatsVdbeId": {
                        "type": "integer",
                        "description": "This object identifies the virtual media gateway id. This is\n            also the index for the table.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "csbH248StatsRequestsSentRev1": {
                        "type": "integer",
                        "description": "This object indicates the requests sent through the Session\n            Controller Interface to an SBE or DBE.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbH248StatsRequestsRcvdRev1": {
                        "type": "integer",
                        "description": "This object indicates the requests received through the\n            Session Controller Interface to an SBE or DBE.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbH248StatsRequestsFailedRev1": {
                        "type": "integer",
                        "description": "This object indicates the requests failed on session\n            Controller Interface to an SBE or DBE.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbH248StatsRequestsRetriedRev1": {
                        "type": "integer",
                        "description": "This object indicates the requests retried through the Session\n            Controller Interface to an SBE or DBE.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbH248StatsRepliesSentRev1": {
                        "type": "integer",
                        "description": "This object indicates the number of replies sent through the\n            Session Controller Interface to an SBE or DBE.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbH248StatsRepliesRcvdRev1": {
                        "type": "integer",
                        "description": "This object indicates the number of replies received from the\n            Session Controller Interface to an SBE or DBE.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbH248StatsRepliesRetriedRev1": {
                        "type": "integer",
                        "description": "This object indicates the number of replies retried through\n            the Session Controller Interface to an SBE or DBE.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbH248StatsSegPktsSentRev1": {
                        "type": "integer",
                        "description": "This object indicates the number of response segments sent by\n            DBE. This field will only be present if segmentation is enabled\n            on this association.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbH248StatsSegPktsRcvdRev1": {
                        "type": "integer",
                        "description": "This object indicates the number of response segments received\n            by DBE. This field will only be present if segmentation is\n            enabled on this association.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbH248StatsEstablishedTimeRev1": {
                        "type": "string",
                        "description": "This object indicates the H.248 Controller established\n            time (the time at which the association became established).",
                        "format": "binary"
                      },
                      "csbH248StatsTMaxTimeoutValRev1": {
                        "type": "integer",
                        "description": "This object indicates the T-Max timeout value. This field\n            specifies the maximum delay (in milliseconds) for a response\n            from an MGC before deciding that the request has failed.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "csbH248StatsRTTRev1": {
                        "type": "integer",
                        "description": "This object indicates the calculated RTT value. This field\n            specifies the maximum round trip propagation delay in the \n            network (in milliseconds).",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbH248StatsLTRev1": {
                        "type": "integer",
                        "description": "This object indicates the LT value calculated from RTT\n            value and Max timeout value. This field specifies the maximum\n            delay (in milliseconds) for a response from an MGC plus the\n            maximum round trip propagation delay in the network (in\n            milliseconds).",
                        "minimum": 0,
                        "maximum": 4294967295
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:csbH248StatsRev1Entry": [
                    {
                      "csbCallStatsInstanceIndex": "example-string",
                      "csbCallStatsServiceIndex": "example-string",
                      "csbH248StatsVdbeId": -2147483648,
                      "csbH248StatsRequestsSentRev1": 0,
                      "csbH248StatsRequestsRcvdRev1": 0,
                      "csbH248StatsRequestsFailedRev1": 0,
                      "csbH248StatsRequestsRetriedRev1": 0,
                      "csbH248StatsRepliesSentRev1": 0,
                      "csbH248StatsRepliesRcvdRev1": 0,
                      "csbH248StatsRepliesRetriedRev1": 0,
                      "csbH248StatsSegPktsSentRev1": 0,
                      "csbH248StatsSegPktsRcvdRev1": 0,
                      "csbH248StatsEstablishedTimeRev1": "example-string",
                      "csbH248StatsTMaxTimeoutValRev1": -2147483648,
                      "csbH248StatsRTTRev1": 0,
                      "csbH248StatsLTRev1": 0
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-csbH248StatsRev1Entry",
        "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": "/csbH248StatsRev1Table/csbH248StatsRev1Entry",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:csbCallStatsInstanceEntry": {
      "get": {
        "summary": "Get csbCallStatsInstanceEntry list",
        "description": "Retrieve list of csbCallStatsInstanceEntry entries from MIB",
        "tags": [
          "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "A conceptual row in csbCallStatsInstanceTable. There is an\n          entry in this table for each SBC instance, as identified by a \n          value of csbCallStatsInstanceIndex.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "csbCallStatsInstanceIndex": {
                        "type": "integer",
                        "description": "This object uniquely identifies the sequence number of an\n            entity or slot that is configured per device. This index is\n            assigned arbitrarily by the engine and is not saved over\n            reboots.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbCallStatsInstancePhysicalIndex": {
                        "type": "string",
                        "description": "This object indicates the physical entity for which all the\n            measurements are maintained. The exact type of this\n            entity is described by its entPhysicalVendorType value.",
                        "x-yang-type": "cisco-tc:EntPhysicalIndexOrZero"
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:csbCallStatsInstanceEntry": [
                    {
                      "csbCallStatsInstanceIndex": 1,
                      "csbCallStatsInstancePhysicalIndex": "example-string"
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-csbCallStatsInstanceEntry-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": "/csbCallStatsInstanceEntry",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:csbCallStatsInstanceEntry={csbCallStatsInstanceIndex}": {
      "get": {
        "summary": "Get csbCallStatsInstanceEntry entry",
        "description": "Retrieve specific csbCallStatsInstanceEntry entry by key from MIB",
        "tags": [
          "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB"
        ],
        "parameters": [
          {
            "name": "csbCallStatsInstanceIndex",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            },
            "example": "1"
          },
          {
            "name": "Accept",
            "in": "header",
            "required": false,
            "description": "RESTCONF response media type (RFC 8040)",
            "schema": {
              "type": "string",
              "default": "application/yang-data+json",
              "enum": [
                "application/yang-data+json",
                "application/yang-data+xml"
              ]
            }
          },
          {
            "name": "depth",
            "in": "query",
            "required": false,
            "description": "Limit the depth of returned sub-tree data (RFC 8040 Section 4.8.2). Use 'unbounded' for full depth.",
            "schema": {
              "type": "string",
              "default": "unbounded"
            }
          },
          {
            "name": "fields",
            "in": "query",
            "required": false,
            "description": "Select specific fields to return (RFC 8040 Section 4.8.3). Example: fields=name;status",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "content",
            "in": "query",
            "required": false,
            "description": "Filter by config state: 'config' (config true only), 'nonconfig' (config false only), or 'all'.",
            "schema": {
              "type": "string",
              "enum": [
                "config",
                "nonconfig",
                "all"
              ],
              "default": "all"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "csbCallStatsInstanceIndex": {
                      "type": "integer",
                      "description": "This object uniquely identifies the sequence number of an\n            entity or slot that is configured per device. This index is\n            assigned arbitrarily by the engine and is not saved over\n            reboots.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbCallStatsInstancePhysicalIndex": {
                      "type": "string",
                      "description": "This object indicates the physical entity for which all the\n            measurements are maintained. The exact type of this\n            entity is described by its entPhysicalVendorType value.",
                      "x-yang-type": "cisco-tc:EntPhysicalIndexOrZero"
                    }
                  }
                },
                "example": {
                  "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:csbCallStatsInstanceEntry": {
                    "csbCallStatsInstanceIndex": 1,
                    "csbCallStatsInstancePhysicalIndex": "example-string"
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-csbCallStatsInstanceEntry-4"
      },
      "x-yang-path": "/csbCallStatsInstanceEntry={csbCallStatsInstanceIndex}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "csbCallStatsInstanceIndex"
      ]
    },
    "/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:csbCallStatsEntry": {
      "get": {
        "summary": "Get csbCallStatsEntry list",
        "description": "Retrieve list of csbCallStatsEntry entries from MIB",
        "tags": [
          "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "An conceptual row in the csbCallStatsGlobalStatsTable. There is\n          an entry in this table for the particular service configured on\n          SBC identified by a value of csbCallStatsInstanceIndex. The\n          other index of this table is csbCallStatsInstanceIndex which is\n          defined in csbCallStatsInstanceTable.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "csbCallStatsInstanceIndex": {
                        "type": "string",
                        "description": "csbCallStatsInstanceIndex",
                        "x-yang-type": "leafref"
                      },
                      "csbCallStatsServiceIndex": {
                        "type": "integer",
                        "description": "This object identifies the index of the name of the SBC\n            service configured. This object also acts as an index for the\n            table.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbCallStatsSbcName": {
                        "type": "string",
                        "description": "This object indicates the configured name of the SBC service.\n            The length of this object is zero when value is not assigned\n            to it.",
                        "x-yang-type": "snmp-framework:SnmpAdminString"
                      },
                      "csbCallStatsCallsHigh": {
                        "type": "integer",
                        "description": "This object indicates the maximum number of calls per second\n            processed by the Session Border Controller in past 24 hours.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbCallStatsRate1Sec": {
                        "type": "integer",
                        "description": "This object indicates the average calls per second processed by\n            the Session Border Controller.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbCallStatsCallsLow": {
                        "type": "integer",
                        "description": "This object indicates the minimum calls per second in past 24\n            hours.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbCallStatsAvailableFlows": {
                        "type": "integer",
                        "description": "This object indicates the number of media flows which are\n            available.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbCallStatsUsedFlows": {
                        "type": "integer",
                        "description": "This object indicates the number of media flows which are\n            used. This is for the flow allocated and connected. The flow\n            allocated but not connected is not counted.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbCallStatsPeakFlows": {
                        "type": "integer",
                        "description": "This object indicates the number of peak flows in SBC.\n            This is the highest recorded value for the active flows since\n            the box was booted/reseted.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbCallStatsTotalFlows": {
                        "type": "integer",
                        "description": "This object indicates the total number of media support by this\n            instance of SBC. The total number of flows include the\n            available\n            flows and the active flows. This value is since box was\n            booted/reseted. Total flows include the active flows and the\n            flows allocated but not connected.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbCallStatsUsedSigFlows": {
                        "type": "integer",
                        "description": "This object indicates the number of active signaling flows for\n            signaling pinholes.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbCallStatsPeakSigFlows": {
                        "type": "integer",
                        "description": "This object indicates the peak signaling flow in SBC.\n            This is the highest recorded value for the active signaling\n            flows. This object is calculated using csbCallStatsUsedFlows.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbCallStatsTotalSigFlows": {
                        "type": "integer",
                        "description": "This object indicates the maximum number of Signalling Flows\n            that can be supported by this instance of SBC.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbCallStatsAvailablePktRate": {
                        "type": "integer",
                        "description": "This object indicates the remaining capacity that can be\n            supported by SBC.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbCallStatsUnclassifiedPkts": {
                        "type": "integer",
                        "description": "This object indicates the number of unclassified packets\n            processed by SBC.",
                        "minimum": 0
                      },
                      "csbCallStatsRTPPktsSent": {
                        "type": "integer",
                        "description": "This object indicates the total number of RTP packets sent.",
                        "minimum": 0
                      },
                      "csbCallStatsRTPPktsRcvd": {
                        "type": "integer",
                        "description": "This object indicates the total number of RTP packets\n            received.",
                        "minimum": 0
                      },
                      "csbCallStatsRTPPktsDiscard": {
                        "type": "integer",
                        "description": "This object indicates the total number of RTP packets\n            discarded.",
                        "minimum": 0
                      },
                      "csbCallStatsRTPOctetsSent": {
                        "type": "integer",
                        "description": "This object indicates the number of RTP octets sent by the\n            SBC.",
                        "minimum": 0
                      },
                      "csbCallStatsRTPOctetsRcvd": {
                        "type": "integer",
                        "description": "This object indicates the number of RTP octets received by\n            the SBC.",
                        "minimum": 0
                      },
                      "csbCallStatsRTPOctetsDiscard": {
                        "type": "integer",
                        "description": "This object indicates the number of RTP octets discarded by\n            the SBC.",
                        "minimum": 0
                      },
                      "csbCallStatsNoMediaCount": {
                        "type": "integer",
                        "description": "This object indicates the accumulated No media event\n            count.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbCallStatsRouteErrors": {
                        "type": "integer",
                        "description": "This object indicates the accumulated route error event\n            count. This counter is for the route error of media stream.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbCallStatsAvailableTranscodeFlows": {
                        "type": "integer",
                        "description": "This object indicates the number of additional transcoded flows\n            that this media gateway manager (MGM) entity is currently able\n            to configure.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbCallStatsActiveTranscodeFlows": {
                        "type": "integer",
                        "description": "This object indicates the current number of transcoded\n            flows that are actively forwarding media traffic.  In this\n            context, a flow is a media stream passing through the device.\n            So a single voice call will be counted only once.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbCallStatsPeakTranscodeFlows": {
                        "type": "integer",
                        "description": "This object indicates the peak number of active transcoded\n            flows since the statistics were last reset.  In this context, a\n            flow is a media stream passing through the device, so a single\n            voice call will be counted once.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbCallStatsTotalTranscodeFlows": {
                        "type": "integer",
                        "description": "This object indicates the accumulated total number of\n            transcoded flows.  This count contains both active flows and\n            flows that were allocated but never connected.  In this context,\n            a flow is a media stream passing through the device, so a single\n            voice call will be counted once.",
                        "minimum": 0,
                        "maximum": 4294967295
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:csbCallStatsEntry": [
                    {
                      "csbCallStatsInstanceIndex": "example-string",
                      "csbCallStatsServiceIndex": 1,
                      "csbCallStatsSbcName": "interface-1",
                      "csbCallStatsCallsHigh": 0,
                      "csbCallStatsRate1Sec": 0,
                      "csbCallStatsCallsLow": 0,
                      "csbCallStatsAvailableFlows": 0,
                      "csbCallStatsUsedFlows": 0,
                      "csbCallStatsPeakFlows": 0,
                      "csbCallStatsTotalFlows": 0,
                      "csbCallStatsUsedSigFlows": 0,
                      "csbCallStatsPeakSigFlows": 0,
                      "csbCallStatsTotalSigFlows": 0,
                      "csbCallStatsAvailablePktRate": 0,
                      "csbCallStatsUnclassifiedPkts": 0,
                      "csbCallStatsRTPPktsSent": 0,
                      "csbCallStatsRTPPktsRcvd": 0,
                      "csbCallStatsRTPPktsDiscard": 0,
                      "csbCallStatsRTPOctetsSent": 1234567890,
                      "csbCallStatsRTPOctetsRcvd": 1234567890,
                      "csbCallStatsRTPOctetsDiscard": 1234567890,
                      "csbCallStatsNoMediaCount": 0,
                      "csbCallStatsRouteErrors": 0,
                      "csbCallStatsAvailableTranscodeFlows": 0,
                      "csbCallStatsActiveTranscodeFlows": 0,
                      "csbCallStatsPeakTranscodeFlows": 0,
                      "csbCallStatsTotalTranscodeFlows": 0
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-csbCallStatsEntry-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": "/csbCallStatsEntry",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:csbCurrPeriodicStatsEntry": {
      "get": {
        "summary": "Get csbCurrPeriodicStatsEntry list",
        "description": "Retrieve list of csbCurrPeriodicStatsEntry entries from MIB",
        "tags": [
          "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "An conceptual row in the csbCurrPeriodicStatsTable. There is\n          an entry in this table for the particular controller by a value\n          of csbH248StatsCtrlrIndex. The other indices of this table are\n          csbCallStatsInstanceIndex defined in csbCallStatsInstanceTable\n          and csbCallStatsServiceIndex defined in csbCallStatsTable.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "csbCallStatsInstanceIndex": {
                        "type": "string",
                        "description": "csbCallStatsInstanceIndex",
                        "x-yang-type": "leafref"
                      },
                      "csbCallStatsServiceIndex": {
                        "type": "string",
                        "description": "csbCallStatsServiceIndex",
                        "x-yang-type": "leafref"
                      },
                      "csbCurrPeriodicStatsInterval": {
                        "type": "string",
                        "description": "This object identifies the interval for which the periodic\n            statistics information is to be displayed. The interval\n            values can be 5 min, 15 mins, 1 hour , 1 Day. This object acts\n            as index for the table.",
                        "x-yang-type": "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CiscoSbcPeriodicStatsInterval"
                      },
                      "csbCurrPeriodicStatsActiveCalls": {
                        "type": "integer",
                        "description": "This object indicates the number of calls that have become\n            active during this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbCurrPeriodicStatsActivatingCalls": {
                        "type": "integer",
                        "description": "This object indicates the number of calls that have become\n            activing during this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbCurrPeriodicStatsDeactivatingCalls": {
                        "type": "integer",
                        "description": "This object indicates the number of calls that have become\n            deactiving during this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbCurrPeriodicStatsTotalCallAttempts": {
                        "type": "integer",
                        "description": "This object indicates the number of total call attempts during\n            this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbCurrPeriodicStatsFailedCallAttempts": {
                        "type": "integer",
                        "description": "This object indicates the number of failed call attempts during\n            this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbCurrPeriodicStatsCallRoutingFailure": {
                        "type": "integer",
                        "description": "This object indicates the number of call setup failures due\n            to routing failures during this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbCurrPeriodicStatsCallResourceFailure": {
                        "type": "integer",
                        "description": "This object indicates the number of call setup failures due\n            to resource failures during this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbCurrPeriodicStatsCallMediaFailure": {
                        "type": "integer",
                        "description": "This object indicates the number of call setup failures due\n            to media failure during this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbCurrPeriodicStatsCallSigFailure": {
                        "type": "integer",
                        "description": "This object indicates the number of call setup failures due\n            to signaling failure during this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbCurrPeriodicStatsActiveCallFailure": {
                        "type": "integer",
                        "description": "This object indicates the number of active call failures during\n            this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbCurrPeriodicStatsCongestionFailure": {
                        "type": "integer",
                        "description": "This object indicates the number of call setup failures due\n            to congestion during this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbCurrPeriodicStatsCallSetupPolicyFailure": {
                        "type": "integer",
                        "description": "This object indicates the number of call setup failures due\n            to policy failure during this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbCurrPeriodicStatsCallSetupNAPolicyFailure": {
                        "type": "integer",
                        "description": "This object indicates the number of call setup failures due\n            to NA policy failure during this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbCurrPeriodicStatsCallSetupRoutingPolicyFailure": {
                        "type": "integer",
                        "description": "This object indicates the number of call setup failures due\n            to routing policy failure during this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbCurrPeriodicStatsCallSetupCACPolicyFailure": {
                        "type": "integer",
                        "description": "This object indicates the number of call setup failures due\n            to CAC policy failure during this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbCurrPeriodicStatsCallSetupCACCallLimitFailure": {
                        "type": "integer",
                        "description": "This object indicates the number of call setup failures due\n            to CAC call limit during this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbCurrPeriodicStatsCallSetupCACRateLimitFailure": {
                        "type": "integer",
                        "description": "This object indicates the number of call setup failures due\n            to CAC call rate limit during this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbCurrPeriodicStatsCallSetupCACBandwidthFailure": {
                        "type": "integer",
                        "description": "This object indicates the number of call setup failures due\n            to CAC bandwidth limit during this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbCurrPeriodicStatsCallSetupCACMediaLimitFailure": {
                        "type": "integer",
                        "description": "This object indicates the number of call setup failures due\n            to CAC media limit during this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbCurrPeriodicStatsCallSetupCACMediaUpdateFailure": {
                        "type": "integer",
                        "description": "This object indicates the number of call update failure due\n            to policy failure during this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbCurrPeriodicStatsTimestamp": {
                        "type": "string",
                        "description": "This object indicates the current time at the start of each\n            interval.",
                        "format": "binary"
                      },
                      "csbCurrPeriodicStatsTranscodedCalls": {
                        "type": "integer",
                        "description": "The object indicates the number of transcoded calls that are\n            active during this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbCurrPeriodicStatsTransratedCalls": {
                        "type": "integer",
                        "description": "The object indicates the number of transrated calls that are\n            active during this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbCurrPeriodicStatsTotalCallUpdateFailure": {
                        "type": "integer",
                        "description": "This object indicates the total number of call update failures\n            during this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbCurrPeriodicStatsActiveIpv6Calls": {
                        "type": "integer",
                        "description": "This Object indicates the number of calls through SBC that use\n            IPv6 signaling.  This statistic totals all calls that traverse\n            an IPv6 adjacency on either or both sides of SBC during this\n            interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbCurrPeriodicStatsActiveEmergencyCalls": {
                        "type": "integer",
                        "description": "This object indicates the number of calls through SBC that have\n            been identified as emergency calls (by Number Analysis) during\n            this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbCurrPeriodicStatsActiveE2EmergencyCalls": {
                        "type": "integer",
                        "description": "This object indicates the number of calls through SBC that have\n            been identified as emergency calls (by Number Analysis) and\n            have used the e2 interface to obtain location information for\n            the caller during this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbCurrPeriodicStatsImsRxActiveCalls": {
                        "type": "integer",
                        "description": "This object indicates the total number of active calls which\n            use IMS Rx, during this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbCurrPeriodicStatsImsRxCallSetupFaiures": {
                        "type": "integer",
                        "description": "This object indicates the total call Setup failures owing to\n            IMS Rx failure during this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbCurrPeriodicStatsImsRxCallRenegotiationAttempts": {
                        "type": "integer",
                        "description": "This object indicates the total call renegotiation attempts\n            using IMS Rx during this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbCurrPeriodicStatsImsRxCallRenegotiationFailures": {
                        "type": "integer",
                        "description": "This object indicates the total call renegotiation failures\n            owing to IMS Rx failure during this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbCurrPeriodicStatsAudioTranscodedCalls": {
                        "type": "integer",
                        "description": "The number of active audio transcoded calls through\n            this adjacency or account during this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbCurrPeriodicStatsFaxTranscodedCalls": {
                        "type": "integer",
                        "description": "This object indicates the the number of active fax\n            transcoded calls through this adjacency or account during this\n            interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbCurrPeriodicStatsRtpDisallowedFailures": {
                        "type": "integer",
                        "description": "This object indicates the total call setup failures due to RTP\n            being proposed when not permitted during this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbCurrPeriodicStatsSrtpDisallowedFailures": {
                        "type": "integer",
                        "description": "This object indicates the total call setup failures due to SRTP\n            being proposed when not permitted during this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbCurrPeriodicStatsNonSrtpCalls": {
                        "type": "integer",
                        "description": "This object indicates the number of active calls\n            through this adjacency or account which do not use SRTP on any\n            media channels during this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbCurrPeriodicStatsSrtpNonIwCalls": {
                        "type": "integer",
                        "description": "This object indicates the number of active calls\n            through this adjacency or account that have one or more media\n            channels which use SRTP. This count does not include media \n            channels that provide interworking between RTP and SRTP during\n            this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbCurrPeriodicStatsSrtpIwCalls": {
                        "type": "integer",
                        "description": "This object indicates the number of active calls\n            through this adjacency or account that have one or more media\n            channels that provide interworking between RTP and SRTP during\n            this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbCurrPeriodicStatsDtmfIw2833Calls": {
                        "type": "integer",
                        "description": "This object indicates the number of active calls\n            through this adjacency or account for which DTMF interworking\n            is enabled between DTMF in signaling and DTMF in media via RFC\n            2833 during this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbCurrPeriodicStatsDtmfIwInbandCalls": {
                        "type": "integer",
                        "description": "This object indicates the number of active calls\n            through this adjacency or account for which DTMF interworking\n            is enabled between DTMF in signaling and DTMF in media via \n            inband DTMF tones during this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbCurrPeriodicStatsDtmfIw2833InbandCalls": {
                        "type": "integer",
                        "description": "This object indicates the number of active calls\n            through this adjacency or account for which DTMF interworking\n            is enabled between DTMF in media via RFC 2833 and DTMF in media\n            via inband DTMF tones during this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbCurrPeriodicStatsTotalTapsRequested": {
                        "type": "integer",
                        "description": "This object indicates the lawful intercept tap attempts\n            requested within the scope of this query during this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbCurrPeriodicStatsTotalTapsSucceeded": {
                        "type": "integer",
                        "description": "This object indicates the lawful intercept tap attempts that\n            have been successfully implemented within the scope of this\n            query during this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbCurrPeriodicStatsCurrentTaps": {
                        "type": "integer",
                        "description": "This object indicates the Lawful intercept taps currently in\n            place on calls within the scope of this query during this\n            interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbCurrPeriodicIpsecCalls": {
                        "type": "integer",
                        "description": "The number of active calls on this adjacency or account which\n            are to or from registered subscribers using IPSEC during this\n            interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:csbCurrPeriodicStatsEntry": [
                    {
                      "csbCallStatsInstanceIndex": "example-string",
                      "csbCallStatsServiceIndex": "example-string",
                      "csbCurrPeriodicStatsInterval": "example-string",
                      "csbCurrPeriodicStatsActiveCalls": 0,
                      "csbCurrPeriodicStatsActivatingCalls": 0,
                      "csbCurrPeriodicStatsDeactivatingCalls": 0,
                      "csbCurrPeriodicStatsTotalCallAttempts": 0,
                      "csbCurrPeriodicStatsFailedCallAttempts": 0,
                      "csbCurrPeriodicStatsCallRoutingFailure": 0,
                      "csbCurrPeriodicStatsCallResourceFailure": 0,
                      "csbCurrPeriodicStatsCallMediaFailure": 0,
                      "csbCurrPeriodicStatsCallSigFailure": 0,
                      "csbCurrPeriodicStatsActiveCallFailure": 0,
                      "csbCurrPeriodicStatsCongestionFailure": 0,
                      "csbCurrPeriodicStatsCallSetupPolicyFailure": 0,
                      "csbCurrPeriodicStatsCallSetupNAPolicyFailure": 0,
                      "csbCurrPeriodicStatsCallSetupRoutingPolicyFailure": 0,
                      "csbCurrPeriodicStatsCallSetupCACPolicyFailure": 0,
                      "csbCurrPeriodicStatsCallSetupCACCallLimitFailure": 0,
                      "csbCurrPeriodicStatsCallSetupCACRateLimitFailure": 0,
                      "csbCurrPeriodicStatsCallSetupCACBandwidthFailure": 0,
                      "csbCurrPeriodicStatsCallSetupCACMediaLimitFailure": 0,
                      "csbCurrPeriodicStatsCallSetupCACMediaUpdateFailure": 0,
                      "csbCurrPeriodicStatsTimestamp": "example-string",
                      "csbCurrPeriodicStatsTranscodedCalls": 0,
                      "csbCurrPeriodicStatsTransratedCalls": 0,
                      "csbCurrPeriodicStatsTotalCallUpdateFailure": 0,
                      "csbCurrPeriodicStatsActiveIpv6Calls": 0,
                      "csbCurrPeriodicStatsActiveEmergencyCalls": 0,
                      "csbCurrPeriodicStatsActiveE2EmergencyCalls": 0,
                      "csbCurrPeriodicStatsImsRxActiveCalls": 0,
                      "csbCurrPeriodicStatsImsRxCallSetupFaiures": 0,
                      "csbCurrPeriodicStatsImsRxCallRenegotiationAttempts": 0,
                      "csbCurrPeriodicStatsImsRxCallRenegotiationFailures": 0,
                      "csbCurrPeriodicStatsAudioTranscodedCalls": 0,
                      "csbCurrPeriodicStatsFaxTranscodedCalls": 0,
                      "csbCurrPeriodicStatsRtpDisallowedFailures": 0,
                      "csbCurrPeriodicStatsSrtpDisallowedFailures": 0,
                      "csbCurrPeriodicStatsNonSrtpCalls": 0,
                      "csbCurrPeriodicStatsSrtpNonIwCalls": 0,
                      "csbCurrPeriodicStatsSrtpIwCalls": 0,
                      "csbCurrPeriodicStatsDtmfIw2833Calls": 0,
                      "csbCurrPeriodicStatsDtmfIwInbandCalls": 0,
                      "csbCurrPeriodicStatsDtmfIw2833InbandCalls": 0,
                      "csbCurrPeriodicStatsTotalTapsRequested": 0,
                      "csbCurrPeriodicStatsTotalTapsSucceeded": 0,
                      "csbCurrPeriodicStatsCurrentTaps": 0,
                      "csbCurrPeriodicIpsecCalls": 0
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-csbCurrPeriodicStatsEntry-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": "/csbCurrPeriodicStatsEntry",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:csbHistoryStatsEntry": {
      "get": {
        "summary": "Get csbHistoryStatsEntry list",
        "description": "Retrieve list of csbHistoryStatsEntry entries from MIB",
        "tags": [
          "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "A conceptual row in the csbHistoryStatsTable. The entries in\n          this table are updated as interval completes in the\n          csbCurrPeriodicStatsTable table and the data is moved from that\n          table to this one.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "csbCallStatsInstanceIndex": {
                        "type": "string",
                        "description": "csbCallStatsInstanceIndex",
                        "x-yang-type": "leafref"
                      },
                      "csbCallStatsServiceIndex": {
                        "type": "string",
                        "description": "csbCallStatsServiceIndex",
                        "x-yang-type": "leafref"
                      },
                      "csbHistoryStatsInterval": {
                        "type": "string",
                        "description": "This object identifies the interval for which the history\n            statistics information is to be displayed. The interval\n            values can be 5 min, 15 mins, 1 hour , 1 day. This object acts\n            as index for the table.",
                        "x-yang-type": "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CiscoSbcPeriodicStatsInterval"
                      },
                      "csbHistoryStatsElements": {
                        "type": "integer",
                        "description": "The platform assigns a number starting with one and\n            increments it each for each new row. When the maximum         \n            number of row is reached the oldest rows are deleted. It is up\n            to the platform to determine the number of entries for each\n            interval. It is recommended that each platform support at least\n            one entry for 5 min, 15 mins, 1 hour and 1 day intervals.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbHistoryStatsActiveCalls": {
                        "type": "integer",
                        "description": "This object indicates the number of active calls history during\n            this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbHistoryStatsTotalCallAttempts": {
                        "type": "integer",
                        "description": "This object indicates the number of total call attempts history\n            during this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbHistoryStatsFailedCallAttempts": {
                        "type": "integer",
                        "description": "This object indicates the number of failed call attempts during\n            this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbHistoryStatsCallRoutingFailure": {
                        "type": "integer",
                        "description": "This object indicates the number of call setup failures due\n            to routing failures during this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbHistoryStatsCallResourceFailure": {
                        "type": "integer",
                        "description": "This object indicates the number of call setup failures due\n            to resource failures during this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbHistoryStatsCallMediaFailure": {
                        "type": "integer",
                        "description": "This object indicates the number of call setup failures due\n            to media failure during this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbHistoryStatsFailSigFailure": {
                        "type": "integer",
                        "description": "This object indicates the number of call setup failures due\n            to signaling failure during this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbHistoryStatsActiveCallFailure": {
                        "type": "integer",
                        "description": "This object indicates the number of active call failures during\n            this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbHistoryStatsCongestionFailure": {
                        "type": "integer",
                        "description": "This object indicates the number of call setup failures due\n            to congestion during this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbHistoryStatsCallSetupPolicyFailure": {
                        "type": "integer",
                        "description": "This object indicates the number of call setup failures due\n            to some policy violations during this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbHistoryStatsCallSetupNAPolicyFailure": {
                        "type": "integer",
                        "description": "This object indicates the number of call setup failures due\n            to NA policy failure during this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbHistoryStatsCallSetupRoutingPolicyFailure": {
                        "type": "integer",
                        "description": "This object indicates the number of call setup failures due\n            to routing policy failure during this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbHistoryStatsCallSetupCACPolicyFailure": {
                        "type": "integer",
                        "description": "This object indicates the number of call setup failures due\n            to CAC policy failure during this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbHistoryStatsCallSetupCACCallLimitFailure": {
                        "type": "integer",
                        "description": "This object indicates the number of call setup failures due\n            to CAC call limit during this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbHistoryStatsCallSetupCACRateLimitFailure": {
                        "type": "integer",
                        "description": "This object indicates the number of call setup failures due\n            to CAC call rate limit during this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbHistoryStatsCallSetupCACBandwidthFailure": {
                        "type": "integer",
                        "description": "This object indicates the number of call setup failures due\n            to CAC bandwidth limit during this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbHistoryStatsCallSetupCACMediaLimitFailure": {
                        "type": "integer",
                        "description": "This object indicates the number of call setup failures due\n            to CAC media limit during this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbHistoryStatsCallSetupCACMediaUpdateFailure": {
                        "type": "integer",
                        "description": "This object indicates the number of call update failure due\n            to policy failure during this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbHistoryStatsTimestamp": {
                        "type": "string",
                        "description": "This object indicates the time at the start of the interval\n            when measurements were first collected for this interval in the\n            csbCurrPeriodicStatsTable.",
                        "format": "binary"
                      },
                      "csbHistroyStatsTranscodedCalls": {
                        "type": "integer",
                        "description": "The object indicates the number of active transcoded\n            calls during this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbHistroyStatsTransratedCalls": {
                        "type": "integer",
                        "description": "The object indicates the number of active transrated\n            calls during this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbHistoryStatsTotalCallUpdateFailure": {
                        "type": "integer",
                        "description": "This object indicates the total call update failures during\n            this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbHistoryStatsActiveIpv6Calls": {
                        "type": "integer",
                        "description": "This Object indicates the number of calls through SBC that use\n            IPv6 signaling.  This statistic totals all calls that traverse\n            an IPv6 adjacency on either or both sides of SBC during this\n            interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbHistoryStatsActiveEmergencyCalls": {
                        "type": "integer",
                        "description": "This object indicates the number of calls through SBC that have\n            been identified as emergency calls (by Number Analysis)  during\n            this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbHistoryStatsActiveE2EmergencyCalls": {
                        "type": "integer",
                        "description": "This object indicates the number of calls through SBC that have\n            been identified as emergency calls (by Number Analysis) and\n            have used the e2 interface to obtain location information for\n            the\n            caller.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbHistoryStatsImsRxActiveCalls": {
                        "type": "integer",
                        "description": "This object indicates the total number of active calls which\n            use IMS Rx, during this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbHistoryStatsImsRxCallSetupFailures": {
                        "type": "integer",
                        "description": "This object indicates the total call setup failures owing to\n            IMS Rx failure during this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbHistoryStatsImsRxCallRenegotiationAttempts": {
                        "type": "integer",
                        "description": "This object indicates the total call renegotiation attempts\n            using IMS Rx during this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbHistoryStatsImsRxCallRenegotiationFailures": {
                        "type": "integer",
                        "description": "This object indicates the total call renegotiation failures\n            owing to IMS Rx failure during this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbHistoryStatsAudioTranscodedCalls": {
                        "type": "integer",
                        "description": "The number of active audio transcoded calls through\n            this adjacency or account during this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbHistoryStatsFaxTranscodedCalls": {
                        "type": "integer",
                        "description": "This object indicates the the number of active fax\n            transcoded calls through this adjacency or account during this\n            interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbHistoryStatsRtpDisallowedFailures": {
                        "type": "integer",
                        "description": "This object indicates the total call setup failures due to RTP\n            being proposed when not permitted during this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbHistoryStatsSrtpDisallowedFailures": {
                        "type": "integer",
                        "description": "This object indicates the total call setup failures due to SRTP\n            being proposed when not permitted during this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbHistoryStatsNonSrtpCalls": {
                        "type": "integer",
                        "description": "This object indicates the number of active calls\n            through this adjacency or account which do not use SRTP on any\n            media channels during this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbHistoryStatsSrtpNonIwCalls": {
                        "type": "integer",
                        "description": "This object indicates the number of active calls\n            through this adjacency or account that have one or more media\n            channels that use SRTP but no media channels that provide\n            interworking between RTP and SRTP during this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbHistoryStatsSrtpIwCalls": {
                        "type": "integer",
                        "description": "This object indicates the number of active calls\n            through this adjacency or account that have one or more media\n            channels that provide interworking between RTP and SRTP during\n            this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbHistoryStatsDtmfIw2833Calls": {
                        "type": "integer",
                        "description": "This object indicates the number of active calls\n            through this adjacency or account for which DTMF interworking\n            is enabled between DTMF in signaling and DTMF in media via RFC\n            2833 during this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbHistoryStatsDtmfIwInbandCalls": {
                        "type": "integer",
                        "description": "This object indicates the number of active calls\n            through this adjacency or account for which DTMF interworking\n            is enabled between DTMF in signaling and DTMF in media via\n            inband DTMF tones during this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbHistoryStatsDtmfIw2833InbandCalls": {
                        "type": "integer",
                        "description": "This object indicates the number of active calls\n            through this adjacency or account for which DTMF interworking\n            is enabled between DTMF in media via RFC 2833 and DTMF in media\n            via inband DTMF tones during this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbHistoryStatsTotalTapsRequested": {
                        "type": "integer",
                        "description": "This object indicates the lawful intercept tap attempts\n            requested within the scope of this query during this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbHistoryStatsTotalTapsSucceeded": {
                        "type": "integer",
                        "description": "This object indicates the lawful intercept tap attempts that\n            have been successfully implemented within the scope of this\n            query during this interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbHistoryStatsCurrentTaps": {
                        "type": "integer",
                        "description": "This object indicates the Lawful intercept taps currently in\n            place on calls within the scope of this query during this\n            interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbHistoryStatsIpsecCalls": {
                        "type": "integer",
                        "description": "The number of active calls on this adjacency or account which\n            are to or from registered subscribers using IPSEC during this\n            interval.",
                        "minimum": 0,
                        "maximum": 4294967295
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:csbHistoryStatsEntry": [
                    {
                      "csbCallStatsInstanceIndex": "example-string",
                      "csbCallStatsServiceIndex": "example-string",
                      "csbHistoryStatsInterval": "example-string",
                      "csbHistoryStatsElements": 0,
                      "csbHistoryStatsActiveCalls": 0,
                      "csbHistoryStatsTotalCallAttempts": 0,
                      "csbHistoryStatsFailedCallAttempts": 0,
                      "csbHistoryStatsCallRoutingFailure": 0,
                      "csbHistoryStatsCallResourceFailure": 0,
                      "csbHistoryStatsCallMediaFailure": 0,
                      "csbHistoryStatsFailSigFailure": 0,
                      "csbHistoryStatsActiveCallFailure": 0,
                      "csbHistoryStatsCongestionFailure": 0,
                      "csbHistoryStatsCallSetupPolicyFailure": 0,
                      "csbHistoryStatsCallSetupNAPolicyFailure": 0,
                      "csbHistoryStatsCallSetupRoutingPolicyFailure": 0,
                      "csbHistoryStatsCallSetupCACPolicyFailure": 0,
                      "csbHistoryStatsCallSetupCACCallLimitFailure": 0,
                      "csbHistoryStatsCallSetupCACRateLimitFailure": 0,
                      "csbHistoryStatsCallSetupCACBandwidthFailure": 0,
                      "csbHistoryStatsCallSetupCACMediaLimitFailure": 0,
                      "csbHistoryStatsCallSetupCACMediaUpdateFailure": 0,
                      "csbHistoryStatsTimestamp": "example-string",
                      "csbHistroyStatsTranscodedCalls": 0,
                      "csbHistroyStatsTransratedCalls": 0,
                      "csbHistoryStatsTotalCallUpdateFailure": 0,
                      "csbHistoryStatsActiveIpv6Calls": 0,
                      "csbHistoryStatsActiveEmergencyCalls": 0,
                      "csbHistoryStatsActiveE2EmergencyCalls": 0,
                      "csbHistoryStatsImsRxActiveCalls": 0,
                      "csbHistoryStatsImsRxCallSetupFailures": 0,
                      "csbHistoryStatsImsRxCallRenegotiationAttempts": 0,
                      "csbHistoryStatsImsRxCallRenegotiationFailures": 0,
                      "csbHistoryStatsAudioTranscodedCalls": 0,
                      "csbHistoryStatsFaxTranscodedCalls": 0,
                      "csbHistoryStatsRtpDisallowedFailures": 0,
                      "csbHistoryStatsSrtpDisallowedFailures": 0,
                      "csbHistoryStatsNonSrtpCalls": 0,
                      "csbHistoryStatsSrtpNonIwCalls": 0,
                      "csbHistoryStatsSrtpIwCalls": 0,
                      "csbHistoryStatsDtmfIw2833Calls": 0,
                      "csbHistoryStatsDtmfIwInbandCalls": 0,
                      "csbHistoryStatsDtmfIw2833InbandCalls": 0,
                      "csbHistoryStatsTotalTapsRequested": 0,
                      "csbHistoryStatsTotalTapsSucceeded": 0,
                      "csbHistoryStatsCurrentTaps": 0,
                      "csbHistoryStatsIpsecCalls": 0
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-csbHistoryStatsEntry-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": "/csbHistoryStatsEntry",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:csbPerFlowStatsEntry": {
      "get": {
        "summary": "Get csbPerFlowStatsEntry list",
        "description": "Retrieve list of csbPerFlowStatsEntry entries from MIB",
        "tags": [
          "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "csbPerFlowStatsEntry",
                  "items": {
                    "type": "object",
                    "properties": {
                      "csbCallStatsInstanceIndex": {
                        "type": "string",
                        "description": "csbCallStatsInstanceIndex",
                        "x-yang-type": "leafref"
                      },
                      "csbCallStatsServiceIndex": {
                        "type": "string",
                        "description": "csbCallStatsServiceIndex",
                        "x-yang-type": "leafref"
                      },
                      "csbPerFlowStatsVdbeId": {
                        "type": "integer",
                        "description": "This object identifies the virtual media gateway id. This\n            object also acts as an index for the table.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "csbPerFlowStatsGateId": {
                        "type": "integer",
                        "description": "This object identifies the gate id. This object also acts as\n            an index for the table.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "csbPerFlowStatsFlowPairId": {
                        "type": "integer",
                        "description": "This object identifies the flow pair id. This object also acts\n            as an index for the table.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "csbPerFlowStatsSideId": {
                        "type": "string",
                        "description": "This object identifies the index corresponding to side of flow\n            pair either side A or side B. This object also acts as an index\n            for the table."
                      },
                      "csbPerFlowStatsFlowType": {
                        "type": "string",
                        "description": "This object indicates the type of the flow, like media flow,\n            signaling flow etc."
                      },
                      "csbPerFlowStatsRTPPktsSent": {
                        "type": "integer",
                        "description": "This object indicates the number of RTP packets sent per flow\n            by the SBC.",
                        "minimum": 0
                      },
                      "csbPerFlowStatsRTPPktsRcvd": {
                        "type": "integer",
                        "description": "This object indicates the number of RTP packets received per\n            flow by the SBC.",
                        "minimum": 0
                      },
                      "csbPerFlowStatsRTPPktsDiscard": {
                        "type": "integer",
                        "description": "This object indicates the number of RTP packets discarded  per\n            flow by the SBC.",
                        "minimum": 0
                      },
                      "csbPerFlowStatsRTPOctetsSent": {
                        "type": "integer",
                        "description": "This object indicates the number of RTP octets sent\n            per flow by the SBC.",
                        "minimum": 0
                      },
                      "csbPerFlowStatsRTPOctetsRcvd": {
                        "type": "integer",
                        "description": "This object indicates the number of RTP octets received\n            per flow by the SBC.",
                        "minimum": 0
                      },
                      "csbPerFlowStatsRTPOctetsDiscard": {
                        "type": "integer",
                        "description": "This object indicates the number of RTP octets discarded\n            per flow by the SBC.",
                        "minimum": 0
                      },
                      "csbPerFlowStatsRTCPPktsSent": {
                        "type": "integer",
                        "description": "The number of RTP packets sent by the remote end point to this\n            MG on this flow. Comparing this with the local number of RTP\n            packets received from the remote end point gives an indication\n            of how many incoming  packets were dropped on this leg of the\n            call. This information is from RTCP packet. Not all endpoints\n            report this statistic, if it is not available it will be set to\n            zero. This statistic will not be available for signaling flows.",
                        "minimum": 0
                      },
                      "csbPerFlowStatsRTCPPktsRcvd": {
                        "type": "integer",
                        "description": "The number of RTP packets received by the remote end point from\n            this MG on this flow. Comparing this with the local number of\n            RTP packets sent from this MG to the remote endpoint gives an\n            indication of how many outgoing packets were dropped on this\n            leg of the call. This information is from RTCP packet. Not all\n            endpoints report this statistic, if it is not available it will\n            be set to zero. This statistic will not be available for\n            signaling flows.",
                        "minimum": 0
                      },
                      "csbPerFlowStatsRTCPPktsLost": {
                        "type": "integer",
                        "description": "The number of RTP packets reported as lost by the remote end\n            point on this flow. This information is from RTCP packet. Not\n            all endpoints report this statistic, if it is not available it\n            will be set to zero. This statistic will not be available for\n            signaling flows.",
                        "minimum": 0
                      },
                      "csbPerFlowStatsEPJitter": {
                        "type": "integer",
                        "description": "This object indicates the End Point jitter per flow in the\n            SBC.",
                        "minimum": 0
                      },
                      "csbPerFlowStatsTmanPerMbs": {
                        "type": "integer",
                        "description": "This object indicates the maximum burst size for the\n            current FlowPair.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbPerFlowStatsTmanPerSdr": {
                        "type": "integer",
                        "description": "This object indicates the bandwidth reserved for flow in\n            kilobytes/second.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbPerFlowStatsDscpSettings": {
                        "type": "string",
                        "description": "This object indicates the mark packets sent for the\n            current FlowPair with, or zero if none set. The DSCP is a 6-bit\n            value, which will be present in the top 6 bits of the lowest\n            byte of this field.",
                        "x-yang-type": "snmp-framework:SnmpAdminString"
                      },
                      "csbPerFlowStatsAdrStatus": {
                        "type": "string",
                        "description": "This object indicates whether the flow on the current\n            FlowPair has subscribed for the NAT latch event.",
                        "format": "binary"
                      },
                      "csbPerFlowStatsQASettings": {
                        "type": "string",
                        "description": "This object indicates the flow on the current FlowPair has\n            subscribed for the media loss event.",
                        "format": "binary"
                      },
                      "csbPerFlowStatsRTPPktsLost": {
                        "type": "integer",
                        "description": "This object indicates the number of RTP packets lost per flow\n            by the SBC.",
                        "minimum": 0
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:csbPerFlowStatsEntry": [
                    {
                      "csbCallStatsInstanceIndex": "example-string",
                      "csbCallStatsServiceIndex": "example-string",
                      "csbPerFlowStatsVdbeId": -2147483648,
                      "csbPerFlowStatsGateId": -2147483648,
                      "csbPerFlowStatsFlowPairId": -2147483648,
                      "csbPerFlowStatsSideId": "example-string",
                      "csbPerFlowStatsFlowType": "ethernetCsmacd(6)",
                      "csbPerFlowStatsRTPPktsSent": 0,
                      "csbPerFlowStatsRTPPktsRcvd": 0,
                      "csbPerFlowStatsRTPPktsDiscard": 0,
                      "csbPerFlowStatsRTPOctetsSent": 1234567890,
                      "csbPerFlowStatsRTPOctetsRcvd": 1234567890,
                      "csbPerFlowStatsRTPOctetsDiscard": 1234567890,
                      "csbPerFlowStatsRTCPPktsSent": 0,
                      "csbPerFlowStatsRTCPPktsRcvd": 0,
                      "csbPerFlowStatsRTCPPktsLost": 0,
                      "csbPerFlowStatsEPJitter": 0,
                      "csbPerFlowStatsTmanPerMbs": 0,
                      "csbPerFlowStatsTmanPerSdr": 0,
                      "csbPerFlowStatsDscpSettings": "example-string",
                      "csbPerFlowStatsAdrStatus": "up(1)",
                      "csbPerFlowStatsQASettings": "example-string",
                      "csbPerFlowStatsRTPPktsLost": 0
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-csbPerFlowStatsEntry-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": "/csbPerFlowStatsEntry",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:csbH248StatsEntry": {
      "get": {
        "summary": "Get csbH248StatsEntry list",
        "description": "Retrieve list of csbH248StatsEntry entries from MIB",
        "tags": [
          "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "An conceptual row in the csbCallStath248Table. There is\n          an entry in this table for the particular controller by a value\n          of csbH248StatsCtrlrIndex. The other indices of this table are\n          csbCallStatsInstanceIndex defined in csbCallStatsInstanceTable\n          and csbCallStatsServiceIndex defined in csbCallStatsTable.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "csbCallStatsInstanceIndex": {
                        "type": "string",
                        "description": "csbCallStatsInstanceIndex",
                        "x-yang-type": "leafref"
                      },
                      "csbCallStatsServiceIndex": {
                        "type": "string",
                        "description": "csbCallStatsServiceIndex",
                        "x-yang-type": "leafref"
                      },
                      "csbH248StatsCtrlrIndex": {
                        "type": "integer",
                        "description": "This object identifies the controller index of the H.248\n            server. This is also the index for the table.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "csbH248StatsRequestsSent": {
                        "type": "integer",
                        "description": "This object indicates the requests sent through the Session\n            Controller Interface to an SBE or DBE.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbH248StatsRequestsRcvd": {
                        "type": "integer",
                        "description": "This object indicates the requests received through the\n            Session Controller Interface to an SBE or DBE.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbH248StatsRequestsFailed": {
                        "type": "integer",
                        "description": "This object indicates the requests failed on session\n            Controller Interface to an SBE or DBE.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbH248StatsRequestsRetried": {
                        "type": "integer",
                        "description": "This object indicates the requests retried through the Session\n            Controller Interface to an SBE or DBE.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbH248StatsRepliesSent": {
                        "type": "integer",
                        "description": "This object indicates the number of replies sent through the\n            Session Controller Interface to an SBE or DBE.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbH248StatsRepliesRcvd": {
                        "type": "integer",
                        "description": "This object indicates the number of replies received from the\n            Session Controller Interface to an SBE or DBE.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbH248StatsRepliesRetried": {
                        "type": "integer",
                        "description": "This object indicates the number of replies retried through\n            the Session Controller Interface to an SBE or DBE.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbH248StatsSegPktsSent": {
                        "type": "integer",
                        "description": "This object indicates the number of packets sent through the\n            Session Controller Interface to an SBE or DBE.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbH248StatsSegPktsRcvd": {
                        "type": "integer",
                        "description": "This object indicates the number of packets received from the\n            Session Controller Interface to an SBE or DBE.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbH248StatsEstablishedTime": {
                        "type": "string",
                        "description": "This object indicates the H.248 Controller established\n            time (the time at which the association became established).",
                        "format": "binary"
                      },
                      "csbH248StatsTMaxTimeoutVal": {
                        "type": "integer",
                        "description": "This object indicates the T-Max timeout value. This field\n            specifies the maximum delay (in milliseconds) for a response\n            from an MGC before deciding that the request has failed.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "csbH248StatsRTT": {
                        "type": "integer",
                        "description": "This object indicates the calculated RTT value. This field\n            specifies the maximum round trip propagation delay in the \n            network (in milliseconds).",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbH248StatsLT": {
                        "type": "integer",
                        "description": "This object indicates the LT value calculated from RTT\n            value and Max timeout value. This field specifies the maximum\n            delay (in milliseconds) for a response from an MGC plus the\n            maximum round trip propagation delay in the network (in\n            milliseconds).",
                        "minimum": 0,
                        "maximum": 4294967295
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:csbH248StatsEntry": [
                    {
                      "csbCallStatsInstanceIndex": "example-string",
                      "csbCallStatsServiceIndex": "example-string",
                      "csbH248StatsCtrlrIndex": 1,
                      "csbH248StatsRequestsSent": 0,
                      "csbH248StatsRequestsRcvd": 0,
                      "csbH248StatsRequestsFailed": 0,
                      "csbH248StatsRequestsRetried": 0,
                      "csbH248StatsRepliesSent": 0,
                      "csbH248StatsRepliesRcvd": 0,
                      "csbH248StatsRepliesRetried": 0,
                      "csbH248StatsSegPktsSent": 0,
                      "csbH248StatsSegPktsRcvd": 0,
                      "csbH248StatsEstablishedTime": "example-string",
                      "csbH248StatsTMaxTimeoutVal": -2147483648,
                      "csbH248StatsRTT": 0,
                      "csbH248StatsLT": 0
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-csbH248StatsEntry-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": "/csbH248StatsEntry",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:csbH248StatsRev1Entry": {
      "get": {
        "summary": "Get csbH248StatsRev1Entry list",
        "description": "Retrieve list of csbH248StatsRev1Entry entries from MIB",
        "tags": [
          "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "An conceptual row in the csbCallStath248Table. There is\n          an entry in this table for the particular Vdbe by a value\n          of csbH248StatsVdbeId. The other indices of this table are\n          csbCallStatsInstanceIndex defined in csbCallStatsInstanceTable\n          and csbCallStatsServiceIndex defined in csbCallStatsTable.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "csbCallStatsInstanceIndex": {
                        "type": "string",
                        "description": "csbCallStatsInstanceIndex",
                        "x-yang-type": "leafref"
                      },
                      "csbCallStatsServiceIndex": {
                        "type": "string",
                        "description": "csbCallStatsServiceIndex",
                        "x-yang-type": "leafref"
                      },
                      "csbH248StatsVdbeId": {
                        "type": "integer",
                        "description": "This object identifies the virtual media gateway id. This is\n            also the index for the table.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "csbH248StatsRequestsSentRev1": {
                        "type": "integer",
                        "description": "This object indicates the requests sent through the Session\n            Controller Interface to an SBE or DBE.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbH248StatsRequestsRcvdRev1": {
                        "type": "integer",
                        "description": "This object indicates the requests received through the\n            Session Controller Interface to an SBE or DBE.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbH248StatsRequestsFailedRev1": {
                        "type": "integer",
                        "description": "This object indicates the requests failed on session\n            Controller Interface to an SBE or DBE.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbH248StatsRequestsRetriedRev1": {
                        "type": "integer",
                        "description": "This object indicates the requests retried through the Session\n            Controller Interface to an SBE or DBE.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbH248StatsRepliesSentRev1": {
                        "type": "integer",
                        "description": "This object indicates the number of replies sent through the\n            Session Controller Interface to an SBE or DBE.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbH248StatsRepliesRcvdRev1": {
                        "type": "integer",
                        "description": "This object indicates the number of replies received from the\n            Session Controller Interface to an SBE or DBE.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbH248StatsRepliesRetriedRev1": {
                        "type": "integer",
                        "description": "This object indicates the number of replies retried through\n            the Session Controller Interface to an SBE or DBE.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbH248StatsSegPktsSentRev1": {
                        "type": "integer",
                        "description": "This object indicates the number of response segments sent by\n            DBE. This field will only be present if segmentation is enabled\n            on this association.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbH248StatsSegPktsRcvdRev1": {
                        "type": "integer",
                        "description": "This object indicates the number of response segments received\n            by DBE. This field will only be present if segmentation is\n            enabled on this association.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbH248StatsEstablishedTimeRev1": {
                        "type": "string",
                        "description": "This object indicates the H.248 Controller established\n            time (the time at which the association became established).",
                        "format": "binary"
                      },
                      "csbH248StatsTMaxTimeoutValRev1": {
                        "type": "integer",
                        "description": "This object indicates the T-Max timeout value. This field\n            specifies the maximum delay (in milliseconds) for a response\n            from an MGC before deciding that the request has failed.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "csbH248StatsRTTRev1": {
                        "type": "integer",
                        "description": "This object indicates the calculated RTT value. This field\n            specifies the maximum round trip propagation delay in the \n            network (in milliseconds).",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "csbH248StatsLTRev1": {
                        "type": "integer",
                        "description": "This object indicates the LT value calculated from RTT\n            value and Max timeout value. This field specifies the maximum\n            delay (in milliseconds) for a response from an MGC plus the\n            maximum round trip propagation delay in the network (in\n            milliseconds).",
                        "minimum": 0,
                        "maximum": 4294967295
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:csbH248StatsRev1Entry": [
                    {
                      "csbCallStatsInstanceIndex": "example-string",
                      "csbCallStatsServiceIndex": "example-string",
                      "csbH248StatsVdbeId": -2147483648,
                      "csbH248StatsRequestsSentRev1": 0,
                      "csbH248StatsRequestsRcvdRev1": 0,
                      "csbH248StatsRequestsFailedRev1": 0,
                      "csbH248StatsRequestsRetriedRev1": 0,
                      "csbH248StatsRepliesSentRev1": 0,
                      "csbH248StatsRepliesRcvdRev1": 0,
                      "csbH248StatsRepliesRetriedRev1": 0,
                      "csbH248StatsSegPktsSentRev1": 0,
                      "csbH248StatsSegPktsRcvdRev1": 0,
                      "csbH248StatsEstablishedTimeRev1": "example-string",
                      "csbH248StatsTMaxTimeoutValRev1": -2147483648,
                      "csbH248StatsRTTRev1": 0,
                      "csbH248StatsLTRev1": 0
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-csbH248StatsRev1Entry-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": "/csbH248StatsRev1Entry",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:csbCallStatsTable/csbCallStatsEntry={csbCallStatsInstanceIndex},{csbCallStatsServiceIndex}": {
      "get": {
        "summary": "Get csbCallStatsEntry entry",
        "description": "Retrieve specific csbCallStatsEntry entry by key from MIB",
        "tags": [
          "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB"
        ],
        "parameters": [
          {
            "name": "csbCallStatsInstanceIndex",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "csbCallStatsServiceIndex",
            "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": {
                    "csbCallStatsInstanceIndex": {
                      "type": "string",
                      "description": "csbCallStatsInstanceIndex",
                      "x-yang-type": "leafref"
                    },
                    "csbCallStatsServiceIndex": {
                      "type": "integer",
                      "description": "This object identifies the index of the name of the SBC\n            service configured. This object also acts as an index for the\n            table.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbCallStatsSbcName": {
                      "type": "string",
                      "description": "This object indicates the configured name of the SBC service.\n            The length of this object is zero when value is not assigned\n            to it.",
                      "x-yang-type": "snmp-framework:SnmpAdminString"
                    },
                    "csbCallStatsCallsHigh": {
                      "type": "integer",
                      "description": "This object indicates the maximum number of calls per second\n            processed by the Session Border Controller in past 24 hours.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbCallStatsRate1Sec": {
                      "type": "integer",
                      "description": "This object indicates the average calls per second processed by\n            the Session Border Controller.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbCallStatsCallsLow": {
                      "type": "integer",
                      "description": "This object indicates the minimum calls per second in past 24\n            hours.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbCallStatsAvailableFlows": {
                      "type": "integer",
                      "description": "This object indicates the number of media flows which are\n            available.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbCallStatsUsedFlows": {
                      "type": "integer",
                      "description": "This object indicates the number of media flows which are\n            used. This is for the flow allocated and connected. The flow\n            allocated but not connected is not counted.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbCallStatsPeakFlows": {
                      "type": "integer",
                      "description": "This object indicates the number of peak flows in SBC.\n            This is the highest recorded value for the active flows since\n            the box was booted/reseted.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbCallStatsTotalFlows": {
                      "type": "integer",
                      "description": "This object indicates the total number of media support by this\n            instance of SBC. The total number of flows include the\n            available\n            flows and the active flows. This value is since box was\n            booted/reseted. Total flows include the active flows and the\n            flows allocated but not connected.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbCallStatsUsedSigFlows": {
                      "type": "integer",
                      "description": "This object indicates the number of active signaling flows for\n            signaling pinholes.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbCallStatsPeakSigFlows": {
                      "type": "integer",
                      "description": "This object indicates the peak signaling flow in SBC.\n            This is the highest recorded value for the active signaling\n            flows. This object is calculated using csbCallStatsUsedFlows.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbCallStatsTotalSigFlows": {
                      "type": "integer",
                      "description": "This object indicates the maximum number of Signalling Flows\n            that can be supported by this instance of SBC.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbCallStatsAvailablePktRate": {
                      "type": "integer",
                      "description": "This object indicates the remaining capacity that can be\n            supported by SBC.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbCallStatsUnclassifiedPkts": {
                      "type": "integer",
                      "description": "This object indicates the number of unclassified packets\n            processed by SBC.",
                      "minimum": 0
                    },
                    "csbCallStatsRTPPktsSent": {
                      "type": "integer",
                      "description": "This object indicates the total number of RTP packets sent.",
                      "minimum": 0
                    },
                    "csbCallStatsRTPPktsRcvd": {
                      "type": "integer",
                      "description": "This object indicates the total number of RTP packets\n            received.",
                      "minimum": 0
                    },
                    "csbCallStatsRTPPktsDiscard": {
                      "type": "integer",
                      "description": "This object indicates the total number of RTP packets\n            discarded.",
                      "minimum": 0
                    },
                    "csbCallStatsRTPOctetsSent": {
                      "type": "integer",
                      "description": "This object indicates the number of RTP octets sent by the\n            SBC.",
                      "minimum": 0
                    },
                    "csbCallStatsRTPOctetsRcvd": {
                      "type": "integer",
                      "description": "This object indicates the number of RTP octets received by\n            the SBC.",
                      "minimum": 0
                    },
                    "csbCallStatsRTPOctetsDiscard": {
                      "type": "integer",
                      "description": "This object indicates the number of RTP octets discarded by\n            the SBC.",
                      "minimum": 0
                    },
                    "csbCallStatsNoMediaCount": {
                      "type": "integer",
                      "description": "This object indicates the accumulated No media event\n            count.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbCallStatsRouteErrors": {
                      "type": "integer",
                      "description": "This object indicates the accumulated route error event\n            count. This counter is for the route error of media stream.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbCallStatsAvailableTranscodeFlows": {
                      "type": "integer",
                      "description": "This object indicates the number of additional transcoded flows\n            that this media gateway manager (MGM) entity is currently able\n            to configure.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbCallStatsActiveTranscodeFlows": {
                      "type": "integer",
                      "description": "This object indicates the current number of transcoded\n            flows that are actively forwarding media traffic.  In this\n            context, a flow is a media stream passing through the device.\n            So a single voice call will be counted only once.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbCallStatsPeakTranscodeFlows": {
                      "type": "integer",
                      "description": "This object indicates the peak number of active transcoded\n            flows since the statistics were last reset.  In this context, a\n            flow is a media stream passing through the device, so a single\n            voice call will be counted once.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbCallStatsTotalTranscodeFlows": {
                      "type": "integer",
                      "description": "This object indicates the accumulated total number of\n            transcoded flows.  This count contains both active flows and\n            flows that were allocated but never connected.  In this context,\n            a flow is a media stream passing through the device, so a single\n            voice call will be counted once.",
                      "minimum": 0,
                      "maximum": 4294967295
                    }
                  }
                },
                "example": {
                  "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:csbCallStatsEntry": {
                    "csbCallStatsInstanceIndex": "example-string",
                    "csbCallStatsServiceIndex": 1,
                    "csbCallStatsSbcName": "interface-1",
                    "csbCallStatsCallsHigh": 0,
                    "csbCallStatsRate1Sec": 0,
                    "csbCallStatsCallsLow": 0,
                    "csbCallStatsAvailableFlows": 0,
                    "csbCallStatsUsedFlows": 0,
                    "csbCallStatsPeakFlows": 0,
                    "csbCallStatsTotalFlows": 0,
                    "csbCallStatsUsedSigFlows": 0,
                    "csbCallStatsPeakSigFlows": 0,
                    "csbCallStatsTotalSigFlows": 0,
                    "csbCallStatsAvailablePktRate": 0,
                    "csbCallStatsUnclassifiedPkts": 0,
                    "csbCallStatsRTPPktsSent": 0,
                    "csbCallStatsRTPPktsRcvd": 0,
                    "csbCallStatsRTPPktsDiscard": 0,
                    "csbCallStatsRTPOctetsSent": 1234567890,
                    "csbCallStatsRTPOctetsRcvd": 1234567890,
                    "csbCallStatsRTPOctetsDiscard": 1234567890,
                    "csbCallStatsNoMediaCount": 0,
                    "csbCallStatsRouteErrors": 0,
                    "csbCallStatsAvailableTranscodeFlows": 0,
                    "csbCallStatsActiveTranscodeFlows": 0,
                    "csbCallStatsPeakTranscodeFlows": 0,
                    "csbCallStatsTotalTranscodeFlows": 0
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-csbCallStatsEntry-2"
      },
      "x-yang-path": "/csbCallStatsTable/csbCallStatsEntry={csbCallStatsInstanceIndex csbCallStatsServiceIndex}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "csbCallStatsInstanceIndex csbCallStatsServiceIndex"
      ]
    },
    "/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:csbCurrPeriodicStatsTable/csbCurrPeriodicStatsEntry={csbCallStatsInstanceIndex},{csbCallStatsServiceIndex},{csbCurrPeriodicStatsInterval}": {
      "get": {
        "summary": "Get csbCurrPeriodicStatsEntry entry",
        "description": "Retrieve specific csbCurrPeriodicStatsEntry entry by key from MIB",
        "tags": [
          "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB"
        ],
        "parameters": [
          {
            "name": "csbCallStatsInstanceIndex",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "csbCallStatsServiceIndex",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "csbCurrPeriodicStatsInterval",
            "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": {
                    "csbCallStatsInstanceIndex": {
                      "type": "string",
                      "description": "csbCallStatsInstanceIndex",
                      "x-yang-type": "leafref"
                    },
                    "csbCallStatsServiceIndex": {
                      "type": "string",
                      "description": "csbCallStatsServiceIndex",
                      "x-yang-type": "leafref"
                    },
                    "csbCurrPeriodicStatsInterval": {
                      "type": "string",
                      "description": "This object identifies the interval for which the periodic\n            statistics information is to be displayed. The interval\n            values can be 5 min, 15 mins, 1 hour , 1 Day. This object acts\n            as index for the table.",
                      "x-yang-type": "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CiscoSbcPeriodicStatsInterval"
                    },
                    "csbCurrPeriodicStatsActiveCalls": {
                      "type": "integer",
                      "description": "This object indicates the number of calls that have become\n            active during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbCurrPeriodicStatsActivatingCalls": {
                      "type": "integer",
                      "description": "This object indicates the number of calls that have become\n            activing during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbCurrPeriodicStatsDeactivatingCalls": {
                      "type": "integer",
                      "description": "This object indicates the number of calls that have become\n            deactiving during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbCurrPeriodicStatsTotalCallAttempts": {
                      "type": "integer",
                      "description": "This object indicates the number of total call attempts during\n            this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbCurrPeriodicStatsFailedCallAttempts": {
                      "type": "integer",
                      "description": "This object indicates the number of failed call attempts during\n            this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbCurrPeriodicStatsCallRoutingFailure": {
                      "type": "integer",
                      "description": "This object indicates the number of call setup failures due\n            to routing failures during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbCurrPeriodicStatsCallResourceFailure": {
                      "type": "integer",
                      "description": "This object indicates the number of call setup failures due\n            to resource failures during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbCurrPeriodicStatsCallMediaFailure": {
                      "type": "integer",
                      "description": "This object indicates the number of call setup failures due\n            to media failure during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbCurrPeriodicStatsCallSigFailure": {
                      "type": "integer",
                      "description": "This object indicates the number of call setup failures due\n            to signaling failure during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbCurrPeriodicStatsActiveCallFailure": {
                      "type": "integer",
                      "description": "This object indicates the number of active call failures during\n            this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbCurrPeriodicStatsCongestionFailure": {
                      "type": "integer",
                      "description": "This object indicates the number of call setup failures due\n            to congestion during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbCurrPeriodicStatsCallSetupPolicyFailure": {
                      "type": "integer",
                      "description": "This object indicates the number of call setup failures due\n            to policy failure during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbCurrPeriodicStatsCallSetupNAPolicyFailure": {
                      "type": "integer",
                      "description": "This object indicates the number of call setup failures due\n            to NA policy failure during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbCurrPeriodicStatsCallSetupRoutingPolicyFailure": {
                      "type": "integer",
                      "description": "This object indicates the number of call setup failures due\n            to routing policy failure during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbCurrPeriodicStatsCallSetupCACPolicyFailure": {
                      "type": "integer",
                      "description": "This object indicates the number of call setup failures due\n            to CAC policy failure during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbCurrPeriodicStatsCallSetupCACCallLimitFailure": {
                      "type": "integer",
                      "description": "This object indicates the number of call setup failures due\n            to CAC call limit during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbCurrPeriodicStatsCallSetupCACRateLimitFailure": {
                      "type": "integer",
                      "description": "This object indicates the number of call setup failures due\n            to CAC call rate limit during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbCurrPeriodicStatsCallSetupCACBandwidthFailure": {
                      "type": "integer",
                      "description": "This object indicates the number of call setup failures due\n            to CAC bandwidth limit during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbCurrPeriodicStatsCallSetupCACMediaLimitFailure": {
                      "type": "integer",
                      "description": "This object indicates the number of call setup failures due\n            to CAC media limit during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbCurrPeriodicStatsCallSetupCACMediaUpdateFailure": {
                      "type": "integer",
                      "description": "This object indicates the number of call update failure due\n            to policy failure during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbCurrPeriodicStatsTimestamp": {
                      "type": "string",
                      "description": "This object indicates the current time at the start of each\n            interval.",
                      "format": "binary"
                    },
                    "csbCurrPeriodicStatsTranscodedCalls": {
                      "type": "integer",
                      "description": "The object indicates the number of transcoded calls that are\n            active during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbCurrPeriodicStatsTransratedCalls": {
                      "type": "integer",
                      "description": "The object indicates the number of transrated calls that are\n            active during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbCurrPeriodicStatsTotalCallUpdateFailure": {
                      "type": "integer",
                      "description": "This object indicates the total number of call update failures\n            during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbCurrPeriodicStatsActiveIpv6Calls": {
                      "type": "integer",
                      "description": "This Object indicates the number of calls through SBC that use\n            IPv6 signaling.  This statistic totals all calls that traverse\n            an IPv6 adjacency on either or both sides of SBC during this\n            interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbCurrPeriodicStatsActiveEmergencyCalls": {
                      "type": "integer",
                      "description": "This object indicates the number of calls through SBC that have\n            been identified as emergency calls (by Number Analysis) during\n            this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbCurrPeriodicStatsActiveE2EmergencyCalls": {
                      "type": "integer",
                      "description": "This object indicates the number of calls through SBC that have\n            been identified as emergency calls (by Number Analysis) and\n            have used the e2 interface to obtain location information for\n            the caller during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbCurrPeriodicStatsImsRxActiveCalls": {
                      "type": "integer",
                      "description": "This object indicates the total number of active calls which\n            use IMS Rx, during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbCurrPeriodicStatsImsRxCallSetupFaiures": {
                      "type": "integer",
                      "description": "This object indicates the total call Setup failures owing to\n            IMS Rx failure during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbCurrPeriodicStatsImsRxCallRenegotiationAttempts": {
                      "type": "integer",
                      "description": "This object indicates the total call renegotiation attempts\n            using IMS Rx during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbCurrPeriodicStatsImsRxCallRenegotiationFailures": {
                      "type": "integer",
                      "description": "This object indicates the total call renegotiation failures\n            owing to IMS Rx failure during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbCurrPeriodicStatsAudioTranscodedCalls": {
                      "type": "integer",
                      "description": "The number of active audio transcoded calls through\n            this adjacency or account during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbCurrPeriodicStatsFaxTranscodedCalls": {
                      "type": "integer",
                      "description": "This object indicates the the number of active fax\n            transcoded calls through this adjacency or account during this\n            interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbCurrPeriodicStatsRtpDisallowedFailures": {
                      "type": "integer",
                      "description": "This object indicates the total call setup failures due to RTP\n            being proposed when not permitted during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbCurrPeriodicStatsSrtpDisallowedFailures": {
                      "type": "integer",
                      "description": "This object indicates the total call setup failures due to SRTP\n            being proposed when not permitted during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbCurrPeriodicStatsNonSrtpCalls": {
                      "type": "integer",
                      "description": "This object indicates the number of active calls\n            through this adjacency or account which do not use SRTP on any\n            media channels during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbCurrPeriodicStatsSrtpNonIwCalls": {
                      "type": "integer",
                      "description": "This object indicates the number of active calls\n            through this adjacency or account that have one or more media\n            channels which use SRTP. This count does not include media \n            channels that provide interworking between RTP and SRTP during\n            this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbCurrPeriodicStatsSrtpIwCalls": {
                      "type": "integer",
                      "description": "This object indicates the number of active calls\n            through this adjacency or account that have one or more media\n            channels that provide interworking between RTP and SRTP during\n            this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbCurrPeriodicStatsDtmfIw2833Calls": {
                      "type": "integer",
                      "description": "This object indicates the number of active calls\n            through this adjacency or account for which DTMF interworking\n            is enabled between DTMF in signaling and DTMF in media via RFC\n            2833 during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbCurrPeriodicStatsDtmfIwInbandCalls": {
                      "type": "integer",
                      "description": "This object indicates the number of active calls\n            through this adjacency or account for which DTMF interworking\n            is enabled between DTMF in signaling and DTMF in media via \n            inband DTMF tones during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbCurrPeriodicStatsDtmfIw2833InbandCalls": {
                      "type": "integer",
                      "description": "This object indicates the number of active calls\n            through this adjacency or account for which DTMF interworking\n            is enabled between DTMF in media via RFC 2833 and DTMF in media\n            via inband DTMF tones during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbCurrPeriodicStatsTotalTapsRequested": {
                      "type": "integer",
                      "description": "This object indicates the lawful intercept tap attempts\n            requested within the scope of this query during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbCurrPeriodicStatsTotalTapsSucceeded": {
                      "type": "integer",
                      "description": "This object indicates the lawful intercept tap attempts that\n            have been successfully implemented within the scope of this\n            query during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbCurrPeriodicStatsCurrentTaps": {
                      "type": "integer",
                      "description": "This object indicates the Lawful intercept taps currently in\n            place on calls within the scope of this query during this\n            interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbCurrPeriodicIpsecCalls": {
                      "type": "integer",
                      "description": "The number of active calls on this adjacency or account which\n            are to or from registered subscribers using IPSEC during this\n            interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    }
                  }
                },
                "example": {
                  "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:csbCurrPeriodicStatsEntry": {
                    "csbCallStatsInstanceIndex": "example-string",
                    "csbCallStatsServiceIndex": "example-string",
                    "csbCurrPeriodicStatsInterval": "example-string",
                    "csbCurrPeriodicStatsActiveCalls": 0,
                    "csbCurrPeriodicStatsActivatingCalls": 0,
                    "csbCurrPeriodicStatsDeactivatingCalls": 0,
                    "csbCurrPeriodicStatsTotalCallAttempts": 0,
                    "csbCurrPeriodicStatsFailedCallAttempts": 0,
                    "csbCurrPeriodicStatsCallRoutingFailure": 0,
                    "csbCurrPeriodicStatsCallResourceFailure": 0,
                    "csbCurrPeriodicStatsCallMediaFailure": 0,
                    "csbCurrPeriodicStatsCallSigFailure": 0,
                    "csbCurrPeriodicStatsActiveCallFailure": 0,
                    "csbCurrPeriodicStatsCongestionFailure": 0,
                    "csbCurrPeriodicStatsCallSetupPolicyFailure": 0,
                    "csbCurrPeriodicStatsCallSetupNAPolicyFailure": 0,
                    "csbCurrPeriodicStatsCallSetupRoutingPolicyFailure": 0,
                    "csbCurrPeriodicStatsCallSetupCACPolicyFailure": 0,
                    "csbCurrPeriodicStatsCallSetupCACCallLimitFailure": 0,
                    "csbCurrPeriodicStatsCallSetupCACRateLimitFailure": 0,
                    "csbCurrPeriodicStatsCallSetupCACBandwidthFailure": 0,
                    "csbCurrPeriodicStatsCallSetupCACMediaLimitFailure": 0,
                    "csbCurrPeriodicStatsCallSetupCACMediaUpdateFailure": 0,
                    "csbCurrPeriodicStatsTimestamp": "example-string",
                    "csbCurrPeriodicStatsTranscodedCalls": 0,
                    "csbCurrPeriodicStatsTransratedCalls": 0,
                    "csbCurrPeriodicStatsTotalCallUpdateFailure": 0,
                    "csbCurrPeriodicStatsActiveIpv6Calls": 0,
                    "csbCurrPeriodicStatsActiveEmergencyCalls": 0,
                    "csbCurrPeriodicStatsActiveE2EmergencyCalls": 0,
                    "csbCurrPeriodicStatsImsRxActiveCalls": 0,
                    "csbCurrPeriodicStatsImsRxCallSetupFaiures": 0,
                    "csbCurrPeriodicStatsImsRxCallRenegotiationAttempts": 0,
                    "csbCurrPeriodicStatsImsRxCallRenegotiationFailures": 0,
                    "csbCurrPeriodicStatsAudioTranscodedCalls": 0,
                    "csbCurrPeriodicStatsFaxTranscodedCalls": 0,
                    "csbCurrPeriodicStatsRtpDisallowedFailures": 0,
                    "csbCurrPeriodicStatsSrtpDisallowedFailures": 0,
                    "csbCurrPeriodicStatsNonSrtpCalls": 0,
                    "csbCurrPeriodicStatsSrtpNonIwCalls": 0,
                    "csbCurrPeriodicStatsSrtpIwCalls": 0,
                    "csbCurrPeriodicStatsDtmfIw2833Calls": 0,
                    "csbCurrPeriodicStatsDtmfIwInbandCalls": 0,
                    "csbCurrPeriodicStatsDtmfIw2833InbandCalls": 0,
                    "csbCurrPeriodicStatsTotalTapsRequested": 0,
                    "csbCurrPeriodicStatsTotalTapsSucceeded": 0,
                    "csbCurrPeriodicStatsCurrentTaps": 0,
                    "csbCurrPeriodicIpsecCalls": 0
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-csbCurrPeriodicStatsEntry-2"
      },
      "x-yang-path": "/csbCurrPeriodicStatsTable/csbCurrPeriodicStatsEntry={csbCallStatsInstanceIndex csbCallStatsServiceIndex csbCurrPeriodicStatsInterval}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "csbCallStatsInstanceIndex csbCallStatsServiceIndex csbCurrPeriodicStatsInterval"
      ]
    },
    "/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:csbHistoryStatsTable/csbHistoryStatsEntry={csbCallStatsInstanceIndex},{csbCallStatsServiceIndex},{csbHistoryStatsInterval},{csbHistoryStatsElements}": {
      "get": {
        "summary": "Get csbHistoryStatsEntry entry",
        "description": "Retrieve specific csbHistoryStatsEntry entry by key from MIB",
        "tags": [
          "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB"
        ],
        "parameters": [
          {
            "name": "csbCallStatsInstanceIndex",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "csbCallStatsServiceIndex",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "csbHistoryStatsInterval",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "csbHistoryStatsElements",
            "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": {
                    "csbCallStatsInstanceIndex": {
                      "type": "string",
                      "description": "csbCallStatsInstanceIndex",
                      "x-yang-type": "leafref"
                    },
                    "csbCallStatsServiceIndex": {
                      "type": "string",
                      "description": "csbCallStatsServiceIndex",
                      "x-yang-type": "leafref"
                    },
                    "csbHistoryStatsInterval": {
                      "type": "string",
                      "description": "This object identifies the interval for which the history\n            statistics information is to be displayed. The interval\n            values can be 5 min, 15 mins, 1 hour , 1 day. This object acts\n            as index for the table.",
                      "x-yang-type": "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CiscoSbcPeriodicStatsInterval"
                    },
                    "csbHistoryStatsElements": {
                      "type": "integer",
                      "description": "The platform assigns a number starting with one and\n            increments it each for each new row. When the maximum         \n            number of row is reached the oldest rows are deleted. It is up\n            to the platform to determine the number of entries for each\n            interval. It is recommended that each platform support at least\n            one entry for 5 min, 15 mins, 1 hour and 1 day intervals.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbHistoryStatsActiveCalls": {
                      "type": "integer",
                      "description": "This object indicates the number of active calls history during\n            this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbHistoryStatsTotalCallAttempts": {
                      "type": "integer",
                      "description": "This object indicates the number of total call attempts history\n            during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbHistoryStatsFailedCallAttempts": {
                      "type": "integer",
                      "description": "This object indicates the number of failed call attempts during\n            this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbHistoryStatsCallRoutingFailure": {
                      "type": "integer",
                      "description": "This object indicates the number of call setup failures due\n            to routing failures during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbHistoryStatsCallResourceFailure": {
                      "type": "integer",
                      "description": "This object indicates the number of call setup failures due\n            to resource failures during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbHistoryStatsCallMediaFailure": {
                      "type": "integer",
                      "description": "This object indicates the number of call setup failures due\n            to media failure during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbHistoryStatsFailSigFailure": {
                      "type": "integer",
                      "description": "This object indicates the number of call setup failures due\n            to signaling failure during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbHistoryStatsActiveCallFailure": {
                      "type": "integer",
                      "description": "This object indicates the number of active call failures during\n            this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbHistoryStatsCongestionFailure": {
                      "type": "integer",
                      "description": "This object indicates the number of call setup failures due\n            to congestion during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbHistoryStatsCallSetupPolicyFailure": {
                      "type": "integer",
                      "description": "This object indicates the number of call setup failures due\n            to some policy violations during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbHistoryStatsCallSetupNAPolicyFailure": {
                      "type": "integer",
                      "description": "This object indicates the number of call setup failures due\n            to NA policy failure during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbHistoryStatsCallSetupRoutingPolicyFailure": {
                      "type": "integer",
                      "description": "This object indicates the number of call setup failures due\n            to routing policy failure during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbHistoryStatsCallSetupCACPolicyFailure": {
                      "type": "integer",
                      "description": "This object indicates the number of call setup failures due\n            to CAC policy failure during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbHistoryStatsCallSetupCACCallLimitFailure": {
                      "type": "integer",
                      "description": "This object indicates the number of call setup failures due\n            to CAC call limit during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbHistoryStatsCallSetupCACRateLimitFailure": {
                      "type": "integer",
                      "description": "This object indicates the number of call setup failures due\n            to CAC call rate limit during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbHistoryStatsCallSetupCACBandwidthFailure": {
                      "type": "integer",
                      "description": "This object indicates the number of call setup failures due\n            to CAC bandwidth limit during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbHistoryStatsCallSetupCACMediaLimitFailure": {
                      "type": "integer",
                      "description": "This object indicates the number of call setup failures due\n            to CAC media limit during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbHistoryStatsCallSetupCACMediaUpdateFailure": {
                      "type": "integer",
                      "description": "This object indicates the number of call update failure due\n            to policy failure during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbHistoryStatsTimestamp": {
                      "type": "string",
                      "description": "This object indicates the time at the start of the interval\n            when measurements were first collected for this interval in the\n            csbCurrPeriodicStatsTable.",
                      "format": "binary"
                    },
                    "csbHistroyStatsTranscodedCalls": {
                      "type": "integer",
                      "description": "The object indicates the number of active transcoded\n            calls during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbHistroyStatsTransratedCalls": {
                      "type": "integer",
                      "description": "The object indicates the number of active transrated\n            calls during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbHistoryStatsTotalCallUpdateFailure": {
                      "type": "integer",
                      "description": "This object indicates the total call update failures during\n            this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbHistoryStatsActiveIpv6Calls": {
                      "type": "integer",
                      "description": "This Object indicates the number of calls through SBC that use\n            IPv6 signaling.  This statistic totals all calls that traverse\n            an IPv6 adjacency on either or both sides of SBC during this\n            interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbHistoryStatsActiveEmergencyCalls": {
                      "type": "integer",
                      "description": "This object indicates the number of calls through SBC that have\n            been identified as emergency calls (by Number Analysis)  during\n            this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbHistoryStatsActiveE2EmergencyCalls": {
                      "type": "integer",
                      "description": "This object indicates the number of calls through SBC that have\n            been identified as emergency calls (by Number Analysis) and\n            have used the e2 interface to obtain location information for\n            the\n            caller.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbHistoryStatsImsRxActiveCalls": {
                      "type": "integer",
                      "description": "This object indicates the total number of active calls which\n            use IMS Rx, during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbHistoryStatsImsRxCallSetupFailures": {
                      "type": "integer",
                      "description": "This object indicates the total call setup failures owing to\n            IMS Rx failure during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbHistoryStatsImsRxCallRenegotiationAttempts": {
                      "type": "integer",
                      "description": "This object indicates the total call renegotiation attempts\n            using IMS Rx during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbHistoryStatsImsRxCallRenegotiationFailures": {
                      "type": "integer",
                      "description": "This object indicates the total call renegotiation failures\n            owing to IMS Rx failure during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbHistoryStatsAudioTranscodedCalls": {
                      "type": "integer",
                      "description": "The number of active audio transcoded calls through\n            this adjacency or account during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbHistoryStatsFaxTranscodedCalls": {
                      "type": "integer",
                      "description": "This object indicates the the number of active fax\n            transcoded calls through this adjacency or account during this\n            interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbHistoryStatsRtpDisallowedFailures": {
                      "type": "integer",
                      "description": "This object indicates the total call setup failures due to RTP\n            being proposed when not permitted during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbHistoryStatsSrtpDisallowedFailures": {
                      "type": "integer",
                      "description": "This object indicates the total call setup failures due to SRTP\n            being proposed when not permitted during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbHistoryStatsNonSrtpCalls": {
                      "type": "integer",
                      "description": "This object indicates the number of active calls\n            through this adjacency or account which do not use SRTP on any\n            media channels during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbHistoryStatsSrtpNonIwCalls": {
                      "type": "integer",
                      "description": "This object indicates the number of active calls\n            through this adjacency or account that have one or more media\n            channels that use SRTP but no media channels that provide\n            interworking between RTP and SRTP during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbHistoryStatsSrtpIwCalls": {
                      "type": "integer",
                      "description": "This object indicates the number of active calls\n            through this adjacency or account that have one or more media\n            channels that provide interworking between RTP and SRTP during\n            this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbHistoryStatsDtmfIw2833Calls": {
                      "type": "integer",
                      "description": "This object indicates the number of active calls\n            through this adjacency or account for which DTMF interworking\n            is enabled between DTMF in signaling and DTMF in media via RFC\n            2833 during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbHistoryStatsDtmfIwInbandCalls": {
                      "type": "integer",
                      "description": "This object indicates the number of active calls\n            through this adjacency or account for which DTMF interworking\n            is enabled between DTMF in signaling and DTMF in media via\n            inband DTMF tones during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbHistoryStatsDtmfIw2833InbandCalls": {
                      "type": "integer",
                      "description": "This object indicates the number of active calls\n            through this adjacency or account for which DTMF interworking\n            is enabled between DTMF in media via RFC 2833 and DTMF in media\n            via inband DTMF tones during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbHistoryStatsTotalTapsRequested": {
                      "type": "integer",
                      "description": "This object indicates the lawful intercept tap attempts\n            requested within the scope of this query during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbHistoryStatsTotalTapsSucceeded": {
                      "type": "integer",
                      "description": "This object indicates the lawful intercept tap attempts that\n            have been successfully implemented within the scope of this\n            query during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbHistoryStatsCurrentTaps": {
                      "type": "integer",
                      "description": "This object indicates the Lawful intercept taps currently in\n            place on calls within the scope of this query during this\n            interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbHistoryStatsIpsecCalls": {
                      "type": "integer",
                      "description": "The number of active calls on this adjacency or account which\n            are to or from registered subscribers using IPSEC during this\n            interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    }
                  }
                },
                "example": {
                  "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:csbHistoryStatsEntry": {
                    "csbCallStatsInstanceIndex": "example-string",
                    "csbCallStatsServiceIndex": "example-string",
                    "csbHistoryStatsInterval": "example-string",
                    "csbHistoryStatsElements": 0,
                    "csbHistoryStatsActiveCalls": 0,
                    "csbHistoryStatsTotalCallAttempts": 0,
                    "csbHistoryStatsFailedCallAttempts": 0,
                    "csbHistoryStatsCallRoutingFailure": 0,
                    "csbHistoryStatsCallResourceFailure": 0,
                    "csbHistoryStatsCallMediaFailure": 0,
                    "csbHistoryStatsFailSigFailure": 0,
                    "csbHistoryStatsActiveCallFailure": 0,
                    "csbHistoryStatsCongestionFailure": 0,
                    "csbHistoryStatsCallSetupPolicyFailure": 0,
                    "csbHistoryStatsCallSetupNAPolicyFailure": 0,
                    "csbHistoryStatsCallSetupRoutingPolicyFailure": 0,
                    "csbHistoryStatsCallSetupCACPolicyFailure": 0,
                    "csbHistoryStatsCallSetupCACCallLimitFailure": 0,
                    "csbHistoryStatsCallSetupCACRateLimitFailure": 0,
                    "csbHistoryStatsCallSetupCACBandwidthFailure": 0,
                    "csbHistoryStatsCallSetupCACMediaLimitFailure": 0,
                    "csbHistoryStatsCallSetupCACMediaUpdateFailure": 0,
                    "csbHistoryStatsTimestamp": "example-string",
                    "csbHistroyStatsTranscodedCalls": 0,
                    "csbHistroyStatsTransratedCalls": 0,
                    "csbHistoryStatsTotalCallUpdateFailure": 0,
                    "csbHistoryStatsActiveIpv6Calls": 0,
                    "csbHistoryStatsActiveEmergencyCalls": 0,
                    "csbHistoryStatsActiveE2EmergencyCalls": 0,
                    "csbHistoryStatsImsRxActiveCalls": 0,
                    "csbHistoryStatsImsRxCallSetupFailures": 0,
                    "csbHistoryStatsImsRxCallRenegotiationAttempts": 0,
                    "csbHistoryStatsImsRxCallRenegotiationFailures": 0,
                    "csbHistoryStatsAudioTranscodedCalls": 0,
                    "csbHistoryStatsFaxTranscodedCalls": 0,
                    "csbHistoryStatsRtpDisallowedFailures": 0,
                    "csbHistoryStatsSrtpDisallowedFailures": 0,
                    "csbHistoryStatsNonSrtpCalls": 0,
                    "csbHistoryStatsSrtpNonIwCalls": 0,
                    "csbHistoryStatsSrtpIwCalls": 0,
                    "csbHistoryStatsDtmfIw2833Calls": 0,
                    "csbHistoryStatsDtmfIwInbandCalls": 0,
                    "csbHistoryStatsDtmfIw2833InbandCalls": 0,
                    "csbHistoryStatsTotalTapsRequested": 0,
                    "csbHistoryStatsTotalTapsSucceeded": 0,
                    "csbHistoryStatsCurrentTaps": 0,
                    "csbHistoryStatsIpsecCalls": 0
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-csbHistoryStatsEntry-2"
      },
      "x-yang-path": "/csbHistoryStatsTable/csbHistoryStatsEntry={csbCallStatsInstanceIndex csbCallStatsServiceIndex csbHistoryStatsInterval csbHistoryStatsElements}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "csbCallStatsInstanceIndex csbCallStatsServiceIndex csbHistoryStatsInterval csbHistoryStatsElements"
      ]
    },
    "/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:csbPerFlowStatsTable/csbPerFlowStatsEntry={csbCallStatsInstanceIndex},{csbCallStatsServiceIndex},{csbPerFlowStatsVdbeId},{csbPerFlowStatsGateId},{csbPerFlowStatsFlowPairId},{csbPerFlowStatsSideId}": {
      "get": {
        "summary": "Get csbPerFlowStatsEntry entry",
        "description": "Retrieve specific csbPerFlowStatsEntry entry by key from MIB",
        "tags": [
          "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB"
        ],
        "parameters": [
          {
            "name": "csbCallStatsInstanceIndex",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "csbCallStatsServiceIndex",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "csbPerFlowStatsVdbeId",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "csbPerFlowStatsGateId",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "csbPerFlowStatsFlowPairId",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "csbPerFlowStatsSideId",
            "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": {
                    "csbCallStatsInstanceIndex": {
                      "type": "string",
                      "description": "csbCallStatsInstanceIndex",
                      "x-yang-type": "leafref"
                    },
                    "csbCallStatsServiceIndex": {
                      "type": "string",
                      "description": "csbCallStatsServiceIndex",
                      "x-yang-type": "leafref"
                    },
                    "csbPerFlowStatsVdbeId": {
                      "type": "integer",
                      "description": "This object identifies the virtual media gateway id. This\n            object also acts as an index for the table.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "csbPerFlowStatsGateId": {
                      "type": "integer",
                      "description": "This object identifies the gate id. This object also acts as\n            an index for the table.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "csbPerFlowStatsFlowPairId": {
                      "type": "integer",
                      "description": "This object identifies the flow pair id. This object also acts\n            as an index for the table.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "csbPerFlowStatsSideId": {
                      "type": "string",
                      "description": "This object identifies the index corresponding to side of flow\n            pair either side A or side B. This object also acts as an index\n            for the table."
                    },
                    "csbPerFlowStatsFlowType": {
                      "type": "string",
                      "description": "This object indicates the type of the flow, like media flow,\n            signaling flow etc."
                    },
                    "csbPerFlowStatsRTPPktsSent": {
                      "type": "integer",
                      "description": "This object indicates the number of RTP packets sent per flow\n            by the SBC.",
                      "minimum": 0
                    },
                    "csbPerFlowStatsRTPPktsRcvd": {
                      "type": "integer",
                      "description": "This object indicates the number of RTP packets received per\n            flow by the SBC.",
                      "minimum": 0
                    },
                    "csbPerFlowStatsRTPPktsDiscard": {
                      "type": "integer",
                      "description": "This object indicates the number of RTP packets discarded  per\n            flow by the SBC.",
                      "minimum": 0
                    },
                    "csbPerFlowStatsRTPOctetsSent": {
                      "type": "integer",
                      "description": "This object indicates the number of RTP octets sent\n            per flow by the SBC.",
                      "minimum": 0
                    },
                    "csbPerFlowStatsRTPOctetsRcvd": {
                      "type": "integer",
                      "description": "This object indicates the number of RTP octets received\n            per flow by the SBC.",
                      "minimum": 0
                    },
                    "csbPerFlowStatsRTPOctetsDiscard": {
                      "type": "integer",
                      "description": "This object indicates the number of RTP octets discarded\n            per flow by the SBC.",
                      "minimum": 0
                    },
                    "csbPerFlowStatsRTCPPktsSent": {
                      "type": "integer",
                      "description": "The number of RTP packets sent by the remote end point to this\n            MG on this flow. Comparing this with the local number of RTP\n            packets received from the remote end point gives an indication\n            of how many incoming  packets were dropped on this leg of the\n            call. This information is from RTCP packet. Not all endpoints\n            report this statistic, if it is not available it will be set to\n            zero. This statistic will not be available for signaling flows.",
                      "minimum": 0
                    },
                    "csbPerFlowStatsRTCPPktsRcvd": {
                      "type": "integer",
                      "description": "The number of RTP packets received by the remote end point from\n            this MG on this flow. Comparing this with the local number of\n            RTP packets sent from this MG to the remote endpoint gives an\n            indication of how many outgoing packets were dropped on this\n            leg of the call. This information is from RTCP packet. Not all\n            endpoints report this statistic, if it is not available it will\n            be set to zero. This statistic will not be available for\n            signaling flows.",
                      "minimum": 0
                    },
                    "csbPerFlowStatsRTCPPktsLost": {
                      "type": "integer",
                      "description": "The number of RTP packets reported as lost by the remote end\n            point on this flow. This information is from RTCP packet. Not\n            all endpoints report this statistic, if it is not available it\n            will be set to zero. This statistic will not be available for\n            signaling flows.",
                      "minimum": 0
                    },
                    "csbPerFlowStatsEPJitter": {
                      "type": "integer",
                      "description": "This object indicates the End Point jitter per flow in the\n            SBC.",
                      "minimum": 0
                    },
                    "csbPerFlowStatsTmanPerMbs": {
                      "type": "integer",
                      "description": "This object indicates the maximum burst size for the\n            current FlowPair.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbPerFlowStatsTmanPerSdr": {
                      "type": "integer",
                      "description": "This object indicates the bandwidth reserved for flow in\n            kilobytes/second.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbPerFlowStatsDscpSettings": {
                      "type": "string",
                      "description": "This object indicates the mark packets sent for the\n            current FlowPair with, or zero if none set. The DSCP is a 6-bit\n            value, which will be present in the top 6 bits of the lowest\n            byte of this field.",
                      "x-yang-type": "snmp-framework:SnmpAdminString"
                    },
                    "csbPerFlowStatsAdrStatus": {
                      "type": "string",
                      "description": "This object indicates whether the flow on the current\n            FlowPair has subscribed for the NAT latch event.",
                      "format": "binary"
                    },
                    "csbPerFlowStatsQASettings": {
                      "type": "string",
                      "description": "This object indicates the flow on the current FlowPair has\n            subscribed for the media loss event.",
                      "format": "binary"
                    },
                    "csbPerFlowStatsRTPPktsLost": {
                      "type": "integer",
                      "description": "This object indicates the number of RTP packets lost per flow\n            by the SBC.",
                      "minimum": 0
                    }
                  }
                },
                "example": {
                  "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:csbPerFlowStatsEntry": {
                    "csbCallStatsInstanceIndex": "example-string",
                    "csbCallStatsServiceIndex": "example-string",
                    "csbPerFlowStatsVdbeId": -2147483648,
                    "csbPerFlowStatsGateId": -2147483648,
                    "csbPerFlowStatsFlowPairId": -2147483648,
                    "csbPerFlowStatsSideId": "example-string",
                    "csbPerFlowStatsFlowType": "ethernetCsmacd(6)",
                    "csbPerFlowStatsRTPPktsSent": 0,
                    "csbPerFlowStatsRTPPktsRcvd": 0,
                    "csbPerFlowStatsRTPPktsDiscard": 0,
                    "csbPerFlowStatsRTPOctetsSent": 1234567890,
                    "csbPerFlowStatsRTPOctetsRcvd": 1234567890,
                    "csbPerFlowStatsRTPOctetsDiscard": 1234567890,
                    "csbPerFlowStatsRTCPPktsSent": 0,
                    "csbPerFlowStatsRTCPPktsRcvd": 0,
                    "csbPerFlowStatsRTCPPktsLost": 0,
                    "csbPerFlowStatsEPJitter": 0,
                    "csbPerFlowStatsTmanPerMbs": 0,
                    "csbPerFlowStatsTmanPerSdr": 0,
                    "csbPerFlowStatsDscpSettings": "example-string",
                    "csbPerFlowStatsAdrStatus": "up(1)",
                    "csbPerFlowStatsQASettings": "example-string",
                    "csbPerFlowStatsRTPPktsLost": 0
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-csbPerFlowStatsEntry-2"
      },
      "x-yang-path": "/csbPerFlowStatsTable/csbPerFlowStatsEntry={csbCallStatsInstanceIndex csbCallStatsServiceIndex csbPerFlowStatsVdbeId csbPerFlowStatsGateId csbPerFlowStatsFlowPairId csbPerFlowStatsSideId}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "csbCallStatsInstanceIndex csbCallStatsServiceIndex csbPerFlowStatsVdbeId csbPerFlowStatsGateId csbPerFlowStatsFlowPairId csbPerFlowStatsSideId"
      ]
    },
    "/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:csbH248StatsTable/csbH248StatsEntry={csbCallStatsInstanceIndex},{csbCallStatsServiceIndex},{csbH248StatsCtrlrIndex}": {
      "get": {
        "summary": "Get csbH248StatsEntry entry",
        "description": "Retrieve specific csbH248StatsEntry entry by key from MIB",
        "tags": [
          "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB"
        ],
        "parameters": [
          {
            "name": "csbCallStatsInstanceIndex",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "csbCallStatsServiceIndex",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "csbH248StatsCtrlrIndex",
            "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": {
                    "csbCallStatsInstanceIndex": {
                      "type": "string",
                      "description": "csbCallStatsInstanceIndex",
                      "x-yang-type": "leafref"
                    },
                    "csbCallStatsServiceIndex": {
                      "type": "string",
                      "description": "csbCallStatsServiceIndex",
                      "x-yang-type": "leafref"
                    },
                    "csbH248StatsCtrlrIndex": {
                      "type": "integer",
                      "description": "This object identifies the controller index of the H.248\n            server. This is also the index for the table.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "csbH248StatsRequestsSent": {
                      "type": "integer",
                      "description": "This object indicates the requests sent through the Session\n            Controller Interface to an SBE or DBE.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbH248StatsRequestsRcvd": {
                      "type": "integer",
                      "description": "This object indicates the requests received through the\n            Session Controller Interface to an SBE or DBE.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbH248StatsRequestsFailed": {
                      "type": "integer",
                      "description": "This object indicates the requests failed on session\n            Controller Interface to an SBE or DBE.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbH248StatsRequestsRetried": {
                      "type": "integer",
                      "description": "This object indicates the requests retried through the Session\n            Controller Interface to an SBE or DBE.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbH248StatsRepliesSent": {
                      "type": "integer",
                      "description": "This object indicates the number of replies sent through the\n            Session Controller Interface to an SBE or DBE.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbH248StatsRepliesRcvd": {
                      "type": "integer",
                      "description": "This object indicates the number of replies received from the\n            Session Controller Interface to an SBE or DBE.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbH248StatsRepliesRetried": {
                      "type": "integer",
                      "description": "This object indicates the number of replies retried through\n            the Session Controller Interface to an SBE or DBE.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbH248StatsSegPktsSent": {
                      "type": "integer",
                      "description": "This object indicates the number of packets sent through the\n            Session Controller Interface to an SBE or DBE.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbH248StatsSegPktsRcvd": {
                      "type": "integer",
                      "description": "This object indicates the number of packets received from the\n            Session Controller Interface to an SBE or DBE.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbH248StatsEstablishedTime": {
                      "type": "string",
                      "description": "This object indicates the H.248 Controller established\n            time (the time at which the association became established).",
                      "format": "binary"
                    },
                    "csbH248StatsTMaxTimeoutVal": {
                      "type": "integer",
                      "description": "This object indicates the T-Max timeout value. This field\n            specifies the maximum delay (in milliseconds) for a response\n            from an MGC before deciding that the request has failed.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "csbH248StatsRTT": {
                      "type": "integer",
                      "description": "This object indicates the calculated RTT value. This field\n            specifies the maximum round trip propagation delay in the \n            network (in milliseconds).",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbH248StatsLT": {
                      "type": "integer",
                      "description": "This object indicates the LT value calculated from RTT\n            value and Max timeout value. This field specifies the maximum\n            delay (in milliseconds) for a response from an MGC plus the\n            maximum round trip propagation delay in the network (in\n            milliseconds).",
                      "minimum": 0,
                      "maximum": 4294967295
                    }
                  }
                },
                "example": {
                  "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:csbH248StatsEntry": {
                    "csbCallStatsInstanceIndex": "example-string",
                    "csbCallStatsServiceIndex": "example-string",
                    "csbH248StatsCtrlrIndex": 1,
                    "csbH248StatsRequestsSent": 0,
                    "csbH248StatsRequestsRcvd": 0,
                    "csbH248StatsRequestsFailed": 0,
                    "csbH248StatsRequestsRetried": 0,
                    "csbH248StatsRepliesSent": 0,
                    "csbH248StatsRepliesRcvd": 0,
                    "csbH248StatsRepliesRetried": 0,
                    "csbH248StatsSegPktsSent": 0,
                    "csbH248StatsSegPktsRcvd": 0,
                    "csbH248StatsEstablishedTime": "example-string",
                    "csbH248StatsTMaxTimeoutVal": -2147483648,
                    "csbH248StatsRTT": 0,
                    "csbH248StatsLT": 0
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-csbH248StatsEntry-2"
      },
      "x-yang-path": "/csbH248StatsTable/csbH248StatsEntry={csbCallStatsInstanceIndex csbCallStatsServiceIndex csbH248StatsCtrlrIndex}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "csbCallStatsInstanceIndex csbCallStatsServiceIndex csbH248StatsCtrlrIndex"
      ]
    },
    "/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:csbH248StatsRev1Table/csbH248StatsRev1Entry={csbCallStatsInstanceIndex},{csbCallStatsServiceIndex},{csbH248StatsVdbeId}": {
      "get": {
        "summary": "Get csbH248StatsRev1Entry entry",
        "description": "Retrieve specific csbH248StatsRev1Entry entry by key from MIB",
        "tags": [
          "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB"
        ],
        "parameters": [
          {
            "name": "csbCallStatsInstanceIndex",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "csbCallStatsServiceIndex",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "csbH248StatsVdbeId",
            "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": {
                    "csbCallStatsInstanceIndex": {
                      "type": "string",
                      "description": "csbCallStatsInstanceIndex",
                      "x-yang-type": "leafref"
                    },
                    "csbCallStatsServiceIndex": {
                      "type": "string",
                      "description": "csbCallStatsServiceIndex",
                      "x-yang-type": "leafref"
                    },
                    "csbH248StatsVdbeId": {
                      "type": "integer",
                      "description": "This object identifies the virtual media gateway id. This is\n            also the index for the table.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "csbH248StatsRequestsSentRev1": {
                      "type": "integer",
                      "description": "This object indicates the requests sent through the Session\n            Controller Interface to an SBE or DBE.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbH248StatsRequestsRcvdRev1": {
                      "type": "integer",
                      "description": "This object indicates the requests received through the\n            Session Controller Interface to an SBE or DBE.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbH248StatsRequestsFailedRev1": {
                      "type": "integer",
                      "description": "This object indicates the requests failed on session\n            Controller Interface to an SBE or DBE.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbH248StatsRequestsRetriedRev1": {
                      "type": "integer",
                      "description": "This object indicates the requests retried through the Session\n            Controller Interface to an SBE or DBE.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbH248StatsRepliesSentRev1": {
                      "type": "integer",
                      "description": "This object indicates the number of replies sent through the\n            Session Controller Interface to an SBE or DBE.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbH248StatsRepliesRcvdRev1": {
                      "type": "integer",
                      "description": "This object indicates the number of replies received from the\n            Session Controller Interface to an SBE or DBE.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbH248StatsRepliesRetriedRev1": {
                      "type": "integer",
                      "description": "This object indicates the number of replies retried through\n            the Session Controller Interface to an SBE or DBE.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbH248StatsSegPktsSentRev1": {
                      "type": "integer",
                      "description": "This object indicates the number of response segments sent by\n            DBE. This field will only be present if segmentation is enabled\n            on this association.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbH248StatsSegPktsRcvdRev1": {
                      "type": "integer",
                      "description": "This object indicates the number of response segments received\n            by DBE. This field will only be present if segmentation is\n            enabled on this association.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbH248StatsEstablishedTimeRev1": {
                      "type": "string",
                      "description": "This object indicates the H.248 Controller established\n            time (the time at which the association became established).",
                      "format": "binary"
                    },
                    "csbH248StatsTMaxTimeoutValRev1": {
                      "type": "integer",
                      "description": "This object indicates the T-Max timeout value. This field\n            specifies the maximum delay (in milliseconds) for a response\n            from an MGC before deciding that the request has failed.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "csbH248StatsRTTRev1": {
                      "type": "integer",
                      "description": "This object indicates the calculated RTT value. This field\n            specifies the maximum round trip propagation delay in the \n            network (in milliseconds).",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbH248StatsLTRev1": {
                      "type": "integer",
                      "description": "This object indicates the LT value calculated from RTT\n            value and Max timeout value. This field specifies the maximum\n            delay (in milliseconds) for a response from an MGC plus the\n            maximum round trip propagation delay in the network (in\n            milliseconds).",
                      "minimum": 0,
                      "maximum": 4294967295
                    }
                  }
                },
                "example": {
                  "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:csbH248StatsRev1Entry": {
                    "csbCallStatsInstanceIndex": "example-string",
                    "csbCallStatsServiceIndex": "example-string",
                    "csbH248StatsVdbeId": -2147483648,
                    "csbH248StatsRequestsSentRev1": 0,
                    "csbH248StatsRequestsRcvdRev1": 0,
                    "csbH248StatsRequestsFailedRev1": 0,
                    "csbH248StatsRequestsRetriedRev1": 0,
                    "csbH248StatsRepliesSentRev1": 0,
                    "csbH248StatsRepliesRcvdRev1": 0,
                    "csbH248StatsRepliesRetriedRev1": 0,
                    "csbH248StatsSegPktsSentRev1": 0,
                    "csbH248StatsSegPktsRcvdRev1": 0,
                    "csbH248StatsEstablishedTimeRev1": "example-string",
                    "csbH248StatsTMaxTimeoutValRev1": -2147483648,
                    "csbH248StatsRTTRev1": 0,
                    "csbH248StatsLTRev1": 0
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-csbH248StatsRev1Entry-2"
      },
      "x-yang-path": "/csbH248StatsRev1Table/csbH248StatsRev1Entry={csbCallStatsInstanceIndex csbCallStatsServiceIndex csbH248StatsVdbeId}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "csbCallStatsInstanceIndex csbCallStatsServiceIndex csbH248StatsVdbeId"
      ]
    },
    "/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:csbCallStatsEntry={csbCallStatsInstanceIndex},{csbCallStatsServiceIndex}": {
      "get": {
        "summary": "Get csbCallStatsEntry entry",
        "description": "Retrieve specific csbCallStatsEntry entry by key from MIB",
        "tags": [
          "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB"
        ],
        "parameters": [
          {
            "name": "csbCallStatsInstanceIndex",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "csbCallStatsServiceIndex",
            "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": {
                    "csbCallStatsInstanceIndex": {
                      "type": "string",
                      "description": "csbCallStatsInstanceIndex",
                      "x-yang-type": "leafref"
                    },
                    "csbCallStatsServiceIndex": {
                      "type": "integer",
                      "description": "This object identifies the index of the name of the SBC\n            service configured. This object also acts as an index for the\n            table.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbCallStatsSbcName": {
                      "type": "string",
                      "description": "This object indicates the configured name of the SBC service.\n            The length of this object is zero when value is not assigned\n            to it.",
                      "x-yang-type": "snmp-framework:SnmpAdminString"
                    },
                    "csbCallStatsCallsHigh": {
                      "type": "integer",
                      "description": "This object indicates the maximum number of calls per second\n            processed by the Session Border Controller in past 24 hours.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbCallStatsRate1Sec": {
                      "type": "integer",
                      "description": "This object indicates the average calls per second processed by\n            the Session Border Controller.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbCallStatsCallsLow": {
                      "type": "integer",
                      "description": "This object indicates the minimum calls per second in past 24\n            hours.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbCallStatsAvailableFlows": {
                      "type": "integer",
                      "description": "This object indicates the number of media flows which are\n            available.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbCallStatsUsedFlows": {
                      "type": "integer",
                      "description": "This object indicates the number of media flows which are\n            used. This is for the flow allocated and connected. The flow\n            allocated but not connected is not counted.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbCallStatsPeakFlows": {
                      "type": "integer",
                      "description": "This object indicates the number of peak flows in SBC.\n            This is the highest recorded value for the active flows since\n            the box was booted/reseted.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbCallStatsTotalFlows": {
                      "type": "integer",
                      "description": "This object indicates the total number of media support by this\n            instance of SBC. The total number of flows include the\n            available\n            flows and the active flows. This value is since box was\n            booted/reseted. Total flows include the active flows and the\n            flows allocated but not connected.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbCallStatsUsedSigFlows": {
                      "type": "integer",
                      "description": "This object indicates the number of active signaling flows for\n            signaling pinholes.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbCallStatsPeakSigFlows": {
                      "type": "integer",
                      "description": "This object indicates the peak signaling flow in SBC.\n            This is the highest recorded value for the active signaling\n            flows. This object is calculated using csbCallStatsUsedFlows.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbCallStatsTotalSigFlows": {
                      "type": "integer",
                      "description": "This object indicates the maximum number of Signalling Flows\n            that can be supported by this instance of SBC.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbCallStatsAvailablePktRate": {
                      "type": "integer",
                      "description": "This object indicates the remaining capacity that can be\n            supported by SBC.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbCallStatsUnclassifiedPkts": {
                      "type": "integer",
                      "description": "This object indicates the number of unclassified packets\n            processed by SBC.",
                      "minimum": 0
                    },
                    "csbCallStatsRTPPktsSent": {
                      "type": "integer",
                      "description": "This object indicates the total number of RTP packets sent.",
                      "minimum": 0
                    },
                    "csbCallStatsRTPPktsRcvd": {
                      "type": "integer",
                      "description": "This object indicates the total number of RTP packets\n            received.",
                      "minimum": 0
                    },
                    "csbCallStatsRTPPktsDiscard": {
                      "type": "integer",
                      "description": "This object indicates the total number of RTP packets\n            discarded.",
                      "minimum": 0
                    },
                    "csbCallStatsRTPOctetsSent": {
                      "type": "integer",
                      "description": "This object indicates the number of RTP octets sent by the\n            SBC.",
                      "minimum": 0
                    },
                    "csbCallStatsRTPOctetsRcvd": {
                      "type": "integer",
                      "description": "This object indicates the number of RTP octets received by\n            the SBC.",
                      "minimum": 0
                    },
                    "csbCallStatsRTPOctetsDiscard": {
                      "type": "integer",
                      "description": "This object indicates the number of RTP octets discarded by\n            the SBC.",
                      "minimum": 0
                    },
                    "csbCallStatsNoMediaCount": {
                      "type": "integer",
                      "description": "This object indicates the accumulated No media event\n            count.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbCallStatsRouteErrors": {
                      "type": "integer",
                      "description": "This object indicates the accumulated route error event\n            count. This counter is for the route error of media stream.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbCallStatsAvailableTranscodeFlows": {
                      "type": "integer",
                      "description": "This object indicates the number of additional transcoded flows\n            that this media gateway manager (MGM) entity is currently able\n            to configure.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbCallStatsActiveTranscodeFlows": {
                      "type": "integer",
                      "description": "This object indicates the current number of transcoded\n            flows that are actively forwarding media traffic.  In this\n            context, a flow is a media stream passing through the device.\n            So a single voice call will be counted only once.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbCallStatsPeakTranscodeFlows": {
                      "type": "integer",
                      "description": "This object indicates the peak number of active transcoded\n            flows since the statistics were last reset.  In this context, a\n            flow is a media stream passing through the device, so a single\n            voice call will be counted once.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbCallStatsTotalTranscodeFlows": {
                      "type": "integer",
                      "description": "This object indicates the accumulated total number of\n            transcoded flows.  This count contains both active flows and\n            flows that were allocated but never connected.  In this context,\n            a flow is a media stream passing through the device, so a single\n            voice call will be counted once.",
                      "minimum": 0,
                      "maximum": 4294967295
                    }
                  }
                },
                "example": {
                  "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:csbCallStatsEntry": {
                    "csbCallStatsInstanceIndex": "example-string",
                    "csbCallStatsServiceIndex": 1,
                    "csbCallStatsSbcName": "interface-1",
                    "csbCallStatsCallsHigh": 0,
                    "csbCallStatsRate1Sec": 0,
                    "csbCallStatsCallsLow": 0,
                    "csbCallStatsAvailableFlows": 0,
                    "csbCallStatsUsedFlows": 0,
                    "csbCallStatsPeakFlows": 0,
                    "csbCallStatsTotalFlows": 0,
                    "csbCallStatsUsedSigFlows": 0,
                    "csbCallStatsPeakSigFlows": 0,
                    "csbCallStatsTotalSigFlows": 0,
                    "csbCallStatsAvailablePktRate": 0,
                    "csbCallStatsUnclassifiedPkts": 0,
                    "csbCallStatsRTPPktsSent": 0,
                    "csbCallStatsRTPPktsRcvd": 0,
                    "csbCallStatsRTPPktsDiscard": 0,
                    "csbCallStatsRTPOctetsSent": 1234567890,
                    "csbCallStatsRTPOctetsRcvd": 1234567890,
                    "csbCallStatsRTPOctetsDiscard": 1234567890,
                    "csbCallStatsNoMediaCount": 0,
                    "csbCallStatsRouteErrors": 0,
                    "csbCallStatsAvailableTranscodeFlows": 0,
                    "csbCallStatsActiveTranscodeFlows": 0,
                    "csbCallStatsPeakTranscodeFlows": 0,
                    "csbCallStatsTotalTranscodeFlows": 0
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-csbCallStatsEntry-4"
      },
      "x-yang-path": "/csbCallStatsEntry={csbCallStatsInstanceIndex csbCallStatsServiceIndex}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "csbCallStatsInstanceIndex csbCallStatsServiceIndex"
      ]
    },
    "/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:csbCurrPeriodicStatsEntry={csbCallStatsInstanceIndex},{csbCallStatsServiceIndex},{csbCurrPeriodicStatsInterval}": {
      "get": {
        "summary": "Get csbCurrPeriodicStatsEntry entry",
        "description": "Retrieve specific csbCurrPeriodicStatsEntry entry by key from MIB",
        "tags": [
          "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB"
        ],
        "parameters": [
          {
            "name": "csbCallStatsInstanceIndex",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "csbCallStatsServiceIndex",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "csbCurrPeriodicStatsInterval",
            "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": {
                    "csbCallStatsInstanceIndex": {
                      "type": "string",
                      "description": "csbCallStatsInstanceIndex",
                      "x-yang-type": "leafref"
                    },
                    "csbCallStatsServiceIndex": {
                      "type": "string",
                      "description": "csbCallStatsServiceIndex",
                      "x-yang-type": "leafref"
                    },
                    "csbCurrPeriodicStatsInterval": {
                      "type": "string",
                      "description": "This object identifies the interval for which the periodic\n            statistics information is to be displayed. The interval\n            values can be 5 min, 15 mins, 1 hour , 1 Day. This object acts\n            as index for the table.",
                      "x-yang-type": "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CiscoSbcPeriodicStatsInterval"
                    },
                    "csbCurrPeriodicStatsActiveCalls": {
                      "type": "integer",
                      "description": "This object indicates the number of calls that have become\n            active during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbCurrPeriodicStatsActivatingCalls": {
                      "type": "integer",
                      "description": "This object indicates the number of calls that have become\n            activing during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbCurrPeriodicStatsDeactivatingCalls": {
                      "type": "integer",
                      "description": "This object indicates the number of calls that have become\n            deactiving during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbCurrPeriodicStatsTotalCallAttempts": {
                      "type": "integer",
                      "description": "This object indicates the number of total call attempts during\n            this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbCurrPeriodicStatsFailedCallAttempts": {
                      "type": "integer",
                      "description": "This object indicates the number of failed call attempts during\n            this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbCurrPeriodicStatsCallRoutingFailure": {
                      "type": "integer",
                      "description": "This object indicates the number of call setup failures due\n            to routing failures during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbCurrPeriodicStatsCallResourceFailure": {
                      "type": "integer",
                      "description": "This object indicates the number of call setup failures due\n            to resource failures during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbCurrPeriodicStatsCallMediaFailure": {
                      "type": "integer",
                      "description": "This object indicates the number of call setup failures due\n            to media failure during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbCurrPeriodicStatsCallSigFailure": {
                      "type": "integer",
                      "description": "This object indicates the number of call setup failures due\n            to signaling failure during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbCurrPeriodicStatsActiveCallFailure": {
                      "type": "integer",
                      "description": "This object indicates the number of active call failures during\n            this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbCurrPeriodicStatsCongestionFailure": {
                      "type": "integer",
                      "description": "This object indicates the number of call setup failures due\n            to congestion during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbCurrPeriodicStatsCallSetupPolicyFailure": {
                      "type": "integer",
                      "description": "This object indicates the number of call setup failures due\n            to policy failure during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbCurrPeriodicStatsCallSetupNAPolicyFailure": {
                      "type": "integer",
                      "description": "This object indicates the number of call setup failures due\n            to NA policy failure during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbCurrPeriodicStatsCallSetupRoutingPolicyFailure": {
                      "type": "integer",
                      "description": "This object indicates the number of call setup failures due\n            to routing policy failure during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbCurrPeriodicStatsCallSetupCACPolicyFailure": {
                      "type": "integer",
                      "description": "This object indicates the number of call setup failures due\n            to CAC policy failure during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbCurrPeriodicStatsCallSetupCACCallLimitFailure": {
                      "type": "integer",
                      "description": "This object indicates the number of call setup failures due\n            to CAC call limit during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbCurrPeriodicStatsCallSetupCACRateLimitFailure": {
                      "type": "integer",
                      "description": "This object indicates the number of call setup failures due\n            to CAC call rate limit during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbCurrPeriodicStatsCallSetupCACBandwidthFailure": {
                      "type": "integer",
                      "description": "This object indicates the number of call setup failures due\n            to CAC bandwidth limit during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbCurrPeriodicStatsCallSetupCACMediaLimitFailure": {
                      "type": "integer",
                      "description": "This object indicates the number of call setup failures due\n            to CAC media limit during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbCurrPeriodicStatsCallSetupCACMediaUpdateFailure": {
                      "type": "integer",
                      "description": "This object indicates the number of call update failure due\n            to policy failure during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbCurrPeriodicStatsTimestamp": {
                      "type": "string",
                      "description": "This object indicates the current time at the start of each\n            interval.",
                      "format": "binary"
                    },
                    "csbCurrPeriodicStatsTranscodedCalls": {
                      "type": "integer",
                      "description": "The object indicates the number of transcoded calls that are\n            active during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbCurrPeriodicStatsTransratedCalls": {
                      "type": "integer",
                      "description": "The object indicates the number of transrated calls that are\n            active during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbCurrPeriodicStatsTotalCallUpdateFailure": {
                      "type": "integer",
                      "description": "This object indicates the total number of call update failures\n            during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbCurrPeriodicStatsActiveIpv6Calls": {
                      "type": "integer",
                      "description": "This Object indicates the number of calls through SBC that use\n            IPv6 signaling.  This statistic totals all calls that traverse\n            an IPv6 adjacency on either or both sides of SBC during this\n            interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbCurrPeriodicStatsActiveEmergencyCalls": {
                      "type": "integer",
                      "description": "This object indicates the number of calls through SBC that have\n            been identified as emergency calls (by Number Analysis) during\n            this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbCurrPeriodicStatsActiveE2EmergencyCalls": {
                      "type": "integer",
                      "description": "This object indicates the number of calls through SBC that have\n            been identified as emergency calls (by Number Analysis) and\n            have used the e2 interface to obtain location information for\n            the caller during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbCurrPeriodicStatsImsRxActiveCalls": {
                      "type": "integer",
                      "description": "This object indicates the total number of active calls which\n            use IMS Rx, during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbCurrPeriodicStatsImsRxCallSetupFaiures": {
                      "type": "integer",
                      "description": "This object indicates the total call Setup failures owing to\n            IMS Rx failure during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbCurrPeriodicStatsImsRxCallRenegotiationAttempts": {
                      "type": "integer",
                      "description": "This object indicates the total call renegotiation attempts\n            using IMS Rx during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbCurrPeriodicStatsImsRxCallRenegotiationFailures": {
                      "type": "integer",
                      "description": "This object indicates the total call renegotiation failures\n            owing to IMS Rx failure during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbCurrPeriodicStatsAudioTranscodedCalls": {
                      "type": "integer",
                      "description": "The number of active audio transcoded calls through\n            this adjacency or account during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbCurrPeriodicStatsFaxTranscodedCalls": {
                      "type": "integer",
                      "description": "This object indicates the the number of active fax\n            transcoded calls through this adjacency or account during this\n            interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbCurrPeriodicStatsRtpDisallowedFailures": {
                      "type": "integer",
                      "description": "This object indicates the total call setup failures due to RTP\n            being proposed when not permitted during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbCurrPeriodicStatsSrtpDisallowedFailures": {
                      "type": "integer",
                      "description": "This object indicates the total call setup failures due to SRTP\n            being proposed when not permitted during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbCurrPeriodicStatsNonSrtpCalls": {
                      "type": "integer",
                      "description": "This object indicates the number of active calls\n            through this adjacency or account which do not use SRTP on any\n            media channels during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbCurrPeriodicStatsSrtpNonIwCalls": {
                      "type": "integer",
                      "description": "This object indicates the number of active calls\n            through this adjacency or account that have one or more media\n            channels which use SRTP. This count does not include media \n            channels that provide interworking between RTP and SRTP during\n            this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbCurrPeriodicStatsSrtpIwCalls": {
                      "type": "integer",
                      "description": "This object indicates the number of active calls\n            through this adjacency or account that have one or more media\n            channels that provide interworking between RTP and SRTP during\n            this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbCurrPeriodicStatsDtmfIw2833Calls": {
                      "type": "integer",
                      "description": "This object indicates the number of active calls\n            through this adjacency or account for which DTMF interworking\n            is enabled between DTMF in signaling and DTMF in media via RFC\n            2833 during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbCurrPeriodicStatsDtmfIwInbandCalls": {
                      "type": "integer",
                      "description": "This object indicates the number of active calls\n            through this adjacency or account for which DTMF interworking\n            is enabled between DTMF in signaling and DTMF in media via \n            inband DTMF tones during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbCurrPeriodicStatsDtmfIw2833InbandCalls": {
                      "type": "integer",
                      "description": "This object indicates the number of active calls\n            through this adjacency or account for which DTMF interworking\n            is enabled between DTMF in media via RFC 2833 and DTMF in media\n            via inband DTMF tones during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbCurrPeriodicStatsTotalTapsRequested": {
                      "type": "integer",
                      "description": "This object indicates the lawful intercept tap attempts\n            requested within the scope of this query during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbCurrPeriodicStatsTotalTapsSucceeded": {
                      "type": "integer",
                      "description": "This object indicates the lawful intercept tap attempts that\n            have been successfully implemented within the scope of this\n            query during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbCurrPeriodicStatsCurrentTaps": {
                      "type": "integer",
                      "description": "This object indicates the Lawful intercept taps currently in\n            place on calls within the scope of this query during this\n            interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbCurrPeriodicIpsecCalls": {
                      "type": "integer",
                      "description": "The number of active calls on this adjacency or account which\n            are to or from registered subscribers using IPSEC during this\n            interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    }
                  }
                },
                "example": {
                  "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:csbCurrPeriodicStatsEntry": {
                    "csbCallStatsInstanceIndex": "example-string",
                    "csbCallStatsServiceIndex": "example-string",
                    "csbCurrPeriodicStatsInterval": "example-string",
                    "csbCurrPeriodicStatsActiveCalls": 0,
                    "csbCurrPeriodicStatsActivatingCalls": 0,
                    "csbCurrPeriodicStatsDeactivatingCalls": 0,
                    "csbCurrPeriodicStatsTotalCallAttempts": 0,
                    "csbCurrPeriodicStatsFailedCallAttempts": 0,
                    "csbCurrPeriodicStatsCallRoutingFailure": 0,
                    "csbCurrPeriodicStatsCallResourceFailure": 0,
                    "csbCurrPeriodicStatsCallMediaFailure": 0,
                    "csbCurrPeriodicStatsCallSigFailure": 0,
                    "csbCurrPeriodicStatsActiveCallFailure": 0,
                    "csbCurrPeriodicStatsCongestionFailure": 0,
                    "csbCurrPeriodicStatsCallSetupPolicyFailure": 0,
                    "csbCurrPeriodicStatsCallSetupNAPolicyFailure": 0,
                    "csbCurrPeriodicStatsCallSetupRoutingPolicyFailure": 0,
                    "csbCurrPeriodicStatsCallSetupCACPolicyFailure": 0,
                    "csbCurrPeriodicStatsCallSetupCACCallLimitFailure": 0,
                    "csbCurrPeriodicStatsCallSetupCACRateLimitFailure": 0,
                    "csbCurrPeriodicStatsCallSetupCACBandwidthFailure": 0,
                    "csbCurrPeriodicStatsCallSetupCACMediaLimitFailure": 0,
                    "csbCurrPeriodicStatsCallSetupCACMediaUpdateFailure": 0,
                    "csbCurrPeriodicStatsTimestamp": "example-string",
                    "csbCurrPeriodicStatsTranscodedCalls": 0,
                    "csbCurrPeriodicStatsTransratedCalls": 0,
                    "csbCurrPeriodicStatsTotalCallUpdateFailure": 0,
                    "csbCurrPeriodicStatsActiveIpv6Calls": 0,
                    "csbCurrPeriodicStatsActiveEmergencyCalls": 0,
                    "csbCurrPeriodicStatsActiveE2EmergencyCalls": 0,
                    "csbCurrPeriodicStatsImsRxActiveCalls": 0,
                    "csbCurrPeriodicStatsImsRxCallSetupFaiures": 0,
                    "csbCurrPeriodicStatsImsRxCallRenegotiationAttempts": 0,
                    "csbCurrPeriodicStatsImsRxCallRenegotiationFailures": 0,
                    "csbCurrPeriodicStatsAudioTranscodedCalls": 0,
                    "csbCurrPeriodicStatsFaxTranscodedCalls": 0,
                    "csbCurrPeriodicStatsRtpDisallowedFailures": 0,
                    "csbCurrPeriodicStatsSrtpDisallowedFailures": 0,
                    "csbCurrPeriodicStatsNonSrtpCalls": 0,
                    "csbCurrPeriodicStatsSrtpNonIwCalls": 0,
                    "csbCurrPeriodicStatsSrtpIwCalls": 0,
                    "csbCurrPeriodicStatsDtmfIw2833Calls": 0,
                    "csbCurrPeriodicStatsDtmfIwInbandCalls": 0,
                    "csbCurrPeriodicStatsDtmfIw2833InbandCalls": 0,
                    "csbCurrPeriodicStatsTotalTapsRequested": 0,
                    "csbCurrPeriodicStatsTotalTapsSucceeded": 0,
                    "csbCurrPeriodicStatsCurrentTaps": 0,
                    "csbCurrPeriodicIpsecCalls": 0
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-csbCurrPeriodicStatsEntry-4"
      },
      "x-yang-path": "/csbCurrPeriodicStatsEntry={csbCallStatsInstanceIndex csbCallStatsServiceIndex csbCurrPeriodicStatsInterval}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "csbCallStatsInstanceIndex csbCallStatsServiceIndex csbCurrPeriodicStatsInterval"
      ]
    },
    "/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:csbHistoryStatsEntry={csbCallStatsInstanceIndex},{csbCallStatsServiceIndex},{csbHistoryStatsInterval},{csbHistoryStatsElements}": {
      "get": {
        "summary": "Get csbHistoryStatsEntry entry",
        "description": "Retrieve specific csbHistoryStatsEntry entry by key from MIB",
        "tags": [
          "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB"
        ],
        "parameters": [
          {
            "name": "csbCallStatsInstanceIndex",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "csbCallStatsServiceIndex",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "csbHistoryStatsInterval",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "csbHistoryStatsElements",
            "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": {
                    "csbCallStatsInstanceIndex": {
                      "type": "string",
                      "description": "csbCallStatsInstanceIndex",
                      "x-yang-type": "leafref"
                    },
                    "csbCallStatsServiceIndex": {
                      "type": "string",
                      "description": "csbCallStatsServiceIndex",
                      "x-yang-type": "leafref"
                    },
                    "csbHistoryStatsInterval": {
                      "type": "string",
                      "description": "This object identifies the interval for which the history\n            statistics information is to be displayed. The interval\n            values can be 5 min, 15 mins, 1 hour , 1 day. This object acts\n            as index for the table.",
                      "x-yang-type": "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CiscoSbcPeriodicStatsInterval"
                    },
                    "csbHistoryStatsElements": {
                      "type": "integer",
                      "description": "The platform assigns a number starting with one and\n            increments it each for each new row. When the maximum         \n            number of row is reached the oldest rows are deleted. It is up\n            to the platform to determine the number of entries for each\n            interval. It is recommended that each platform support at least\n            one entry for 5 min, 15 mins, 1 hour and 1 day intervals.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbHistoryStatsActiveCalls": {
                      "type": "integer",
                      "description": "This object indicates the number of active calls history during\n            this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbHistoryStatsTotalCallAttempts": {
                      "type": "integer",
                      "description": "This object indicates the number of total call attempts history\n            during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbHistoryStatsFailedCallAttempts": {
                      "type": "integer",
                      "description": "This object indicates the number of failed call attempts during\n            this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbHistoryStatsCallRoutingFailure": {
                      "type": "integer",
                      "description": "This object indicates the number of call setup failures due\n            to routing failures during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbHistoryStatsCallResourceFailure": {
                      "type": "integer",
                      "description": "This object indicates the number of call setup failures due\n            to resource failures during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbHistoryStatsCallMediaFailure": {
                      "type": "integer",
                      "description": "This object indicates the number of call setup failures due\n            to media failure during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbHistoryStatsFailSigFailure": {
                      "type": "integer",
                      "description": "This object indicates the number of call setup failures due\n            to signaling failure during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbHistoryStatsActiveCallFailure": {
                      "type": "integer",
                      "description": "This object indicates the number of active call failures during\n            this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbHistoryStatsCongestionFailure": {
                      "type": "integer",
                      "description": "This object indicates the number of call setup failures due\n            to congestion during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbHistoryStatsCallSetupPolicyFailure": {
                      "type": "integer",
                      "description": "This object indicates the number of call setup failures due\n            to some policy violations during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbHistoryStatsCallSetupNAPolicyFailure": {
                      "type": "integer",
                      "description": "This object indicates the number of call setup failures due\n            to NA policy failure during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbHistoryStatsCallSetupRoutingPolicyFailure": {
                      "type": "integer",
                      "description": "This object indicates the number of call setup failures due\n            to routing policy failure during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbHistoryStatsCallSetupCACPolicyFailure": {
                      "type": "integer",
                      "description": "This object indicates the number of call setup failures due\n            to CAC policy failure during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbHistoryStatsCallSetupCACCallLimitFailure": {
                      "type": "integer",
                      "description": "This object indicates the number of call setup failures due\n            to CAC call limit during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbHistoryStatsCallSetupCACRateLimitFailure": {
                      "type": "integer",
                      "description": "This object indicates the number of call setup failures due\n            to CAC call rate limit during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbHistoryStatsCallSetupCACBandwidthFailure": {
                      "type": "integer",
                      "description": "This object indicates the number of call setup failures due\n            to CAC bandwidth limit during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbHistoryStatsCallSetupCACMediaLimitFailure": {
                      "type": "integer",
                      "description": "This object indicates the number of call setup failures due\n            to CAC media limit during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbHistoryStatsCallSetupCACMediaUpdateFailure": {
                      "type": "integer",
                      "description": "This object indicates the number of call update failure due\n            to policy failure during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbHistoryStatsTimestamp": {
                      "type": "string",
                      "description": "This object indicates the time at the start of the interval\n            when measurements were first collected for this interval in the\n            csbCurrPeriodicStatsTable.",
                      "format": "binary"
                    },
                    "csbHistroyStatsTranscodedCalls": {
                      "type": "integer",
                      "description": "The object indicates the number of active transcoded\n            calls during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbHistroyStatsTransratedCalls": {
                      "type": "integer",
                      "description": "The object indicates the number of active transrated\n            calls during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbHistoryStatsTotalCallUpdateFailure": {
                      "type": "integer",
                      "description": "This object indicates the total call update failures during\n            this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbHistoryStatsActiveIpv6Calls": {
                      "type": "integer",
                      "description": "This Object indicates the number of calls through SBC that use\n            IPv6 signaling.  This statistic totals all calls that traverse\n            an IPv6 adjacency on either or both sides of SBC during this\n            interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbHistoryStatsActiveEmergencyCalls": {
                      "type": "integer",
                      "description": "This object indicates the number of calls through SBC that have\n            been identified as emergency calls (by Number Analysis)  during\n            this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbHistoryStatsActiveE2EmergencyCalls": {
                      "type": "integer",
                      "description": "This object indicates the number of calls through SBC that have\n            been identified as emergency calls (by Number Analysis) and\n            have used the e2 interface to obtain location information for\n            the\n            caller.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbHistoryStatsImsRxActiveCalls": {
                      "type": "integer",
                      "description": "This object indicates the total number of active calls which\n            use IMS Rx, during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbHistoryStatsImsRxCallSetupFailures": {
                      "type": "integer",
                      "description": "This object indicates the total call setup failures owing to\n            IMS Rx failure during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbHistoryStatsImsRxCallRenegotiationAttempts": {
                      "type": "integer",
                      "description": "This object indicates the total call renegotiation attempts\n            using IMS Rx during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbHistoryStatsImsRxCallRenegotiationFailures": {
                      "type": "integer",
                      "description": "This object indicates the total call renegotiation failures\n            owing to IMS Rx failure during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbHistoryStatsAudioTranscodedCalls": {
                      "type": "integer",
                      "description": "The number of active audio transcoded calls through\n            this adjacency or account during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbHistoryStatsFaxTranscodedCalls": {
                      "type": "integer",
                      "description": "This object indicates the the number of active fax\n            transcoded calls through this adjacency or account during this\n            interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbHistoryStatsRtpDisallowedFailures": {
                      "type": "integer",
                      "description": "This object indicates the total call setup failures due to RTP\n            being proposed when not permitted during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbHistoryStatsSrtpDisallowedFailures": {
                      "type": "integer",
                      "description": "This object indicates the total call setup failures due to SRTP\n            being proposed when not permitted during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbHistoryStatsNonSrtpCalls": {
                      "type": "integer",
                      "description": "This object indicates the number of active calls\n            through this adjacency or account which do not use SRTP on any\n            media channels during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbHistoryStatsSrtpNonIwCalls": {
                      "type": "integer",
                      "description": "This object indicates the number of active calls\n            through this adjacency or account that have one or more media\n            channels that use SRTP but no media channels that provide\n            interworking between RTP and SRTP during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbHistoryStatsSrtpIwCalls": {
                      "type": "integer",
                      "description": "This object indicates the number of active calls\n            through this adjacency or account that have one or more media\n            channels that provide interworking between RTP and SRTP during\n            this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbHistoryStatsDtmfIw2833Calls": {
                      "type": "integer",
                      "description": "This object indicates the number of active calls\n            through this adjacency or account for which DTMF interworking\n            is enabled between DTMF in signaling and DTMF in media via RFC\n            2833 during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbHistoryStatsDtmfIwInbandCalls": {
                      "type": "integer",
                      "description": "This object indicates the number of active calls\n            through this adjacency or account for which DTMF interworking\n            is enabled between DTMF in signaling and DTMF in media via\n            inband DTMF tones during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbHistoryStatsDtmfIw2833InbandCalls": {
                      "type": "integer",
                      "description": "This object indicates the number of active calls\n            through this adjacency or account for which DTMF interworking\n            is enabled between DTMF in media via RFC 2833 and DTMF in media\n            via inband DTMF tones during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbHistoryStatsTotalTapsRequested": {
                      "type": "integer",
                      "description": "This object indicates the lawful intercept tap attempts\n            requested within the scope of this query during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbHistoryStatsTotalTapsSucceeded": {
                      "type": "integer",
                      "description": "This object indicates the lawful intercept tap attempts that\n            have been successfully implemented within the scope of this\n            query during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbHistoryStatsCurrentTaps": {
                      "type": "integer",
                      "description": "This object indicates the Lawful intercept taps currently in\n            place on calls within the scope of this query during this\n            interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbHistoryStatsIpsecCalls": {
                      "type": "integer",
                      "description": "The number of active calls on this adjacency or account which\n            are to or from registered subscribers using IPSEC during this\n            interval.",
                      "minimum": 0,
                      "maximum": 4294967295
                    }
                  }
                },
                "example": {
                  "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:csbHistoryStatsEntry": {
                    "csbCallStatsInstanceIndex": "example-string",
                    "csbCallStatsServiceIndex": "example-string",
                    "csbHistoryStatsInterval": "example-string",
                    "csbHistoryStatsElements": 0,
                    "csbHistoryStatsActiveCalls": 0,
                    "csbHistoryStatsTotalCallAttempts": 0,
                    "csbHistoryStatsFailedCallAttempts": 0,
                    "csbHistoryStatsCallRoutingFailure": 0,
                    "csbHistoryStatsCallResourceFailure": 0,
                    "csbHistoryStatsCallMediaFailure": 0,
                    "csbHistoryStatsFailSigFailure": 0,
                    "csbHistoryStatsActiveCallFailure": 0,
                    "csbHistoryStatsCongestionFailure": 0,
                    "csbHistoryStatsCallSetupPolicyFailure": 0,
                    "csbHistoryStatsCallSetupNAPolicyFailure": 0,
                    "csbHistoryStatsCallSetupRoutingPolicyFailure": 0,
                    "csbHistoryStatsCallSetupCACPolicyFailure": 0,
                    "csbHistoryStatsCallSetupCACCallLimitFailure": 0,
                    "csbHistoryStatsCallSetupCACRateLimitFailure": 0,
                    "csbHistoryStatsCallSetupCACBandwidthFailure": 0,
                    "csbHistoryStatsCallSetupCACMediaLimitFailure": 0,
                    "csbHistoryStatsCallSetupCACMediaUpdateFailure": 0,
                    "csbHistoryStatsTimestamp": "example-string",
                    "csbHistroyStatsTranscodedCalls": 0,
                    "csbHistroyStatsTransratedCalls": 0,
                    "csbHistoryStatsTotalCallUpdateFailure": 0,
                    "csbHistoryStatsActiveIpv6Calls": 0,
                    "csbHistoryStatsActiveEmergencyCalls": 0,
                    "csbHistoryStatsActiveE2EmergencyCalls": 0,
                    "csbHistoryStatsImsRxActiveCalls": 0,
                    "csbHistoryStatsImsRxCallSetupFailures": 0,
                    "csbHistoryStatsImsRxCallRenegotiationAttempts": 0,
                    "csbHistoryStatsImsRxCallRenegotiationFailures": 0,
                    "csbHistoryStatsAudioTranscodedCalls": 0,
                    "csbHistoryStatsFaxTranscodedCalls": 0,
                    "csbHistoryStatsRtpDisallowedFailures": 0,
                    "csbHistoryStatsSrtpDisallowedFailures": 0,
                    "csbHistoryStatsNonSrtpCalls": 0,
                    "csbHistoryStatsSrtpNonIwCalls": 0,
                    "csbHistoryStatsSrtpIwCalls": 0,
                    "csbHistoryStatsDtmfIw2833Calls": 0,
                    "csbHistoryStatsDtmfIwInbandCalls": 0,
                    "csbHistoryStatsDtmfIw2833InbandCalls": 0,
                    "csbHistoryStatsTotalTapsRequested": 0,
                    "csbHistoryStatsTotalTapsSucceeded": 0,
                    "csbHistoryStatsCurrentTaps": 0,
                    "csbHistoryStatsIpsecCalls": 0
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-csbHistoryStatsEntry-4"
      },
      "x-yang-path": "/csbHistoryStatsEntry={csbCallStatsInstanceIndex csbCallStatsServiceIndex csbHistoryStatsInterval csbHistoryStatsElements}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "csbCallStatsInstanceIndex csbCallStatsServiceIndex csbHistoryStatsInterval csbHistoryStatsElements"
      ]
    },
    "/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:csbPerFlowStatsEntry={csbCallStatsInstanceIndex},{csbCallStatsServiceIndex},{csbPerFlowStatsVdbeId},{csbPerFlowStatsGateId},{csbPerFlowStatsFlowPairId},{csbPerFlowStatsSideId}": {
      "get": {
        "summary": "Get csbPerFlowStatsEntry entry",
        "description": "Retrieve specific csbPerFlowStatsEntry entry by key from MIB",
        "tags": [
          "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB"
        ],
        "parameters": [
          {
            "name": "csbCallStatsInstanceIndex",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "csbCallStatsServiceIndex",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "csbPerFlowStatsVdbeId",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "csbPerFlowStatsGateId",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "csbPerFlowStatsFlowPairId",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "csbPerFlowStatsSideId",
            "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": {
                    "csbCallStatsInstanceIndex": {
                      "type": "string",
                      "description": "csbCallStatsInstanceIndex",
                      "x-yang-type": "leafref"
                    },
                    "csbCallStatsServiceIndex": {
                      "type": "string",
                      "description": "csbCallStatsServiceIndex",
                      "x-yang-type": "leafref"
                    },
                    "csbPerFlowStatsVdbeId": {
                      "type": "integer",
                      "description": "This object identifies the virtual media gateway id. This\n            object also acts as an index for the table.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "csbPerFlowStatsGateId": {
                      "type": "integer",
                      "description": "This object identifies the gate id. This object also acts as\n            an index for the table.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "csbPerFlowStatsFlowPairId": {
                      "type": "integer",
                      "description": "This object identifies the flow pair id. This object also acts\n            as an index for the table.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "csbPerFlowStatsSideId": {
                      "type": "string",
                      "description": "This object identifies the index corresponding to side of flow\n            pair either side A or side B. This object also acts as an index\n            for the table."
                    },
                    "csbPerFlowStatsFlowType": {
                      "type": "string",
                      "description": "This object indicates the type of the flow, like media flow,\n            signaling flow etc."
                    },
                    "csbPerFlowStatsRTPPktsSent": {
                      "type": "integer",
                      "description": "This object indicates the number of RTP packets sent per flow\n            by the SBC.",
                      "minimum": 0
                    },
                    "csbPerFlowStatsRTPPktsRcvd": {
                      "type": "integer",
                      "description": "This object indicates the number of RTP packets received per\n            flow by the SBC.",
                      "minimum": 0
                    },
                    "csbPerFlowStatsRTPPktsDiscard": {
                      "type": "integer",
                      "description": "This object indicates the number of RTP packets discarded  per\n            flow by the SBC.",
                      "minimum": 0
                    },
                    "csbPerFlowStatsRTPOctetsSent": {
                      "type": "integer",
                      "description": "This object indicates the number of RTP octets sent\n            per flow by the SBC.",
                      "minimum": 0
                    },
                    "csbPerFlowStatsRTPOctetsRcvd": {
                      "type": "integer",
                      "description": "This object indicates the number of RTP octets received\n            per flow by the SBC.",
                      "minimum": 0
                    },
                    "csbPerFlowStatsRTPOctetsDiscard": {
                      "type": "integer",
                      "description": "This object indicates the number of RTP octets discarded\n            per flow by the SBC.",
                      "minimum": 0
                    },
                    "csbPerFlowStatsRTCPPktsSent": {
                      "type": "integer",
                      "description": "The number of RTP packets sent by the remote end point to this\n            MG on this flow. Comparing this with the local number of RTP\n            packets received from the remote end point gives an indication\n            of how many incoming  packets were dropped on this leg of the\n            call. This information is from RTCP packet. Not all endpoints\n            report this statistic, if it is not available it will be set to\n            zero. This statistic will not be available for signaling flows.",
                      "minimum": 0
                    },
                    "csbPerFlowStatsRTCPPktsRcvd": {
                      "type": "integer",
                      "description": "The number of RTP packets received by the remote end point from\n            this MG on this flow. Comparing this with the local number of\n            RTP packets sent from this MG to the remote endpoint gives an\n            indication of how many outgoing packets were dropped on this\n            leg of the call. This information is from RTCP packet. Not all\n            endpoints report this statistic, if it is not available it will\n            be set to zero. This statistic will not be available for\n            signaling flows.",
                      "minimum": 0
                    },
                    "csbPerFlowStatsRTCPPktsLost": {
                      "type": "integer",
                      "description": "The number of RTP packets reported as lost by the remote end\n            point on this flow. This information is from RTCP packet. Not\n            all endpoints report this statistic, if it is not available it\n            will be set to zero. This statistic will not be available for\n            signaling flows.",
                      "minimum": 0
                    },
                    "csbPerFlowStatsEPJitter": {
                      "type": "integer",
                      "description": "This object indicates the End Point jitter per flow in the\n            SBC.",
                      "minimum": 0
                    },
                    "csbPerFlowStatsTmanPerMbs": {
                      "type": "integer",
                      "description": "This object indicates the maximum burst size for the\n            current FlowPair.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbPerFlowStatsTmanPerSdr": {
                      "type": "integer",
                      "description": "This object indicates the bandwidth reserved for flow in\n            kilobytes/second.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbPerFlowStatsDscpSettings": {
                      "type": "string",
                      "description": "This object indicates the mark packets sent for the\n            current FlowPair with, or zero if none set. The DSCP is a 6-bit\n            value, which will be present in the top 6 bits of the lowest\n            byte of this field.",
                      "x-yang-type": "snmp-framework:SnmpAdminString"
                    },
                    "csbPerFlowStatsAdrStatus": {
                      "type": "string",
                      "description": "This object indicates whether the flow on the current\n            FlowPair has subscribed for the NAT latch event.",
                      "format": "binary"
                    },
                    "csbPerFlowStatsQASettings": {
                      "type": "string",
                      "description": "This object indicates the flow on the current FlowPair has\n            subscribed for the media loss event.",
                      "format": "binary"
                    },
                    "csbPerFlowStatsRTPPktsLost": {
                      "type": "integer",
                      "description": "This object indicates the number of RTP packets lost per flow\n            by the SBC.",
                      "minimum": 0
                    }
                  }
                },
                "example": {
                  "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:csbPerFlowStatsEntry": {
                    "csbCallStatsInstanceIndex": "example-string",
                    "csbCallStatsServiceIndex": "example-string",
                    "csbPerFlowStatsVdbeId": -2147483648,
                    "csbPerFlowStatsGateId": -2147483648,
                    "csbPerFlowStatsFlowPairId": -2147483648,
                    "csbPerFlowStatsSideId": "example-string",
                    "csbPerFlowStatsFlowType": "ethernetCsmacd(6)",
                    "csbPerFlowStatsRTPPktsSent": 0,
                    "csbPerFlowStatsRTPPktsRcvd": 0,
                    "csbPerFlowStatsRTPPktsDiscard": 0,
                    "csbPerFlowStatsRTPOctetsSent": 1234567890,
                    "csbPerFlowStatsRTPOctetsRcvd": 1234567890,
                    "csbPerFlowStatsRTPOctetsDiscard": 1234567890,
                    "csbPerFlowStatsRTCPPktsSent": 0,
                    "csbPerFlowStatsRTCPPktsRcvd": 0,
                    "csbPerFlowStatsRTCPPktsLost": 0,
                    "csbPerFlowStatsEPJitter": 0,
                    "csbPerFlowStatsTmanPerMbs": 0,
                    "csbPerFlowStatsTmanPerSdr": 0,
                    "csbPerFlowStatsDscpSettings": "example-string",
                    "csbPerFlowStatsAdrStatus": "up(1)",
                    "csbPerFlowStatsQASettings": "example-string",
                    "csbPerFlowStatsRTPPktsLost": 0
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-csbPerFlowStatsEntry-4"
      },
      "x-yang-path": "/csbPerFlowStatsEntry={csbCallStatsInstanceIndex csbCallStatsServiceIndex csbPerFlowStatsVdbeId csbPerFlowStatsGateId csbPerFlowStatsFlowPairId csbPerFlowStatsSideId}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "csbCallStatsInstanceIndex csbCallStatsServiceIndex csbPerFlowStatsVdbeId csbPerFlowStatsGateId csbPerFlowStatsFlowPairId csbPerFlowStatsSideId"
      ]
    },
    "/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:csbH248StatsEntry={csbCallStatsInstanceIndex},{csbCallStatsServiceIndex},{csbH248StatsCtrlrIndex}": {
      "get": {
        "summary": "Get csbH248StatsEntry entry",
        "description": "Retrieve specific csbH248StatsEntry entry by key from MIB",
        "tags": [
          "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB"
        ],
        "parameters": [
          {
            "name": "csbCallStatsInstanceIndex",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "csbCallStatsServiceIndex",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "csbH248StatsCtrlrIndex",
            "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": {
                    "csbCallStatsInstanceIndex": {
                      "type": "string",
                      "description": "csbCallStatsInstanceIndex",
                      "x-yang-type": "leafref"
                    },
                    "csbCallStatsServiceIndex": {
                      "type": "string",
                      "description": "csbCallStatsServiceIndex",
                      "x-yang-type": "leafref"
                    },
                    "csbH248StatsCtrlrIndex": {
                      "type": "integer",
                      "description": "This object identifies the controller index of the H.248\n            server. This is also the index for the table.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "csbH248StatsRequestsSent": {
                      "type": "integer",
                      "description": "This object indicates the requests sent through the Session\n            Controller Interface to an SBE or DBE.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbH248StatsRequestsRcvd": {
                      "type": "integer",
                      "description": "This object indicates the requests received through the\n            Session Controller Interface to an SBE or DBE.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbH248StatsRequestsFailed": {
                      "type": "integer",
                      "description": "This object indicates the requests failed on session\n            Controller Interface to an SBE or DBE.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbH248StatsRequestsRetried": {
                      "type": "integer",
                      "description": "This object indicates the requests retried through the Session\n            Controller Interface to an SBE or DBE.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbH248StatsRepliesSent": {
                      "type": "integer",
                      "description": "This object indicates the number of replies sent through the\n            Session Controller Interface to an SBE or DBE.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbH248StatsRepliesRcvd": {
                      "type": "integer",
                      "description": "This object indicates the number of replies received from the\n            Session Controller Interface to an SBE or DBE.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbH248StatsRepliesRetried": {
                      "type": "integer",
                      "description": "This object indicates the number of replies retried through\n            the Session Controller Interface to an SBE or DBE.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbH248StatsSegPktsSent": {
                      "type": "integer",
                      "description": "This object indicates the number of packets sent through the\n            Session Controller Interface to an SBE or DBE.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbH248StatsSegPktsRcvd": {
                      "type": "integer",
                      "description": "This object indicates the number of packets received from the\n            Session Controller Interface to an SBE or DBE.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbH248StatsEstablishedTime": {
                      "type": "string",
                      "description": "This object indicates the H.248 Controller established\n            time (the time at which the association became established).",
                      "format": "binary"
                    },
                    "csbH248StatsTMaxTimeoutVal": {
                      "type": "integer",
                      "description": "This object indicates the T-Max timeout value. This field\n            specifies the maximum delay (in milliseconds) for a response\n            from an MGC before deciding that the request has failed.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "csbH248StatsRTT": {
                      "type": "integer",
                      "description": "This object indicates the calculated RTT value. This field\n            specifies the maximum round trip propagation delay in the \n            network (in milliseconds).",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbH248StatsLT": {
                      "type": "integer",
                      "description": "This object indicates the LT value calculated from RTT\n            value and Max timeout value. This field specifies the maximum\n            delay (in milliseconds) for a response from an MGC plus the\n            maximum round trip propagation delay in the network (in\n            milliseconds).",
                      "minimum": 0,
                      "maximum": 4294967295
                    }
                  }
                },
                "example": {
                  "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:csbH248StatsEntry": {
                    "csbCallStatsInstanceIndex": "example-string",
                    "csbCallStatsServiceIndex": "example-string",
                    "csbH248StatsCtrlrIndex": 1,
                    "csbH248StatsRequestsSent": 0,
                    "csbH248StatsRequestsRcvd": 0,
                    "csbH248StatsRequestsFailed": 0,
                    "csbH248StatsRequestsRetried": 0,
                    "csbH248StatsRepliesSent": 0,
                    "csbH248StatsRepliesRcvd": 0,
                    "csbH248StatsRepliesRetried": 0,
                    "csbH248StatsSegPktsSent": 0,
                    "csbH248StatsSegPktsRcvd": 0,
                    "csbH248StatsEstablishedTime": "example-string",
                    "csbH248StatsTMaxTimeoutVal": -2147483648,
                    "csbH248StatsRTT": 0,
                    "csbH248StatsLT": 0
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-csbH248StatsEntry-4"
      },
      "x-yang-path": "/csbH248StatsEntry={csbCallStatsInstanceIndex csbCallStatsServiceIndex csbH248StatsCtrlrIndex}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "csbCallStatsInstanceIndex csbCallStatsServiceIndex csbH248StatsCtrlrIndex"
      ]
    },
    "/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:csbH248StatsRev1Entry={csbCallStatsInstanceIndex},{csbCallStatsServiceIndex},{csbH248StatsVdbeId}": {
      "get": {
        "summary": "Get csbH248StatsRev1Entry entry",
        "description": "Retrieve specific csbH248StatsRev1Entry entry by key from MIB",
        "tags": [
          "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB"
        ],
        "parameters": [
          {
            "name": "csbCallStatsInstanceIndex",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "csbCallStatsServiceIndex",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "csbH248StatsVdbeId",
            "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": {
                    "csbCallStatsInstanceIndex": {
                      "type": "string",
                      "description": "csbCallStatsInstanceIndex",
                      "x-yang-type": "leafref"
                    },
                    "csbCallStatsServiceIndex": {
                      "type": "string",
                      "description": "csbCallStatsServiceIndex",
                      "x-yang-type": "leafref"
                    },
                    "csbH248StatsVdbeId": {
                      "type": "integer",
                      "description": "This object identifies the virtual media gateway id. This is\n            also the index for the table.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "csbH248StatsRequestsSentRev1": {
                      "type": "integer",
                      "description": "This object indicates the requests sent through the Session\n            Controller Interface to an SBE or DBE.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbH248StatsRequestsRcvdRev1": {
                      "type": "integer",
                      "description": "This object indicates the requests received through the\n            Session Controller Interface to an SBE or DBE.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbH248StatsRequestsFailedRev1": {
                      "type": "integer",
                      "description": "This object indicates the requests failed on session\n            Controller Interface to an SBE or DBE.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbH248StatsRequestsRetriedRev1": {
                      "type": "integer",
                      "description": "This object indicates the requests retried through the Session\n            Controller Interface to an SBE or DBE.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbH248StatsRepliesSentRev1": {
                      "type": "integer",
                      "description": "This object indicates the number of replies sent through the\n            Session Controller Interface to an SBE or DBE.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbH248StatsRepliesRcvdRev1": {
                      "type": "integer",
                      "description": "This object indicates the number of replies received from the\n            Session Controller Interface to an SBE or DBE.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbH248StatsRepliesRetriedRev1": {
                      "type": "integer",
                      "description": "This object indicates the number of replies retried through\n            the Session Controller Interface to an SBE or DBE.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbH248StatsSegPktsSentRev1": {
                      "type": "integer",
                      "description": "This object indicates the number of response segments sent by\n            DBE. This field will only be present if segmentation is enabled\n            on this association.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbH248StatsSegPktsRcvdRev1": {
                      "type": "integer",
                      "description": "This object indicates the number of response segments received\n            by DBE. This field will only be present if segmentation is\n            enabled on this association.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbH248StatsEstablishedTimeRev1": {
                      "type": "string",
                      "description": "This object indicates the H.248 Controller established\n            time (the time at which the association became established).",
                      "format": "binary"
                    },
                    "csbH248StatsTMaxTimeoutValRev1": {
                      "type": "integer",
                      "description": "This object indicates the T-Max timeout value. This field\n            specifies the maximum delay (in milliseconds) for a response\n            from an MGC before deciding that the request has failed.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "csbH248StatsRTTRev1": {
                      "type": "integer",
                      "description": "This object indicates the calculated RTT value. This field\n            specifies the maximum round trip propagation delay in the \n            network (in milliseconds).",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "csbH248StatsLTRev1": {
                      "type": "integer",
                      "description": "This object indicates the LT value calculated from RTT\n            value and Max timeout value. This field specifies the maximum\n            delay (in milliseconds) for a response from an MGC plus the\n            maximum round trip propagation delay in the network (in\n            milliseconds).",
                      "minimum": 0,
                      "maximum": 4294967295
                    }
                  }
                },
                "example": {
                  "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:csbH248StatsRev1Entry": {
                    "csbCallStatsInstanceIndex": "example-string",
                    "csbCallStatsServiceIndex": "example-string",
                    "csbH248StatsVdbeId": -2147483648,
                    "csbH248StatsRequestsSentRev1": 0,
                    "csbH248StatsRequestsRcvdRev1": 0,
                    "csbH248StatsRequestsFailedRev1": 0,
                    "csbH248StatsRequestsRetriedRev1": 0,
                    "csbH248StatsRepliesSentRev1": 0,
                    "csbH248StatsRepliesRcvdRev1": 0,
                    "csbH248StatsRepliesRetriedRev1": 0,
                    "csbH248StatsSegPktsSentRev1": 0,
                    "csbH248StatsSegPktsRcvdRev1": 0,
                    "csbH248StatsEstablishedTimeRev1": "example-string",
                    "csbH248StatsTMaxTimeoutValRev1": -2147483648,
                    "csbH248StatsRTTRev1": 0,
                    "csbH248StatsLTRev1": 0
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-csbH248StatsRev1Entry-4"
      },
      "x-yang-path": "/csbH248StatsRev1Entry={csbCallStatsInstanceIndex csbCallStatsServiceIndex csbH248StatsVdbeId}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "csbCallStatsInstanceIndex csbCallStatsServiceIndex csbH248StatsVdbeId"
      ]
    }
  },
  "components": {
    "schemas": {
      "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB_CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB": {
        "type": "object",
        "description": "The call stats instance table contains the physical index for\n        each of the physical entity (line card, primary, secondary\n        cards). The index of the table is instance index which uniquely\n        identifies the physical entity present on the box.",
        "properties": {
          "csbCallStatsInstanceEntry": {
            "type": "array",
            "description": "A conceptual row in csbCallStatsInstanceTable. There is an\n          entry in this table for each SBC instance, as identified by a \n          value of csbCallStatsInstanceIndex.",
            "items": {
              "type": "object",
              "properties": {
                "csbCallStatsInstanceIndex": {
                  "type": "integer",
                  "description": "This object uniquely identifies the sequence number of an\n            entity or slot that is configured per device. This index is\n            assigned arbitrarily by the engine and is not saved over\n            reboots.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "csbCallStatsInstancePhysicalIndex": {
                  "type": "string",
                  "description": "This object indicates the physical entity for which all the\n            measurements are maintained. The exact type of this\n            entity is described by its entPhysicalVendorType value.",
                  "x-yang-type": "cisco-tc:EntPhysicalIndexOrZero",
                  "readOnly": true
                }
              }
            },
            "readOnly": true
          },
          "csbCallStatsEntry": {
            "type": "array",
            "description": "An conceptual row in the csbCallStatsGlobalStatsTable. There is\n          an entry in this table for the particular service configured on\n          SBC identified by a value of csbCallStatsInstanceIndex. The\n          other index of this table is csbCallStatsInstanceIndex which is\n          defined in csbCallStatsInstanceTable.",
            "items": {
              "type": "object",
              "properties": {
                "csbCallStatsInstanceIndex": {
                  "type": "string",
                  "description": "csbCallStatsInstanceIndex",
                  "x-yang-type": "leafref",
                  "readOnly": true
                },
                "csbCallStatsServiceIndex": {
                  "type": "integer",
                  "description": "This object identifies the index of the name of the SBC\n            service configured. This object also acts as an index for the\n            table.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "csbCallStatsSbcName": {
                  "type": "string",
                  "description": "This object indicates the configured name of the SBC service.\n            The length of this object is zero when value is not assigned\n            to it.",
                  "x-yang-type": "snmp-framework:SnmpAdminString",
                  "readOnly": true
                },
                "csbCallStatsCallsHigh": {
                  "type": "integer",
                  "description": "This object indicates the maximum number of calls per second\n            processed by the Session Border Controller in past 24 hours.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "csbCallStatsRate1Sec": {
                  "type": "integer",
                  "description": "This object indicates the average calls per second processed by\n            the Session Border Controller.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "csbCallStatsCallsLow": {
                  "type": "integer",
                  "description": "This object indicates the minimum calls per second in past 24\n            hours.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "csbCallStatsAvailableFlows": {
                  "type": "integer",
                  "description": "This object indicates the number of media flows which are\n            available.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "csbCallStatsUsedFlows": {
                  "type": "integer",
                  "description": "This object indicates the number of media flows which are\n            used. This is for the flow allocated and connected. The flow\n            allocated but not connected is not counted.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "csbCallStatsPeakFlows": {
                  "type": "integer",
                  "description": "This object indicates the number of peak flows in SBC.\n            This is the highest recorded value for the active flows since\n            the box was booted/reseted.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "csbCallStatsTotalFlows": {
                  "type": "integer",
                  "description": "This object indicates the total number of media support by this\n            instance of SBC. The total number of flows include the\n            available\n            flows and the active flows. This value is since box was\n            booted/reseted. Total flows include the active flows and the\n            flows allocated but not connected.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "csbCallStatsUsedSigFlows": {
                  "type": "integer",
                  "description": "This object indicates the number of active signaling flows for\n            signaling pinholes.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "csbCallStatsPeakSigFlows": {
                  "type": "integer",
                  "description": "This object indicates the peak signaling flow in SBC.\n            This is the highest recorded value for the active signaling\n            flows. This object is calculated using csbCallStatsUsedFlows.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "csbCallStatsTotalSigFlows": {
                  "type": "integer",
                  "description": "This object indicates the maximum number of Signalling Flows\n            that can be supported by this instance of SBC.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "csbCallStatsAvailablePktRate": {
                  "type": "integer",
                  "description": "This object indicates the remaining capacity that can be\n            supported by SBC.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "csbCallStatsUnclassifiedPkts": {
                  "type": "integer",
                  "description": "This object indicates the number of unclassified packets\n            processed by SBC.",
                  "minimum": 0,
                  "readOnly": true
                },
                "csbCallStatsRTPPktsSent": {
                  "type": "integer",
                  "description": "This object indicates the total number of RTP packets sent.",
                  "minimum": 0,
                  "readOnly": true
                },
                "csbCallStatsRTPPktsRcvd": {
                  "type": "integer",
                  "description": "This object indicates the total number of RTP packets\n            received.",
                  "minimum": 0,
                  "readOnly": true
                },
                "csbCallStatsRTPPktsDiscard": {
                  "type": "integer",
                  "description": "This object indicates the total number of RTP packets\n            discarded.",
                  "minimum": 0,
                  "readOnly": true
                },
                "csbCallStatsRTPOctetsSent": {
                  "type": "integer",
                  "description": "This object indicates the number of RTP octets sent by the\n            SBC.",
                  "minimum": 0,
                  "readOnly": true
                },
                "csbCallStatsRTPOctetsRcvd": {
                  "type": "integer",
                  "description": "This object indicates the number of RTP octets received by\n            the SBC.",
                  "minimum": 0,
                  "readOnly": true
                },
                "csbCallStatsRTPOctetsDiscard": {
                  "type": "integer",
                  "description": "This object indicates the number of RTP octets discarded by\n            the SBC.",
                  "minimum": 0,
                  "readOnly": true
                },
                "csbCallStatsNoMediaCount": {
                  "type": "integer",
                  "description": "This object indicates the accumulated No media event\n            count.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "csbCallStatsRouteErrors": {
                  "type": "integer",
                  "description": "This object indicates the accumulated route error event\n            count. This counter is for the route error of media stream.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "csbCallStatsAvailableTranscodeFlows": {
                  "type": "integer",
                  "description": "This object indicates the number of additional transcoded flows\n            that this media gateway manager (MGM) entity is currently able\n            to configure.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "csbCallStatsActiveTranscodeFlows": {
                  "type": "integer",
                  "description": "This object indicates the current number of transcoded\n            flows that are actively forwarding media traffic.  In this\n            context, a flow is a media stream passing through the device.\n            So a single voice call will be counted only once.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "csbCallStatsPeakTranscodeFlows": {
                  "type": "integer",
                  "description": "This object indicates the peak number of active transcoded\n            flows since the statistics were last reset.  In this context, a\n            flow is a media stream passing through the device, so a single\n            voice call will be counted once.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "csbCallStatsTotalTranscodeFlows": {
                  "type": "integer",
                  "description": "This object indicates the accumulated total number of\n            transcoded flows.  This count contains both active flows and\n            flows that were allocated but never connected.  In this context,\n            a flow is a media stream passing through the device, so a single\n            voice call will be counted once.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                }
              }
            },
            "readOnly": true
          },
          "csbCurrPeriodicStatsEntry": {
            "type": "array",
            "description": "An conceptual row in the csbCurrPeriodicStatsTable. There is\n          an entry in this table for the particular controller by a value\n          of csbH248StatsCtrlrIndex. The other indices of this table are\n          csbCallStatsInstanceIndex defined in csbCallStatsInstanceTable\n          and csbCallStatsServiceIndex defined in csbCallStatsTable.",
            "items": {
              "type": "object",
              "properties": {
                "csbCallStatsInstanceIndex": {
                  "type": "string",
                  "description": "csbCallStatsInstanceIndex",
                  "x-yang-type": "leafref",
                  "readOnly": true
                },
                "csbCallStatsServiceIndex": {
                  "type": "string",
                  "description": "csbCallStatsServiceIndex",
                  "x-yang-type": "leafref",
                  "readOnly": true
                },
                "csbCurrPeriodicStatsInterval": {
                  "type": "string",
                  "description": "This object identifies the interval for which the periodic\n            statistics information is to be displayed. The interval\n            values can be 5 min, 15 mins, 1 hour , 1 Day. This object acts\n            as index for the table.",
                  "x-yang-type": "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CiscoSbcPeriodicStatsInterval",
                  "readOnly": true
                },
                "csbCurrPeriodicStatsActiveCalls": {
                  "type": "integer",
                  "description": "This object indicates the number of calls that have become\n            active during this interval.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "csbCurrPeriodicStatsActivatingCalls": {
                  "type": "integer",
                  "description": "This object indicates the number of calls that have become\n            activing during this interval.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "csbCurrPeriodicStatsDeactivatingCalls": {
                  "type": "integer",
                  "description": "This object indicates the number of calls that have become\n            deactiving during this interval.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "csbCurrPeriodicStatsTotalCallAttempts": {
                  "type": "integer",
                  "description": "This object indicates the number of total call attempts during\n            this interval.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "csbCurrPeriodicStatsFailedCallAttempts": {
                  "type": "integer",
                  "description": "This object indicates the number of failed call attempts during\n            this interval.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "csbCurrPeriodicStatsCallRoutingFailure": {
                  "type": "integer",
                  "description": "This object indicates the number of call setup failures due\n            to routing failures during this interval.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "csbCurrPeriodicStatsCallResourceFailure": {
                  "type": "integer",
                  "description": "This object indicates the number of call setup failures due\n            to resource failures during this interval.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "csbCurrPeriodicStatsCallMediaFailure": {
                  "type": "integer",
                  "description": "This object indicates the number of call setup failures due\n            to media failure during this interval.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "csbCurrPeriodicStatsCallSigFailure": {
                  "type": "integer",
                  "description": "This object indicates the number of call setup failures due\n            to signaling failure during this interval.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "csbCurrPeriodicStatsActiveCallFailure": {
                  "type": "integer",
                  "description": "This object indicates the number of active call failures during\n            this interval.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "csbCurrPeriodicStatsCongestionFailure": {
                  "type": "integer",
                  "description": "This object indicates the number of call setup failures due\n            to congestion during this interval.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "csbCurrPeriodicStatsCallSetupPolicyFailure": {
                  "type": "integer",
                  "description": "This object indicates the number of call setup failures due\n            to policy failure during this interval.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "csbCurrPeriodicStatsCallSetupNAPolicyFailure": {
                  "type": "integer",
                  "description": "This object indicates the number of call setup failures due\n            to NA policy failure during this interval.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "csbCurrPeriodicStatsCallSetupRoutingPolicyFailure": {
                  "type": "integer",
                  "description": "This object indicates the number of call setup failures due\n            to routing policy failure during this interval.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "csbCurrPeriodicStatsCallSetupCACPolicyFailure": {
                  "type": "integer",
                  "description": "This object indicates the number of call setup failures due\n            to CAC policy failure during this interval.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "csbCurrPeriodicStatsCallSetupCACCallLimitFailure": {
                  "type": "integer",
                  "description": "This object indicates the number of call setup failures due\n            to CAC call limit during this interval.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "csbCurrPeriodicStatsCallSetupCACRateLimitFailure": {
                  "type": "integer",
                  "description": "This object indicates the number of call setup failures due\n            to CAC call rate limit during this interval.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "csbCurrPeriodicStatsCallSetupCACBandwidthFailure": {
                  "type": "integer",
                  "description": "This object indicates the number of call setup failures due\n            to CAC bandwidth limit during this interval.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "csbCurrPeriodicStatsCallSetupCACMediaLimitFailure": {
                  "type": "integer",
                  "description": "This object indicates the number of call setup failures due\n            to CAC media limit during this interval.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "csbCurrPeriodicStatsCallSetupCACMediaUpdateFailure": {
                  "type": "integer",
                  "description": "This object indicates the number of call update failure due\n            to policy failure during this interval.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "csbCurrPeriodicStatsTimestamp": {
                  "type": "string",
                  "description": "This object indicates the current time at the start of each\n            interval.",
                  "format": "binary",
                  "readOnly": true
                },
                "csbCurrPeriodicStatsTranscodedCalls": {
                  "type": "integer",
                  "description": "The object indicates the number of transcoded calls that are\n            active during this interval.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "csbCurrPeriodicStatsTransratedCalls": {
                  "type": "integer",
                  "description": "The object indicates the number of transrated calls that are\n            active during this interval.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "csbCurrPeriodicStatsTotalCallUpdateFailure": {
                  "type": "integer",
                  "description": "This object indicates the total number of call update failures\n            during this interval.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "csbCurrPeriodicStatsActiveIpv6Calls": {
                  "type": "integer",
                  "description": "This Object indicates the number of calls through SBC that use\n            IPv6 signaling.  This statistic totals all calls that traverse\n            an IPv6 adjacency on either or both sides of SBC during this\n            interval.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "csbCurrPeriodicStatsActiveEmergencyCalls": {
                  "type": "integer",
                  "description": "This object indicates the number of calls through SBC that have\n            been identified as emergency calls (by Number Analysis) during\n            this interval.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "csbCurrPeriodicStatsActiveE2EmergencyCalls": {
                  "type": "integer",
                  "description": "This object indicates the number of calls through SBC that have\n            been identified as emergency calls (by Number Analysis) and\n            have used the e2 interface to obtain location information for\n            the caller during this interval.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "csbCurrPeriodicStatsImsRxActiveCalls": {
                  "type": "integer",
                  "description": "This object indicates the total number of active calls which\n            use IMS Rx, during this interval.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "csbCurrPeriodicStatsImsRxCallSetupFaiures": {
                  "type": "integer",
                  "description": "This object indicates the total call Setup failures owing to\n            IMS Rx failure during this interval.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "csbCurrPeriodicStatsImsRxCallRenegotiationAttempts": {
                  "type": "integer",
                  "description": "This object indicates the total call renegotiation attempts\n            using IMS Rx during this interval.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "csbCurrPeriodicStatsImsRxCallRenegotiationFailures": {
                  "type": "integer",
                  "description": "This object indicates the total call renegotiation failures\n            owing to IMS Rx failure during this interval.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "csbCurrPeriodicStatsAudioTranscodedCalls": {
                  "type": "integer",
                  "description": "The number of active audio transcoded calls through\n            this adjacency or account during this interval.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "csbCurrPeriodicStatsFaxTranscodedCalls": {
                  "type": "integer",
                  "description": "This object indicates the the number of active fax\n            transcoded calls through this adjacency or account during this\n            interval.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "csbCurrPeriodicStatsRtpDisallowedFailures": {
                  "type": "integer",
                  "description": "This object indicates the total call setup failures due to RTP\n            being proposed when not permitted during this interval.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "csbCurrPeriodicStatsSrtpDisallowedFailures": {
                  "type": "integer",
                  "description": "This object indicates the total call setup failures due to SRTP\n            being proposed when not permitted during this interval.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "csbCurrPeriodicStatsNonSrtpCalls": {
                  "type": "integer",
                  "description": "This object indicates the number of active calls\n            through this adjacency or account which do not use SRTP on any\n            media channels during this interval.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "csbCurrPeriodicStatsSrtpNonIwCalls": {
                  "type": "integer",
                  "description": "This object indicates the number of active calls\n            through this adjacency or account that have one or more media\n            channels which use SRTP. This count does not include media \n            channels that provide interworking between RTP and SRTP during\n            this interval.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "csbCurrPeriodicStatsSrtpIwCalls": {
                  "type": "integer",
                  "description": "This object indicates the number of active calls\n            through this adjacency or account that have one or more media\n            channels that provide interworking between RTP and SRTP during\n            this interval.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "csbCurrPeriodicStatsDtmfIw2833Calls": {
                  "type": "integer",
                  "description": "This object indicates the number of active calls\n            through this adjacency or account for which DTMF interworking\n            is enabled between DTMF in signaling and DTMF in media via RFC\n            2833 during this interval.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "csbCurrPeriodicStatsDtmfIwInbandCalls": {
                  "type": "integer",
                  "description": "This object indicates the number of active calls\n            through this adjacency or account for which DTMF interworking\n            is enabled between DTMF in signaling and DTMF in media via \n            inband DTMF tones during this interval.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "csbCurrPeriodicStatsDtmfIw2833InbandCalls": {
                  "type": "integer",
                  "description": "This object indicates the number of active calls\n            through this adjacency or account for which DTMF interworking\n            is enabled between DTMF in media via RFC 2833 and DTMF in media\n            via inband DTMF tones during this interval.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "csbCurrPeriodicStatsTotalTapsRequested": {
                  "type": "integer",
                  "description": "This object indicates the lawful intercept tap attempts\n            requested within the scope of this query during this interval.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "csbCurrPeriodicStatsTotalTapsSucceeded": {
                  "type": "integer",
                  "description": "This object indicates the lawful intercept tap attempts that\n            have been successfully implemented within the scope of this\n            query during this interval.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "csbCurrPeriodicStatsCurrentTaps": {
                  "type": "integer",
                  "description": "This object indicates the Lawful intercept taps currently in\n            place on calls within the scope of this query during this\n            interval.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "csbCurrPeriodicIpsecCalls": {
                  "type": "integer",
                  "description": "The number of active calls on this adjacency or account which\n            are to or from registered subscribers using IPSEC during this\n            interval.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                }
              }
            },
            "readOnly": true
          },
          "csbHistoryStatsEntry": {
            "type": "array",
            "description": "A conceptual row in the csbHistoryStatsTable. The entries in\n          this table are updated as interval completes in the\n          csbCurrPeriodicStatsTable table and the data is moved from that\n          table to this one.",
            "items": {
              "type": "object",
              "properties": {
                "csbCallStatsInstanceIndex": {
                  "type": "string",
                  "description": "csbCallStatsInstanceIndex",
                  "x-yang-type": "leafref",
                  "readOnly": true
                },
                "csbCallStatsServiceIndex": {
                  "type": "string",
                  "description": "csbCallStatsServiceIndex",
                  "x-yang-type": "leafref",
                  "readOnly": true
                },
                "csbHistoryStatsInterval": {
                  "type": "string",
                  "description": "This object identifies the interval for which the history\n            statistics information is to be displayed. The interval\n            values can be 5 min, 15 mins, 1 hour , 1 day. This object acts\n            as index for the table.",
                  "x-yang-type": "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CiscoSbcPeriodicStatsInterval",
                  "readOnly": true
                },
                "csbHistoryStatsElements": {
                  "type": "integer",
                  "description": "The platform assigns a number starting with one and\n            increments it each for each new row. When the maximum         \n            number of row is reached the oldest rows are deleted. It is up\n            to the platform to determine the number of entries for each\n            interval. It is recommended that each platform support at least\n            one entry for 5 min, 15 mins, 1 hour and 1 day intervals.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "csbHistoryStatsActiveCalls": {
                  "type": "integer",
                  "description": "This object indicates the number of active calls history during\n            this interval.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "csbHistoryStatsTotalCallAttempts": {
                  "type": "integer",
                  "description": "This object indicates the number of total call attempts history\n            during this interval.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "csbHistoryStatsFailedCallAttempts": {
                  "type": "integer",
                  "description": "This object indicates the number of failed call attempts during\n            this interval.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "csbHistoryStatsCallRoutingFailure": {
                  "type": "integer",
                  "description": "This object indicates the number of call setup failures due\n            to routing failures during this interval.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "csbHistoryStatsCallResourceFailure": {
                  "type": "integer",
                  "description": "This object indicates the number of call setup failures due\n            to resource failures during this interval.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "csbHistoryStatsCallMediaFailure": {
                  "type": "integer",
                  "description": "This object indicates the number of call setup failures due\n            to media failure during this interval.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "csbHistoryStatsFailSigFailure": {
                  "type": "integer",
                  "description": "This object indicates the number of call setup failures due\n            to signaling failure during this interval.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "csbHistoryStatsActiveCallFailure": {
                  "type": "integer",
                  "description": "This object indicates the number of active call failures during\n            this interval.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "csbHistoryStatsCongestionFailure": {
                  "type": "integer",
                  "description": "This object indicates the number of call setup failures due\n            to congestion during this interval.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "csbHistoryStatsCallSetupPolicyFailure": {
                  "type": "integer",
                  "description": "This object indicates the number of call setup failures due\n            to some policy violations during this interval.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "csbHistoryStatsCallSetupNAPolicyFailure": {
                  "type": "integer",
                  "description": "This object indicates the number of call setup failures due\n            to NA policy failure during this interval.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "csbHistoryStatsCallSetupRoutingPolicyFailure": {
                  "type": "integer",
                  "description": "This object indicates the number of call setup failures due\n            to routing policy failure during this interval.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "csbHistoryStatsCallSetupCACPolicyFailure": {
                  "type": "integer",
                  "description": "This object indicates the number of call setup failures due\n            to CAC policy failure during this interval.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "csbHistoryStatsCallSetupCACCallLimitFailure": {
                  "type": "integer",
                  "description": "This object indicates the number of call setup failures due\n            to CAC call limit during this interval.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "csbHistoryStatsCallSetupCACRateLimitFailure": {
                  "type": "integer",
                  "description": "This object indicates the number of call setup failures due\n            to CAC call rate limit during this interval.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "csbHistoryStatsCallSetupCACBandwidthFailure": {
                  "type": "integer",
                  "description": "This object indicates the number of call setup failures due\n            to CAC bandwidth limit during this interval.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "csbHistoryStatsCallSetupCACMediaLimitFailure": {
                  "type": "integer",
                  "description": "This object indicates the number of call setup failures due\n            to CAC media limit during this interval.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "csbHistoryStatsCallSetupCACMediaUpdateFailure": {
                  "type": "integer",
                  "description": "This object indicates the number of call update failure due\n            to policy failure during this interval.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "csbHistoryStatsTimestamp": {
                  "type": "string",
                  "description": "This object indicates the time at the start of the interval\n            when measurements were first collected for this interval in the\n            csbCurrPeriodicStatsTable.",
                  "format": "binary",
                  "readOnly": true
                },
                "csbHistroyStatsTranscodedCalls": {
                  "type": "integer",
                  "description": "The object indicates the number of active transcoded\n            calls during this interval.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "csbHistroyStatsTransratedCalls": {
                  "type": "integer",
                  "description": "The object indicates the number of active transrated\n            calls during this interval.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "csbHistoryStatsTotalCallUpdateFailure": {
                  "type": "integer",
                  "description": "This object indicates the total call update failures during\n            this interval.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "csbHistoryStatsActiveIpv6Calls": {
                  "type": "integer",
                  "description": "This Object indicates the number of calls through SBC that use\n            IPv6 signaling.  This statistic totals all calls that traverse\n            an IPv6 adjacency on either or both sides of SBC during this\n            interval.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "csbHistoryStatsActiveEmergencyCalls": {
                  "type": "integer",
                  "description": "This object indicates the number of calls through SBC that have\n            been identified as emergency calls (by Number Analysis)  during\n            this interval.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "csbHistoryStatsActiveE2EmergencyCalls": {
                  "type": "integer",
                  "description": "This object indicates the number of calls through SBC that have\n            been identified as emergency calls (by Number Analysis) and\n            have used the e2 interface to obtain location information for\n            the\n            caller.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "csbHistoryStatsImsRxActiveCalls": {
                  "type": "integer",
                  "description": "This object indicates the total number of active calls which\n            use IMS Rx, during this interval.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "csbHistoryStatsImsRxCallSetupFailures": {
                  "type": "integer",
                  "description": "This object indicates the total call setup failures owing to\n            IMS Rx failure during this interval.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "csbHistoryStatsImsRxCallRenegotiationAttempts": {
                  "type": "integer",
                  "description": "This object indicates the total call renegotiation attempts\n            using IMS Rx during this interval.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "csbHistoryStatsImsRxCallRenegotiationFailures": {
                  "type": "integer",
                  "description": "This object indicates the total call renegotiation failures\n            owing to IMS Rx failure during this interval.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "csbHistoryStatsAudioTranscodedCalls": {
                  "type": "integer",
                  "description": "The number of active audio transcoded calls through\n            this adjacency or account during this interval.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "csbHistoryStatsFaxTranscodedCalls": {
                  "type": "integer",
                  "description": "This object indicates the the number of active fax\n            transcoded calls through this adjacency or account during this\n            interval.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "csbHistoryStatsRtpDisallowedFailures": {
                  "type": "integer",
                  "description": "This object indicates the total call setup failures due to RTP\n            being proposed when not permitted during this interval.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "csbHistoryStatsSrtpDisallowedFailures": {
                  "type": "integer",
                  "description": "This object indicates the total call setup failures due to SRTP\n            being proposed when not permitted during this interval.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "csbHistoryStatsNonSrtpCalls": {
                  "type": "integer",
                  "description": "This object indicates the number of active calls\n            through this adjacency or account which do not use SRTP on any\n            media channels during this interval.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "csbHistoryStatsSrtpNonIwCalls": {
                  "type": "integer",
                  "description": "This object indicates the number of active calls\n            through this adjacency or account that have one or more media\n            channels that use SRTP but no media channels that provide\n            interworking between RTP and SRTP during this interval.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "csbHistoryStatsSrtpIwCalls": {
                  "type": "integer",
                  "description": "This object indicates the number of active calls\n            through this adjacency or account that have one or more media\n            channels that provide interworking between RTP and SRTP during\n            this interval.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "csbHistoryStatsDtmfIw2833Calls": {
                  "type": "integer",
                  "description": "This object indicates the number of active calls\n            through this adjacency or account for which DTMF interworking\n            is enabled between DTMF in signaling and DTMF in media via RFC\n            2833 during this interval.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "csbHistoryStatsDtmfIwInbandCalls": {
                  "type": "integer",
                  "description": "This object indicates the number of active calls\n            through this adjacency or account for which DTMF interworking\n            is enabled between DTMF in signaling and DTMF in media via\n            inband DTMF tones during this interval.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "csbHistoryStatsDtmfIw2833InbandCalls": {
                  "type": "integer",
                  "description": "This object indicates the number of active calls\n            through this adjacency or account for which DTMF interworking\n            is enabled between DTMF in media via RFC 2833 and DTMF in media\n            via inband DTMF tones during this interval.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "csbHistoryStatsTotalTapsRequested": {
                  "type": "integer",
                  "description": "This object indicates the lawful intercept tap attempts\n            requested within the scope of this query during this interval.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "csbHistoryStatsTotalTapsSucceeded": {
                  "type": "integer",
                  "description": "This object indicates the lawful intercept tap attempts that\n            have been successfully implemented within the scope of this\n            query during this interval.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "csbHistoryStatsCurrentTaps": {
                  "type": "integer",
                  "description": "This object indicates the Lawful intercept taps currently in\n            place on calls within the scope of this query during this\n            interval.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "csbHistoryStatsIpsecCalls": {
                  "type": "integer",
                  "description": "The number of active calls on this adjacency or account which\n            are to or from registered subscribers using IPSEC during this\n            interval.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                }
              }
            },
            "readOnly": true
          },
          "csbPerFlowStatsEntry": {
            "type": "array",
            "description": "csbPerFlowStatsEntry",
            "items": {
              "type": "object",
              "properties": {
                "csbCallStatsInstanceIndex": {
                  "type": "string",
                  "description": "csbCallStatsInstanceIndex",
                  "x-yang-type": "leafref",
                  "readOnly": true
                },
                "csbCallStatsServiceIndex": {
                  "type": "string",
                  "description": "csbCallStatsServiceIndex",
                  "x-yang-type": "leafref",
                  "readOnly": true
                },
                "csbPerFlowStatsVdbeId": {
                  "type": "integer",
                  "description": "This object identifies the virtual media gateway id. This\n            object also acts as an index for the table.",
                  "minimum": -2147483648,
                  "maximum": 2147483647,
                  "readOnly": true
                },
                "csbPerFlowStatsGateId": {
                  "type": "integer",
                  "description": "This object identifies the gate id. This object also acts as\n            an index for the table.",
                  "minimum": -2147483648,
                  "maximum": 2147483647,
                  "readOnly": true
                },
                "csbPerFlowStatsFlowPairId": {
                  "type": "integer",
                  "description": "This object identifies the flow pair id. This object also acts\n            as an index for the table.",
                  "minimum": -2147483648,
                  "maximum": 2147483647,
                  "readOnly": true
                },
                "csbPerFlowStatsSideId": {
                  "type": "string",
                  "description": "This object identifies the index corresponding to side of flow\n            pair either side A or side B. This object also acts as an index\n            for the table.",
                  "readOnly": true
                },
                "csbPerFlowStatsFlowType": {
                  "type": "string",
                  "description": "This object indicates the type of the flow, like media flow,\n            signaling flow etc.",
                  "readOnly": true
                },
                "csbPerFlowStatsRTPPktsSent": {
                  "type": "integer",
                  "description": "This object indicates the number of RTP packets sent per flow\n            by the SBC.",
                  "minimum": 0,
                  "readOnly": true
                },
                "csbPerFlowStatsRTPPktsRcvd": {
                  "type": "integer",
                  "description": "This object indicates the number of RTP packets received per\n            flow by the SBC.",
                  "minimum": 0,
                  "readOnly": true
                },
                "csbPerFlowStatsRTPPktsDiscard": {
                  "type": "integer",
                  "description": "This object indicates the number of RTP packets discarded  per\n            flow by the SBC.",
                  "minimum": 0,
                  "readOnly": true
                },
                "csbPerFlowStatsRTPOctetsSent": {
                  "type": "integer",
                  "description": "This object indicates the number of RTP octets sent\n            per flow by the SBC.",
                  "minimum": 0,
                  "readOnly": true
                },
                "csbPerFlowStatsRTPOctetsRcvd": {
                  "type": "integer",
                  "description": "This object indicates the number of RTP octets received\n            per flow by the SBC.",
                  "minimum": 0,
                  "readOnly": true
                },
                "csbPerFlowStatsRTPOctetsDiscard": {
                  "type": "integer",
                  "description": "This object indicates the number of RTP octets discarded\n            per flow by the SBC.",
                  "minimum": 0,
                  "readOnly": true
                },
                "csbPerFlowStatsRTCPPktsSent": {
                  "type": "integer",
                  "description": "The number of RTP packets sent by the remote end point to this\n            MG on this flow. Comparing this with the local number of RTP\n            packets received from the remote end point gives an indication\n            of how many incoming  packets were dropped on this leg of the\n            call. This information is from RTCP packet. Not all endpoints\n            report this statistic, if it is not available it will be set to\n            zero. This statistic will not be available for signaling flows.",
                  "minimum": 0,
                  "readOnly": true
                },
                "csbPerFlowStatsRTCPPktsRcvd": {
                  "type": "integer",
                  "description": "The number of RTP packets received by the remote end point from\n            this MG on this flow. Comparing this with the local number of\n            RTP packets sent from this MG to the remote endpoint gives an\n            indication of how many outgoing packets were dropped on this\n            leg of the call. This information is from RTCP packet. Not all\n            endpoints report this statistic, if it is not available it will\n            be set to zero. This statistic will not be available for\n            signaling flows.",
                  "minimum": 0,
                  "readOnly": true
                },
                "csbPerFlowStatsRTCPPktsLost": {
                  "type": "integer",
                  "description": "The number of RTP packets reported as lost by the remote end\n            point on this flow. This information is from RTCP packet. Not\n            all endpoints report this statistic, if it is not available it\n            will be set to zero. This statistic will not be available for\n            signaling flows.",
                  "minimum": 0,
                  "readOnly": true
                },
                "csbPerFlowStatsEPJitter": {
                  "type": "integer",
                  "description": "This object indicates the End Point jitter per flow in the\n            SBC.",
                  "minimum": 0,
                  "readOnly": true
                },
                "csbPerFlowStatsTmanPerMbs": {
                  "type": "integer",
                  "description": "This object indicates the maximum burst size for the\n            current FlowPair.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "csbPerFlowStatsTmanPerSdr": {
                  "type": "integer",
                  "description": "This object indicates the bandwidth reserved for flow in\n            kilobytes/second.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "csbPerFlowStatsDscpSettings": {
                  "type": "string",
                  "description": "This object indicates the mark packets sent for the\n            current FlowPair with, or zero if none set. The DSCP is a 6-bit\n            value, which will be present in the top 6 bits of the lowest\n            byte of this field.",
                  "x-yang-type": "snmp-framework:SnmpAdminString",
                  "readOnly": true
                },
                "csbPerFlowStatsAdrStatus": {
                  "type": "string",
                  "description": "This object indicates whether the flow on the current\n            FlowPair has subscribed for the NAT latch event.",
                  "format": "binary",
                  "readOnly": true
                },
                "csbPerFlowStatsQASettings": {
                  "type": "string",
                  "description": "This object indicates the flow on the current FlowPair has\n            subscribed for the media loss event.",
                  "format": "binary",
                  "readOnly": true
                },
                "csbPerFlowStatsRTPPktsLost": {
                  "type": "integer",
                  "description": "This object indicates the number of RTP packets lost per flow\n            by the SBC.",
                  "minimum": 0,
                  "readOnly": true
                }
              }
            },
            "readOnly": true
          },
          "csbH248StatsEntry": {
            "type": "array",
            "description": "An conceptual row in the csbCallStath248Table. There is\n          an entry in this table for the particular controller by a value\n          of csbH248StatsCtrlrIndex. The other indices of this table are\n          csbCallStatsInstanceIndex defined in csbCallStatsInstanceTable\n          and csbCallStatsServiceIndex defined in csbCallStatsTable.",
            "items": {
              "type": "object",
              "properties": {
                "csbCallStatsInstanceIndex": {
                  "type": "string",
                  "description": "csbCallStatsInstanceIndex",
                  "x-yang-type": "leafref",
                  "readOnly": true
                },
                "csbCallStatsServiceIndex": {
                  "type": "string",
                  "description": "csbCallStatsServiceIndex",
                  "x-yang-type": "leafref",
                  "readOnly": true
                },
                "csbH248StatsCtrlrIndex": {
                  "type": "integer",
                  "description": "This object identifies the controller index of the H.248\n            server. This is also the index for the table.",
                  "minimum": -2147483648,
                  "maximum": 2147483647,
                  "readOnly": true
                },
                "csbH248StatsRequestsSent": {
                  "type": "integer",
                  "description": "This object indicates the requests sent through the Session\n            Controller Interface to an SBE or DBE.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "csbH248StatsRequestsRcvd": {
                  "type": "integer",
                  "description": "This object indicates the requests received through the\n            Session Controller Interface to an SBE or DBE.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "csbH248StatsRequestsFailed": {
                  "type": "integer",
                  "description": "This object indicates the requests failed on session\n            Controller Interface to an SBE or DBE.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "csbH248StatsRequestsRetried": {
                  "type": "integer",
                  "description": "This object indicates the requests retried through the Session\n            Controller Interface to an SBE or DBE.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "csbH248StatsRepliesSent": {
                  "type": "integer",
                  "description": "This object indicates the number of replies sent through the\n            Session Controller Interface to an SBE or DBE.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "csbH248StatsRepliesRcvd": {
                  "type": "integer",
                  "description": "This object indicates the number of replies received from the\n            Session Controller Interface to an SBE or DBE.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "csbH248StatsRepliesRetried": {
                  "type": "integer",
                  "description": "This object indicates the number of replies retried through\n            the Session Controller Interface to an SBE or DBE.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "csbH248StatsSegPktsSent": {
                  "type": "integer",
                  "description": "This object indicates the number of packets sent through the\n            Session Controller Interface to an SBE or DBE.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "csbH248StatsSegPktsRcvd": {
                  "type": "integer",
                  "description": "This object indicates the number of packets received from the\n            Session Controller Interface to an SBE or DBE.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "csbH248StatsEstablishedTime": {
                  "type": "string",
                  "description": "This object indicates the H.248 Controller established\n            time (the time at which the association became established).",
                  "format": "binary",
                  "readOnly": true
                },
                "csbH248StatsTMaxTimeoutVal": {
                  "type": "integer",
                  "description": "This object indicates the T-Max timeout value. This field\n            specifies the maximum delay (in milliseconds) for a response\n            from an MGC before deciding that the request has failed.",
                  "minimum": -2147483648,
                  "maximum": 2147483647,
                  "readOnly": true
                },
                "csbH248StatsRTT": {
                  "type": "integer",
                  "description": "This object indicates the calculated RTT value. This field\n            specifies the maximum round trip propagation delay in the \n            network (in milliseconds).",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "csbH248StatsLT": {
                  "type": "integer",
                  "description": "This object indicates the LT value calculated from RTT\n            value and Max timeout value. This field specifies the maximum\n            delay (in milliseconds) for a response from an MGC plus the\n            maximum round trip propagation delay in the network (in\n            milliseconds).",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                }
              }
            },
            "readOnly": true
          },
          "csbH248StatsRev1Entry": {
            "type": "array",
            "description": "An conceptual row in the csbCallStath248Table. There is\n          an entry in this table for the particular Vdbe by a value\n          of csbH248StatsVdbeId. The other indices of this table are\n          csbCallStatsInstanceIndex defined in csbCallStatsInstanceTable\n          and csbCallStatsServiceIndex defined in csbCallStatsTable.",
            "items": {
              "type": "object",
              "properties": {
                "csbCallStatsInstanceIndex": {
                  "type": "string",
                  "description": "csbCallStatsInstanceIndex",
                  "x-yang-type": "leafref",
                  "readOnly": true
                },
                "csbCallStatsServiceIndex": {
                  "type": "string",
                  "description": "csbCallStatsServiceIndex",
                  "x-yang-type": "leafref",
                  "readOnly": true
                },
                "csbH248StatsVdbeId": {
                  "type": "integer",
                  "description": "This object identifies the virtual media gateway id. This is\n            also the index for the table.",
                  "minimum": -2147483648,
                  "maximum": 2147483647,
                  "readOnly": true
                },
                "csbH248StatsRequestsSentRev1": {
                  "type": "integer",
                  "description": "This object indicates the requests sent through the Session\n            Controller Interface to an SBE or DBE.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "csbH248StatsRequestsRcvdRev1": {
                  "type": "integer",
                  "description": "This object indicates the requests received through the\n            Session Controller Interface to an SBE or DBE.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "csbH248StatsRequestsFailedRev1": {
                  "type": "integer",
                  "description": "This object indicates the requests failed on session\n            Controller Interface to an SBE or DBE.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "csbH248StatsRequestsRetriedRev1": {
                  "type": "integer",
                  "description": "This object indicates the requests retried through the Session\n            Controller Interface to an SBE or DBE.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "csbH248StatsRepliesSentRev1": {
                  "type": "integer",
                  "description": "This object indicates the number of replies sent through the\n            Session Controller Interface to an SBE or DBE.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "csbH248StatsRepliesRcvdRev1": {
                  "type": "integer",
                  "description": "This object indicates the number of replies received from the\n            Session Controller Interface to an SBE or DBE.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "csbH248StatsRepliesRetriedRev1": {
                  "type": "integer",
                  "description": "This object indicates the number of replies retried through\n            the Session Controller Interface to an SBE or DBE.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "csbH248StatsSegPktsSentRev1": {
                  "type": "integer",
                  "description": "This object indicates the number of response segments sent by\n            DBE. This field will only be present if segmentation is enabled\n            on this association.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "csbH248StatsSegPktsRcvdRev1": {
                  "type": "integer",
                  "description": "This object indicates the number of response segments received\n            by DBE. This field will only be present if segmentation is\n            enabled on this association.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "csbH248StatsEstablishedTimeRev1": {
                  "type": "string",
                  "description": "This object indicates the H.248 Controller established\n            time (the time at which the association became established).",
                  "format": "binary",
                  "readOnly": true
                },
                "csbH248StatsTMaxTimeoutValRev1": {
                  "type": "integer",
                  "description": "This object indicates the T-Max timeout value. This field\n            specifies the maximum delay (in milliseconds) for a response\n            from an MGC before deciding that the request has failed.",
                  "minimum": -2147483648,
                  "maximum": 2147483647,
                  "readOnly": true
                },
                "csbH248StatsRTTRev1": {
                  "type": "integer",
                  "description": "This object indicates the calculated RTT value. This field\n            specifies the maximum round trip propagation delay in the \n            network (in milliseconds).",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "csbH248StatsLTRev1": {
                  "type": "integer",
                  "description": "This object indicates the LT value calculated from RTT\n            value and Max timeout value. This field specifies the maximum\n            delay (in milliseconds) for a response from an MGC plus the\n            maximum round trip propagation delay in the network (in\n            milliseconds).",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                }
              }
            },
            "readOnly": true
          },
          "csbCallStatsInstanceTable": {
            "type": "object",
            "description": "The call stats instance table contains the physical index for\n        each of the physical entity (line card, primary, secondary\n        cards). The index of the table is instance index which uniquely\n        identifies the physical entity present on the box.",
            "properties": {
              "csbCallStatsInstanceEntry": {
                "type": "array",
                "description": "A conceptual row in csbCallStatsInstanceTable. There is an\n          entry in this table for each SBC instance, as identified by a \n          value of csbCallStatsInstanceIndex.",
                "items": {
                  "type": "object",
                  "properties": {
                    "csbCallStatsInstanceIndex": {
                      "type": "integer",
                      "description": "This object uniquely identifies the sequence number of an\n            entity or slot that is configured per device. This index is\n            assigned arbitrarily by the engine and is not saved over\n            reboots.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "csbCallStatsInstancePhysicalIndex": {
                      "type": "string",
                      "description": "This object indicates the physical entity for which all the\n            measurements are maintained. The exact type of this\n            entity is described by its entPhysicalVendorType value.",
                      "x-yang-type": "cisco-tc:EntPhysicalIndexOrZero",
                      "readOnly": true
                    }
                  }
                },
                "readOnly": true
              }
            },
            "readOnly": true
          },
          "csbCallStatsTable": {
            "type": "object",
            "description": "csbCallStatsTable",
            "properties": {
              "csbCallStatsEntry": {
                "type": "array",
                "description": "An conceptual row in the csbCallStatsGlobalStatsTable. There is\n          an entry in this table for the particular service configured on\n          SBC identified by a value of csbCallStatsInstanceIndex. The\n          other index of this table is csbCallStatsInstanceIndex which is\n          defined in csbCallStatsInstanceTable.",
                "items": {
                  "type": "object",
                  "properties": {
                    "csbCallStatsInstanceIndex": {
                      "type": "string",
                      "description": "csbCallStatsInstanceIndex",
                      "x-yang-type": "leafref",
                      "readOnly": true
                    },
                    "csbCallStatsServiceIndex": {
                      "type": "integer",
                      "description": "This object identifies the index of the name of the SBC\n            service configured. This object also acts as an index for the\n            table.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "csbCallStatsSbcName": {
                      "type": "string",
                      "description": "This object indicates the configured name of the SBC service.\n            The length of this object is zero when value is not assigned\n            to it.",
                      "x-yang-type": "snmp-framework:SnmpAdminString",
                      "readOnly": true
                    },
                    "csbCallStatsCallsHigh": {
                      "type": "integer",
                      "description": "This object indicates the maximum number of calls per second\n            processed by the Session Border Controller in past 24 hours.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "csbCallStatsRate1Sec": {
                      "type": "integer",
                      "description": "This object indicates the average calls per second processed by\n            the Session Border Controller.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "csbCallStatsCallsLow": {
                      "type": "integer",
                      "description": "This object indicates the minimum calls per second in past 24\n            hours.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "csbCallStatsAvailableFlows": {
                      "type": "integer",
                      "description": "This object indicates the number of media flows which are\n            available.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "csbCallStatsUsedFlows": {
                      "type": "integer",
                      "description": "This object indicates the number of media flows which are\n            used. This is for the flow allocated and connected. The flow\n            allocated but not connected is not counted.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "csbCallStatsPeakFlows": {
                      "type": "integer",
                      "description": "This object indicates the number of peak flows in SBC.\n            This is the highest recorded value for the active flows since\n            the box was booted/reseted.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "csbCallStatsTotalFlows": {
                      "type": "integer",
                      "description": "This object indicates the total number of media support by this\n            instance of SBC. The total number of flows include the\n            available\n            flows and the active flows. This value is since box was\n            booted/reseted. Total flows include the active flows and the\n            flows allocated but not connected.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "csbCallStatsUsedSigFlows": {
                      "type": "integer",
                      "description": "This object indicates the number of active signaling flows for\n            signaling pinholes.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "csbCallStatsPeakSigFlows": {
                      "type": "integer",
                      "description": "This object indicates the peak signaling flow in SBC.\n            This is the highest recorded value for the active signaling\n            flows. This object is calculated using csbCallStatsUsedFlows.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "csbCallStatsTotalSigFlows": {
                      "type": "integer",
                      "description": "This object indicates the maximum number of Signalling Flows\n            that can be supported by this instance of SBC.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "csbCallStatsAvailablePktRate": {
                      "type": "integer",
                      "description": "This object indicates the remaining capacity that can be\n            supported by SBC.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "csbCallStatsUnclassifiedPkts": {
                      "type": "integer",
                      "description": "This object indicates the number of unclassified packets\n            processed by SBC.",
                      "minimum": 0,
                      "readOnly": true
                    },
                    "csbCallStatsRTPPktsSent": {
                      "type": "integer",
                      "description": "This object indicates the total number of RTP packets sent.",
                      "minimum": 0,
                      "readOnly": true
                    },
                    "csbCallStatsRTPPktsRcvd": {
                      "type": "integer",
                      "description": "This object indicates the total number of RTP packets\n            received.",
                      "minimum": 0,
                      "readOnly": true
                    },
                    "csbCallStatsRTPPktsDiscard": {
                      "type": "integer",
                      "description": "This object indicates the total number of RTP packets\n            discarded.",
                      "minimum": 0,
                      "readOnly": true
                    },
                    "csbCallStatsRTPOctetsSent": {
                      "type": "integer",
                      "description": "This object indicates the number of RTP octets sent by the\n            SBC.",
                      "minimum": 0,
                      "readOnly": true
                    },
                    "csbCallStatsRTPOctetsRcvd": {
                      "type": "integer",
                      "description": "This object indicates the number of RTP octets received by\n            the SBC.",
                      "minimum": 0,
                      "readOnly": true
                    },
                    "csbCallStatsRTPOctetsDiscard": {
                      "type": "integer",
                      "description": "This object indicates the number of RTP octets discarded by\n            the SBC.",
                      "minimum": 0,
                      "readOnly": true
                    },
                    "csbCallStatsNoMediaCount": {
                      "type": "integer",
                      "description": "This object indicates the accumulated No media event\n            count.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "csbCallStatsRouteErrors": {
                      "type": "integer",
                      "description": "This object indicates the accumulated route error event\n            count. This counter is for the route error of media stream.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "csbCallStatsAvailableTranscodeFlows": {
                      "type": "integer",
                      "description": "This object indicates the number of additional transcoded flows\n            that this media gateway manager (MGM) entity is currently able\n            to configure.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "csbCallStatsActiveTranscodeFlows": {
                      "type": "integer",
                      "description": "This object indicates the current number of transcoded\n            flows that are actively forwarding media traffic.  In this\n            context, a flow is a media stream passing through the device.\n            So a single voice call will be counted only once.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "csbCallStatsPeakTranscodeFlows": {
                      "type": "integer",
                      "description": "This object indicates the peak number of active transcoded\n            flows since the statistics were last reset.  In this context, a\n            flow is a media stream passing through the device, so a single\n            voice call will be counted once.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "csbCallStatsTotalTranscodeFlows": {
                      "type": "integer",
                      "description": "This object indicates the accumulated total number of\n            transcoded flows.  This count contains both active flows and\n            flows that were allocated but never connected.  In this context,\n            a flow is a media stream passing through the device, so a single\n            voice call will be counted once.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    }
                  }
                },
                "readOnly": true
              }
            },
            "readOnly": true
          },
          "csbCurrPeriodicStatsTable": {
            "type": "object",
            "description": "csbCurrPeriodicStatsTable",
            "properties": {
              "csbCurrPeriodicStatsEntry": {
                "type": "array",
                "description": "An conceptual row in the csbCurrPeriodicStatsTable. There is\n          an entry in this table for the particular controller by a value\n          of csbH248StatsCtrlrIndex. The other indices of this table are\n          csbCallStatsInstanceIndex defined in csbCallStatsInstanceTable\n          and csbCallStatsServiceIndex defined in csbCallStatsTable.",
                "items": {
                  "type": "object",
                  "properties": {
                    "csbCallStatsInstanceIndex": {
                      "type": "string",
                      "description": "csbCallStatsInstanceIndex",
                      "x-yang-type": "leafref",
                      "readOnly": true
                    },
                    "csbCallStatsServiceIndex": {
                      "type": "string",
                      "description": "csbCallStatsServiceIndex",
                      "x-yang-type": "leafref",
                      "readOnly": true
                    },
                    "csbCurrPeriodicStatsInterval": {
                      "type": "string",
                      "description": "This object identifies the interval for which the periodic\n            statistics information is to be displayed. The interval\n            values can be 5 min, 15 mins, 1 hour , 1 Day. This object acts\n            as index for the table.",
                      "x-yang-type": "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CiscoSbcPeriodicStatsInterval",
                      "readOnly": true
                    },
                    "csbCurrPeriodicStatsActiveCalls": {
                      "type": "integer",
                      "description": "This object indicates the number of calls that have become\n            active during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "csbCurrPeriodicStatsActivatingCalls": {
                      "type": "integer",
                      "description": "This object indicates the number of calls that have become\n            activing during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "csbCurrPeriodicStatsDeactivatingCalls": {
                      "type": "integer",
                      "description": "This object indicates the number of calls that have become\n            deactiving during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "csbCurrPeriodicStatsTotalCallAttempts": {
                      "type": "integer",
                      "description": "This object indicates the number of total call attempts during\n            this interval.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "csbCurrPeriodicStatsFailedCallAttempts": {
                      "type": "integer",
                      "description": "This object indicates the number of failed call attempts during\n            this interval.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "csbCurrPeriodicStatsCallRoutingFailure": {
                      "type": "integer",
                      "description": "This object indicates the number of call setup failures due\n            to routing failures during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "csbCurrPeriodicStatsCallResourceFailure": {
                      "type": "integer",
                      "description": "This object indicates the number of call setup failures due\n            to resource failures during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "csbCurrPeriodicStatsCallMediaFailure": {
                      "type": "integer",
                      "description": "This object indicates the number of call setup failures due\n            to media failure during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "csbCurrPeriodicStatsCallSigFailure": {
                      "type": "integer",
                      "description": "This object indicates the number of call setup failures due\n            to signaling failure during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "csbCurrPeriodicStatsActiveCallFailure": {
                      "type": "integer",
                      "description": "This object indicates the number of active call failures during\n            this interval.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "csbCurrPeriodicStatsCongestionFailure": {
                      "type": "integer",
                      "description": "This object indicates the number of call setup failures due\n            to congestion during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "csbCurrPeriodicStatsCallSetupPolicyFailure": {
                      "type": "integer",
                      "description": "This object indicates the number of call setup failures due\n            to policy failure during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "csbCurrPeriodicStatsCallSetupNAPolicyFailure": {
                      "type": "integer",
                      "description": "This object indicates the number of call setup failures due\n            to NA policy failure during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "csbCurrPeriodicStatsCallSetupRoutingPolicyFailure": {
                      "type": "integer",
                      "description": "This object indicates the number of call setup failures due\n            to routing policy failure during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "csbCurrPeriodicStatsCallSetupCACPolicyFailure": {
                      "type": "integer",
                      "description": "This object indicates the number of call setup failures due\n            to CAC policy failure during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "csbCurrPeriodicStatsCallSetupCACCallLimitFailure": {
                      "type": "integer",
                      "description": "This object indicates the number of call setup failures due\n            to CAC call limit during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "csbCurrPeriodicStatsCallSetupCACRateLimitFailure": {
                      "type": "integer",
                      "description": "This object indicates the number of call setup failures due\n            to CAC call rate limit during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "csbCurrPeriodicStatsCallSetupCACBandwidthFailure": {
                      "type": "integer",
                      "description": "This object indicates the number of call setup failures due\n            to CAC bandwidth limit during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "csbCurrPeriodicStatsCallSetupCACMediaLimitFailure": {
                      "type": "integer",
                      "description": "This object indicates the number of call setup failures due\n            to CAC media limit during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "csbCurrPeriodicStatsCallSetupCACMediaUpdateFailure": {
                      "type": "integer",
                      "description": "This object indicates the number of call update failure due\n            to policy failure during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "csbCurrPeriodicStatsTimestamp": {
                      "type": "string",
                      "description": "This object indicates the current time at the start of each\n            interval.",
                      "format": "binary",
                      "readOnly": true
                    },
                    "csbCurrPeriodicStatsTranscodedCalls": {
                      "type": "integer",
                      "description": "The object indicates the number of transcoded calls that are\n            active during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "csbCurrPeriodicStatsTransratedCalls": {
                      "type": "integer",
                      "description": "The object indicates the number of transrated calls that are\n            active during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "csbCurrPeriodicStatsTotalCallUpdateFailure": {
                      "type": "integer",
                      "description": "This object indicates the total number of call update failures\n            during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "csbCurrPeriodicStatsActiveIpv6Calls": {
                      "type": "integer",
                      "description": "This Object indicates the number of calls through SBC that use\n            IPv6 signaling.  This statistic totals all calls that traverse\n            an IPv6 adjacency on either or both sides of SBC during this\n            interval.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "csbCurrPeriodicStatsActiveEmergencyCalls": {
                      "type": "integer",
                      "description": "This object indicates the number of calls through SBC that have\n            been identified as emergency calls (by Number Analysis) during\n            this interval.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "csbCurrPeriodicStatsActiveE2EmergencyCalls": {
                      "type": "integer",
                      "description": "This object indicates the number of calls through SBC that have\n            been identified as emergency calls (by Number Analysis) and\n            have used the e2 interface to obtain location information for\n            the caller during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "csbCurrPeriodicStatsImsRxActiveCalls": {
                      "type": "integer",
                      "description": "This object indicates the total number of active calls which\n            use IMS Rx, during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "csbCurrPeriodicStatsImsRxCallSetupFaiures": {
                      "type": "integer",
                      "description": "This object indicates the total call Setup failures owing to\n            IMS Rx failure during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "csbCurrPeriodicStatsImsRxCallRenegotiationAttempts": {
                      "type": "integer",
                      "description": "This object indicates the total call renegotiation attempts\n            using IMS Rx during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "csbCurrPeriodicStatsImsRxCallRenegotiationFailures": {
                      "type": "integer",
                      "description": "This object indicates the total call renegotiation failures\n            owing to IMS Rx failure during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "csbCurrPeriodicStatsAudioTranscodedCalls": {
                      "type": "integer",
                      "description": "The number of active audio transcoded calls through\n            this adjacency or account during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "csbCurrPeriodicStatsFaxTranscodedCalls": {
                      "type": "integer",
                      "description": "This object indicates the the number of active fax\n            transcoded calls through this adjacency or account during this\n            interval.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "csbCurrPeriodicStatsRtpDisallowedFailures": {
                      "type": "integer",
                      "description": "This object indicates the total call setup failures due to RTP\n            being proposed when not permitted during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "csbCurrPeriodicStatsSrtpDisallowedFailures": {
                      "type": "integer",
                      "description": "This object indicates the total call setup failures due to SRTP\n            being proposed when not permitted during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "csbCurrPeriodicStatsNonSrtpCalls": {
                      "type": "integer",
                      "description": "This object indicates the number of active calls\n            through this adjacency or account which do not use SRTP on any\n            media channels during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "csbCurrPeriodicStatsSrtpNonIwCalls": {
                      "type": "integer",
                      "description": "This object indicates the number of active calls\n            through this adjacency or account that have one or more media\n            channels which use SRTP. This count does not include media \n            channels that provide interworking between RTP and SRTP during\n            this interval.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "csbCurrPeriodicStatsSrtpIwCalls": {
                      "type": "integer",
                      "description": "This object indicates the number of active calls\n            through this adjacency or account that have one or more media\n            channels that provide interworking between RTP and SRTP during\n            this interval.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "csbCurrPeriodicStatsDtmfIw2833Calls": {
                      "type": "integer",
                      "description": "This object indicates the number of active calls\n            through this adjacency or account for which DTMF interworking\n            is enabled between DTMF in signaling and DTMF in media via RFC\n            2833 during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "csbCurrPeriodicStatsDtmfIwInbandCalls": {
                      "type": "integer",
                      "description": "This object indicates the number of active calls\n            through this adjacency or account for which DTMF interworking\n            is enabled between DTMF in signaling and DTMF in media via \n            inband DTMF tones during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "csbCurrPeriodicStatsDtmfIw2833InbandCalls": {
                      "type": "integer",
                      "description": "This object indicates the number of active calls\n            through this adjacency or account for which DTMF interworking\n            is enabled between DTMF in media via RFC 2833 and DTMF in media\n            via inband DTMF tones during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "csbCurrPeriodicStatsTotalTapsRequested": {
                      "type": "integer",
                      "description": "This object indicates the lawful intercept tap attempts\n            requested within the scope of this query during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "csbCurrPeriodicStatsTotalTapsSucceeded": {
                      "type": "integer",
                      "description": "This object indicates the lawful intercept tap attempts that\n            have been successfully implemented within the scope of this\n            query during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "csbCurrPeriodicStatsCurrentTaps": {
                      "type": "integer",
                      "description": "This object indicates the Lawful intercept taps currently in\n            place on calls within the scope of this query during this\n            interval.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "csbCurrPeriodicIpsecCalls": {
                      "type": "integer",
                      "description": "The number of active calls on this adjacency or account which\n            are to or from registered subscribers using IPSEC during this\n            interval.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    }
                  }
                },
                "readOnly": true
              }
            },
            "readOnly": true
          },
          "csbHistoryStatsTable": {
            "type": "object",
            "description": "csbHistoryStatsTable",
            "properties": {
              "csbHistoryStatsEntry": {
                "type": "array",
                "description": "A conceptual row in the csbHistoryStatsTable. The entries in\n          this table are updated as interval completes in the\n          csbCurrPeriodicStatsTable table and the data is moved from that\n          table to this one.",
                "items": {
                  "type": "object",
                  "properties": {
                    "csbCallStatsInstanceIndex": {
                      "type": "string",
                      "description": "csbCallStatsInstanceIndex",
                      "x-yang-type": "leafref",
                      "readOnly": true
                    },
                    "csbCallStatsServiceIndex": {
                      "type": "string",
                      "description": "csbCallStatsServiceIndex",
                      "x-yang-type": "leafref",
                      "readOnly": true
                    },
                    "csbHistoryStatsInterval": {
                      "type": "string",
                      "description": "This object identifies the interval for which the history\n            statistics information is to be displayed. The interval\n            values can be 5 min, 15 mins, 1 hour , 1 day. This object acts\n            as index for the table.",
                      "x-yang-type": "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CiscoSbcPeriodicStatsInterval",
                      "readOnly": true
                    },
                    "csbHistoryStatsElements": {
                      "type": "integer",
                      "description": "The platform assigns a number starting with one and\n            increments it each for each new row. When the maximum         \n            number of row is reached the oldest rows are deleted. It is up\n            to the platform to determine the number of entries for each\n            interval. It is recommended that each platform support at least\n            one entry for 5 min, 15 mins, 1 hour and 1 day intervals.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "csbHistoryStatsActiveCalls": {
                      "type": "integer",
                      "description": "This object indicates the number of active calls history during\n            this interval.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "csbHistoryStatsTotalCallAttempts": {
                      "type": "integer",
                      "description": "This object indicates the number of total call attempts history\n            during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "csbHistoryStatsFailedCallAttempts": {
                      "type": "integer",
                      "description": "This object indicates the number of failed call attempts during\n            this interval.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "csbHistoryStatsCallRoutingFailure": {
                      "type": "integer",
                      "description": "This object indicates the number of call setup failures due\n            to routing failures during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "csbHistoryStatsCallResourceFailure": {
                      "type": "integer",
                      "description": "This object indicates the number of call setup failures due\n            to resource failures during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "csbHistoryStatsCallMediaFailure": {
                      "type": "integer",
                      "description": "This object indicates the number of call setup failures due\n            to media failure during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "csbHistoryStatsFailSigFailure": {
                      "type": "integer",
                      "description": "This object indicates the number of call setup failures due\n            to signaling failure during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "csbHistoryStatsActiveCallFailure": {
                      "type": "integer",
                      "description": "This object indicates the number of active call failures during\n            this interval.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "csbHistoryStatsCongestionFailure": {
                      "type": "integer",
                      "description": "This object indicates the number of call setup failures due\n            to congestion during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "csbHistoryStatsCallSetupPolicyFailure": {
                      "type": "integer",
                      "description": "This object indicates the number of call setup failures due\n            to some policy violations during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "csbHistoryStatsCallSetupNAPolicyFailure": {
                      "type": "integer",
                      "description": "This object indicates the number of call setup failures due\n            to NA policy failure during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "csbHistoryStatsCallSetupRoutingPolicyFailure": {
                      "type": "integer",
                      "description": "This object indicates the number of call setup failures due\n            to routing policy failure during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "csbHistoryStatsCallSetupCACPolicyFailure": {
                      "type": "integer",
                      "description": "This object indicates the number of call setup failures due\n            to CAC policy failure during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "csbHistoryStatsCallSetupCACCallLimitFailure": {
                      "type": "integer",
                      "description": "This object indicates the number of call setup failures due\n            to CAC call limit during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "csbHistoryStatsCallSetupCACRateLimitFailure": {
                      "type": "integer",
                      "description": "This object indicates the number of call setup failures due\n            to CAC call rate limit during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "csbHistoryStatsCallSetupCACBandwidthFailure": {
                      "type": "integer",
                      "description": "This object indicates the number of call setup failures due\n            to CAC bandwidth limit during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "csbHistoryStatsCallSetupCACMediaLimitFailure": {
                      "type": "integer",
                      "description": "This object indicates the number of call setup failures due\n            to CAC media limit during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "csbHistoryStatsCallSetupCACMediaUpdateFailure": {
                      "type": "integer",
                      "description": "This object indicates the number of call update failure due\n            to policy failure during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "csbHistoryStatsTimestamp": {
                      "type": "string",
                      "description": "This object indicates the time at the start of the interval\n            when measurements were first collected for this interval in the\n            csbCurrPeriodicStatsTable.",
                      "format": "binary",
                      "readOnly": true
                    },
                    "csbHistroyStatsTranscodedCalls": {
                      "type": "integer",
                      "description": "The object indicates the number of active transcoded\n            calls during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "csbHistroyStatsTransratedCalls": {
                      "type": "integer",
                      "description": "The object indicates the number of active transrated\n            calls during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "csbHistoryStatsTotalCallUpdateFailure": {
                      "type": "integer",
                      "description": "This object indicates the total call update failures during\n            this interval.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "csbHistoryStatsActiveIpv6Calls": {
                      "type": "integer",
                      "description": "This Object indicates the number of calls through SBC that use\n            IPv6 signaling.  This statistic totals all calls that traverse\n            an IPv6 adjacency on either or both sides of SBC during this\n            interval.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "csbHistoryStatsActiveEmergencyCalls": {
                      "type": "integer",
                      "description": "This object indicates the number of calls through SBC that have\n            been identified as emergency calls (by Number Analysis)  during\n            this interval.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "csbHistoryStatsActiveE2EmergencyCalls": {
                      "type": "integer",
                      "description": "This object indicates the number of calls through SBC that have\n            been identified as emergency calls (by Number Analysis) and\n            have used the e2 interface to obtain location information for\n            the\n            caller.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "csbHistoryStatsImsRxActiveCalls": {
                      "type": "integer",
                      "description": "This object indicates the total number of active calls which\n            use IMS Rx, during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "csbHistoryStatsImsRxCallSetupFailures": {
                      "type": "integer",
                      "description": "This object indicates the total call setup failures owing to\n            IMS Rx failure during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "csbHistoryStatsImsRxCallRenegotiationAttempts": {
                      "type": "integer",
                      "description": "This object indicates the total call renegotiation attempts\n            using IMS Rx during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "csbHistoryStatsImsRxCallRenegotiationFailures": {
                      "type": "integer",
                      "description": "This object indicates the total call renegotiation failures\n            owing to IMS Rx failure during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "csbHistoryStatsAudioTranscodedCalls": {
                      "type": "integer",
                      "description": "The number of active audio transcoded calls through\n            this adjacency or account during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "csbHistoryStatsFaxTranscodedCalls": {
                      "type": "integer",
                      "description": "This object indicates the the number of active fax\n            transcoded calls through this adjacency or account during this\n            interval.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "csbHistoryStatsRtpDisallowedFailures": {
                      "type": "integer",
                      "description": "This object indicates the total call setup failures due to RTP\n            being proposed when not permitted during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "csbHistoryStatsSrtpDisallowedFailures": {
                      "type": "integer",
                      "description": "This object indicates the total call setup failures due to SRTP\n            being proposed when not permitted during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "csbHistoryStatsNonSrtpCalls": {
                      "type": "integer",
                      "description": "This object indicates the number of active calls\n            through this adjacency or account which do not use SRTP on any\n            media channels during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "csbHistoryStatsSrtpNonIwCalls": {
                      "type": "integer",
                      "description": "This object indicates the number of active calls\n            through this adjacency or account that have one or more media\n            channels that use SRTP but no media channels that provide\n            interworking between RTP and SRTP during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "csbHistoryStatsSrtpIwCalls": {
                      "type": "integer",
                      "description": "This object indicates the number of active calls\n            through this adjacency or account that have one or more media\n            channels that provide interworking between RTP and SRTP during\n            this interval.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "csbHistoryStatsDtmfIw2833Calls": {
                      "type": "integer",
                      "description": "This object indicates the number of active calls\n            through this adjacency or account for which DTMF interworking\n            is enabled between DTMF in signaling and DTMF in media via RFC\n            2833 during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "csbHistoryStatsDtmfIwInbandCalls": {
                      "type": "integer",
                      "description": "This object indicates the number of active calls\n            through this adjacency or account for which DTMF interworking\n            is enabled between DTMF in signaling and DTMF in media via\n            inband DTMF tones during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "csbHistoryStatsDtmfIw2833InbandCalls": {
                      "type": "integer",
                      "description": "This object indicates the number of active calls\n            through this adjacency or account for which DTMF interworking\n            is enabled between DTMF in media via RFC 2833 and DTMF in media\n            via inband DTMF tones during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "csbHistoryStatsTotalTapsRequested": {
                      "type": "integer",
                      "description": "This object indicates the lawful intercept tap attempts\n            requested within the scope of this query during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "csbHistoryStatsTotalTapsSucceeded": {
                      "type": "integer",
                      "description": "This object indicates the lawful intercept tap attempts that\n            have been successfully implemented within the scope of this\n            query during this interval.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "csbHistoryStatsCurrentTaps": {
                      "type": "integer",
                      "description": "This object indicates the Lawful intercept taps currently in\n            place on calls within the scope of this query during this\n            interval.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "csbHistoryStatsIpsecCalls": {
                      "type": "integer",
                      "description": "The number of active calls on this adjacency or account which\n            are to or from registered subscribers using IPSEC during this\n            interval.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    }
                  }
                },
                "readOnly": true
              }
            },
            "readOnly": true
          },
          "csbPerFlowStatsTable": {
            "type": "object",
            "description": "This table describes statistics table for each call flow. The\n        indices of the table are virtual media gateway id, gate id,\n        falow pair id and side id (indices for side A or side B). The\n        other indices of this table are csbCallStatsInstanceIndex\n        defined in csbCallStatsInstanceTable and\n        csbCallStatsServiceIndex defined in csbCallStatsTable.",
            "properties": {
              "csbPerFlowStatsEntry": {
                "type": "array",
                "description": "csbPerFlowStatsEntry",
                "items": {
                  "type": "object",
                  "properties": {
                    "csbCallStatsInstanceIndex": {
                      "type": "string",
                      "description": "csbCallStatsInstanceIndex",
                      "x-yang-type": "leafref",
                      "readOnly": true
                    },
                    "csbCallStatsServiceIndex": {
                      "type": "string",
                      "description": "csbCallStatsServiceIndex",
                      "x-yang-type": "leafref",
                      "readOnly": true
                    },
                    "csbPerFlowStatsVdbeId": {
                      "type": "integer",
                      "description": "This object identifies the virtual media gateway id. This\n            object also acts as an index for the table.",
                      "minimum": -2147483648,
                      "maximum": 2147483647,
                      "readOnly": true
                    },
                    "csbPerFlowStatsGateId": {
                      "type": "integer",
                      "description": "This object identifies the gate id. This object also acts as\n            an index for the table.",
                      "minimum": -2147483648,
                      "maximum": 2147483647,
                      "readOnly": true
                    },
                    "csbPerFlowStatsFlowPairId": {
                      "type": "integer",
                      "description": "This object identifies the flow pair id. This object also acts\n            as an index for the table.",
                      "minimum": -2147483648,
                      "maximum": 2147483647,
                      "readOnly": true
                    },
                    "csbPerFlowStatsSideId": {
                      "type": "string",
                      "description": "This object identifies the index corresponding to side of flow\n            pair either side A or side B. This object also acts as an index\n            for the table.",
                      "readOnly": true
                    },
                    "csbPerFlowStatsFlowType": {
                      "type": "string",
                      "description": "This object indicates the type of the flow, like media flow,\n            signaling flow etc.",
                      "readOnly": true
                    },
                    "csbPerFlowStatsRTPPktsSent": {
                      "type": "integer",
                      "description": "This object indicates the number of RTP packets sent per flow\n            by the SBC.",
                      "minimum": 0,
                      "readOnly": true
                    },
                    "csbPerFlowStatsRTPPktsRcvd": {
                      "type": "integer",
                      "description": "This object indicates the number of RTP packets received per\n            flow by the SBC.",
                      "minimum": 0,
                      "readOnly": true
                    },
                    "csbPerFlowStatsRTPPktsDiscard": {
                      "type": "integer",
                      "description": "This object indicates the number of RTP packets discarded  per\n            flow by the SBC.",
                      "minimum": 0,
                      "readOnly": true
                    },
                    "csbPerFlowStatsRTPOctetsSent": {
                      "type": "integer",
                      "description": "This object indicates the number of RTP octets sent\n            per flow by the SBC.",
                      "minimum": 0,
                      "readOnly": true
                    },
                    "csbPerFlowStatsRTPOctetsRcvd": {
                      "type": "integer",
                      "description": "This object indicates the number of RTP octets received\n            per flow by the SBC.",
                      "minimum": 0,
                      "readOnly": true
                    },
                    "csbPerFlowStatsRTPOctetsDiscard": {
                      "type": "integer",
                      "description": "This object indicates the number of RTP octets discarded\n            per flow by the SBC.",
                      "minimum": 0,
                      "readOnly": true
                    },
                    "csbPerFlowStatsRTCPPktsSent": {
                      "type": "integer",
                      "description": "The number of RTP packets sent by the remote end point to this\n            MG on this flow. Comparing this with the local number of RTP\n            packets received from the remote end point gives an indication\n            of how many incoming  packets were dropped on this leg of the\n            call. This information is from RTCP packet. Not all endpoints\n            report this statistic, if it is not available it will be set to\n            zero. This statistic will not be available for signaling flows.",
                      "minimum": 0,
                      "readOnly": true
                    },
                    "csbPerFlowStatsRTCPPktsRcvd": {
                      "type": "integer",
                      "description": "The number of RTP packets received by the remote end point from\n            this MG on this flow. Comparing this with the local number of\n            RTP packets sent from this MG to the remote endpoint gives an\n            indication of how many outgoing packets were dropped on this\n            leg of the call. This information is from RTCP packet. Not all\n            endpoints report this statistic, if it is not available it will\n            be set to zero. This statistic will not be available for\n            signaling flows.",
                      "minimum": 0,
                      "readOnly": true
                    },
                    "csbPerFlowStatsRTCPPktsLost": {
                      "type": "integer",
                      "description": "The number of RTP packets reported as lost by the remote end\n            point on this flow. This information is from RTCP packet. Not\n            all endpoints report this statistic, if it is not available it\n            will be set to zero. This statistic will not be available for\n            signaling flows.",
                      "minimum": 0,
                      "readOnly": true
                    },
                    "csbPerFlowStatsEPJitter": {
                      "type": "integer",
                      "description": "This object indicates the End Point jitter per flow in the\n            SBC.",
                      "minimum": 0,
                      "readOnly": true
                    },
                    "csbPerFlowStatsTmanPerMbs": {
                      "type": "integer",
                      "description": "This object indicates the maximum burst size for the\n            current FlowPair.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "csbPerFlowStatsTmanPerSdr": {
                      "type": "integer",
                      "description": "This object indicates the bandwidth reserved for flow in\n            kilobytes/second.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "csbPerFlowStatsDscpSettings": {
                      "type": "string",
                      "description": "This object indicates the mark packets sent for the\n            current FlowPair with, or zero if none set. The DSCP is a 6-bit\n            value, which will be present in the top 6 bits of the lowest\n            byte of this field.",
                      "x-yang-type": "snmp-framework:SnmpAdminString",
                      "readOnly": true
                    },
                    "csbPerFlowStatsAdrStatus": {
                      "type": "string",
                      "description": "This object indicates whether the flow on the current\n            FlowPair has subscribed for the NAT latch event.",
                      "format": "binary",
                      "readOnly": true
                    },
                    "csbPerFlowStatsQASettings": {
                      "type": "string",
                      "description": "This object indicates the flow on the current FlowPair has\n            subscribed for the media loss event.",
                      "format": "binary",
                      "readOnly": true
                    },
                    "csbPerFlowStatsRTPPktsLost": {
                      "type": "integer",
                      "description": "This object indicates the number of RTP packets lost per flow\n            by the SBC.",
                      "minimum": 0,
                      "readOnly": true
                    }
                  }
                },
                "readOnly": true
              }
            },
            "readOnly": true
          },
          "csbH248StatsTable": {
            "type": "object",
            "description": "This table describes the H.248 statistics for SBC. The index of\n        the table is service index which corresponds to a particular \n        service configured on the SBC and the index assigned to a\n        particular H.248 controller. The other index of this table is\n        csbCallStatsInstanceIndex defined in csbCallStatsInstanceTable.\n        This table is replaced by the csbH248StatsRev1Table.",
            "properties": {
              "csbH248StatsEntry": {
                "type": "array",
                "description": "An conceptual row in the csbCallStath248Table. There is\n          an entry in this table for the particular controller by a value\n          of csbH248StatsCtrlrIndex. The other indices of this table are\n          csbCallStatsInstanceIndex defined in csbCallStatsInstanceTable\n          and csbCallStatsServiceIndex defined in csbCallStatsTable.",
                "items": {
                  "type": "object",
                  "properties": {
                    "csbCallStatsInstanceIndex": {
                      "type": "string",
                      "description": "csbCallStatsInstanceIndex",
                      "x-yang-type": "leafref",
                      "readOnly": true
                    },
                    "csbCallStatsServiceIndex": {
                      "type": "string",
                      "description": "csbCallStatsServiceIndex",
                      "x-yang-type": "leafref",
                      "readOnly": true
                    },
                    "csbH248StatsCtrlrIndex": {
                      "type": "integer",
                      "description": "This object identifies the controller index of the H.248\n            server. This is also the index for the table.",
                      "minimum": -2147483648,
                      "maximum": 2147483647,
                      "readOnly": true
                    },
                    "csbH248StatsRequestsSent": {
                      "type": "integer",
                      "description": "This object indicates the requests sent through the Session\n            Controller Interface to an SBE or DBE.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "csbH248StatsRequestsRcvd": {
                      "type": "integer",
                      "description": "This object indicates the requests received through the\n            Session Controller Interface to an SBE or DBE.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "csbH248StatsRequestsFailed": {
                      "type": "integer",
                      "description": "This object indicates the requests failed on session\n            Controller Interface to an SBE or DBE.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "csbH248StatsRequestsRetried": {
                      "type": "integer",
                      "description": "This object indicates the requests retried through the Session\n            Controller Interface to an SBE or DBE.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "csbH248StatsRepliesSent": {
                      "type": "integer",
                      "description": "This object indicates the number of replies sent through the\n            Session Controller Interface to an SBE or DBE.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "csbH248StatsRepliesRcvd": {
                      "type": "integer",
                      "description": "This object indicates the number of replies received from the\n            Session Controller Interface to an SBE or DBE.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "csbH248StatsRepliesRetried": {
                      "type": "integer",
                      "description": "This object indicates the number of replies retried through\n            the Session Controller Interface to an SBE or DBE.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "csbH248StatsSegPktsSent": {
                      "type": "integer",
                      "description": "This object indicates the number of packets sent through the\n            Session Controller Interface to an SBE or DBE.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "csbH248StatsSegPktsRcvd": {
                      "type": "integer",
                      "description": "This object indicates the number of packets received from the\n            Session Controller Interface to an SBE or DBE.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "csbH248StatsEstablishedTime": {
                      "type": "string",
                      "description": "This object indicates the H.248 Controller established\n            time (the time at which the association became established).",
                      "format": "binary",
                      "readOnly": true
                    },
                    "csbH248StatsTMaxTimeoutVal": {
                      "type": "integer",
                      "description": "This object indicates the T-Max timeout value. This field\n            specifies the maximum delay (in milliseconds) for a response\n            from an MGC before deciding that the request has failed.",
                      "minimum": -2147483648,
                      "maximum": 2147483647,
                      "readOnly": true
                    },
                    "csbH248StatsRTT": {
                      "type": "integer",
                      "description": "This object indicates the calculated RTT value. This field\n            specifies the maximum round trip propagation delay in the \n            network (in milliseconds).",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "csbH248StatsLT": {
                      "type": "integer",
                      "description": "This object indicates the LT value calculated from RTT\n            value and Max timeout value. This field specifies the maximum\n            delay (in milliseconds) for a response from an MGC plus the\n            maximum round trip propagation delay in the network (in\n            milliseconds).",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    }
                  }
                },
                "readOnly": true
              }
            },
            "readOnly": true
          },
          "csbH248StatsRev1Table": {
            "type": "object",
            "description": "This table describes the H.248 statistics for SBC. The index of\n        the table is service index which corresponds to a particular \n        service configured on the SBC and the index assigned to a\n        particular H.248 controller. The other index of this table is\n        csbCallStatsInstanceIndex defined in csbCallStatsInstanceTable.",
            "properties": {
              "csbH248StatsRev1Entry": {
                "type": "array",
                "description": "An conceptual row in the csbCallStath248Table. There is\n          an entry in this table for the particular Vdbe by a value\n          of csbH248StatsVdbeId. The other indices of this table are\n          csbCallStatsInstanceIndex defined in csbCallStatsInstanceTable\n          and csbCallStatsServiceIndex defined in csbCallStatsTable.",
                "items": {
                  "type": "object",
                  "properties": {
                    "csbCallStatsInstanceIndex": {
                      "type": "string",
                      "description": "csbCallStatsInstanceIndex",
                      "x-yang-type": "leafref",
                      "readOnly": true
                    },
                    "csbCallStatsServiceIndex": {
                      "type": "string",
                      "description": "csbCallStatsServiceIndex",
                      "x-yang-type": "leafref",
                      "readOnly": true
                    },
                    "csbH248StatsVdbeId": {
                      "type": "integer",
                      "description": "This object identifies the virtual media gateway id. This is\n            also the index for the table.",
                      "minimum": -2147483648,
                      "maximum": 2147483647,
                      "readOnly": true
                    },
                    "csbH248StatsRequestsSentRev1": {
                      "type": "integer",
                      "description": "This object indicates the requests sent through the Session\n            Controller Interface to an SBE or DBE.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "csbH248StatsRequestsRcvdRev1": {
                      "type": "integer",
                      "description": "This object indicates the requests received through the\n            Session Controller Interface to an SBE or DBE.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "csbH248StatsRequestsFailedRev1": {
                      "type": "integer",
                      "description": "This object indicates the requests failed on session\n            Controller Interface to an SBE or DBE.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "csbH248StatsRequestsRetriedRev1": {
                      "type": "integer",
                      "description": "This object indicates the requests retried through the Session\n            Controller Interface to an SBE or DBE.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "csbH248StatsRepliesSentRev1": {
                      "type": "integer",
                      "description": "This object indicates the number of replies sent through the\n            Session Controller Interface to an SBE or DBE.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "csbH248StatsRepliesRcvdRev1": {
                      "type": "integer",
                      "description": "This object indicates the number of replies received from the\n            Session Controller Interface to an SBE or DBE.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "csbH248StatsRepliesRetriedRev1": {
                      "type": "integer",
                      "description": "This object indicates the number of replies retried through\n            the Session Controller Interface to an SBE or DBE.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "csbH248StatsSegPktsSentRev1": {
                      "type": "integer",
                      "description": "This object indicates the number of response segments sent by\n            DBE. This field will only be present if segmentation is enabled\n            on this association.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "csbH248StatsSegPktsRcvdRev1": {
                      "type": "integer",
                      "description": "This object indicates the number of response segments received\n            by DBE. This field will only be present if segmentation is\n            enabled on this association.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "csbH248StatsEstablishedTimeRev1": {
                      "type": "string",
                      "description": "This object indicates the H.248 Controller established\n            time (the time at which the association became established).",
                      "format": "binary",
                      "readOnly": true
                    },
                    "csbH248StatsTMaxTimeoutValRev1": {
                      "type": "integer",
                      "description": "This object indicates the T-Max timeout value. This field\n            specifies the maximum delay (in milliseconds) for a response\n            from an MGC before deciding that the request has failed.",
                      "minimum": -2147483648,
                      "maximum": 2147483647,
                      "readOnly": true
                    },
                    "csbH248StatsRTTRev1": {
                      "type": "integer",
                      "description": "This object indicates the calculated RTT value. This field\n            specifies the maximum round trip propagation delay in the \n            network (in milliseconds).",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "csbH248StatsLTRev1": {
                      "type": "integer",
                      "description": "This object indicates the LT value calculated from RTT\n            value and Max timeout value. This field specifies the maximum\n            delay (in milliseconds) for a response from an MGC plus the\n            maximum round trip propagation delay in the network (in\n            milliseconds).",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    }
                  }
                },
                "readOnly": true
              }
            },
            "readOnly": true
          }
        }
      },
      "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB_csbCallStatsInstanceEntry": {
        "type": "array",
        "description": "A conceptual row in csbCallStatsInstanceTable. There is an\n          entry in this table for each SBC instance, as identified by a \n          value of csbCallStatsInstanceIndex.",
        "items": {
          "type": "object",
          "properties": {
            "csbCallStatsInstanceIndex": {
              "type": "integer",
              "description": "This object uniquely identifies the sequence number of an\n            entity or slot that is configured per device. This index is\n            assigned arbitrarily by the engine and is not saved over\n            reboots.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "csbCallStatsInstancePhysicalIndex": {
              "type": "string",
              "description": "This object indicates the physical entity for which all the\n            measurements are maintained. The exact type of this\n            entity is described by its entPhysicalVendorType value.",
              "x-yang-type": "cisco-tc:EntPhysicalIndexOrZero",
              "readOnly": true
            }
          }
        }
      },
      "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB_csbCallStatsEntry": {
        "type": "array",
        "description": "An conceptual row in the csbCallStatsGlobalStatsTable. There is\n          an entry in this table for the particular service configured on\n          SBC identified by a value of csbCallStatsInstanceIndex. The\n          other index of this table is csbCallStatsInstanceIndex which is\n          defined in csbCallStatsInstanceTable.",
        "items": {
          "type": "object",
          "properties": {
            "csbCallStatsInstanceIndex": {
              "type": "string",
              "description": "csbCallStatsInstanceIndex",
              "x-yang-type": "leafref",
              "readOnly": true
            },
            "csbCallStatsServiceIndex": {
              "type": "integer",
              "description": "This object identifies the index of the name of the SBC\n            service configured. This object also acts as an index for the\n            table.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "csbCallStatsSbcName": {
              "type": "string",
              "description": "This object indicates the configured name of the SBC service.\n            The length of this object is zero when value is not assigned\n            to it.",
              "x-yang-type": "snmp-framework:SnmpAdminString",
              "readOnly": true
            },
            "csbCallStatsCallsHigh": {
              "type": "integer",
              "description": "This object indicates the maximum number of calls per second\n            processed by the Session Border Controller in past 24 hours.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "csbCallStatsRate1Sec": {
              "type": "integer",
              "description": "This object indicates the average calls per second processed by\n            the Session Border Controller.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "csbCallStatsCallsLow": {
              "type": "integer",
              "description": "This object indicates the minimum calls per second in past 24\n            hours.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "csbCallStatsAvailableFlows": {
              "type": "integer",
              "description": "This object indicates the number of media flows which are\n            available.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "csbCallStatsUsedFlows": {
              "type": "integer",
              "description": "This object indicates the number of media flows which are\n            used. This is for the flow allocated and connected. The flow\n            allocated but not connected is not counted.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "csbCallStatsPeakFlows": {
              "type": "integer",
              "description": "This object indicates the number of peak flows in SBC.\n            This is the highest recorded value for the active flows since\n            the box was booted/reseted.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "csbCallStatsTotalFlows": {
              "type": "integer",
              "description": "This object indicates the total number of media support by this\n            instance of SBC. The total number of flows include the\n            available\n            flows and the active flows. This value is since box was\n            booted/reseted. Total flows include the active flows and the\n            flows allocated but not connected.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "csbCallStatsUsedSigFlows": {
              "type": "integer",
              "description": "This object indicates the number of active signaling flows for\n            signaling pinholes.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "csbCallStatsPeakSigFlows": {
              "type": "integer",
              "description": "This object indicates the peak signaling flow in SBC.\n            This is the highest recorded value for the active signaling\n            flows. This object is calculated using csbCallStatsUsedFlows.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "csbCallStatsTotalSigFlows": {
              "type": "integer",
              "description": "This object indicates the maximum number of Signalling Flows\n            that can be supported by this instance of SBC.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "csbCallStatsAvailablePktRate": {
              "type": "integer",
              "description": "This object indicates the remaining capacity that can be\n            supported by SBC.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "csbCallStatsUnclassifiedPkts": {
              "type": "integer",
              "description": "This object indicates the number of unclassified packets\n            processed by SBC.",
              "minimum": 0,
              "readOnly": true
            },
            "csbCallStatsRTPPktsSent": {
              "type": "integer",
              "description": "This object indicates the total number of RTP packets sent.",
              "minimum": 0,
              "readOnly": true
            },
            "csbCallStatsRTPPktsRcvd": {
              "type": "integer",
              "description": "This object indicates the total number of RTP packets\n            received.",
              "minimum": 0,
              "readOnly": true
            },
            "csbCallStatsRTPPktsDiscard": {
              "type": "integer",
              "description": "This object indicates the total number of RTP packets\n            discarded.",
              "minimum": 0,
              "readOnly": true
            },
            "csbCallStatsRTPOctetsSent": {
              "type": "integer",
              "description": "This object indicates the number of RTP octets sent by the\n            SBC.",
              "minimum": 0,
              "readOnly": true
            },
            "csbCallStatsRTPOctetsRcvd": {
              "type": "integer",
              "description": "This object indicates the number of RTP octets received by\n            the SBC.",
              "minimum": 0,
              "readOnly": true
            },
            "csbCallStatsRTPOctetsDiscard": {
              "type": "integer",
              "description": "This object indicates the number of RTP octets discarded by\n            the SBC.",
              "minimum": 0,
              "readOnly": true
            },
            "csbCallStatsNoMediaCount": {
              "type": "integer",
              "description": "This object indicates the accumulated No media event\n            count.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "csbCallStatsRouteErrors": {
              "type": "integer",
              "description": "This object indicates the accumulated route error event\n            count. This counter is for the route error of media stream.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "csbCallStatsAvailableTranscodeFlows": {
              "type": "integer",
              "description": "This object indicates the number of additional transcoded flows\n            that this media gateway manager (MGM) entity is currently able\n            to configure.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "csbCallStatsActiveTranscodeFlows": {
              "type": "integer",
              "description": "This object indicates the current number of transcoded\n            flows that are actively forwarding media traffic.  In this\n            context, a flow is a media stream passing through the device.\n            So a single voice call will be counted only once.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "csbCallStatsPeakTranscodeFlows": {
              "type": "integer",
              "description": "This object indicates the peak number of active transcoded\n            flows since the statistics were last reset.  In this context, a\n            flow is a media stream passing through the device, so a single\n            voice call will be counted once.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "csbCallStatsTotalTranscodeFlows": {
              "type": "integer",
              "description": "This object indicates the accumulated total number of\n            transcoded flows.  This count contains both active flows and\n            flows that were allocated but never connected.  In this context,\n            a flow is a media stream passing through the device, so a single\n            voice call will be counted once.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            }
          }
        }
      },
      "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB_csbCurrPeriodicStatsEntry": {
        "type": "array",
        "description": "An conceptual row in the csbCurrPeriodicStatsTable. There is\n          an entry in this table for the particular controller by a value\n          of csbH248StatsCtrlrIndex. The other indices of this table are\n          csbCallStatsInstanceIndex defined in csbCallStatsInstanceTable\n          and csbCallStatsServiceIndex defined in csbCallStatsTable.",
        "items": {
          "type": "object",
          "properties": {
            "csbCallStatsInstanceIndex": {
              "type": "string",
              "description": "csbCallStatsInstanceIndex",
              "x-yang-type": "leafref",
              "readOnly": true
            },
            "csbCallStatsServiceIndex": {
              "type": "string",
              "description": "csbCallStatsServiceIndex",
              "x-yang-type": "leafref",
              "readOnly": true
            },
            "csbCurrPeriodicStatsInterval": {
              "type": "string",
              "description": "This object identifies the interval for which the periodic\n            statistics information is to be displayed. The interval\n            values can be 5 min, 15 mins, 1 hour , 1 Day. This object acts\n            as index for the table.",
              "x-yang-type": "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CiscoSbcPeriodicStatsInterval",
              "readOnly": true
            },
            "csbCurrPeriodicStatsActiveCalls": {
              "type": "integer",
              "description": "This object indicates the number of calls that have become\n            active during this interval.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "csbCurrPeriodicStatsActivatingCalls": {
              "type": "integer",
              "description": "This object indicates the number of calls that have become\n            activing during this interval.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "csbCurrPeriodicStatsDeactivatingCalls": {
              "type": "integer",
              "description": "This object indicates the number of calls that have become\n            deactiving during this interval.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "csbCurrPeriodicStatsTotalCallAttempts": {
              "type": "integer",
              "description": "This object indicates the number of total call attempts during\n            this interval.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "csbCurrPeriodicStatsFailedCallAttempts": {
              "type": "integer",
              "description": "This object indicates the number of failed call attempts during\n            this interval.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "csbCurrPeriodicStatsCallRoutingFailure": {
              "type": "integer",
              "description": "This object indicates the number of call setup failures due\n            to routing failures during this interval.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "csbCurrPeriodicStatsCallResourceFailure": {
              "type": "integer",
              "description": "This object indicates the number of call setup failures due\n            to resource failures during this interval.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "csbCurrPeriodicStatsCallMediaFailure": {
              "type": "integer",
              "description": "This object indicates the number of call setup failures due\n            to media failure during this interval.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "csbCurrPeriodicStatsCallSigFailure": {
              "type": "integer",
              "description": "This object indicates the number of call setup failures due\n            to signaling failure during this interval.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "csbCurrPeriodicStatsActiveCallFailure": {
              "type": "integer",
              "description": "This object indicates the number of active call failures during\n            this interval.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "csbCurrPeriodicStatsCongestionFailure": {
              "type": "integer",
              "description": "This object indicates the number of call setup failures due\n            to congestion during this interval.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "csbCurrPeriodicStatsCallSetupPolicyFailure": {
              "type": "integer",
              "description": "This object indicates the number of call setup failures due\n            to policy failure during this interval.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "csbCurrPeriodicStatsCallSetupNAPolicyFailure": {
              "type": "integer",
              "description": "This object indicates the number of call setup failures due\n            to NA policy failure during this interval.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "csbCurrPeriodicStatsCallSetupRoutingPolicyFailure": {
              "type": "integer",
              "description": "This object indicates the number of call setup failures due\n            to routing policy failure during this interval.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "csbCurrPeriodicStatsCallSetupCACPolicyFailure": {
              "type": "integer",
              "description": "This object indicates the number of call setup failures due\n            to CAC policy failure during this interval.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "csbCurrPeriodicStatsCallSetupCACCallLimitFailure": {
              "type": "integer",
              "description": "This object indicates the number of call setup failures due\n            to CAC call limit during this interval.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "csbCurrPeriodicStatsCallSetupCACRateLimitFailure": {
              "type": "integer",
              "description": "This object indicates the number of call setup failures due\n            to CAC call rate limit during this interval.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "csbCurrPeriodicStatsCallSetupCACBandwidthFailure": {
              "type": "integer",
              "description": "This object indicates the number of call setup failures due\n            to CAC bandwidth limit during this interval.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "csbCurrPeriodicStatsCallSetupCACMediaLimitFailure": {
              "type": "integer",
              "description": "This object indicates the number of call setup failures due\n            to CAC media limit during this interval.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "csbCurrPeriodicStatsCallSetupCACMediaUpdateFailure": {
              "type": "integer",
              "description": "This object indicates the number of call update failure due\n            to policy failure during this interval.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "csbCurrPeriodicStatsTimestamp": {
              "type": "string",
              "description": "This object indicates the current time at the start of each\n            interval.",
              "format": "binary",
              "readOnly": true
            },
            "csbCurrPeriodicStatsTranscodedCalls": {
              "type": "integer",
              "description": "The object indicates the number of transcoded calls that are\n            active during this interval.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "csbCurrPeriodicStatsTransratedCalls": {
              "type": "integer",
              "description": "The object indicates the number of transrated calls that are\n            active during this interval.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "csbCurrPeriodicStatsTotalCallUpdateFailure": {
              "type": "integer",
              "description": "This object indicates the total number of call update failures\n            during this interval.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "csbCurrPeriodicStatsActiveIpv6Calls": {
              "type": "integer",
              "description": "This Object indicates the number of calls through SBC that use\n            IPv6 signaling.  This statistic totals all calls that traverse\n            an IPv6 adjacency on either or both sides of SBC during this\n            interval.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "csbCurrPeriodicStatsActiveEmergencyCalls": {
              "type": "integer",
              "description": "This object indicates the number of calls through SBC that have\n            been identified as emergency calls (by Number Analysis) during\n            this interval.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "csbCurrPeriodicStatsActiveE2EmergencyCalls": {
              "type": "integer",
              "description": "This object indicates the number of calls through SBC that have\n            been identified as emergency calls (by Number Analysis) and\n            have used the e2 interface to obtain location information for\n            the caller during this interval.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "csbCurrPeriodicStatsImsRxActiveCalls": {
              "type": "integer",
              "description": "This object indicates the total number of active calls which\n            use IMS Rx, during this interval.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "csbCurrPeriodicStatsImsRxCallSetupFaiures": {
              "type": "integer",
              "description": "This object indicates the total call Setup failures owing to\n            IMS Rx failure during this interval.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "csbCurrPeriodicStatsImsRxCallRenegotiationAttempts": {
              "type": "integer",
              "description": "This object indicates the total call renegotiation attempts\n            using IMS Rx during this interval.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "csbCurrPeriodicStatsImsRxCallRenegotiationFailures": {
              "type": "integer",
              "description": "This object indicates the total call renegotiation failures\n            owing to IMS Rx failure during this interval.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "csbCurrPeriodicStatsAudioTranscodedCalls": {
              "type": "integer",
              "description": "The number of active audio transcoded calls through\n            this adjacency or account during this interval.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "csbCurrPeriodicStatsFaxTranscodedCalls": {
              "type": "integer",
              "description": "This object indicates the the number of active fax\n            transcoded calls through this adjacency or account during this\n            interval.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "csbCurrPeriodicStatsRtpDisallowedFailures": {
              "type": "integer",
              "description": "This object indicates the total call setup failures due to RTP\n            being proposed when not permitted during this interval.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "csbCurrPeriodicStatsSrtpDisallowedFailures": {
              "type": "integer",
              "description": "This object indicates the total call setup failures due to SRTP\n            being proposed when not permitted during this interval.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "csbCurrPeriodicStatsNonSrtpCalls": {
              "type": "integer",
              "description": "This object indicates the number of active calls\n            through this adjacency or account which do not use SRTP on any\n            media channels during this interval.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "csbCurrPeriodicStatsSrtpNonIwCalls": {
              "type": "integer",
              "description": "This object indicates the number of active calls\n            through this adjacency or account that have one or more media\n            channels which use SRTP. This count does not include media \n            channels that provide interworking between RTP and SRTP during\n            this interval.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "csbCurrPeriodicStatsSrtpIwCalls": {
              "type": "integer",
              "description": "This object indicates the number of active calls\n            through this adjacency or account that have one or more media\n            channels that provide interworking between RTP and SRTP during\n            this interval.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "csbCurrPeriodicStatsDtmfIw2833Calls": {
              "type": "integer",
              "description": "This object indicates the number of active calls\n            through this adjacency or account for which DTMF interworking\n            is enabled between DTMF in signaling and DTMF in media via RFC\n            2833 during this interval.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "csbCurrPeriodicStatsDtmfIwInbandCalls": {
              "type": "integer",
              "description": "This object indicates the number of active calls\n            through this adjacency or account for which DTMF interworking\n            is enabled between DTMF in signaling and DTMF in media via \n            inband DTMF tones during this interval.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "csbCurrPeriodicStatsDtmfIw2833InbandCalls": {
              "type": "integer",
              "description": "This object indicates the number of active calls\n            through this adjacency or account for which DTMF interworking\n            is enabled between DTMF in media via RFC 2833 and DTMF in media\n            via inband DTMF tones during this interval.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "csbCurrPeriodicStatsTotalTapsRequested": {
              "type": "integer",
              "description": "This object indicates the lawful intercept tap attempts\n            requested within the scope of this query during this interval.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "csbCurrPeriodicStatsTotalTapsSucceeded": {
              "type": "integer",
              "description": "This object indicates the lawful intercept tap attempts that\n            have been successfully implemented within the scope of this\n            query during this interval.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "csbCurrPeriodicStatsCurrentTaps": {
              "type": "integer",
              "description": "This object indicates the Lawful intercept taps currently in\n            place on calls within the scope of this query during this\n            interval.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "csbCurrPeriodicIpsecCalls": {
              "type": "integer",
              "description": "The number of active calls on this adjacency or account which\n            are to or from registered subscribers using IPSEC during this\n            interval.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            }
          }
        }
      },
      "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB_csbHistoryStatsEntry": {
        "type": "array",
        "description": "A conceptual row in the csbHistoryStatsTable. The entries in\n          this table are updated as interval completes in the\n          csbCurrPeriodicStatsTable table and the data is moved from that\n          table to this one.",
        "items": {
          "type": "object",
          "properties": {
            "csbCallStatsInstanceIndex": {
              "type": "string",
              "description": "csbCallStatsInstanceIndex",
              "x-yang-type": "leafref",
              "readOnly": true
            },
            "csbCallStatsServiceIndex": {
              "type": "string",
              "description": "csbCallStatsServiceIndex",
              "x-yang-type": "leafref",
              "readOnly": true
            },
            "csbHistoryStatsInterval": {
              "type": "string",
              "description": "This object identifies the interval for which the history\n            statistics information is to be displayed. The interval\n            values can be 5 min, 15 mins, 1 hour , 1 day. This object acts\n            as index for the table.",
              "x-yang-type": "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CiscoSbcPeriodicStatsInterval",
              "readOnly": true
            },
            "csbHistoryStatsElements": {
              "type": "integer",
              "description": "The platform assigns a number starting with one and\n            increments it each for each new row. When the maximum         \n            number of row is reached the oldest rows are deleted. It is up\n            to the platform to determine the number of entries for each\n            interval. It is recommended that each platform support at least\n            one entry for 5 min, 15 mins, 1 hour and 1 day intervals.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "csbHistoryStatsActiveCalls": {
              "type": "integer",
              "description": "This object indicates the number of active calls history during\n            this interval.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "csbHistoryStatsTotalCallAttempts": {
              "type": "integer",
              "description": "This object indicates the number of total call attempts history\n            during this interval.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "csbHistoryStatsFailedCallAttempts": {
              "type": "integer",
              "description": "This object indicates the number of failed call attempts during\n            this interval.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "csbHistoryStatsCallRoutingFailure": {
              "type": "integer",
              "description": "This object indicates the number of call setup failures due\n            to routing failures during this interval.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "csbHistoryStatsCallResourceFailure": {
              "type": "integer",
              "description": "This object indicates the number of call setup failures due\n            to resource failures during this interval.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "csbHistoryStatsCallMediaFailure": {
              "type": "integer",
              "description": "This object indicates the number of call setup failures due\n            to media failure during this interval.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "csbHistoryStatsFailSigFailure": {
              "type": "integer",
              "description": "This object indicates the number of call setup failures due\n            to signaling failure during this interval.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "csbHistoryStatsActiveCallFailure": {
              "type": "integer",
              "description": "This object indicates the number of active call failures during\n            this interval.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "csbHistoryStatsCongestionFailure": {
              "type": "integer",
              "description": "This object indicates the number of call setup failures due\n            to congestion during this interval.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "csbHistoryStatsCallSetupPolicyFailure": {
              "type": "integer",
              "description": "This object indicates the number of call setup failures due\n            to some policy violations during this interval.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "csbHistoryStatsCallSetupNAPolicyFailure": {
              "type": "integer",
              "description": "This object indicates the number of call setup failures due\n            to NA policy failure during this interval.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "csbHistoryStatsCallSetupRoutingPolicyFailure": {
              "type": "integer",
              "description": "This object indicates the number of call setup failures due\n            to routing policy failure during this interval.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "csbHistoryStatsCallSetupCACPolicyFailure": {
              "type": "integer",
              "description": "This object indicates the number of call setup failures due\n            to CAC policy failure during this interval.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "csbHistoryStatsCallSetupCACCallLimitFailure": {
              "type": "integer",
              "description": "This object indicates the number of call setup failures due\n            to CAC call limit during this interval.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "csbHistoryStatsCallSetupCACRateLimitFailure": {
              "type": "integer",
              "description": "This object indicates the number of call setup failures due\n            to CAC call rate limit during this interval.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "csbHistoryStatsCallSetupCACBandwidthFailure": {
              "type": "integer",
              "description": "This object indicates the number of call setup failures due\n            to CAC bandwidth limit during this interval.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "csbHistoryStatsCallSetupCACMediaLimitFailure": {
              "type": "integer",
              "description": "This object indicates the number of call setup failures due\n            to CAC media limit during this interval.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "csbHistoryStatsCallSetupCACMediaUpdateFailure": {
              "type": "integer",
              "description": "This object indicates the number of call update failure due\n            to policy failure during this interval.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "csbHistoryStatsTimestamp": {
              "type": "string",
              "description": "This object indicates the time at the start of the interval\n            when measurements were first collected for this interval in the\n            csbCurrPeriodicStatsTable.",
              "format": "binary",
              "readOnly": true
            },
            "csbHistroyStatsTranscodedCalls": {
              "type": "integer",
              "description": "The object indicates the number of active transcoded\n            calls during this interval.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "csbHistroyStatsTransratedCalls": {
              "type": "integer",
              "description": "The object indicates the number of active transrated\n            calls during this interval.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "csbHistoryStatsTotalCallUpdateFailure": {
              "type": "integer",
              "description": "This object indicates the total call update failures during\n            this interval.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "csbHistoryStatsActiveIpv6Calls": {
              "type": "integer",
              "description": "This Object indicates the number of calls through SBC that use\n            IPv6 signaling.  This statistic totals all calls that traverse\n            an IPv6 adjacency on either or both sides of SBC during this\n            interval.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "csbHistoryStatsActiveEmergencyCalls": {
              "type": "integer",
              "description": "This object indicates the number of calls through SBC that have\n            been identified as emergency calls (by Number Analysis)  during\n            this interval.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "csbHistoryStatsActiveE2EmergencyCalls": {
              "type": "integer",
              "description": "This object indicates the number of calls through SBC that have\n            been identified as emergency calls (by Number Analysis) and\n            have used the e2 interface to obtain location information for\n            the\n            caller.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "csbHistoryStatsImsRxActiveCalls": {
              "type": "integer",
              "description": "This object indicates the total number of active calls which\n            use IMS Rx, during this interval.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "csbHistoryStatsImsRxCallSetupFailures": {
              "type": "integer",
              "description": "This object indicates the total call setup failures owing to\n            IMS Rx failure during this interval.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "csbHistoryStatsImsRxCallRenegotiationAttempts": {
              "type": "integer",
              "description": "This object indicates the total call renegotiation attempts\n            using IMS Rx during this interval.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "csbHistoryStatsImsRxCallRenegotiationFailures": {
              "type": "integer",
              "description": "This object indicates the total call renegotiation failures\n            owing to IMS Rx failure during this interval.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "csbHistoryStatsAudioTranscodedCalls": {
              "type": "integer",
              "description": "The number of active audio transcoded calls through\n            this adjacency or account during this interval.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "csbHistoryStatsFaxTranscodedCalls": {
              "type": "integer",
              "description": "This object indicates the the number of active fax\n            transcoded calls through this adjacency or account during this\n            interval.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "csbHistoryStatsRtpDisallowedFailures": {
              "type": "integer",
              "description": "This object indicates the total call setup failures due to RTP\n            being proposed when not permitted during this interval.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "csbHistoryStatsSrtpDisallowedFailures": {
              "type": "integer",
              "description": "This object indicates the total call setup failures due to SRTP\n            being proposed when not permitted during this interval.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "csbHistoryStatsNonSrtpCalls": {
              "type": "integer",
              "description": "This object indicates the number of active calls\n            through this adjacency or account which do not use SRTP on any\n            media channels during this interval.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "csbHistoryStatsSrtpNonIwCalls": {
              "type": "integer",
              "description": "This object indicates the number of active calls\n            through this adjacency or account that have one or more media\n            channels that use SRTP but no media channels that provide\n            interworking between RTP and SRTP during this interval.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "csbHistoryStatsSrtpIwCalls": {
              "type": "integer",
              "description": "This object indicates the number of active calls\n            through this adjacency or account that have one or more media\n            channels that provide interworking between RTP and SRTP during\n            this interval.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "csbHistoryStatsDtmfIw2833Calls": {
              "type": "integer",
              "description": "This object indicates the number of active calls\n            through this adjacency or account for which DTMF interworking\n            is enabled between DTMF in signaling and DTMF in media via RFC\n            2833 during this interval.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "csbHistoryStatsDtmfIwInbandCalls": {
              "type": "integer",
              "description": "This object indicates the number of active calls\n            through this adjacency or account for which DTMF interworking\n            is enabled between DTMF in signaling and DTMF in media via\n            inband DTMF tones during this interval.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "csbHistoryStatsDtmfIw2833InbandCalls": {
              "type": "integer",
              "description": "This object indicates the number of active calls\n            through this adjacency or account for which DTMF interworking\n            is enabled between DTMF in media via RFC 2833 and DTMF in media\n            via inband DTMF tones during this interval.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "csbHistoryStatsTotalTapsRequested": {
              "type": "integer",
              "description": "This object indicates the lawful intercept tap attempts\n            requested within the scope of this query during this interval.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "csbHistoryStatsTotalTapsSucceeded": {
              "type": "integer",
              "description": "This object indicates the lawful intercept tap attempts that\n            have been successfully implemented within the scope of this\n            query during this interval.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "csbHistoryStatsCurrentTaps": {
              "type": "integer",
              "description": "This object indicates the Lawful intercept taps currently in\n            place on calls within the scope of this query during this\n            interval.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "csbHistoryStatsIpsecCalls": {
              "type": "integer",
              "description": "The number of active calls on this adjacency or account which\n            are to or from registered subscribers using IPSEC during this\n            interval.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            }
          }
        }
      },
      "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB_csbPerFlowStatsEntry": {
        "type": "array",
        "description": "csbPerFlowStatsEntry",
        "items": {
          "type": "object",
          "properties": {
            "csbCallStatsInstanceIndex": {
              "type": "string",
              "description": "csbCallStatsInstanceIndex",
              "x-yang-type": "leafref",
              "readOnly": true
            },
            "csbCallStatsServiceIndex": {
              "type": "string",
              "description": "csbCallStatsServiceIndex",
              "x-yang-type": "leafref",
              "readOnly": true
            },
            "csbPerFlowStatsVdbeId": {
              "type": "integer",
              "description": "This object identifies the virtual media gateway id. This\n            object also acts as an index for the table.",
              "minimum": -2147483648,
              "maximum": 2147483647,
              "readOnly": true
            },
            "csbPerFlowStatsGateId": {
              "type": "integer",
              "description": "This object identifies the gate id. This object also acts as\n            an index for the table.",
              "minimum": -2147483648,
              "maximum": 2147483647,
              "readOnly": true
            },
            "csbPerFlowStatsFlowPairId": {
              "type": "integer",
              "description": "This object identifies the flow pair id. This object also acts\n            as an index for the table.",
              "minimum": -2147483648,
              "maximum": 2147483647,
              "readOnly": true
            },
            "csbPerFlowStatsSideId": {
              "type": "string",
              "description": "This object identifies the index corresponding to side of flow\n            pair either side A or side B. This object also acts as an index\n            for the table.",
              "readOnly": true
            },
            "csbPerFlowStatsFlowType": {
              "type": "string",
              "description": "This object indicates the type of the flow, like media flow,\n            signaling flow etc.",
              "readOnly": true
            },
            "csbPerFlowStatsRTPPktsSent": {
              "type": "integer",
              "description": "This object indicates the number of RTP packets sent per flow\n            by the SBC.",
              "minimum": 0,
              "readOnly": true
            },
            "csbPerFlowStatsRTPPktsRcvd": {
              "type": "integer",
              "description": "This object indicates the number of RTP packets received per\n            flow by the SBC.",
              "minimum": 0,
              "readOnly": true
            },
            "csbPerFlowStatsRTPPktsDiscard": {
              "type": "integer",
              "description": "This object indicates the number of RTP packets discarded  per\n            flow by the SBC.",
              "minimum": 0,
              "readOnly": true
            },
            "csbPerFlowStatsRTPOctetsSent": {
              "type": "integer",
              "description": "This object indicates the number of RTP octets sent\n            per flow by the SBC.",
              "minimum": 0,
              "readOnly": true
            },
            "csbPerFlowStatsRTPOctetsRcvd": {
              "type": "integer",
              "description": "This object indicates the number of RTP octets received\n            per flow by the SBC.",
              "minimum": 0,
              "readOnly": true
            },
            "csbPerFlowStatsRTPOctetsDiscard": {
              "type": "integer",
              "description": "This object indicates the number of RTP octets discarded\n            per flow by the SBC.",
              "minimum": 0,
              "readOnly": true
            },
            "csbPerFlowStatsRTCPPktsSent": {
              "type": "integer",
              "description": "The number of RTP packets sent by the remote end point to this\n            MG on this flow. Comparing this with the local number of RTP\n            packets received from the remote end point gives an indication\n            of how many incoming  packets were dropped on this leg of the\n            call. This information is from RTCP packet. Not all endpoints\n            report this statistic, if it is not available it will be set to\n            zero. This statistic will not be available for signaling flows.",
              "minimum": 0,
              "readOnly": true
            },
            "csbPerFlowStatsRTCPPktsRcvd": {
              "type": "integer",
              "description": "The number of RTP packets received by the remote end point from\n            this MG on this flow. Comparing this with the local number of\n            RTP packets sent from this MG to the remote endpoint gives an\n            indication of how many outgoing packets were dropped on this\n            leg of the call. This information is from RTCP packet. Not all\n            endpoints report this statistic, if it is not available it will\n            be set to zero. This statistic will not be available for\n            signaling flows.",
              "minimum": 0,
              "readOnly": true
            },
            "csbPerFlowStatsRTCPPktsLost": {
              "type": "integer",
              "description": "The number of RTP packets reported as lost by the remote end\n            point on this flow. This information is from RTCP packet. Not\n            all endpoints report this statistic, if it is not available it\n            will be set to zero. This statistic will not be available for\n            signaling flows.",
              "minimum": 0,
              "readOnly": true
            },
            "csbPerFlowStatsEPJitter": {
              "type": "integer",
              "description": "This object indicates the End Point jitter per flow in the\n            SBC.",
              "minimum": 0,
              "readOnly": true
            },
            "csbPerFlowStatsTmanPerMbs": {
              "type": "integer",
              "description": "This object indicates the maximum burst size for the\n            current FlowPair.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "csbPerFlowStatsTmanPerSdr": {
              "type": "integer",
              "description": "This object indicates the bandwidth reserved for flow in\n            kilobytes/second.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "csbPerFlowStatsDscpSettings": {
              "type": "string",
              "description": "This object indicates the mark packets sent for the\n            current FlowPair with, or zero if none set. The DSCP is a 6-bit\n            value, which will be present in the top 6 bits of the lowest\n            byte of this field.",
              "x-yang-type": "snmp-framework:SnmpAdminString",
              "readOnly": true
            },
            "csbPerFlowStatsAdrStatus": {
              "type": "string",
              "description": "This object indicates whether the flow on the current\n            FlowPair has subscribed for the NAT latch event.",
              "format": "binary",
              "readOnly": true
            },
            "csbPerFlowStatsQASettings": {
              "type": "string",
              "description": "This object indicates the flow on the current FlowPair has\n            subscribed for the media loss event.",
              "format": "binary",
              "readOnly": true
            },
            "csbPerFlowStatsRTPPktsLost": {
              "type": "integer",
              "description": "This object indicates the number of RTP packets lost per flow\n            by the SBC.",
              "minimum": 0,
              "readOnly": true
            }
          }
        }
      },
      "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB_csbH248StatsEntry": {
        "type": "array",
        "description": "An conceptual row in the csbCallStath248Table. There is\n          an entry in this table for the particular controller by a value\n          of csbH248StatsCtrlrIndex. The other indices of this table are\n          csbCallStatsInstanceIndex defined in csbCallStatsInstanceTable\n          and csbCallStatsServiceIndex defined in csbCallStatsTable.",
        "items": {
          "type": "object",
          "properties": {
            "csbCallStatsInstanceIndex": {
              "type": "string",
              "description": "csbCallStatsInstanceIndex",
              "x-yang-type": "leafref",
              "readOnly": true
            },
            "csbCallStatsServiceIndex": {
              "type": "string",
              "description": "csbCallStatsServiceIndex",
              "x-yang-type": "leafref",
              "readOnly": true
            },
            "csbH248StatsCtrlrIndex": {
              "type": "integer",
              "description": "This object identifies the controller index of the H.248\n            server. This is also the index for the table.",
              "minimum": -2147483648,
              "maximum": 2147483647,
              "readOnly": true
            },
            "csbH248StatsRequestsSent": {
              "type": "integer",
              "description": "This object indicates the requests sent through the Session\n            Controller Interface to an SBE or DBE.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "csbH248StatsRequestsRcvd": {
              "type": "integer",
              "description": "This object indicates the requests received through the\n            Session Controller Interface to an SBE or DBE.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "csbH248StatsRequestsFailed": {
              "type": "integer",
              "description": "This object indicates the requests failed on session\n            Controller Interface to an SBE or DBE.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "csbH248StatsRequestsRetried": {
              "type": "integer",
              "description": "This object indicates the requests retried through the Session\n            Controller Interface to an SBE or DBE.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "csbH248StatsRepliesSent": {
              "type": "integer",
              "description": "This object indicates the number of replies sent through the\n            Session Controller Interface to an SBE or DBE.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "csbH248StatsRepliesRcvd": {
              "type": "integer",
              "description": "This object indicates the number of replies received from the\n            Session Controller Interface to an SBE or DBE.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "csbH248StatsRepliesRetried": {
              "type": "integer",
              "description": "This object indicates the number of replies retried through\n            the Session Controller Interface to an SBE or DBE.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "csbH248StatsSegPktsSent": {
              "type": "integer",
              "description": "This object indicates the number of packets sent through the\n            Session Controller Interface to an SBE or DBE.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "csbH248StatsSegPktsRcvd": {
              "type": "integer",
              "description": "This object indicates the number of packets received from the\n            Session Controller Interface to an SBE or DBE.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "csbH248StatsEstablishedTime": {
              "type": "string",
              "description": "This object indicates the H.248 Controller established\n            time (the time at which the association became established).",
              "format": "binary",
              "readOnly": true
            },
            "csbH248StatsTMaxTimeoutVal": {
              "type": "integer",
              "description": "This object indicates the T-Max timeout value. This field\n            specifies the maximum delay (in milliseconds) for a response\n            from an MGC before deciding that the request has failed.",
              "minimum": -2147483648,
              "maximum": 2147483647,
              "readOnly": true
            },
            "csbH248StatsRTT": {
              "type": "integer",
              "description": "This object indicates the calculated RTT value. This field\n            specifies the maximum round trip propagation delay in the \n            network (in milliseconds).",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "csbH248StatsLT": {
              "type": "integer",
              "description": "This object indicates the LT value calculated from RTT\n            value and Max timeout value. This field specifies the maximum\n            delay (in milliseconds) for a response from an MGC plus the\n            maximum round trip propagation delay in the network (in\n            milliseconds).",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            }
          }
        }
      },
      "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB_csbH248StatsRev1Entry": {
        "type": "array",
        "description": "An conceptual row in the csbCallStath248Table. There is\n          an entry in this table for the particular Vdbe by a value\n          of csbH248StatsVdbeId. The other indices of this table are\n          csbCallStatsInstanceIndex defined in csbCallStatsInstanceTable\n          and csbCallStatsServiceIndex defined in csbCallStatsTable.",
        "items": {
          "type": "object",
          "properties": {
            "csbCallStatsInstanceIndex": {
              "type": "string",
              "description": "csbCallStatsInstanceIndex",
              "x-yang-type": "leafref",
              "readOnly": true
            },
            "csbCallStatsServiceIndex": {
              "type": "string",
              "description": "csbCallStatsServiceIndex",
              "x-yang-type": "leafref",
              "readOnly": true
            },
            "csbH248StatsVdbeId": {
              "type": "integer",
              "description": "This object identifies the virtual media gateway id. This is\n            also the index for the table.",
              "minimum": -2147483648,
              "maximum": 2147483647,
              "readOnly": true
            },
            "csbH248StatsRequestsSentRev1": {
              "type": "integer",
              "description": "This object indicates the requests sent through the Session\n            Controller Interface to an SBE or DBE.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "csbH248StatsRequestsRcvdRev1": {
              "type": "integer",
              "description": "This object indicates the requests received through the\n            Session Controller Interface to an SBE or DBE.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "csbH248StatsRequestsFailedRev1": {
              "type": "integer",
              "description": "This object indicates the requests failed on session\n            Controller Interface to an SBE or DBE.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "csbH248StatsRequestsRetriedRev1": {
              "type": "integer",
              "description": "This object indicates the requests retried through the Session\n            Controller Interface to an SBE or DBE.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "csbH248StatsRepliesSentRev1": {
              "type": "integer",
              "description": "This object indicates the number of replies sent through the\n            Session Controller Interface to an SBE or DBE.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "csbH248StatsRepliesRcvdRev1": {
              "type": "integer",
              "description": "This object indicates the number of replies received from the\n            Session Controller Interface to an SBE or DBE.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "csbH248StatsRepliesRetriedRev1": {
              "type": "integer",
              "description": "This object indicates the number of replies retried through\n            the Session Controller Interface to an SBE or DBE.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "csbH248StatsSegPktsSentRev1": {
              "type": "integer",
              "description": "This object indicates the number of response segments sent by\n            DBE. This field will only be present if segmentation is enabled\n            on this association.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "csbH248StatsSegPktsRcvdRev1": {
              "type": "integer",
              "description": "This object indicates the number of response segments received\n            by DBE. This field will only be present if segmentation is\n            enabled on this association.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "csbH248StatsEstablishedTimeRev1": {
              "type": "string",
              "description": "This object indicates the H.248 Controller established\n            time (the time at which the association became established).",
              "format": "binary",
              "readOnly": true
            },
            "csbH248StatsTMaxTimeoutValRev1": {
              "type": "integer",
              "description": "This object indicates the T-Max timeout value. This field\n            specifies the maximum delay (in milliseconds) for a response\n            from an MGC before deciding that the request has failed.",
              "minimum": -2147483648,
              "maximum": 2147483647,
              "readOnly": true
            },
            "csbH248StatsRTTRev1": {
              "type": "integer",
              "description": "This object indicates the calculated RTT value. This field\n            specifies the maximum round trip propagation delay in the \n            network (in milliseconds).",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "csbH248StatsLTRev1": {
              "type": "integer",
              "description": "This object indicates the LT value calculated from RTT\n            value and Max timeout value. This field specifies the maximum\n            delay (in milliseconds) for a response from an MGC plus the\n            maximum round trip propagation delay in the network (in\n            milliseconds).",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            }
          }
        }
      },
      "restconf-error": {
        "type": "object",
        "description": "Standard RESTCONF error response (RFC 8040 Section 7.1)",
        "properties": {
          "ietf-restconf:errors": {
            "type": "object",
            "properties": {
              "error": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {
                    "error-type": {
                      "type": "string",
                      "enum": [
                        "transport",
                        "rpc",
                        "protocol",
                        "application"
                      ],
                      "description": "Layer where the error occurred"
                    },
                    "error-tag": {
                      "type": "string",
                      "description": "Enumerated error tag (e.g. invalid-value, data-missing, access-denied)"
                    },
                    "error-severity": {
                      "type": "string",
                      "enum": [
                        "error",
                        "warning"
                      ],
                      "description": "Error severity"
                    },
                    "error-app-tag": {
                      "type": "string",
                      "description": "Application-specific error tag"
                    },
                    "error-path": {
                      "type": "string",
                      "description": "YANG instance-identifier of the error node"
                    },
                    "error-message": {
                      "type": "string",
                      "description": "Human-readable error description"
                    }
                  },
                  "required": [
                    "error-type",
                    "error-tag"
                  ]
                }
              }
            }
          }
        },
        "example": {
          "ietf-restconf:errors": {
            "error": [
              {
                "error-type": "protocol",
                "error-tag": "invalid-value",
                "error-severity": "error",
                "error-message": "Invalid input parameter"
              }
            ]
          }
        }
      }
    },
    "securitySchemes": {
      "basicAuth": {
        "type": "http",
        "scheme": "basic"
      }
    }
  },
  "security": [
    {
      "basicAuth": []
    }
  ],
  "tags": [
    {
      "name": "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
      "description": "MIB operations for CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB"
    }
  ],
  "externalDocs": {
    "description": "Cisco SNMP Object Navigator",
    "url": "https://snmp.cloudapps.cisco.com/Support/IOS/do/BrowseMIB.do"
  }
}
