{
  "openapi": "3.0.0",
  "info": {
    "title": "CISCO-IETF-PW-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-IETF-PW-MIB structure](https://jeremycohoe.github.io/cisco-ios-xe-openapi-swagger/yang-trees/CISCO-IETF-PW-MIB.html)",
    "contact": {
      "name": "Cisco DevNet",
      "url": "https://developer.cisco.com"
    },
    "x-yang-module": "CISCO-IETF-PW-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-IETF-PW-MIB:cpwVcObjects": {
      "get": {
        "summary": "Get cpwVcObjects data",
        "description": "Retrieve cpwVcObjects operational data from MIB",
        "tags": [
          "CISCO-IETF-PW-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "description": "cpwVcObjects",
                  "properties": {
                    "cpwVcIndexNext": {
                      "type": "integer",
                      "description": "This object contains an appropriate value to be used \n          for cpwVcIndex when creating entries in the \n          cpwVcTable. The value 0 indicates that no \n          unassigned entries are available.  To obtain the \n          value of cpwVcIndex for a new entry in the \n          cpwVcTable, the manager issues a management \n          protocol retrieval operation to obtain the current \n          value of cpwVcIndex.  After each retrieval \n          operation, the agent should modify the value to \n          reflect the next unassigned index.  After a manager \n          retrieves a value the agent will determine through \n          its local policy when this index value will be made \n          available for reuse.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cpwVcPerfTotalErrorPackets": {
                      "type": "integer",
                      "description": "Counter for number of error at VC level processing, for  \n          example packets received with unknown VC label.",
                      "minimum": 0
                    },
                    "cpwVcUpDownNotifEnable": {
                      "type": "boolean",
                      "description": "If this object is set to true(1), then it enables\n          the emission of cpwVcUp and cpwVcDown\n          notifications; otherwise these notifications are not\n          emitted."
                    },
                    "cpwVcNotifRate": {
                      "type": "integer",
                      "description": "This object defines the maximum number of PW VC notifications\n          that can be emitted from the device per second.",
                      "minimum": 0,
                      "maximum": 4294967295
                    }
                  }
                },
                "example": {
                  "CISCO-IETF-PW-MIB:cpwVcObjects": {
                    "cpwVcIndexNext": 1,
                    "cpwVcPerfTotalErrorPackets": 1234567890,
                    "cpwVcUpDownNotifEnable": true,
                    "cpwVcNotifRate": 0
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cpwVcObjects",
        "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": "/cpwVcObjects",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-IETF-PW-MIB:cpwVcTable": {
      "get": {
        "summary": "Get cpwVcTable data",
        "description": "Retrieve cpwVcTable operational data from MIB",
        "tags": [
          "CISCO-IETF-PW-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "description": "This table specifies information for connecting various \n        emulated services to various tunnel type.",
                  "properties": {
                    "cpwVcEntry": {
                      "type": "array",
                      "description": "A row in this table represents an emulated virtual \n          connection (VC) across a packet network. It is indexed by \n          cpwVcIndex, which uniquely identifying a singular  \n          connection.",
                      "items": {
                        "type": "object",
                        "properties": {
                          "cpwVcIndex": {
                            "type": "string",
                            "description": "Index for the conceptual row identifying a VC within  \n            this PW Emulation VC table.",
                            "x-yang-type": "cisco-ietf:CpwVcIndexType"
                          },
                          "cpwVcType": {
                            "type": "string",
                            "description": "This value indicate the service to be carried over \n            this VC.  \n            Note: the exact set of VC types is yet to be worked  \n            out by the WG.",
                            "x-yang-type": "cisco-ietf:CpwVcType"
                          },
                          "cpwVcOwner": {
                            "type": "string",
                            "description": "Set by the operator to indicate the protocol responsible  \n            for establishing this VC. Value 'manual' is used in all \n            cases where no maintenance protocol (PW signaling) is used  \n            to set-up the VC, i.e. require configuration of entries in \n            the VC tables including VC labels, etc. The value  \n            'maintenanceProtocol' is used in case of standard \n            signaling of the VC for the specific PSN, for example LDP \n            for MPLS PSN as specified in <draft- draft-martini- \n            l2circuit-trans-mpls> or L2TP control protocol.  \n            Value 'other' is used for other types of signaling."
                          },
                          "cpwVcPsnType": {
                            "type": "string",
                            "description": "Set by the operator to indicate the PSN type on which this  \n            VC will be carried. Based on this object, the relevant PSN  \n            table entries are created in the in the PSN specific MIB  \n            modules. For example, if mpls(1) is defined, the agent  \n            create an entry in cpwVcMplsTable, which further define the  \n            MPLS PSN configuration. \n            Note: the exact set of PSN types is yet to be worked  \n            out by the WG."
                          },
                          "cpwVcSetUpPriority": {
                            "type": "integer",
                            "description": "This object define the relative set-up priority of the VC   \n            in a lowest-to-highest fashion, where 0 is the highest  \n            priority. VCs with the same priority are treated with \n            equal priority. Dropped VC will be set 'dormant' (as \n            indicated in cpwVcOperStatus). \n            This value is significant if there are competing resources \n            between VCs and the implementation support this feature. \n            If not supported or not relevant, the value of zero MUST \n            be used.",
                            "minimum": -2147483648,
                            "maximum": 2147483647
                          },
                          "cpwVcHoldingPriority": {
                            "type": "integer",
                            "description": "This object define the relative holding priority of the VC   \n            in a lowest-to-highest fashion, where 0 is the highest  \n            priority. VCs with the same priority are treated with \n            equal priority. Dropped VC will be set 'dormant' (as \n            indicated in cpwVcOperStatus). \n            This value is significant if there are competing resources \n            between VCs and the implementation support this feature. \n            If not supported or not relevant, the value of zero MUST \n            be used.",
                            "minimum": -2147483648,
                            "maximum": 2147483647
                          },
                          "cpwVcInboundMode": {
                            "type": "string",
                            "description": "This object is used to enable greater security for  \n            implementation that use per platform VC label space. In  \n            strict mode, packets coming from the PSN are accepted only  \n            from tunnels that are associated to the same VC via the  \n            inbound tunnel table in the case of MPLS, or as identified  \n            by the source IP address in case of L2TP or IP PSN. The  \n            entries in the inbound tunnel table are either explicitly  \n            configured or implicitly known by the maintenance protocol  \n            used for VC set-up. \n            \n            If such association is not known, not configured or not  \n            desired, loose mode should be configured, and the node  \n            should accept the packet based on the VC label only  \n            regardless of the outer tunnel used to carry the VC."
                          },
                          "cpwVcPeerAddrType": {
                            "type": "string",
                            "description": "Denotes the address type of the peer node maintenance \n            protocol (signaling) address if PW maintenance protocol is \n            used for the VC creation. It should be set to  \n            'unknown' if PE/PW maintenance protocol is not used,  \n            i.e. cpwVcOwner is set to 'manual'.",
                            "x-yang-type": "inet-address:InetAddressType"
                          },
                          "cpwVcPeerAddr": {
                            "type": "string",
                            "description": "This object contains the value of of the peer node address \n            of the PW/PE maintenance protocol entity. This object  \n            should contain a value of 0 if not relevant (manual  \n            configuration of the VC).",
                            "x-yang-type": "inet-address:InetAddress"
                          },
                          "cpwVcID": {
                            "type": "string",
                            "description": "Used in the outgoing VC ID field within the 'Virtual \n            Circuit FEC Element' when LDP signaling is used or PW ID  \n            AVP for L2TP.",
                            "x-yang-type": "cisco-ietf:CpwVcIDType"
                          },
                          "cpwVcLocalGroupID": {
                            "type": "string",
                            "description": "Used in the Group ID field sent to the peer PWES  \n            within the maintenance protocol used for VC setup,  \n            zero if not used.",
                            "x-yang-type": "cisco-ietf:CpwGroupID"
                          },
                          "cpwVcControlWord": {
                            "type": "boolean",
                            "description": "Define if the control word will be sent with each packet by  \n            the local node."
                          },
                          "cpwVcLocalIfMtu": {
                            "type": "integer",
                            "description": "If not equal zero, the optional IfMtu object in the  \n            maintenance protocol will be sent with this value,  \n            representing the locally supported MTU size over the  \n            interface (or the virtual interface) associated with the  \n            VC.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "cpwVcLocalIfString": {
                            "type": "boolean",
                            "description": "Each VC is associated to an interface (or a virtual  \n            interface) in the ifTable of the node as part of the \n            service configuration. This object defines if the  \n            maintenance protocol will send the interface's name as \n            appears on the ifTable in the name object as part of the \n            maintenance protocol. If set to false, the optional element \n            will not be sent."
                          },
                          "cpwVcRemoteGroupID": {
                            "type": "string",
                            "description": "Obtained from the Group ID field as received via the  \n            maintenance protocol used for VC setup, zero if not used.  \n            Value of 0xFFFF shall be used if the object is yet to be  \n            defined by the VC maintenance protocol.",
                            "x-yang-type": "cisco-ietf:CpwGroupID"
                          },
                          "cpwVcRemoteControlWord": {
                            "type": "string",
                            "description": "If maintenance protocol is used for VC establishment, this  \n            parameter indicates the received status of the control word  \n            usage, i.e. if packets will be received with control word \n            or not. The value of 'notYetKnown' is used while the \n            maintenance protocol has not yet received the indication  \n            from the remote node. \n            In manual configuration of the VC this parameters indicate  \n            to the local node what is the expected encapsulation for \n            the received packets."
                          },
                          "cpwVcRemoteIfMtu": {
                            "type": "integer",
                            "description": "The remote interface MTU as (optionally) received from the \n            remote node via the maintenance protocol. Should be zero if \n            this parameter is not available or not used.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "cpwVcRemoteIfString": {
                            "type": "string",
                            "description": "Indicate the interface description string as received by \n            the maintenance protocol, MUST be NULL string if not  \n            applicable or not known yet.",
                            "x-yang-type": "snmp-framework:SnmpAdminString"
                          },
                          "cpwVcOutboundVcLabel": {
                            "type": "integer",
                            "description": "The VC label used in the outbound direction (i.e. toward  \n            the PSN). It may be set up manually if owner is 'manual' or  \n            automatically otherwise. Examples: For MPLS PSN, it  \n            represents the 20 bits of VC tag, for L2TP it represent the \n            32 bits Session ID. \n            If the label is not yet known (signaling in process), the  \n            object should return a value of 0xFFFF.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "cpwVcInboundVcLabel": {
                            "type": "integer",
                            "description": "The VC label used in the inbound direction (i.e. packets  \n            received from the PSN. It may be set up manually if owner \n            is 'manual' or automatically otherwise.  \n            Examples: For MPLS PSN, it represents the 20 bits of VC \n            tag, for L2TP it represent the 32 bits Session ID. \n            If the label is not yet known (signaling in process), the  \n            object should return a value of 0xFFFF.",
                            "minimum": 0,
                            "maximum": 4294967295
                          },
                          "cpwVcName": {
                            "type": "string",
                            "description": "The canonical name assigned to the VC.",
                            "x-yang-type": "snmp-framework:SnmpAdminString"
                          },
                          "cpwVcDescr": {
                            "type": "string",
                            "description": "A textual string containing information about the VC.  \n            If there is no description this object contains a zero \n            length string.",
                            "x-yang-type": "snmp-framework:SnmpAdminString"
                          },
                          "cpwVcCreateTime": {
                            "type": "string",
                            "description": "System time when this VC was created.",
                            "x-yang-type": "yang:timestamp"
                          },
                          "cpwVcUpTime": {
                            "type": "string",
                            "description": "Number of consecutive ticks this VC has been 'up' in \n            both directions together (i.e. 'up' is observed in  \n            cpwVcOperStatus.)",
                            "x-yang-type": "yang:timeticks"
                          },
                          "cpwVcAdminStatus": {
                            "type": "string",
                            "description": "The desired operational status of this VC."
                          },
                          "cpwVcOperStatus": {
                            "type": "string",
                            "description": "Indicates the actual combined operational status of this  \n            VC. It is 'up' if both cpwVcInboundOperStatus and  \n            cpwVcOutboundOperStatus are in 'up' state. For all other  \n            values, if the VCs in both directions are of the same \n            value it reflects that value, otherwise it is set to the \n            most severe status out of the two statuses. The order of  \n            severance from most severe to less severe is: unknown,  \n            notPresent, down, lowerLayerDown, dormant, testing, up. \n            The operator may consult the per direction OperStatus for \n            fault isolation per direction.",
                            "x-yang-type": "cisco-ietf:CpwOperStatus"
                          },
                          "cpwVcInboundOperStatus": {
                            "type": "string",
                            "description": "Indicates the actual operational status of this VC in the  \n            inbound direction. \n            \n            - down:           if PW signaling has not yet finished, or \n                              indications available at the service  \n                              level indicate that the VC is not  \n                              passing packets. \n            - testing:        if AdminStatus at the VC level is set to  \n                              test. \n            - dormant:        The VC is not available because of the \n                              required resources are occupied VC with  \n                              higher priority VCs . \n            - notPresent:     Some component is missing to accomplish  \n                              the set up of the VC. \n            - lowerLayerDown: The underlying PSN is not in OperStatus  \n                              'up'.",
                            "x-yang-type": "cisco-ietf:CpwOperStatus"
                          },
                          "cpwVcOutboundOperStatus": {
                            "type": "string",
                            "description": "Indicates the actual operational status of this VC in the  \n            outbound direction \n            - down:           if PW signaling has not yet finished, or \n                              indications available at the service  \n                              level indicate that the VC is not \n                              passing packets. \n            - testing:        if AdminStatus at the VC level is set to  \n                              test. \n            - dormant:        The VC is not available because of the \n                              required resources are occupied VC with  \n                              higher priority VCs . \n            - notPresent:     Some component is missing to accomplish  \n                              the set up of the VC. \n            - lowerLayerDown: The underlying PSN is not in OperStatus  \n                              'up'.",
                            "x-yang-type": "cisco-ietf:CpwOperStatus"
                          },
                          "cpwVcTimeElapsed": {
                            "type": "integer",
                            "description": "The number of seconds, including partial seconds, \n            that have elapsed since the beginning of the current \n            measurement period. If, for some reason, such as an \n            adjustment in the system's time-of-day clock, the \n            current interval exceeds the maximum value, the \n            agent will return the maximum value.",
                            "minimum": -2147483648,
                            "maximum": 2147483647
                          },
                          "cpwVcValidIntervals": {
                            "type": "integer",
                            "description": "The number of previous 15-minute intervals \n            for which data was collected.  \n            An agent with PW capability must be capable of supporting at  \n            least n intervals. The minimum value of n is 4, The default  \n            of n is 32 and the maximum value of n is 96. \n            The value will be <n> unless the measurement was (re-)  \n            started within the last (<n>*15) minutes, in which case the  \n            value will be the number of complete 15 minute intervals for  \n            which the agent has at least some data. In certain cases  \n            (e.g., in the case where the agent is a proxy) it is  \n            possible that some intervals are unavailable.  In this case,  \n            this interval is the maximum interval number for which data  \n            is available.",
                            "minimum": -2147483648,
                            "maximum": 2147483647
                          },
                          "cpwVcRowStatus": {
                            "type": "string",
                            "description": "For creating, modifying, and deleting this row.",
                            "x-yang-type": "snmpv2-tc:RowStatus"
                          },
                          "cpwVcStorageType": {
                            "type": "string",
                            "description": "This variable indicates the storage type for this \n            object.",
                            "x-yang-type": "snmpv2-tc:StorageType"
                          }
                        }
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-IETF-PW-MIB:cpwVcTable": {
                    "cpwVcEntry": [
                      {
                        "cpwVcIndex": "1",
                        "cpwVcType": "ethernetCsmacd(6)",
                        "cpwVcOwner": "example-string",
                        "cpwVcPsnType": "ethernetCsmacd(6)",
                        "cpwVcSetUpPriority": -2147483648,
                        "cpwVcHoldingPriority": -2147483648,
                        "cpwVcInboundMode": "example-string",
                        "cpwVcPeerAddrType": "192.168.1.1",
                        "cpwVcPeerAddr": "192.168.1.1",
                        "cpwVcID": "example-string",
                        "cpwVcLocalGroupID": "example-string",
                        "cpwVcControlWord": true,
                        "cpwVcLocalIfMtu": 1500,
                        "cpwVcLocalIfString": true,
                        "cpwVcRemoteGroupID": "example-string",
                        "cpwVcRemoteControlWord": "example-string",
                        "cpwVcRemoteIfMtu": 1500,
                        "cpwVcRemoteIfString": "example-string",
                        "cpwVcOutboundVcLabel": 0,
                        "cpwVcInboundVcLabel": 0,
                        "cpwVcName": "interface-1",
                        "cpwVcDescr": "GigabitEthernet1/0/1",
                        "cpwVcCreateTime": "example-string",
                        "cpwVcUpTime": "example-string",
                        "cpwVcAdminStatus": "up(1)",
                        "cpwVcOperStatus": "up(1)",
                        "cpwVcInboundOperStatus": "up(1)",
                        "cpwVcOutboundOperStatus": "up(1)",
                        "cpwVcTimeElapsed": -2147483648,
                        "cpwVcValidIntervals": -2147483648,
                        "cpwVcRowStatus": "up(1)",
                        "cpwVcStorageType": "ethernetCsmacd(6)"
                      },
                      {
                        "cpwVcIndex": "2",
                        "cpwVcType": "ethernetCsmacd(6)",
                        "cpwVcOwner": "example-string",
                        "cpwVcPsnType": "ethernetCsmacd(6)",
                        "cpwVcSetUpPriority": -2147483648,
                        "cpwVcHoldingPriority": -2147483648,
                        "cpwVcInboundMode": "example-string",
                        "cpwVcPeerAddrType": "192.168.1.1",
                        "cpwVcPeerAddr": "192.168.1.1",
                        "cpwVcID": "example-string",
                        "cpwVcLocalGroupID": "example-string",
                        "cpwVcControlWord": true,
                        "cpwVcLocalIfMtu": 1500,
                        "cpwVcLocalIfString": true,
                        "cpwVcRemoteGroupID": "example-string",
                        "cpwVcRemoteControlWord": "example-string",
                        "cpwVcRemoteIfMtu": 1500,
                        "cpwVcRemoteIfString": "example-string",
                        "cpwVcOutboundVcLabel": 0,
                        "cpwVcInboundVcLabel": 0,
                        "cpwVcName": "interface-1",
                        "cpwVcDescr": "GigabitEthernet1/0/1",
                        "cpwVcCreateTime": "example-string",
                        "cpwVcUpTime": "example-string",
                        "cpwVcAdminStatus": "up(1)",
                        "cpwVcOperStatus": "up(1)",
                        "cpwVcInboundOperStatus": "up(1)",
                        "cpwVcOutboundOperStatus": "up(1)",
                        "cpwVcTimeElapsed": -2147483648,
                        "cpwVcValidIntervals": -2147483648,
                        "cpwVcRowStatus": "up(1)",
                        "cpwVcStorageType": "ethernetCsmacd(6)"
                      },
                      {
                        "cpwVcIndex": "3",
                        "cpwVcType": "ethernetCsmacd(6)",
                        "cpwVcOwner": "example-string",
                        "cpwVcPsnType": "ethernetCsmacd(6)",
                        "cpwVcSetUpPriority": -2147483648,
                        "cpwVcHoldingPriority": -2147483648,
                        "cpwVcInboundMode": "example-string",
                        "cpwVcPeerAddrType": "192.168.1.1",
                        "cpwVcPeerAddr": "192.168.1.1",
                        "cpwVcID": "example-string",
                        "cpwVcLocalGroupID": "example-string",
                        "cpwVcControlWord": true,
                        "cpwVcLocalIfMtu": 1500,
                        "cpwVcLocalIfString": true,
                        "cpwVcRemoteGroupID": "example-string",
                        "cpwVcRemoteControlWord": "example-string",
                        "cpwVcRemoteIfMtu": 1500,
                        "cpwVcRemoteIfString": "example-string",
                        "cpwVcOutboundVcLabel": 0,
                        "cpwVcInboundVcLabel": 0,
                        "cpwVcName": "interface-1",
                        "cpwVcDescr": "GigabitEthernet1/0/1",
                        "cpwVcCreateTime": "example-string",
                        "cpwVcUpTime": "example-string",
                        "cpwVcAdminStatus": "up(1)",
                        "cpwVcOperStatus": "up(1)",
                        "cpwVcInboundOperStatus": "up(1)",
                        "cpwVcOutboundOperStatus": "up(1)",
                        "cpwVcTimeElapsed": -2147483648,
                        "cpwVcValidIntervals": -2147483648,
                        "cpwVcRowStatus": "up(1)",
                        "cpwVcStorageType": "ethernetCsmacd(6)"
                      }
                    ]
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cpwVcTable",
        "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": "/cpwVcTable",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-IETF-PW-MIB:cpwVcTable/cpwVcEntry": {
      "get": {
        "summary": "Get cpwVcEntry list",
        "description": "Retrieve list of cpwVcEntry entries from MIB",
        "tags": [
          "CISCO-IETF-PW-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "A row in this table represents an emulated virtual \n          connection (VC) across a packet network. It is indexed by \n          cpwVcIndex, which uniquely identifying a singular  \n          connection.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "cpwVcIndex": {
                        "type": "string",
                        "description": "Index for the conceptual row identifying a VC within  \n            this PW Emulation VC table.",
                        "x-yang-type": "cisco-ietf:CpwVcIndexType"
                      },
                      "cpwVcType": {
                        "type": "string",
                        "description": "This value indicate the service to be carried over \n            this VC.  \n            Note: the exact set of VC types is yet to be worked  \n            out by the WG.",
                        "x-yang-type": "cisco-ietf:CpwVcType"
                      },
                      "cpwVcOwner": {
                        "type": "string",
                        "description": "Set by the operator to indicate the protocol responsible  \n            for establishing this VC. Value 'manual' is used in all \n            cases where no maintenance protocol (PW signaling) is used  \n            to set-up the VC, i.e. require configuration of entries in \n            the VC tables including VC labels, etc. The value  \n            'maintenanceProtocol' is used in case of standard \n            signaling of the VC for the specific PSN, for example LDP \n            for MPLS PSN as specified in <draft- draft-martini- \n            l2circuit-trans-mpls> or L2TP control protocol.  \n            Value 'other' is used for other types of signaling."
                      },
                      "cpwVcPsnType": {
                        "type": "string",
                        "description": "Set by the operator to indicate the PSN type on which this  \n            VC will be carried. Based on this object, the relevant PSN  \n            table entries are created in the in the PSN specific MIB  \n            modules. For example, if mpls(1) is defined, the agent  \n            create an entry in cpwVcMplsTable, which further define the  \n            MPLS PSN configuration. \n            Note: the exact set of PSN types is yet to be worked  \n            out by the WG."
                      },
                      "cpwVcSetUpPriority": {
                        "type": "integer",
                        "description": "This object define the relative set-up priority of the VC   \n            in a lowest-to-highest fashion, where 0 is the highest  \n            priority. VCs with the same priority are treated with \n            equal priority. Dropped VC will be set 'dormant' (as \n            indicated in cpwVcOperStatus). \n            This value is significant if there are competing resources \n            between VCs and the implementation support this feature. \n            If not supported or not relevant, the value of zero MUST \n            be used.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "cpwVcHoldingPriority": {
                        "type": "integer",
                        "description": "This object define the relative holding priority of the VC   \n            in a lowest-to-highest fashion, where 0 is the highest  \n            priority. VCs with the same priority are treated with \n            equal priority. Dropped VC will be set 'dormant' (as \n            indicated in cpwVcOperStatus). \n            This value is significant if there are competing resources \n            between VCs and the implementation support this feature. \n            If not supported or not relevant, the value of zero MUST \n            be used.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "cpwVcInboundMode": {
                        "type": "string",
                        "description": "This object is used to enable greater security for  \n            implementation that use per platform VC label space. In  \n            strict mode, packets coming from the PSN are accepted only  \n            from tunnels that are associated to the same VC via the  \n            inbound tunnel table in the case of MPLS, or as identified  \n            by the source IP address in case of L2TP or IP PSN. The  \n            entries in the inbound tunnel table are either explicitly  \n            configured or implicitly known by the maintenance protocol  \n            used for VC set-up. \n            \n            If such association is not known, not configured or not  \n            desired, loose mode should be configured, and the node  \n            should accept the packet based on the VC label only  \n            regardless of the outer tunnel used to carry the VC."
                      },
                      "cpwVcPeerAddrType": {
                        "type": "string",
                        "description": "Denotes the address type of the peer node maintenance \n            protocol (signaling) address if PW maintenance protocol is \n            used for the VC creation. It should be set to  \n            'unknown' if PE/PW maintenance protocol is not used,  \n            i.e. cpwVcOwner is set to 'manual'.",
                        "x-yang-type": "inet-address:InetAddressType"
                      },
                      "cpwVcPeerAddr": {
                        "type": "string",
                        "description": "This object contains the value of of the peer node address \n            of the PW/PE maintenance protocol entity. This object  \n            should contain a value of 0 if not relevant (manual  \n            configuration of the VC).",
                        "x-yang-type": "inet-address:InetAddress"
                      },
                      "cpwVcID": {
                        "type": "string",
                        "description": "Used in the outgoing VC ID field within the 'Virtual \n            Circuit FEC Element' when LDP signaling is used or PW ID  \n            AVP for L2TP.",
                        "x-yang-type": "cisco-ietf:CpwVcIDType"
                      },
                      "cpwVcLocalGroupID": {
                        "type": "string",
                        "description": "Used in the Group ID field sent to the peer PWES  \n            within the maintenance protocol used for VC setup,  \n            zero if not used.",
                        "x-yang-type": "cisco-ietf:CpwGroupID"
                      },
                      "cpwVcControlWord": {
                        "type": "boolean",
                        "description": "Define if the control word will be sent with each packet by  \n            the local node."
                      },
                      "cpwVcLocalIfMtu": {
                        "type": "integer",
                        "description": "If not equal zero, the optional IfMtu object in the  \n            maintenance protocol will be sent with this value,  \n            representing the locally supported MTU size over the  \n            interface (or the virtual interface) associated with the  \n            VC.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cpwVcLocalIfString": {
                        "type": "boolean",
                        "description": "Each VC is associated to an interface (or a virtual  \n            interface) in the ifTable of the node as part of the \n            service configuration. This object defines if the  \n            maintenance protocol will send the interface's name as \n            appears on the ifTable in the name object as part of the \n            maintenance protocol. If set to false, the optional element \n            will not be sent."
                      },
                      "cpwVcRemoteGroupID": {
                        "type": "string",
                        "description": "Obtained from the Group ID field as received via the  \n            maintenance protocol used for VC setup, zero if not used.  \n            Value of 0xFFFF shall be used if the object is yet to be  \n            defined by the VC maintenance protocol.",
                        "x-yang-type": "cisco-ietf:CpwGroupID"
                      },
                      "cpwVcRemoteControlWord": {
                        "type": "string",
                        "description": "If maintenance protocol is used for VC establishment, this  \n            parameter indicates the received status of the control word  \n            usage, i.e. if packets will be received with control word \n            or not. The value of 'notYetKnown' is used while the \n            maintenance protocol has not yet received the indication  \n            from the remote node. \n            In manual configuration of the VC this parameters indicate  \n            to the local node what is the expected encapsulation for \n            the received packets."
                      },
                      "cpwVcRemoteIfMtu": {
                        "type": "integer",
                        "description": "The remote interface MTU as (optionally) received from the \n            remote node via the maintenance protocol. Should be zero if \n            this parameter is not available or not used.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cpwVcRemoteIfString": {
                        "type": "string",
                        "description": "Indicate the interface description string as received by \n            the maintenance protocol, MUST be NULL string if not  \n            applicable or not known yet.",
                        "x-yang-type": "snmp-framework:SnmpAdminString"
                      },
                      "cpwVcOutboundVcLabel": {
                        "type": "integer",
                        "description": "The VC label used in the outbound direction (i.e. toward  \n            the PSN). It may be set up manually if owner is 'manual' or  \n            automatically otherwise. Examples: For MPLS PSN, it  \n            represents the 20 bits of VC tag, for L2TP it represent the \n            32 bits Session ID. \n            If the label is not yet known (signaling in process), the  \n            object should return a value of 0xFFFF.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cpwVcInboundVcLabel": {
                        "type": "integer",
                        "description": "The VC label used in the inbound direction (i.e. packets  \n            received from the PSN. It may be set up manually if owner \n            is 'manual' or automatically otherwise.  \n            Examples: For MPLS PSN, it represents the 20 bits of VC \n            tag, for L2TP it represent the 32 bits Session ID. \n            If the label is not yet known (signaling in process), the  \n            object should return a value of 0xFFFF.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cpwVcName": {
                        "type": "string",
                        "description": "The canonical name assigned to the VC.",
                        "x-yang-type": "snmp-framework:SnmpAdminString"
                      },
                      "cpwVcDescr": {
                        "type": "string",
                        "description": "A textual string containing information about the VC.  \n            If there is no description this object contains a zero \n            length string.",
                        "x-yang-type": "snmp-framework:SnmpAdminString"
                      },
                      "cpwVcCreateTime": {
                        "type": "string",
                        "description": "System time when this VC was created.",
                        "x-yang-type": "yang:timestamp"
                      },
                      "cpwVcUpTime": {
                        "type": "string",
                        "description": "Number of consecutive ticks this VC has been 'up' in \n            both directions together (i.e. 'up' is observed in  \n            cpwVcOperStatus.)",
                        "x-yang-type": "yang:timeticks"
                      },
                      "cpwVcAdminStatus": {
                        "type": "string",
                        "description": "The desired operational status of this VC."
                      },
                      "cpwVcOperStatus": {
                        "type": "string",
                        "description": "Indicates the actual combined operational status of this  \n            VC. It is 'up' if both cpwVcInboundOperStatus and  \n            cpwVcOutboundOperStatus are in 'up' state. For all other  \n            values, if the VCs in both directions are of the same \n            value it reflects that value, otherwise it is set to the \n            most severe status out of the two statuses. The order of  \n            severance from most severe to less severe is: unknown,  \n            notPresent, down, lowerLayerDown, dormant, testing, up. \n            The operator may consult the per direction OperStatus for \n            fault isolation per direction.",
                        "x-yang-type": "cisco-ietf:CpwOperStatus"
                      },
                      "cpwVcInboundOperStatus": {
                        "type": "string",
                        "description": "Indicates the actual operational status of this VC in the  \n            inbound direction. \n            \n            - down:           if PW signaling has not yet finished, or \n                              indications available at the service  \n                              level indicate that the VC is not  \n                              passing packets. \n            - testing:        if AdminStatus at the VC level is set to  \n                              test. \n            - dormant:        The VC is not available because of the \n                              required resources are occupied VC with  \n                              higher priority VCs . \n            - notPresent:     Some component is missing to accomplish  \n                              the set up of the VC. \n            - lowerLayerDown: The underlying PSN is not in OperStatus  \n                              'up'.",
                        "x-yang-type": "cisco-ietf:CpwOperStatus"
                      },
                      "cpwVcOutboundOperStatus": {
                        "type": "string",
                        "description": "Indicates the actual operational status of this VC in the  \n            outbound direction \n            - down:           if PW signaling has not yet finished, or \n                              indications available at the service  \n                              level indicate that the VC is not \n                              passing packets. \n            - testing:        if AdminStatus at the VC level is set to  \n                              test. \n            - dormant:        The VC is not available because of the \n                              required resources are occupied VC with  \n                              higher priority VCs . \n            - notPresent:     Some component is missing to accomplish  \n                              the set up of the VC. \n            - lowerLayerDown: The underlying PSN is not in OperStatus  \n                              'up'.",
                        "x-yang-type": "cisco-ietf:CpwOperStatus"
                      },
                      "cpwVcTimeElapsed": {
                        "type": "integer",
                        "description": "The number of seconds, including partial seconds, \n            that have elapsed since the beginning of the current \n            measurement period. If, for some reason, such as an \n            adjustment in the system's time-of-day clock, the \n            current interval exceeds the maximum value, the \n            agent will return the maximum value.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "cpwVcValidIntervals": {
                        "type": "integer",
                        "description": "The number of previous 15-minute intervals \n            for which data was collected.  \n            An agent with PW capability must be capable of supporting at  \n            least n intervals. The minimum value of n is 4, The default  \n            of n is 32 and the maximum value of n is 96. \n            The value will be <n> unless the measurement was (re-)  \n            started within the last (<n>*15) minutes, in which case the  \n            value will be the number of complete 15 minute intervals for  \n            which the agent has at least some data. In certain cases  \n            (e.g., in the case where the agent is a proxy) it is  \n            possible that some intervals are unavailable.  In this case,  \n            this interval is the maximum interval number for which data  \n            is available.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "cpwVcRowStatus": {
                        "type": "string",
                        "description": "For creating, modifying, and deleting this row.",
                        "x-yang-type": "snmpv2-tc:RowStatus"
                      },
                      "cpwVcStorageType": {
                        "type": "string",
                        "description": "This variable indicates the storage type for this \n            object.",
                        "x-yang-type": "snmpv2-tc:StorageType"
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-IETF-PW-MIB:cpwVcEntry": [
                    {
                      "cpwVcIndex": "example-string",
                      "cpwVcType": "ethernetCsmacd(6)",
                      "cpwVcOwner": "example-string",
                      "cpwVcPsnType": "ethernetCsmacd(6)",
                      "cpwVcSetUpPriority": -2147483648,
                      "cpwVcHoldingPriority": -2147483648,
                      "cpwVcInboundMode": "example-string",
                      "cpwVcPeerAddrType": "192.168.1.1",
                      "cpwVcPeerAddr": "192.168.1.1",
                      "cpwVcID": "example-string",
                      "cpwVcLocalGroupID": "example-string",
                      "cpwVcControlWord": true,
                      "cpwVcLocalIfMtu": 1500,
                      "cpwVcLocalIfString": true,
                      "cpwVcRemoteGroupID": "example-string",
                      "cpwVcRemoteControlWord": "example-string",
                      "cpwVcRemoteIfMtu": 1500,
                      "cpwVcRemoteIfString": "example-string",
                      "cpwVcOutboundVcLabel": 0,
                      "cpwVcInboundVcLabel": 0,
                      "cpwVcName": "interface-1",
                      "cpwVcDescr": "GigabitEthernet1/0/1",
                      "cpwVcCreateTime": "example-string",
                      "cpwVcUpTime": "example-string",
                      "cpwVcAdminStatus": "up(1)",
                      "cpwVcOperStatus": "up(1)",
                      "cpwVcInboundOperStatus": "up(1)",
                      "cpwVcOutboundOperStatus": "up(1)",
                      "cpwVcTimeElapsed": -2147483648,
                      "cpwVcValidIntervals": -2147483648,
                      "cpwVcRowStatus": "up(1)",
                      "cpwVcStorageType": "ethernetCsmacd(6)"
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cpwVcEntry",
        "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": "/cpwVcTable/cpwVcEntry",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-IETF-PW-MIB:cpwVcTable/cpwVcEntry={cpwVcIndex}": {
      "get": {
        "summary": "Get cpwVcEntry entry",
        "description": "Retrieve specific cpwVcEntry entry by key from MIB",
        "tags": [
          "CISCO-IETF-PW-MIB"
        ],
        "parameters": [
          {
            "name": "cpwVcIndex",
            "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": {
                    "cpwVcIndex": {
                      "type": "string",
                      "description": "Index for the conceptual row identifying a VC within  \n            this PW Emulation VC table.",
                      "x-yang-type": "cisco-ietf:CpwVcIndexType"
                    },
                    "cpwVcType": {
                      "type": "string",
                      "description": "This value indicate the service to be carried over \n            this VC.  \n            Note: the exact set of VC types is yet to be worked  \n            out by the WG.",
                      "x-yang-type": "cisco-ietf:CpwVcType"
                    },
                    "cpwVcOwner": {
                      "type": "string",
                      "description": "Set by the operator to indicate the protocol responsible  \n            for establishing this VC. Value 'manual' is used in all \n            cases where no maintenance protocol (PW signaling) is used  \n            to set-up the VC, i.e. require configuration of entries in \n            the VC tables including VC labels, etc. The value  \n            'maintenanceProtocol' is used in case of standard \n            signaling of the VC for the specific PSN, for example LDP \n            for MPLS PSN as specified in <draft- draft-martini- \n            l2circuit-trans-mpls> or L2TP control protocol.  \n            Value 'other' is used for other types of signaling."
                    },
                    "cpwVcPsnType": {
                      "type": "string",
                      "description": "Set by the operator to indicate the PSN type on which this  \n            VC will be carried. Based on this object, the relevant PSN  \n            table entries are created in the in the PSN specific MIB  \n            modules. For example, if mpls(1) is defined, the agent  \n            create an entry in cpwVcMplsTable, which further define the  \n            MPLS PSN configuration. \n            Note: the exact set of PSN types is yet to be worked  \n            out by the WG."
                    },
                    "cpwVcSetUpPriority": {
                      "type": "integer",
                      "description": "This object define the relative set-up priority of the VC   \n            in a lowest-to-highest fashion, where 0 is the highest  \n            priority. VCs with the same priority are treated with \n            equal priority. Dropped VC will be set 'dormant' (as \n            indicated in cpwVcOperStatus). \n            This value is significant if there are competing resources \n            between VCs and the implementation support this feature. \n            If not supported or not relevant, the value of zero MUST \n            be used.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "cpwVcHoldingPriority": {
                      "type": "integer",
                      "description": "This object define the relative holding priority of the VC   \n            in a lowest-to-highest fashion, where 0 is the highest  \n            priority. VCs with the same priority are treated with \n            equal priority. Dropped VC will be set 'dormant' (as \n            indicated in cpwVcOperStatus). \n            This value is significant if there are competing resources \n            between VCs and the implementation support this feature. \n            If not supported or not relevant, the value of zero MUST \n            be used.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "cpwVcInboundMode": {
                      "type": "string",
                      "description": "This object is used to enable greater security for  \n            implementation that use per platform VC label space. In  \n            strict mode, packets coming from the PSN are accepted only  \n            from tunnels that are associated to the same VC via the  \n            inbound tunnel table in the case of MPLS, or as identified  \n            by the source IP address in case of L2TP or IP PSN. The  \n            entries in the inbound tunnel table are either explicitly  \n            configured or implicitly known by the maintenance protocol  \n            used for VC set-up. \n            \n            If such association is not known, not configured or not  \n            desired, loose mode should be configured, and the node  \n            should accept the packet based on the VC label only  \n            regardless of the outer tunnel used to carry the VC."
                    },
                    "cpwVcPeerAddrType": {
                      "type": "string",
                      "description": "Denotes the address type of the peer node maintenance \n            protocol (signaling) address if PW maintenance protocol is \n            used for the VC creation. It should be set to  \n            'unknown' if PE/PW maintenance protocol is not used,  \n            i.e. cpwVcOwner is set to 'manual'.",
                      "x-yang-type": "inet-address:InetAddressType"
                    },
                    "cpwVcPeerAddr": {
                      "type": "string",
                      "description": "This object contains the value of of the peer node address \n            of the PW/PE maintenance protocol entity. This object  \n            should contain a value of 0 if not relevant (manual  \n            configuration of the VC).",
                      "x-yang-type": "inet-address:InetAddress"
                    },
                    "cpwVcID": {
                      "type": "string",
                      "description": "Used in the outgoing VC ID field within the 'Virtual \n            Circuit FEC Element' when LDP signaling is used or PW ID  \n            AVP for L2TP.",
                      "x-yang-type": "cisco-ietf:CpwVcIDType"
                    },
                    "cpwVcLocalGroupID": {
                      "type": "string",
                      "description": "Used in the Group ID field sent to the peer PWES  \n            within the maintenance protocol used for VC setup,  \n            zero if not used.",
                      "x-yang-type": "cisco-ietf:CpwGroupID"
                    },
                    "cpwVcControlWord": {
                      "type": "boolean",
                      "description": "Define if the control word will be sent with each packet by  \n            the local node."
                    },
                    "cpwVcLocalIfMtu": {
                      "type": "integer",
                      "description": "If not equal zero, the optional IfMtu object in the  \n            maintenance protocol will be sent with this value,  \n            representing the locally supported MTU size over the  \n            interface (or the virtual interface) associated with the  \n            VC.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cpwVcLocalIfString": {
                      "type": "boolean",
                      "description": "Each VC is associated to an interface (or a virtual  \n            interface) in the ifTable of the node as part of the \n            service configuration. This object defines if the  \n            maintenance protocol will send the interface's name as \n            appears on the ifTable in the name object as part of the \n            maintenance protocol. If set to false, the optional element \n            will not be sent."
                    },
                    "cpwVcRemoteGroupID": {
                      "type": "string",
                      "description": "Obtained from the Group ID field as received via the  \n            maintenance protocol used for VC setup, zero if not used.  \n            Value of 0xFFFF shall be used if the object is yet to be  \n            defined by the VC maintenance protocol.",
                      "x-yang-type": "cisco-ietf:CpwGroupID"
                    },
                    "cpwVcRemoteControlWord": {
                      "type": "string",
                      "description": "If maintenance protocol is used for VC establishment, this  \n            parameter indicates the received status of the control word  \n            usage, i.e. if packets will be received with control word \n            or not. The value of 'notYetKnown' is used while the \n            maintenance protocol has not yet received the indication  \n            from the remote node. \n            In manual configuration of the VC this parameters indicate  \n            to the local node what is the expected encapsulation for \n            the received packets."
                    },
                    "cpwVcRemoteIfMtu": {
                      "type": "integer",
                      "description": "The remote interface MTU as (optionally) received from the \n            remote node via the maintenance protocol. Should be zero if \n            this parameter is not available or not used.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cpwVcRemoteIfString": {
                      "type": "string",
                      "description": "Indicate the interface description string as received by \n            the maintenance protocol, MUST be NULL string if not  \n            applicable or not known yet.",
                      "x-yang-type": "snmp-framework:SnmpAdminString"
                    },
                    "cpwVcOutboundVcLabel": {
                      "type": "integer",
                      "description": "The VC label used in the outbound direction (i.e. toward  \n            the PSN). It may be set up manually if owner is 'manual' or  \n            automatically otherwise. Examples: For MPLS PSN, it  \n            represents the 20 bits of VC tag, for L2TP it represent the \n            32 bits Session ID. \n            If the label is not yet known (signaling in process), the  \n            object should return a value of 0xFFFF.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cpwVcInboundVcLabel": {
                      "type": "integer",
                      "description": "The VC label used in the inbound direction (i.e. packets  \n            received from the PSN. It may be set up manually if owner \n            is 'manual' or automatically otherwise.  \n            Examples: For MPLS PSN, it represents the 20 bits of VC \n            tag, for L2TP it represent the 32 bits Session ID. \n            If the label is not yet known (signaling in process), the  \n            object should return a value of 0xFFFF.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cpwVcName": {
                      "type": "string",
                      "description": "The canonical name assigned to the VC.",
                      "x-yang-type": "snmp-framework:SnmpAdminString"
                    },
                    "cpwVcDescr": {
                      "type": "string",
                      "description": "A textual string containing information about the VC.  \n            If there is no description this object contains a zero \n            length string.",
                      "x-yang-type": "snmp-framework:SnmpAdminString"
                    },
                    "cpwVcCreateTime": {
                      "type": "string",
                      "description": "System time when this VC was created.",
                      "x-yang-type": "yang:timestamp"
                    },
                    "cpwVcUpTime": {
                      "type": "string",
                      "description": "Number of consecutive ticks this VC has been 'up' in \n            both directions together (i.e. 'up' is observed in  \n            cpwVcOperStatus.)",
                      "x-yang-type": "yang:timeticks"
                    },
                    "cpwVcAdminStatus": {
                      "type": "string",
                      "description": "The desired operational status of this VC."
                    },
                    "cpwVcOperStatus": {
                      "type": "string",
                      "description": "Indicates the actual combined operational status of this  \n            VC. It is 'up' if both cpwVcInboundOperStatus and  \n            cpwVcOutboundOperStatus are in 'up' state. For all other  \n            values, if the VCs in both directions are of the same \n            value it reflects that value, otherwise it is set to the \n            most severe status out of the two statuses. The order of  \n            severance from most severe to less severe is: unknown,  \n            notPresent, down, lowerLayerDown, dormant, testing, up. \n            The operator may consult the per direction OperStatus for \n            fault isolation per direction.",
                      "x-yang-type": "cisco-ietf:CpwOperStatus"
                    },
                    "cpwVcInboundOperStatus": {
                      "type": "string",
                      "description": "Indicates the actual operational status of this VC in the  \n            inbound direction. \n            \n            - down:           if PW signaling has not yet finished, or \n                              indications available at the service  \n                              level indicate that the VC is not  \n                              passing packets. \n            - testing:        if AdminStatus at the VC level is set to  \n                              test. \n            - dormant:        The VC is not available because of the \n                              required resources are occupied VC with  \n                              higher priority VCs . \n            - notPresent:     Some component is missing to accomplish  \n                              the set up of the VC. \n            - lowerLayerDown: The underlying PSN is not in OperStatus  \n                              'up'.",
                      "x-yang-type": "cisco-ietf:CpwOperStatus"
                    },
                    "cpwVcOutboundOperStatus": {
                      "type": "string",
                      "description": "Indicates the actual operational status of this VC in the  \n            outbound direction \n            - down:           if PW signaling has not yet finished, or \n                              indications available at the service  \n                              level indicate that the VC is not \n                              passing packets. \n            - testing:        if AdminStatus at the VC level is set to  \n                              test. \n            - dormant:        The VC is not available because of the \n                              required resources are occupied VC with  \n                              higher priority VCs . \n            - notPresent:     Some component is missing to accomplish  \n                              the set up of the VC. \n            - lowerLayerDown: The underlying PSN is not in OperStatus  \n                              'up'.",
                      "x-yang-type": "cisco-ietf:CpwOperStatus"
                    },
                    "cpwVcTimeElapsed": {
                      "type": "integer",
                      "description": "The number of seconds, including partial seconds, \n            that have elapsed since the beginning of the current \n            measurement period. If, for some reason, such as an \n            adjustment in the system's time-of-day clock, the \n            current interval exceeds the maximum value, the \n            agent will return the maximum value.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "cpwVcValidIntervals": {
                      "type": "integer",
                      "description": "The number of previous 15-minute intervals \n            for which data was collected.  \n            An agent with PW capability must be capable of supporting at  \n            least n intervals. The minimum value of n is 4, The default  \n            of n is 32 and the maximum value of n is 96. \n            The value will be <n> unless the measurement was (re-)  \n            started within the last (<n>*15) minutes, in which case the  \n            value will be the number of complete 15 minute intervals for  \n            which the agent has at least some data. In certain cases  \n            (e.g., in the case where the agent is a proxy) it is  \n            possible that some intervals are unavailable.  In this case,  \n            this interval is the maximum interval number for which data  \n            is available.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "cpwVcRowStatus": {
                      "type": "string",
                      "description": "For creating, modifying, and deleting this row.",
                      "x-yang-type": "snmpv2-tc:RowStatus"
                    },
                    "cpwVcStorageType": {
                      "type": "string",
                      "description": "This variable indicates the storage type for this \n            object.",
                      "x-yang-type": "snmpv2-tc:StorageType"
                    }
                  }
                },
                "example": {
                  "CISCO-IETF-PW-MIB:cpwVcEntry": {
                    "cpwVcIndex": "example-string",
                    "cpwVcType": "ethernetCsmacd(6)",
                    "cpwVcOwner": "example-string",
                    "cpwVcPsnType": "ethernetCsmacd(6)",
                    "cpwVcSetUpPriority": -2147483648,
                    "cpwVcHoldingPriority": -2147483648,
                    "cpwVcInboundMode": "example-string",
                    "cpwVcPeerAddrType": "192.168.1.1",
                    "cpwVcPeerAddr": "192.168.1.1",
                    "cpwVcID": "example-string",
                    "cpwVcLocalGroupID": "example-string",
                    "cpwVcControlWord": true,
                    "cpwVcLocalIfMtu": 1500,
                    "cpwVcLocalIfString": true,
                    "cpwVcRemoteGroupID": "example-string",
                    "cpwVcRemoteControlWord": "example-string",
                    "cpwVcRemoteIfMtu": 1500,
                    "cpwVcRemoteIfString": "example-string",
                    "cpwVcOutboundVcLabel": 0,
                    "cpwVcInboundVcLabel": 0,
                    "cpwVcName": "interface-1",
                    "cpwVcDescr": "GigabitEthernet1/0/1",
                    "cpwVcCreateTime": "example-string",
                    "cpwVcUpTime": "example-string",
                    "cpwVcAdminStatus": "up(1)",
                    "cpwVcOperStatus": "up(1)",
                    "cpwVcInboundOperStatus": "up(1)",
                    "cpwVcOutboundOperStatus": "up(1)",
                    "cpwVcTimeElapsed": -2147483648,
                    "cpwVcValidIntervals": -2147483648,
                    "cpwVcRowStatus": "up(1)",
                    "cpwVcStorageType": "ethernetCsmacd(6)"
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cpwVcEntry-2"
      },
      "x-yang-path": "/cpwVcTable/cpwVcEntry={cpwVcIndex}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "cpwVcIndex"
      ]
    },
    "/data/CISCO-IETF-PW-MIB:cpwVcPerfCurrentTable": {
      "get": {
        "summary": "Get cpwVcPerfCurrentTable data",
        "description": "Retrieve cpwVcPerfCurrentTable operational data from MIB",
        "tags": [
          "CISCO-IETF-PW-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "description": "This table provides per-VC performance information for the  \n        current interval.",
                  "properties": {
                    "cpwVcPerfCurrentEntry": {
                      "type": "array",
                      "description": "An entry in this table is created by the agent for \n          every VC.",
                      "items": {
                        "type": "object",
                        "properties": {
                          "cpwVcIndex": {
                            "type": "string",
                            "description": "cpwVcIndex",
                            "x-yang-type": "leafref"
                          },
                          "cpwVcPerfCurrentInHCPackets": {
                            "type": "integer",
                            "description": "High capacity counter for number of packets received \n            by the VC (from the PSN) in the current 15 minute \n            interval.",
                            "minimum": 0
                          },
                          "cpwVcPerfCurrentInHCBytes": {
                            "type": "integer",
                            "description": "High capacity counter for number of bytes received \n            by the VC (from the PSN) in the current 15 minute \n            interval.",
                            "minimum": 0
                          },
                          "cpwVcPerfCurrentOutHCPackets": {
                            "type": "integer",
                            "description": "High capacity counter for number of packets forwarded \n            by the VC (to the PSN) in the current 15 minute interval.",
                            "minimum": 0
                          },
                          "cpwVcPerfCurrentOutHCBytes": {
                            "type": "integer",
                            "description": "High capacity counter for number of bytes forwarded \n            by the VC (to the PSN) in the current 15 minute interval.",
                            "minimum": 0
                          }
                        }
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-IETF-PW-MIB:cpwVcPerfCurrentTable": {
                    "cpwVcPerfCurrentEntry": [
                      {
                        "cpwVcIndex": "1",
                        "cpwVcPerfCurrentInHCPackets": 1234567890,
                        "cpwVcPerfCurrentInHCBytes": 0,
                        "cpwVcPerfCurrentOutHCPackets": 1234567890,
                        "cpwVcPerfCurrentOutHCBytes": 0
                      },
                      {
                        "cpwVcIndex": "2",
                        "cpwVcPerfCurrentInHCPackets": 1234567890,
                        "cpwVcPerfCurrentInHCBytes": 0,
                        "cpwVcPerfCurrentOutHCPackets": 1234567890,
                        "cpwVcPerfCurrentOutHCBytes": 0
                      },
                      {
                        "cpwVcIndex": "3",
                        "cpwVcPerfCurrentInHCPackets": 1234567890,
                        "cpwVcPerfCurrentInHCBytes": 0,
                        "cpwVcPerfCurrentOutHCPackets": 1234567890,
                        "cpwVcPerfCurrentOutHCBytes": 0
                      }
                    ]
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cpwVcPerfCurrentTable",
        "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": "/cpwVcPerfCurrentTable",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-IETF-PW-MIB:cpwVcPerfCurrentTable/cpwVcPerfCurrentEntry": {
      "get": {
        "summary": "Get cpwVcPerfCurrentEntry list",
        "description": "Retrieve list of cpwVcPerfCurrentEntry entries from MIB",
        "tags": [
          "CISCO-IETF-PW-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "An entry in this table is created by the agent for \n          every VC.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "cpwVcIndex": {
                        "type": "string",
                        "description": "cpwVcIndex",
                        "x-yang-type": "leafref"
                      },
                      "cpwVcPerfCurrentInHCPackets": {
                        "type": "integer",
                        "description": "High capacity counter for number of packets received \n            by the VC (from the PSN) in the current 15 minute \n            interval.",
                        "minimum": 0
                      },
                      "cpwVcPerfCurrentInHCBytes": {
                        "type": "integer",
                        "description": "High capacity counter for number of bytes received \n            by the VC (from the PSN) in the current 15 minute \n            interval.",
                        "minimum": 0
                      },
                      "cpwVcPerfCurrentOutHCPackets": {
                        "type": "integer",
                        "description": "High capacity counter for number of packets forwarded \n            by the VC (to the PSN) in the current 15 minute interval.",
                        "minimum": 0
                      },
                      "cpwVcPerfCurrentOutHCBytes": {
                        "type": "integer",
                        "description": "High capacity counter for number of bytes forwarded \n            by the VC (to the PSN) in the current 15 minute interval.",
                        "minimum": 0
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-IETF-PW-MIB:cpwVcPerfCurrentEntry": [
                    {
                      "cpwVcIndex": "example-string",
                      "cpwVcPerfCurrentInHCPackets": 1234567890,
                      "cpwVcPerfCurrentInHCBytes": 0,
                      "cpwVcPerfCurrentOutHCPackets": 1234567890,
                      "cpwVcPerfCurrentOutHCBytes": 0
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cpwVcPerfCurrentEntry",
        "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": "/cpwVcPerfCurrentTable/cpwVcPerfCurrentEntry",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-IETF-PW-MIB:cpwVcPerfCurrentTable/cpwVcPerfCurrentEntry={cpwVcIndex}": {
      "get": {
        "summary": "Get cpwVcPerfCurrentEntry entry",
        "description": "Retrieve specific cpwVcPerfCurrentEntry entry by key from MIB",
        "tags": [
          "CISCO-IETF-PW-MIB"
        ],
        "parameters": [
          {
            "name": "cpwVcIndex",
            "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": {
                    "cpwVcIndex": {
                      "type": "string",
                      "description": "cpwVcIndex",
                      "x-yang-type": "leafref"
                    },
                    "cpwVcPerfCurrentInHCPackets": {
                      "type": "integer",
                      "description": "High capacity counter for number of packets received \n            by the VC (from the PSN) in the current 15 minute \n            interval.",
                      "minimum": 0
                    },
                    "cpwVcPerfCurrentInHCBytes": {
                      "type": "integer",
                      "description": "High capacity counter for number of bytes received \n            by the VC (from the PSN) in the current 15 minute \n            interval.",
                      "minimum": 0
                    },
                    "cpwVcPerfCurrentOutHCPackets": {
                      "type": "integer",
                      "description": "High capacity counter for number of packets forwarded \n            by the VC (to the PSN) in the current 15 minute interval.",
                      "minimum": 0
                    },
                    "cpwVcPerfCurrentOutHCBytes": {
                      "type": "integer",
                      "description": "High capacity counter for number of bytes forwarded \n            by the VC (to the PSN) in the current 15 minute interval.",
                      "minimum": 0
                    }
                  }
                },
                "example": {
                  "CISCO-IETF-PW-MIB:cpwVcPerfCurrentEntry": {
                    "cpwVcIndex": "example-string",
                    "cpwVcPerfCurrentInHCPackets": 1234567890,
                    "cpwVcPerfCurrentInHCBytes": 0,
                    "cpwVcPerfCurrentOutHCPackets": 1234567890,
                    "cpwVcPerfCurrentOutHCBytes": 0
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cpwVcPerfCurrentEntry-2"
      },
      "x-yang-path": "/cpwVcPerfCurrentTable/cpwVcPerfCurrentEntry={cpwVcIndex}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "cpwVcIndex"
      ]
    },
    "/data/CISCO-IETF-PW-MIB:cpwVcPerfIntervalTable": {
      "get": {
        "summary": "Get cpwVcPerfIntervalTable data",
        "description": "Retrieve cpwVcPerfIntervalTable operational data from MIB",
        "tags": [
          "CISCO-IETF-PW-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "description": "This table provides per-VC performance information for  \n        each interval.",
                  "properties": {
                    "cpwVcPerfIntervalEntry": {
                      "type": "array",
                      "description": "An entry in this table is created agent for every VC.",
                      "items": {
                        "type": "object",
                        "properties": {
                          "cpwVcIndex": {
                            "type": "string",
                            "description": "cpwVcIndex",
                            "x-yang-type": "leafref"
                          },
                          "cpwVcPerfIntervalNumber": {
                            "type": "integer",
                            "description": "A number N, between 1 and 96, which identifies the \n            interval for which the set of statistics is available. \n            The interval identified by 1 is the most recently \n            completed 15 minute interval, and the interval identified \n            by N is the interval immediately preceding the one \n            identified by N-1. \n            The minimum range of N is 1 through 4. The default range \n            is 1 to 32. The maximum range of N is 1 through 96.",
                            "minimum": -2147483648,
                            "maximum": 2147483647
                          },
                          "cpwVcPerfIntervalValidData": {
                            "type": "boolean",
                            "description": "This variable indicates if the data for this interval \n            is valid."
                          },
                          "cpwVcPerfIntervalTimeElapsed": {
                            "type": "integer",
                            "description": "The duration of a particular interval in seconds. \n            Adjustments in the system's time-of-day clock, may \n            cause the interval to be greater or less than the \n            normal value. Therefore this actual interval value \n            is provided.",
                            "minimum": -2147483648,
                            "maximum": 2147483647
                          },
                          "cpwVcPerfIntervalInHCPackets": {
                            "type": "integer",
                            "description": "High capacity counter for number of packets received by \n            the VC (from the PSN) in a particular 15-minute interval.",
                            "minimum": 0
                          },
                          "cpwVcPerfIntervalInHCBytes": {
                            "type": "integer",
                            "description": "High capacity counter for number of bytes received by the  \n            VC (from the PSN) in a particular 15-minute interval.",
                            "minimum": 0
                          },
                          "cpwVcPerfIntervalOutHCPackets": {
                            "type": "integer",
                            "description": "High capacity counter for number of packets forwarded by  \n            the VC (to the PSN) in a particular 15-minute interval.",
                            "minimum": 0
                          },
                          "cpwVcPerfIntervalOutHCBytes": {
                            "type": "integer",
                            "description": "High capacity counter for number of bytes forwarded by the  \n            VC (to the PSN) in a particular 15-minute interval.",
                            "minimum": 0
                          }
                        }
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-IETF-PW-MIB:cpwVcPerfIntervalTable": {
                    "cpwVcPerfIntervalEntry": [
                      {
                        "cpwVcIndex": "1",
                        "cpwVcPerfIntervalNumber": -2147483648,
                        "cpwVcPerfIntervalValidData": true,
                        "cpwVcPerfIntervalTimeElapsed": -2147483648,
                        "cpwVcPerfIntervalInHCPackets": 1234567890,
                        "cpwVcPerfIntervalInHCBytes": 0,
                        "cpwVcPerfIntervalOutHCPackets": 1234567890,
                        "cpwVcPerfIntervalOutHCBytes": 0
                      },
                      {
                        "cpwVcIndex": "2",
                        "cpwVcPerfIntervalNumber": -2147483648,
                        "cpwVcPerfIntervalValidData": true,
                        "cpwVcPerfIntervalTimeElapsed": -2147483648,
                        "cpwVcPerfIntervalInHCPackets": 1234567890,
                        "cpwVcPerfIntervalInHCBytes": 0,
                        "cpwVcPerfIntervalOutHCPackets": 1234567890,
                        "cpwVcPerfIntervalOutHCBytes": 0
                      },
                      {
                        "cpwVcIndex": "3",
                        "cpwVcPerfIntervalNumber": -2147483648,
                        "cpwVcPerfIntervalValidData": true,
                        "cpwVcPerfIntervalTimeElapsed": -2147483648,
                        "cpwVcPerfIntervalInHCPackets": 1234567890,
                        "cpwVcPerfIntervalInHCBytes": 0,
                        "cpwVcPerfIntervalOutHCPackets": 1234567890,
                        "cpwVcPerfIntervalOutHCBytes": 0
                      }
                    ]
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cpwVcPerfIntervalTable",
        "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": "/cpwVcPerfIntervalTable",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-IETF-PW-MIB:cpwVcPerfIntervalTable/cpwVcPerfIntervalEntry": {
      "get": {
        "summary": "Get cpwVcPerfIntervalEntry list",
        "description": "Retrieve list of cpwVcPerfIntervalEntry entries from MIB",
        "tags": [
          "CISCO-IETF-PW-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "An entry in this table is created agent for every VC.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "cpwVcIndex": {
                        "type": "string",
                        "description": "cpwVcIndex",
                        "x-yang-type": "leafref"
                      },
                      "cpwVcPerfIntervalNumber": {
                        "type": "integer",
                        "description": "A number N, between 1 and 96, which identifies the \n            interval for which the set of statistics is available. \n            The interval identified by 1 is the most recently \n            completed 15 minute interval, and the interval identified \n            by N is the interval immediately preceding the one \n            identified by N-1. \n            The minimum range of N is 1 through 4. The default range \n            is 1 to 32. The maximum range of N is 1 through 96.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "cpwVcPerfIntervalValidData": {
                        "type": "boolean",
                        "description": "This variable indicates if the data for this interval \n            is valid."
                      },
                      "cpwVcPerfIntervalTimeElapsed": {
                        "type": "integer",
                        "description": "The duration of a particular interval in seconds. \n            Adjustments in the system's time-of-day clock, may \n            cause the interval to be greater or less than the \n            normal value. Therefore this actual interval value \n            is provided.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "cpwVcPerfIntervalInHCPackets": {
                        "type": "integer",
                        "description": "High capacity counter for number of packets received by \n            the VC (from the PSN) in a particular 15-minute interval.",
                        "minimum": 0
                      },
                      "cpwVcPerfIntervalInHCBytes": {
                        "type": "integer",
                        "description": "High capacity counter for number of bytes received by the  \n            VC (from the PSN) in a particular 15-minute interval.",
                        "minimum": 0
                      },
                      "cpwVcPerfIntervalOutHCPackets": {
                        "type": "integer",
                        "description": "High capacity counter for number of packets forwarded by  \n            the VC (to the PSN) in a particular 15-minute interval.",
                        "minimum": 0
                      },
                      "cpwVcPerfIntervalOutHCBytes": {
                        "type": "integer",
                        "description": "High capacity counter for number of bytes forwarded by the  \n            VC (to the PSN) in a particular 15-minute interval.",
                        "minimum": 0
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-IETF-PW-MIB:cpwVcPerfIntervalEntry": [
                    {
                      "cpwVcIndex": "example-string",
                      "cpwVcPerfIntervalNumber": -2147483648,
                      "cpwVcPerfIntervalValidData": true,
                      "cpwVcPerfIntervalTimeElapsed": -2147483648,
                      "cpwVcPerfIntervalInHCPackets": 1234567890,
                      "cpwVcPerfIntervalInHCBytes": 0,
                      "cpwVcPerfIntervalOutHCPackets": 1234567890,
                      "cpwVcPerfIntervalOutHCBytes": 0
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cpwVcPerfIntervalEntry",
        "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": "/cpwVcPerfIntervalTable/cpwVcPerfIntervalEntry",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-IETF-PW-MIB:cpwVcPerfTotalTable": {
      "get": {
        "summary": "Get cpwVcPerfTotalTable data",
        "description": "Retrieve cpwVcPerfTotalTable operational data from MIB",
        "tags": [
          "CISCO-IETF-PW-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "description": "This table provides per-VC Performance information from VC  \n        start time.",
                  "properties": {
                    "cpwVcPerfTotalEntry": {
                      "type": "array",
                      "description": "An entry in this table is created agent for every VC.",
                      "items": {
                        "type": "object",
                        "properties": {
                          "cpwVcIndex": {
                            "type": "string",
                            "description": "cpwVcIndex",
                            "x-yang-type": "leafref"
                          },
                          "cpwVcPerfTotalInHCPackets": {
                            "type": "integer",
                            "description": "High capacity counter for number of packets received by the  \n            VC (from the PSN).",
                            "minimum": 0
                          },
                          "cpwVcPerfTotalInHCBytes": {
                            "type": "integer",
                            "description": "High capacity counter for number of bytes received by the  \n            VC (from the PSN).",
                            "minimum": 0
                          },
                          "cpwVcPerfTotalOutHCPackets": {
                            "type": "integer",
                            "description": "High capacity counter for number of packets forwarded by  \n            the VC (to the PSN).",
                            "minimum": 0
                          },
                          "cpwVcPerfTotalOutHCBytes": {
                            "type": "integer",
                            "description": "High capacity counter for number of bytes forwarded by the  \n            VC (to the PSN).",
                            "minimum": 0
                          },
                          "cpwVcPerfTotalDiscontinuityTime": {
                            "type": "string",
                            "description": "The value of sysUpTime on the most recent occasion at \n            which any one or more of this row Counter32 or \n            Counter64 suffered a discontinuity. If no such \n            discontinuities have occurred since the last re- \n            initialization of the local management subsystem, then \n            this object contains a zero value.",
                            "x-yang-type": "yang:timestamp"
                          }
                        }
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-IETF-PW-MIB:cpwVcPerfTotalTable": {
                    "cpwVcPerfTotalEntry": [
                      {
                        "cpwVcIndex": "1",
                        "cpwVcPerfTotalInHCPackets": 1234567890,
                        "cpwVcPerfTotalInHCBytes": 0,
                        "cpwVcPerfTotalOutHCPackets": 1234567890,
                        "cpwVcPerfTotalOutHCBytes": 0,
                        "cpwVcPerfTotalDiscontinuityTime": "example-string"
                      },
                      {
                        "cpwVcIndex": "2",
                        "cpwVcPerfTotalInHCPackets": 1234567890,
                        "cpwVcPerfTotalInHCBytes": 0,
                        "cpwVcPerfTotalOutHCPackets": 1234567890,
                        "cpwVcPerfTotalOutHCBytes": 0,
                        "cpwVcPerfTotalDiscontinuityTime": "example-string"
                      },
                      {
                        "cpwVcIndex": "3",
                        "cpwVcPerfTotalInHCPackets": 1234567890,
                        "cpwVcPerfTotalInHCBytes": 0,
                        "cpwVcPerfTotalOutHCPackets": 1234567890,
                        "cpwVcPerfTotalOutHCBytes": 0,
                        "cpwVcPerfTotalDiscontinuityTime": "example-string"
                      }
                    ]
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cpwVcPerfTotalTable",
        "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": "/cpwVcPerfTotalTable",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-IETF-PW-MIB:cpwVcPerfTotalTable/cpwVcPerfTotalEntry": {
      "get": {
        "summary": "Get cpwVcPerfTotalEntry list",
        "description": "Retrieve list of cpwVcPerfTotalEntry entries from MIB",
        "tags": [
          "CISCO-IETF-PW-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "An entry in this table is created agent for every VC.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "cpwVcIndex": {
                        "type": "string",
                        "description": "cpwVcIndex",
                        "x-yang-type": "leafref"
                      },
                      "cpwVcPerfTotalInHCPackets": {
                        "type": "integer",
                        "description": "High capacity counter for number of packets received by the  \n            VC (from the PSN).",
                        "minimum": 0
                      },
                      "cpwVcPerfTotalInHCBytes": {
                        "type": "integer",
                        "description": "High capacity counter for number of bytes received by the  \n            VC (from the PSN).",
                        "minimum": 0
                      },
                      "cpwVcPerfTotalOutHCPackets": {
                        "type": "integer",
                        "description": "High capacity counter for number of packets forwarded by  \n            the VC (to the PSN).",
                        "minimum": 0
                      },
                      "cpwVcPerfTotalOutHCBytes": {
                        "type": "integer",
                        "description": "High capacity counter for number of bytes forwarded by the  \n            VC (to the PSN).",
                        "minimum": 0
                      },
                      "cpwVcPerfTotalDiscontinuityTime": {
                        "type": "string",
                        "description": "The value of sysUpTime on the most recent occasion at \n            which any one or more of this row Counter32 or \n            Counter64 suffered a discontinuity. If no such \n            discontinuities have occurred since the last re- \n            initialization of the local management subsystem, then \n            this object contains a zero value.",
                        "x-yang-type": "yang:timestamp"
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-IETF-PW-MIB:cpwVcPerfTotalEntry": [
                    {
                      "cpwVcIndex": "example-string",
                      "cpwVcPerfTotalInHCPackets": 1234567890,
                      "cpwVcPerfTotalInHCBytes": 0,
                      "cpwVcPerfTotalOutHCPackets": 1234567890,
                      "cpwVcPerfTotalOutHCBytes": 0,
                      "cpwVcPerfTotalDiscontinuityTime": "example-string"
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cpwVcPerfTotalEntry",
        "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": "/cpwVcPerfTotalTable/cpwVcPerfTotalEntry",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-IETF-PW-MIB:cpwVcPerfTotalTable/cpwVcPerfTotalEntry={cpwVcIndex}": {
      "get": {
        "summary": "Get cpwVcPerfTotalEntry entry",
        "description": "Retrieve specific cpwVcPerfTotalEntry entry by key from MIB",
        "tags": [
          "CISCO-IETF-PW-MIB"
        ],
        "parameters": [
          {
            "name": "cpwVcIndex",
            "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": {
                    "cpwVcIndex": {
                      "type": "string",
                      "description": "cpwVcIndex",
                      "x-yang-type": "leafref"
                    },
                    "cpwVcPerfTotalInHCPackets": {
                      "type": "integer",
                      "description": "High capacity counter for number of packets received by the  \n            VC (from the PSN).",
                      "minimum": 0
                    },
                    "cpwVcPerfTotalInHCBytes": {
                      "type": "integer",
                      "description": "High capacity counter for number of bytes received by the  \n            VC (from the PSN).",
                      "minimum": 0
                    },
                    "cpwVcPerfTotalOutHCPackets": {
                      "type": "integer",
                      "description": "High capacity counter for number of packets forwarded by  \n            the VC (to the PSN).",
                      "minimum": 0
                    },
                    "cpwVcPerfTotalOutHCBytes": {
                      "type": "integer",
                      "description": "High capacity counter for number of bytes forwarded by the  \n            VC (to the PSN).",
                      "minimum": 0
                    },
                    "cpwVcPerfTotalDiscontinuityTime": {
                      "type": "string",
                      "description": "The value of sysUpTime on the most recent occasion at \n            which any one or more of this row Counter32 or \n            Counter64 suffered a discontinuity. If no such \n            discontinuities have occurred since the last re- \n            initialization of the local management subsystem, then \n            this object contains a zero value.",
                      "x-yang-type": "yang:timestamp"
                    }
                  }
                },
                "example": {
                  "CISCO-IETF-PW-MIB:cpwVcPerfTotalEntry": {
                    "cpwVcIndex": "example-string",
                    "cpwVcPerfTotalInHCPackets": 1234567890,
                    "cpwVcPerfTotalInHCBytes": 0,
                    "cpwVcPerfTotalOutHCPackets": 1234567890,
                    "cpwVcPerfTotalOutHCBytes": 0,
                    "cpwVcPerfTotalDiscontinuityTime": "example-string"
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cpwVcPerfTotalEntry-2"
      },
      "x-yang-path": "/cpwVcPerfTotalTable/cpwVcPerfTotalEntry={cpwVcIndex}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "cpwVcIndex"
      ]
    },
    "/data/CISCO-IETF-PW-MIB:cpwVcIdMappingTable": {
      "get": {
        "summary": "Get cpwVcIdMappingTable data",
        "description": "Retrieve cpwVcIdMappingTable operational data from MIB",
        "tags": [
          "CISCO-IETF-PW-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "description": "This table provides reverse mapping of the existing VCs  \n        based on vc type and VC ID ordering. This table is  \n        typically useful for EMS ordered query of existing VCs.",
                  "properties": {
                    "cpwVcIdMappingEntry": {
                      "type": "array",
                      "description": "An entry in this table is created by the agent for every  \n          VC configured by the cpwVcTable.",
                      "items": {
                        "type": "object",
                        "properties": {
                          "cpwVcIdMappingVcType": {
                            "type": "string",
                            "description": "The VC type (indicate the service) of this VC.",
                            "x-yang-type": "cisco-ietf:CpwVcType"
                          },
                          "cpwVcIdMappingVcID": {
                            "type": "string",
                            "description": "The VC ID of this VC. Zero if the VC is configured  \n            manually.",
                            "x-yang-type": "cisco-ietf:CpwVcIDType"
                          },
                          "cpwVcIdMappingPeerAddrType": {
                            "type": "string",
                            "description": "IP address type of the peer node.",
                            "x-yang-type": "inet-address:InetAddressType"
                          },
                          "cpwVcIdMappingPeerAddr": {
                            "type": "string",
                            "description": "IP address type of the peer node.",
                            "x-yang-type": "inet-address:InetAddress"
                          },
                          "cpwVcIdMappingVcIndex": {
                            "type": "string",
                            "description": "The value that represent the VC in the cpwVcTable.",
                            "x-yang-type": "cisco-ietf:CpwVcIndexType"
                          }
                        }
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-IETF-PW-MIB:cpwVcIdMappingTable": {
                    "cpwVcIdMappingEntry": [
                      {
                        "cpwVcIdMappingVcType": "ethernetCsmacd(6)",
                        "cpwVcIdMappingVcID": "example-string",
                        "cpwVcIdMappingPeerAddrType": "192.168.1.1",
                        "cpwVcIdMappingPeerAddr": "192.168.1.1",
                        "cpwVcIdMappingVcIndex": "1"
                      },
                      {
                        "cpwVcIdMappingVcType": "ethernetCsmacd(6)",
                        "cpwVcIdMappingVcID": "example-string",
                        "cpwVcIdMappingPeerAddrType": "192.168.1.1",
                        "cpwVcIdMappingPeerAddr": "192.168.1.1",
                        "cpwVcIdMappingVcIndex": "2"
                      },
                      {
                        "cpwVcIdMappingVcType": "ethernetCsmacd(6)",
                        "cpwVcIdMappingVcID": "example-string",
                        "cpwVcIdMappingPeerAddrType": "192.168.1.1",
                        "cpwVcIdMappingPeerAddr": "192.168.1.1",
                        "cpwVcIdMappingVcIndex": "3"
                      }
                    ]
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cpwVcIdMappingTable",
        "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": "/cpwVcIdMappingTable",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-IETF-PW-MIB:cpwVcIdMappingTable/cpwVcIdMappingEntry": {
      "get": {
        "summary": "Get cpwVcIdMappingEntry list",
        "description": "Retrieve list of cpwVcIdMappingEntry entries from MIB",
        "tags": [
          "CISCO-IETF-PW-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "An entry in this table is created by the agent for every  \n          VC configured by the cpwVcTable.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "cpwVcIdMappingVcType": {
                        "type": "string",
                        "description": "The VC type (indicate the service) of this VC.",
                        "x-yang-type": "cisco-ietf:CpwVcType"
                      },
                      "cpwVcIdMappingVcID": {
                        "type": "string",
                        "description": "The VC ID of this VC. Zero if the VC is configured  \n            manually.",
                        "x-yang-type": "cisco-ietf:CpwVcIDType"
                      },
                      "cpwVcIdMappingPeerAddrType": {
                        "type": "string",
                        "description": "IP address type of the peer node.",
                        "x-yang-type": "inet-address:InetAddressType"
                      },
                      "cpwVcIdMappingPeerAddr": {
                        "type": "string",
                        "description": "IP address type of the peer node.",
                        "x-yang-type": "inet-address:InetAddress"
                      },
                      "cpwVcIdMappingVcIndex": {
                        "type": "string",
                        "description": "The value that represent the VC in the cpwVcTable.",
                        "x-yang-type": "cisco-ietf:CpwVcIndexType"
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-IETF-PW-MIB:cpwVcIdMappingEntry": [
                    {
                      "cpwVcIdMappingVcType": "ethernetCsmacd(6)",
                      "cpwVcIdMappingVcID": "example-string",
                      "cpwVcIdMappingPeerAddrType": "192.168.1.1",
                      "cpwVcIdMappingPeerAddr": "192.168.1.1",
                      "cpwVcIdMappingVcIndex": "example-string"
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cpwVcIdMappingEntry",
        "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": "/cpwVcIdMappingTable/cpwVcIdMappingEntry",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-IETF-PW-MIB:cpwVcPeerMappingTable": {
      "get": {
        "summary": "Get cpwVcPeerMappingTable data",
        "description": "Retrieve cpwVcPeerMappingTable operational data from MIB",
        "tags": [
          "CISCO-IETF-PW-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "object",
                  "description": "This table provides reverse mapping of the existing VCs  \n        based on vc type and VC ID ordering. This table is  \n        typically useful for EMS ordered query of existing VCs.",
                  "properties": {
                    "cpwVcPeerMappingEntry": {
                      "type": "array",
                      "description": "An entry in this table is created by the agent for every  \n          VC configured in cpwVcTable.",
                      "items": {
                        "type": "object",
                        "properties": {
                          "cpwVcPeerMappingPeerAddrType": {
                            "type": "string",
                            "description": "IP address type of the peer node.",
                            "x-yang-type": "inet-address:InetAddressType"
                          },
                          "cpwVcPeerMappingPeerAddr": {
                            "type": "string",
                            "description": "IP address type of the peer node.",
                            "x-yang-type": "inet-address:InetAddress"
                          },
                          "cpwVcPeerMappingVcType": {
                            "type": "string",
                            "description": "The VC type (indicate the service) of this VC.",
                            "x-yang-type": "cisco-ietf:CpwVcType"
                          },
                          "cpwVcPeerMappingVcID": {
                            "type": "string",
                            "description": "The VC ID of this VC. Zero if the VC is configured  \n            manually.",
                            "x-yang-type": "cisco-ietf:CpwVcIDType"
                          },
                          "cpwVcPeerMappingVcIndex": {
                            "type": "string",
                            "description": "The value that represent the VC in the cpwVcTable.",
                            "x-yang-type": "cisco-ietf:CpwVcIndexType"
                          }
                        }
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-IETF-PW-MIB:cpwVcPeerMappingTable": {
                    "cpwVcPeerMappingEntry": [
                      {
                        "cpwVcPeerMappingPeerAddrType": "192.168.1.1",
                        "cpwVcPeerMappingPeerAddr": "192.168.1.1",
                        "cpwVcPeerMappingVcType": "ethernetCsmacd(6)",
                        "cpwVcPeerMappingVcID": "example-string",
                        "cpwVcPeerMappingVcIndex": "1"
                      },
                      {
                        "cpwVcPeerMappingPeerAddrType": "192.168.1.1",
                        "cpwVcPeerMappingPeerAddr": "192.168.1.1",
                        "cpwVcPeerMappingVcType": "ethernetCsmacd(6)",
                        "cpwVcPeerMappingVcID": "example-string",
                        "cpwVcPeerMappingVcIndex": "2"
                      },
                      {
                        "cpwVcPeerMappingPeerAddrType": "192.168.1.1",
                        "cpwVcPeerMappingPeerAddr": "192.168.1.1",
                        "cpwVcPeerMappingVcType": "ethernetCsmacd(6)",
                        "cpwVcPeerMappingVcID": "example-string",
                        "cpwVcPeerMappingVcIndex": "3"
                      }
                    ]
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cpwVcPeerMappingTable",
        "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": "/cpwVcPeerMappingTable",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-IETF-PW-MIB:cpwVcPeerMappingTable/cpwVcPeerMappingEntry": {
      "get": {
        "summary": "Get cpwVcPeerMappingEntry list",
        "description": "Retrieve list of cpwVcPeerMappingEntry entries from MIB",
        "tags": [
          "CISCO-IETF-PW-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "An entry in this table is created by the agent for every  \n          VC configured in cpwVcTable.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "cpwVcPeerMappingPeerAddrType": {
                        "type": "string",
                        "description": "IP address type of the peer node.",
                        "x-yang-type": "inet-address:InetAddressType"
                      },
                      "cpwVcPeerMappingPeerAddr": {
                        "type": "string",
                        "description": "IP address type of the peer node.",
                        "x-yang-type": "inet-address:InetAddress"
                      },
                      "cpwVcPeerMappingVcType": {
                        "type": "string",
                        "description": "The VC type (indicate the service) of this VC.",
                        "x-yang-type": "cisco-ietf:CpwVcType"
                      },
                      "cpwVcPeerMappingVcID": {
                        "type": "string",
                        "description": "The VC ID of this VC. Zero if the VC is configured  \n            manually.",
                        "x-yang-type": "cisco-ietf:CpwVcIDType"
                      },
                      "cpwVcPeerMappingVcIndex": {
                        "type": "string",
                        "description": "The value that represent the VC in the cpwVcTable.",
                        "x-yang-type": "cisco-ietf:CpwVcIndexType"
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-IETF-PW-MIB:cpwVcPeerMappingEntry": [
                    {
                      "cpwVcPeerMappingPeerAddrType": "192.168.1.1",
                      "cpwVcPeerMappingPeerAddr": "192.168.1.1",
                      "cpwVcPeerMappingVcType": "ethernetCsmacd(6)",
                      "cpwVcPeerMappingVcID": "example-string",
                      "cpwVcPeerMappingVcIndex": "example-string"
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cpwVcPeerMappingEntry",
        "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": "/cpwVcPeerMappingTable/cpwVcPeerMappingEntry",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-IETF-PW-MIB:cpwVcEntry": {
      "get": {
        "summary": "Get cpwVcEntry list",
        "description": "Retrieve list of cpwVcEntry entries from MIB",
        "tags": [
          "CISCO-IETF-PW-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "A row in this table represents an emulated virtual \n          connection (VC) across a packet network. It is indexed by \n          cpwVcIndex, which uniquely identifying a singular  \n          connection.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "cpwVcIndex": {
                        "type": "string",
                        "description": "Index for the conceptual row identifying a VC within  \n            this PW Emulation VC table.",
                        "x-yang-type": "cisco-ietf:CpwVcIndexType"
                      },
                      "cpwVcType": {
                        "type": "string",
                        "description": "This value indicate the service to be carried over \n            this VC.  \n            Note: the exact set of VC types is yet to be worked  \n            out by the WG.",
                        "x-yang-type": "cisco-ietf:CpwVcType"
                      },
                      "cpwVcOwner": {
                        "type": "string",
                        "description": "Set by the operator to indicate the protocol responsible  \n            for establishing this VC. Value 'manual' is used in all \n            cases where no maintenance protocol (PW signaling) is used  \n            to set-up the VC, i.e. require configuration of entries in \n            the VC tables including VC labels, etc. The value  \n            'maintenanceProtocol' is used in case of standard \n            signaling of the VC for the specific PSN, for example LDP \n            for MPLS PSN as specified in <draft- draft-martini- \n            l2circuit-trans-mpls> or L2TP control protocol.  \n            Value 'other' is used for other types of signaling."
                      },
                      "cpwVcPsnType": {
                        "type": "string",
                        "description": "Set by the operator to indicate the PSN type on which this  \n            VC will be carried. Based on this object, the relevant PSN  \n            table entries are created in the in the PSN specific MIB  \n            modules. For example, if mpls(1) is defined, the agent  \n            create an entry in cpwVcMplsTable, which further define the  \n            MPLS PSN configuration. \n            Note: the exact set of PSN types is yet to be worked  \n            out by the WG."
                      },
                      "cpwVcSetUpPriority": {
                        "type": "integer",
                        "description": "This object define the relative set-up priority of the VC   \n            in a lowest-to-highest fashion, where 0 is the highest  \n            priority. VCs with the same priority are treated with \n            equal priority. Dropped VC will be set 'dormant' (as \n            indicated in cpwVcOperStatus). \n            This value is significant if there are competing resources \n            between VCs and the implementation support this feature. \n            If not supported or not relevant, the value of zero MUST \n            be used.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "cpwVcHoldingPriority": {
                        "type": "integer",
                        "description": "This object define the relative holding priority of the VC   \n            in a lowest-to-highest fashion, where 0 is the highest  \n            priority. VCs with the same priority are treated with \n            equal priority. Dropped VC will be set 'dormant' (as \n            indicated in cpwVcOperStatus). \n            This value is significant if there are competing resources \n            between VCs and the implementation support this feature. \n            If not supported or not relevant, the value of zero MUST \n            be used.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "cpwVcInboundMode": {
                        "type": "string",
                        "description": "This object is used to enable greater security for  \n            implementation that use per platform VC label space. In  \n            strict mode, packets coming from the PSN are accepted only  \n            from tunnels that are associated to the same VC via the  \n            inbound tunnel table in the case of MPLS, or as identified  \n            by the source IP address in case of L2TP or IP PSN. The  \n            entries in the inbound tunnel table are either explicitly  \n            configured or implicitly known by the maintenance protocol  \n            used for VC set-up. \n            \n            If such association is not known, not configured or not  \n            desired, loose mode should be configured, and the node  \n            should accept the packet based on the VC label only  \n            regardless of the outer tunnel used to carry the VC."
                      },
                      "cpwVcPeerAddrType": {
                        "type": "string",
                        "description": "Denotes the address type of the peer node maintenance \n            protocol (signaling) address if PW maintenance protocol is \n            used for the VC creation. It should be set to  \n            'unknown' if PE/PW maintenance protocol is not used,  \n            i.e. cpwVcOwner is set to 'manual'.",
                        "x-yang-type": "inet-address:InetAddressType"
                      },
                      "cpwVcPeerAddr": {
                        "type": "string",
                        "description": "This object contains the value of of the peer node address \n            of the PW/PE maintenance protocol entity. This object  \n            should contain a value of 0 if not relevant (manual  \n            configuration of the VC).",
                        "x-yang-type": "inet-address:InetAddress"
                      },
                      "cpwVcID": {
                        "type": "string",
                        "description": "Used in the outgoing VC ID field within the 'Virtual \n            Circuit FEC Element' when LDP signaling is used or PW ID  \n            AVP for L2TP.",
                        "x-yang-type": "cisco-ietf:CpwVcIDType"
                      },
                      "cpwVcLocalGroupID": {
                        "type": "string",
                        "description": "Used in the Group ID field sent to the peer PWES  \n            within the maintenance protocol used for VC setup,  \n            zero if not used.",
                        "x-yang-type": "cisco-ietf:CpwGroupID"
                      },
                      "cpwVcControlWord": {
                        "type": "boolean",
                        "description": "Define if the control word will be sent with each packet by  \n            the local node."
                      },
                      "cpwVcLocalIfMtu": {
                        "type": "integer",
                        "description": "If not equal zero, the optional IfMtu object in the  \n            maintenance protocol will be sent with this value,  \n            representing the locally supported MTU size over the  \n            interface (or the virtual interface) associated with the  \n            VC.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cpwVcLocalIfString": {
                        "type": "boolean",
                        "description": "Each VC is associated to an interface (or a virtual  \n            interface) in the ifTable of the node as part of the \n            service configuration. This object defines if the  \n            maintenance protocol will send the interface's name as \n            appears on the ifTable in the name object as part of the \n            maintenance protocol. If set to false, the optional element \n            will not be sent."
                      },
                      "cpwVcRemoteGroupID": {
                        "type": "string",
                        "description": "Obtained from the Group ID field as received via the  \n            maintenance protocol used for VC setup, zero if not used.  \n            Value of 0xFFFF shall be used if the object is yet to be  \n            defined by the VC maintenance protocol.",
                        "x-yang-type": "cisco-ietf:CpwGroupID"
                      },
                      "cpwVcRemoteControlWord": {
                        "type": "string",
                        "description": "If maintenance protocol is used for VC establishment, this  \n            parameter indicates the received status of the control word  \n            usage, i.e. if packets will be received with control word \n            or not. The value of 'notYetKnown' is used while the \n            maintenance protocol has not yet received the indication  \n            from the remote node. \n            In manual configuration of the VC this parameters indicate  \n            to the local node what is the expected encapsulation for \n            the received packets."
                      },
                      "cpwVcRemoteIfMtu": {
                        "type": "integer",
                        "description": "The remote interface MTU as (optionally) received from the \n            remote node via the maintenance protocol. Should be zero if \n            this parameter is not available or not used.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cpwVcRemoteIfString": {
                        "type": "string",
                        "description": "Indicate the interface description string as received by \n            the maintenance protocol, MUST be NULL string if not  \n            applicable or not known yet.",
                        "x-yang-type": "snmp-framework:SnmpAdminString"
                      },
                      "cpwVcOutboundVcLabel": {
                        "type": "integer",
                        "description": "The VC label used in the outbound direction (i.e. toward  \n            the PSN). It may be set up manually if owner is 'manual' or  \n            automatically otherwise. Examples: For MPLS PSN, it  \n            represents the 20 bits of VC tag, for L2TP it represent the \n            32 bits Session ID. \n            If the label is not yet known (signaling in process), the  \n            object should return a value of 0xFFFF.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cpwVcInboundVcLabel": {
                        "type": "integer",
                        "description": "The VC label used in the inbound direction (i.e. packets  \n            received from the PSN. It may be set up manually if owner \n            is 'manual' or automatically otherwise.  \n            Examples: For MPLS PSN, it represents the 20 bits of VC \n            tag, for L2TP it represent the 32 bits Session ID. \n            If the label is not yet known (signaling in process), the  \n            object should return a value of 0xFFFF.",
                        "minimum": 0,
                        "maximum": 4294967295
                      },
                      "cpwVcName": {
                        "type": "string",
                        "description": "The canonical name assigned to the VC.",
                        "x-yang-type": "snmp-framework:SnmpAdminString"
                      },
                      "cpwVcDescr": {
                        "type": "string",
                        "description": "A textual string containing information about the VC.  \n            If there is no description this object contains a zero \n            length string.",
                        "x-yang-type": "snmp-framework:SnmpAdminString"
                      },
                      "cpwVcCreateTime": {
                        "type": "string",
                        "description": "System time when this VC was created.",
                        "x-yang-type": "yang:timestamp"
                      },
                      "cpwVcUpTime": {
                        "type": "string",
                        "description": "Number of consecutive ticks this VC has been 'up' in \n            both directions together (i.e. 'up' is observed in  \n            cpwVcOperStatus.)",
                        "x-yang-type": "yang:timeticks"
                      },
                      "cpwVcAdminStatus": {
                        "type": "string",
                        "description": "The desired operational status of this VC."
                      },
                      "cpwVcOperStatus": {
                        "type": "string",
                        "description": "Indicates the actual combined operational status of this  \n            VC. It is 'up' if both cpwVcInboundOperStatus and  \n            cpwVcOutboundOperStatus are in 'up' state. For all other  \n            values, if the VCs in both directions are of the same \n            value it reflects that value, otherwise it is set to the \n            most severe status out of the two statuses. The order of  \n            severance from most severe to less severe is: unknown,  \n            notPresent, down, lowerLayerDown, dormant, testing, up. \n            The operator may consult the per direction OperStatus for \n            fault isolation per direction.",
                        "x-yang-type": "cisco-ietf:CpwOperStatus"
                      },
                      "cpwVcInboundOperStatus": {
                        "type": "string",
                        "description": "Indicates the actual operational status of this VC in the  \n            inbound direction. \n            \n            - down:           if PW signaling has not yet finished, or \n                              indications available at the service  \n                              level indicate that the VC is not  \n                              passing packets. \n            - testing:        if AdminStatus at the VC level is set to  \n                              test. \n            - dormant:        The VC is not available because of the \n                              required resources are occupied VC with  \n                              higher priority VCs . \n            - notPresent:     Some component is missing to accomplish  \n                              the set up of the VC. \n            - lowerLayerDown: The underlying PSN is not in OperStatus  \n                              'up'.",
                        "x-yang-type": "cisco-ietf:CpwOperStatus"
                      },
                      "cpwVcOutboundOperStatus": {
                        "type": "string",
                        "description": "Indicates the actual operational status of this VC in the  \n            outbound direction \n            - down:           if PW signaling has not yet finished, or \n                              indications available at the service  \n                              level indicate that the VC is not \n                              passing packets. \n            - testing:        if AdminStatus at the VC level is set to  \n                              test. \n            - dormant:        The VC is not available because of the \n                              required resources are occupied VC with  \n                              higher priority VCs . \n            - notPresent:     Some component is missing to accomplish  \n                              the set up of the VC. \n            - lowerLayerDown: The underlying PSN is not in OperStatus  \n                              'up'.",
                        "x-yang-type": "cisco-ietf:CpwOperStatus"
                      },
                      "cpwVcTimeElapsed": {
                        "type": "integer",
                        "description": "The number of seconds, including partial seconds, \n            that have elapsed since the beginning of the current \n            measurement period. If, for some reason, such as an \n            adjustment in the system's time-of-day clock, the \n            current interval exceeds the maximum value, the \n            agent will return the maximum value.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "cpwVcValidIntervals": {
                        "type": "integer",
                        "description": "The number of previous 15-minute intervals \n            for which data was collected.  \n            An agent with PW capability must be capable of supporting at  \n            least n intervals. The minimum value of n is 4, The default  \n            of n is 32 and the maximum value of n is 96. \n            The value will be <n> unless the measurement was (re-)  \n            started within the last (<n>*15) minutes, in which case the  \n            value will be the number of complete 15 minute intervals for  \n            which the agent has at least some data. In certain cases  \n            (e.g., in the case where the agent is a proxy) it is  \n            possible that some intervals are unavailable.  In this case,  \n            this interval is the maximum interval number for which data  \n            is available.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "cpwVcRowStatus": {
                        "type": "string",
                        "description": "For creating, modifying, and deleting this row.",
                        "x-yang-type": "snmpv2-tc:RowStatus"
                      },
                      "cpwVcStorageType": {
                        "type": "string",
                        "description": "This variable indicates the storage type for this \n            object.",
                        "x-yang-type": "snmpv2-tc:StorageType"
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-IETF-PW-MIB:cpwVcEntry": [
                    {
                      "cpwVcIndex": "example-string",
                      "cpwVcType": "ethernetCsmacd(6)",
                      "cpwVcOwner": "example-string",
                      "cpwVcPsnType": "ethernetCsmacd(6)",
                      "cpwVcSetUpPriority": -2147483648,
                      "cpwVcHoldingPriority": -2147483648,
                      "cpwVcInboundMode": "example-string",
                      "cpwVcPeerAddrType": "192.168.1.1",
                      "cpwVcPeerAddr": "192.168.1.1",
                      "cpwVcID": "example-string",
                      "cpwVcLocalGroupID": "example-string",
                      "cpwVcControlWord": true,
                      "cpwVcLocalIfMtu": 1500,
                      "cpwVcLocalIfString": true,
                      "cpwVcRemoteGroupID": "example-string",
                      "cpwVcRemoteControlWord": "example-string",
                      "cpwVcRemoteIfMtu": 1500,
                      "cpwVcRemoteIfString": "example-string",
                      "cpwVcOutboundVcLabel": 0,
                      "cpwVcInboundVcLabel": 0,
                      "cpwVcName": "interface-1",
                      "cpwVcDescr": "GigabitEthernet1/0/1",
                      "cpwVcCreateTime": "example-string",
                      "cpwVcUpTime": "example-string",
                      "cpwVcAdminStatus": "up(1)",
                      "cpwVcOperStatus": "up(1)",
                      "cpwVcInboundOperStatus": "up(1)",
                      "cpwVcOutboundOperStatus": "up(1)",
                      "cpwVcTimeElapsed": -2147483648,
                      "cpwVcValidIntervals": -2147483648,
                      "cpwVcRowStatus": "up(1)",
                      "cpwVcStorageType": "ethernetCsmacd(6)"
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cpwVcEntry-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": "/cpwVcEntry",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-IETF-PW-MIB:cpwVcEntry={cpwVcIndex}": {
      "get": {
        "summary": "Get cpwVcEntry entry",
        "description": "Retrieve specific cpwVcEntry entry by key from MIB",
        "tags": [
          "CISCO-IETF-PW-MIB"
        ],
        "parameters": [
          {
            "name": "cpwVcIndex",
            "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": {
                    "cpwVcIndex": {
                      "type": "string",
                      "description": "Index for the conceptual row identifying a VC within  \n            this PW Emulation VC table.",
                      "x-yang-type": "cisco-ietf:CpwVcIndexType"
                    },
                    "cpwVcType": {
                      "type": "string",
                      "description": "This value indicate the service to be carried over \n            this VC.  \n            Note: the exact set of VC types is yet to be worked  \n            out by the WG.",
                      "x-yang-type": "cisco-ietf:CpwVcType"
                    },
                    "cpwVcOwner": {
                      "type": "string",
                      "description": "Set by the operator to indicate the protocol responsible  \n            for establishing this VC. Value 'manual' is used in all \n            cases where no maintenance protocol (PW signaling) is used  \n            to set-up the VC, i.e. require configuration of entries in \n            the VC tables including VC labels, etc. The value  \n            'maintenanceProtocol' is used in case of standard \n            signaling of the VC for the specific PSN, for example LDP \n            for MPLS PSN as specified in <draft- draft-martini- \n            l2circuit-trans-mpls> or L2TP control protocol.  \n            Value 'other' is used for other types of signaling."
                    },
                    "cpwVcPsnType": {
                      "type": "string",
                      "description": "Set by the operator to indicate the PSN type on which this  \n            VC will be carried. Based on this object, the relevant PSN  \n            table entries are created in the in the PSN specific MIB  \n            modules. For example, if mpls(1) is defined, the agent  \n            create an entry in cpwVcMplsTable, which further define the  \n            MPLS PSN configuration. \n            Note: the exact set of PSN types is yet to be worked  \n            out by the WG."
                    },
                    "cpwVcSetUpPriority": {
                      "type": "integer",
                      "description": "This object define the relative set-up priority of the VC   \n            in a lowest-to-highest fashion, where 0 is the highest  \n            priority. VCs with the same priority are treated with \n            equal priority. Dropped VC will be set 'dormant' (as \n            indicated in cpwVcOperStatus). \n            This value is significant if there are competing resources \n            between VCs and the implementation support this feature. \n            If not supported or not relevant, the value of zero MUST \n            be used.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "cpwVcHoldingPriority": {
                      "type": "integer",
                      "description": "This object define the relative holding priority of the VC   \n            in a lowest-to-highest fashion, where 0 is the highest  \n            priority. VCs with the same priority are treated with \n            equal priority. Dropped VC will be set 'dormant' (as \n            indicated in cpwVcOperStatus). \n            This value is significant if there are competing resources \n            between VCs and the implementation support this feature. \n            If not supported or not relevant, the value of zero MUST \n            be used.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "cpwVcInboundMode": {
                      "type": "string",
                      "description": "This object is used to enable greater security for  \n            implementation that use per platform VC label space. In  \n            strict mode, packets coming from the PSN are accepted only  \n            from tunnels that are associated to the same VC via the  \n            inbound tunnel table in the case of MPLS, or as identified  \n            by the source IP address in case of L2TP or IP PSN. The  \n            entries in the inbound tunnel table are either explicitly  \n            configured or implicitly known by the maintenance protocol  \n            used for VC set-up. \n            \n            If such association is not known, not configured or not  \n            desired, loose mode should be configured, and the node  \n            should accept the packet based on the VC label only  \n            regardless of the outer tunnel used to carry the VC."
                    },
                    "cpwVcPeerAddrType": {
                      "type": "string",
                      "description": "Denotes the address type of the peer node maintenance \n            protocol (signaling) address if PW maintenance protocol is \n            used for the VC creation. It should be set to  \n            'unknown' if PE/PW maintenance protocol is not used,  \n            i.e. cpwVcOwner is set to 'manual'.",
                      "x-yang-type": "inet-address:InetAddressType"
                    },
                    "cpwVcPeerAddr": {
                      "type": "string",
                      "description": "This object contains the value of of the peer node address \n            of the PW/PE maintenance protocol entity. This object  \n            should contain a value of 0 if not relevant (manual  \n            configuration of the VC).",
                      "x-yang-type": "inet-address:InetAddress"
                    },
                    "cpwVcID": {
                      "type": "string",
                      "description": "Used in the outgoing VC ID field within the 'Virtual \n            Circuit FEC Element' when LDP signaling is used or PW ID  \n            AVP for L2TP.",
                      "x-yang-type": "cisco-ietf:CpwVcIDType"
                    },
                    "cpwVcLocalGroupID": {
                      "type": "string",
                      "description": "Used in the Group ID field sent to the peer PWES  \n            within the maintenance protocol used for VC setup,  \n            zero if not used.",
                      "x-yang-type": "cisco-ietf:CpwGroupID"
                    },
                    "cpwVcControlWord": {
                      "type": "boolean",
                      "description": "Define if the control word will be sent with each packet by  \n            the local node."
                    },
                    "cpwVcLocalIfMtu": {
                      "type": "integer",
                      "description": "If not equal zero, the optional IfMtu object in the  \n            maintenance protocol will be sent with this value,  \n            representing the locally supported MTU size over the  \n            interface (or the virtual interface) associated with the  \n            VC.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cpwVcLocalIfString": {
                      "type": "boolean",
                      "description": "Each VC is associated to an interface (or a virtual  \n            interface) in the ifTable of the node as part of the \n            service configuration. This object defines if the  \n            maintenance protocol will send the interface's name as \n            appears on the ifTable in the name object as part of the \n            maintenance protocol. If set to false, the optional element \n            will not be sent."
                    },
                    "cpwVcRemoteGroupID": {
                      "type": "string",
                      "description": "Obtained from the Group ID field as received via the  \n            maintenance protocol used for VC setup, zero if not used.  \n            Value of 0xFFFF shall be used if the object is yet to be  \n            defined by the VC maintenance protocol.",
                      "x-yang-type": "cisco-ietf:CpwGroupID"
                    },
                    "cpwVcRemoteControlWord": {
                      "type": "string",
                      "description": "If maintenance protocol is used for VC establishment, this  \n            parameter indicates the received status of the control word  \n            usage, i.e. if packets will be received with control word \n            or not. The value of 'notYetKnown' is used while the \n            maintenance protocol has not yet received the indication  \n            from the remote node. \n            In manual configuration of the VC this parameters indicate  \n            to the local node what is the expected encapsulation for \n            the received packets."
                    },
                    "cpwVcRemoteIfMtu": {
                      "type": "integer",
                      "description": "The remote interface MTU as (optionally) received from the \n            remote node via the maintenance protocol. Should be zero if \n            this parameter is not available or not used.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cpwVcRemoteIfString": {
                      "type": "string",
                      "description": "Indicate the interface description string as received by \n            the maintenance protocol, MUST be NULL string if not  \n            applicable or not known yet.",
                      "x-yang-type": "snmp-framework:SnmpAdminString"
                    },
                    "cpwVcOutboundVcLabel": {
                      "type": "integer",
                      "description": "The VC label used in the outbound direction (i.e. toward  \n            the PSN). It may be set up manually if owner is 'manual' or  \n            automatically otherwise. Examples: For MPLS PSN, it  \n            represents the 20 bits of VC tag, for L2TP it represent the \n            32 bits Session ID. \n            If the label is not yet known (signaling in process), the  \n            object should return a value of 0xFFFF.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cpwVcInboundVcLabel": {
                      "type": "integer",
                      "description": "The VC label used in the inbound direction (i.e. packets  \n            received from the PSN. It may be set up manually if owner \n            is 'manual' or automatically otherwise.  \n            Examples: For MPLS PSN, it represents the 20 bits of VC \n            tag, for L2TP it represent the 32 bits Session ID. \n            If the label is not yet known (signaling in process), the  \n            object should return a value of 0xFFFF.",
                      "minimum": 0,
                      "maximum": 4294967295
                    },
                    "cpwVcName": {
                      "type": "string",
                      "description": "The canonical name assigned to the VC.",
                      "x-yang-type": "snmp-framework:SnmpAdminString"
                    },
                    "cpwVcDescr": {
                      "type": "string",
                      "description": "A textual string containing information about the VC.  \n            If there is no description this object contains a zero \n            length string.",
                      "x-yang-type": "snmp-framework:SnmpAdminString"
                    },
                    "cpwVcCreateTime": {
                      "type": "string",
                      "description": "System time when this VC was created.",
                      "x-yang-type": "yang:timestamp"
                    },
                    "cpwVcUpTime": {
                      "type": "string",
                      "description": "Number of consecutive ticks this VC has been 'up' in \n            both directions together (i.e. 'up' is observed in  \n            cpwVcOperStatus.)",
                      "x-yang-type": "yang:timeticks"
                    },
                    "cpwVcAdminStatus": {
                      "type": "string",
                      "description": "The desired operational status of this VC."
                    },
                    "cpwVcOperStatus": {
                      "type": "string",
                      "description": "Indicates the actual combined operational status of this  \n            VC. It is 'up' if both cpwVcInboundOperStatus and  \n            cpwVcOutboundOperStatus are in 'up' state. For all other  \n            values, if the VCs in both directions are of the same \n            value it reflects that value, otherwise it is set to the \n            most severe status out of the two statuses. The order of  \n            severance from most severe to less severe is: unknown,  \n            notPresent, down, lowerLayerDown, dormant, testing, up. \n            The operator may consult the per direction OperStatus for \n            fault isolation per direction.",
                      "x-yang-type": "cisco-ietf:CpwOperStatus"
                    },
                    "cpwVcInboundOperStatus": {
                      "type": "string",
                      "description": "Indicates the actual operational status of this VC in the  \n            inbound direction. \n            \n            - down:           if PW signaling has not yet finished, or \n                              indications available at the service  \n                              level indicate that the VC is not  \n                              passing packets. \n            - testing:        if AdminStatus at the VC level is set to  \n                              test. \n            - dormant:        The VC is not available because of the \n                              required resources are occupied VC with  \n                              higher priority VCs . \n            - notPresent:     Some component is missing to accomplish  \n                              the set up of the VC. \n            - lowerLayerDown: The underlying PSN is not in OperStatus  \n                              'up'.",
                      "x-yang-type": "cisco-ietf:CpwOperStatus"
                    },
                    "cpwVcOutboundOperStatus": {
                      "type": "string",
                      "description": "Indicates the actual operational status of this VC in the  \n            outbound direction \n            - down:           if PW signaling has not yet finished, or \n                              indications available at the service  \n                              level indicate that the VC is not \n                              passing packets. \n            - testing:        if AdminStatus at the VC level is set to  \n                              test. \n            - dormant:        The VC is not available because of the \n                              required resources are occupied VC with  \n                              higher priority VCs . \n            - notPresent:     Some component is missing to accomplish  \n                              the set up of the VC. \n            - lowerLayerDown: The underlying PSN is not in OperStatus  \n                              'up'.",
                      "x-yang-type": "cisco-ietf:CpwOperStatus"
                    },
                    "cpwVcTimeElapsed": {
                      "type": "integer",
                      "description": "The number of seconds, including partial seconds, \n            that have elapsed since the beginning of the current \n            measurement period. If, for some reason, such as an \n            adjustment in the system's time-of-day clock, the \n            current interval exceeds the maximum value, the \n            agent will return the maximum value.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "cpwVcValidIntervals": {
                      "type": "integer",
                      "description": "The number of previous 15-minute intervals \n            for which data was collected.  \n            An agent with PW capability must be capable of supporting at  \n            least n intervals. The minimum value of n is 4, The default  \n            of n is 32 and the maximum value of n is 96. \n            The value will be <n> unless the measurement was (re-)  \n            started within the last (<n>*15) minutes, in which case the  \n            value will be the number of complete 15 minute intervals for  \n            which the agent has at least some data. In certain cases  \n            (e.g., in the case where the agent is a proxy) it is  \n            possible that some intervals are unavailable.  In this case,  \n            this interval is the maximum interval number for which data  \n            is available.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "cpwVcRowStatus": {
                      "type": "string",
                      "description": "For creating, modifying, and deleting this row.",
                      "x-yang-type": "snmpv2-tc:RowStatus"
                    },
                    "cpwVcStorageType": {
                      "type": "string",
                      "description": "This variable indicates the storage type for this \n            object.",
                      "x-yang-type": "snmpv2-tc:StorageType"
                    }
                  }
                },
                "example": {
                  "CISCO-IETF-PW-MIB:cpwVcEntry": {
                    "cpwVcIndex": "example-string",
                    "cpwVcType": "ethernetCsmacd(6)",
                    "cpwVcOwner": "example-string",
                    "cpwVcPsnType": "ethernetCsmacd(6)",
                    "cpwVcSetUpPriority": -2147483648,
                    "cpwVcHoldingPriority": -2147483648,
                    "cpwVcInboundMode": "example-string",
                    "cpwVcPeerAddrType": "192.168.1.1",
                    "cpwVcPeerAddr": "192.168.1.1",
                    "cpwVcID": "example-string",
                    "cpwVcLocalGroupID": "example-string",
                    "cpwVcControlWord": true,
                    "cpwVcLocalIfMtu": 1500,
                    "cpwVcLocalIfString": true,
                    "cpwVcRemoteGroupID": "example-string",
                    "cpwVcRemoteControlWord": "example-string",
                    "cpwVcRemoteIfMtu": 1500,
                    "cpwVcRemoteIfString": "example-string",
                    "cpwVcOutboundVcLabel": 0,
                    "cpwVcInboundVcLabel": 0,
                    "cpwVcName": "interface-1",
                    "cpwVcDescr": "GigabitEthernet1/0/1",
                    "cpwVcCreateTime": "example-string",
                    "cpwVcUpTime": "example-string",
                    "cpwVcAdminStatus": "up(1)",
                    "cpwVcOperStatus": "up(1)",
                    "cpwVcInboundOperStatus": "up(1)",
                    "cpwVcOutboundOperStatus": "up(1)",
                    "cpwVcTimeElapsed": -2147483648,
                    "cpwVcValidIntervals": -2147483648,
                    "cpwVcRowStatus": "up(1)",
                    "cpwVcStorageType": "ethernetCsmacd(6)"
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cpwVcEntry-4"
      },
      "x-yang-path": "/cpwVcEntry={cpwVcIndex}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "cpwVcIndex"
      ]
    },
    "/data/CISCO-IETF-PW-MIB:cpwVcPerfCurrentEntry": {
      "get": {
        "summary": "Get cpwVcPerfCurrentEntry list",
        "description": "Retrieve list of cpwVcPerfCurrentEntry entries from MIB",
        "tags": [
          "CISCO-IETF-PW-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "An entry in this table is created by the agent for \n          every VC.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "cpwVcIndex": {
                        "type": "string",
                        "description": "cpwVcIndex",
                        "x-yang-type": "leafref"
                      },
                      "cpwVcPerfCurrentInHCPackets": {
                        "type": "integer",
                        "description": "High capacity counter for number of packets received \n            by the VC (from the PSN) in the current 15 minute \n            interval.",
                        "minimum": 0
                      },
                      "cpwVcPerfCurrentInHCBytes": {
                        "type": "integer",
                        "description": "High capacity counter for number of bytes received \n            by the VC (from the PSN) in the current 15 minute \n            interval.",
                        "minimum": 0
                      },
                      "cpwVcPerfCurrentOutHCPackets": {
                        "type": "integer",
                        "description": "High capacity counter for number of packets forwarded \n            by the VC (to the PSN) in the current 15 minute interval.",
                        "minimum": 0
                      },
                      "cpwVcPerfCurrentOutHCBytes": {
                        "type": "integer",
                        "description": "High capacity counter for number of bytes forwarded \n            by the VC (to the PSN) in the current 15 minute interval.",
                        "minimum": 0
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-IETF-PW-MIB:cpwVcPerfCurrentEntry": [
                    {
                      "cpwVcIndex": "example-string",
                      "cpwVcPerfCurrentInHCPackets": 1234567890,
                      "cpwVcPerfCurrentInHCBytes": 0,
                      "cpwVcPerfCurrentOutHCPackets": 1234567890,
                      "cpwVcPerfCurrentOutHCBytes": 0
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cpwVcPerfCurrentEntry-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": "/cpwVcPerfCurrentEntry",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-IETF-PW-MIB:cpwVcPerfCurrentEntry={cpwVcIndex}": {
      "get": {
        "summary": "Get cpwVcPerfCurrentEntry entry",
        "description": "Retrieve specific cpwVcPerfCurrentEntry entry by key from MIB",
        "tags": [
          "CISCO-IETF-PW-MIB"
        ],
        "parameters": [
          {
            "name": "cpwVcIndex",
            "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": {
                    "cpwVcIndex": {
                      "type": "string",
                      "description": "cpwVcIndex",
                      "x-yang-type": "leafref"
                    },
                    "cpwVcPerfCurrentInHCPackets": {
                      "type": "integer",
                      "description": "High capacity counter for number of packets received \n            by the VC (from the PSN) in the current 15 minute \n            interval.",
                      "minimum": 0
                    },
                    "cpwVcPerfCurrentInHCBytes": {
                      "type": "integer",
                      "description": "High capacity counter for number of bytes received \n            by the VC (from the PSN) in the current 15 minute \n            interval.",
                      "minimum": 0
                    },
                    "cpwVcPerfCurrentOutHCPackets": {
                      "type": "integer",
                      "description": "High capacity counter for number of packets forwarded \n            by the VC (to the PSN) in the current 15 minute interval.",
                      "minimum": 0
                    },
                    "cpwVcPerfCurrentOutHCBytes": {
                      "type": "integer",
                      "description": "High capacity counter for number of bytes forwarded \n            by the VC (to the PSN) in the current 15 minute interval.",
                      "minimum": 0
                    }
                  }
                },
                "example": {
                  "CISCO-IETF-PW-MIB:cpwVcPerfCurrentEntry": {
                    "cpwVcIndex": "example-string",
                    "cpwVcPerfCurrentInHCPackets": 1234567890,
                    "cpwVcPerfCurrentInHCBytes": 0,
                    "cpwVcPerfCurrentOutHCPackets": 1234567890,
                    "cpwVcPerfCurrentOutHCBytes": 0
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cpwVcPerfCurrentEntry-4"
      },
      "x-yang-path": "/cpwVcPerfCurrentEntry={cpwVcIndex}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "cpwVcIndex"
      ]
    },
    "/data/CISCO-IETF-PW-MIB:cpwVcPerfIntervalEntry": {
      "get": {
        "summary": "Get cpwVcPerfIntervalEntry list",
        "description": "Retrieve list of cpwVcPerfIntervalEntry entries from MIB",
        "tags": [
          "CISCO-IETF-PW-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "An entry in this table is created agent for every VC.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "cpwVcIndex": {
                        "type": "string",
                        "description": "cpwVcIndex",
                        "x-yang-type": "leafref"
                      },
                      "cpwVcPerfIntervalNumber": {
                        "type": "integer",
                        "description": "A number N, between 1 and 96, which identifies the \n            interval for which the set of statistics is available. \n            The interval identified by 1 is the most recently \n            completed 15 minute interval, and the interval identified \n            by N is the interval immediately preceding the one \n            identified by N-1. \n            The minimum range of N is 1 through 4. The default range \n            is 1 to 32. The maximum range of N is 1 through 96.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "cpwVcPerfIntervalValidData": {
                        "type": "boolean",
                        "description": "This variable indicates if the data for this interval \n            is valid."
                      },
                      "cpwVcPerfIntervalTimeElapsed": {
                        "type": "integer",
                        "description": "The duration of a particular interval in seconds. \n            Adjustments in the system's time-of-day clock, may \n            cause the interval to be greater or less than the \n            normal value. Therefore this actual interval value \n            is provided.",
                        "minimum": -2147483648,
                        "maximum": 2147483647
                      },
                      "cpwVcPerfIntervalInHCPackets": {
                        "type": "integer",
                        "description": "High capacity counter for number of packets received by \n            the VC (from the PSN) in a particular 15-minute interval.",
                        "minimum": 0
                      },
                      "cpwVcPerfIntervalInHCBytes": {
                        "type": "integer",
                        "description": "High capacity counter for number of bytes received by the  \n            VC (from the PSN) in a particular 15-minute interval.",
                        "minimum": 0
                      },
                      "cpwVcPerfIntervalOutHCPackets": {
                        "type": "integer",
                        "description": "High capacity counter for number of packets forwarded by  \n            the VC (to the PSN) in a particular 15-minute interval.",
                        "minimum": 0
                      },
                      "cpwVcPerfIntervalOutHCBytes": {
                        "type": "integer",
                        "description": "High capacity counter for number of bytes forwarded by the  \n            VC (to the PSN) in a particular 15-minute interval.",
                        "minimum": 0
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-IETF-PW-MIB:cpwVcPerfIntervalEntry": [
                    {
                      "cpwVcIndex": "example-string",
                      "cpwVcPerfIntervalNumber": -2147483648,
                      "cpwVcPerfIntervalValidData": true,
                      "cpwVcPerfIntervalTimeElapsed": -2147483648,
                      "cpwVcPerfIntervalInHCPackets": 1234567890,
                      "cpwVcPerfIntervalInHCBytes": 0,
                      "cpwVcPerfIntervalOutHCPackets": 1234567890,
                      "cpwVcPerfIntervalOutHCBytes": 0
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cpwVcPerfIntervalEntry-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": "/cpwVcPerfIntervalEntry",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-IETF-PW-MIB:cpwVcPerfTotalEntry": {
      "get": {
        "summary": "Get cpwVcPerfTotalEntry list",
        "description": "Retrieve list of cpwVcPerfTotalEntry entries from MIB",
        "tags": [
          "CISCO-IETF-PW-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "An entry in this table is created agent for every VC.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "cpwVcIndex": {
                        "type": "string",
                        "description": "cpwVcIndex",
                        "x-yang-type": "leafref"
                      },
                      "cpwVcPerfTotalInHCPackets": {
                        "type": "integer",
                        "description": "High capacity counter for number of packets received by the  \n            VC (from the PSN).",
                        "minimum": 0
                      },
                      "cpwVcPerfTotalInHCBytes": {
                        "type": "integer",
                        "description": "High capacity counter for number of bytes received by the  \n            VC (from the PSN).",
                        "minimum": 0
                      },
                      "cpwVcPerfTotalOutHCPackets": {
                        "type": "integer",
                        "description": "High capacity counter for number of packets forwarded by  \n            the VC (to the PSN).",
                        "minimum": 0
                      },
                      "cpwVcPerfTotalOutHCBytes": {
                        "type": "integer",
                        "description": "High capacity counter for number of bytes forwarded by the  \n            VC (to the PSN).",
                        "minimum": 0
                      },
                      "cpwVcPerfTotalDiscontinuityTime": {
                        "type": "string",
                        "description": "The value of sysUpTime on the most recent occasion at \n            which any one or more of this row Counter32 or \n            Counter64 suffered a discontinuity. If no such \n            discontinuities have occurred since the last re- \n            initialization of the local management subsystem, then \n            this object contains a zero value.",
                        "x-yang-type": "yang:timestamp"
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-IETF-PW-MIB:cpwVcPerfTotalEntry": [
                    {
                      "cpwVcIndex": "example-string",
                      "cpwVcPerfTotalInHCPackets": 1234567890,
                      "cpwVcPerfTotalInHCBytes": 0,
                      "cpwVcPerfTotalOutHCPackets": 1234567890,
                      "cpwVcPerfTotalOutHCBytes": 0,
                      "cpwVcPerfTotalDiscontinuityTime": "example-string"
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cpwVcPerfTotalEntry-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": "/cpwVcPerfTotalEntry",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-IETF-PW-MIB:cpwVcPerfTotalEntry={cpwVcIndex}": {
      "get": {
        "summary": "Get cpwVcPerfTotalEntry entry",
        "description": "Retrieve specific cpwVcPerfTotalEntry entry by key from MIB",
        "tags": [
          "CISCO-IETF-PW-MIB"
        ],
        "parameters": [
          {
            "name": "cpwVcIndex",
            "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": {
                    "cpwVcIndex": {
                      "type": "string",
                      "description": "cpwVcIndex",
                      "x-yang-type": "leafref"
                    },
                    "cpwVcPerfTotalInHCPackets": {
                      "type": "integer",
                      "description": "High capacity counter for number of packets received by the  \n            VC (from the PSN).",
                      "minimum": 0
                    },
                    "cpwVcPerfTotalInHCBytes": {
                      "type": "integer",
                      "description": "High capacity counter for number of bytes received by the  \n            VC (from the PSN).",
                      "minimum": 0
                    },
                    "cpwVcPerfTotalOutHCPackets": {
                      "type": "integer",
                      "description": "High capacity counter for number of packets forwarded by  \n            the VC (to the PSN).",
                      "minimum": 0
                    },
                    "cpwVcPerfTotalOutHCBytes": {
                      "type": "integer",
                      "description": "High capacity counter for number of bytes forwarded by the  \n            VC (to the PSN).",
                      "minimum": 0
                    },
                    "cpwVcPerfTotalDiscontinuityTime": {
                      "type": "string",
                      "description": "The value of sysUpTime on the most recent occasion at \n            which any one or more of this row Counter32 or \n            Counter64 suffered a discontinuity. If no such \n            discontinuities have occurred since the last re- \n            initialization of the local management subsystem, then \n            this object contains a zero value.",
                      "x-yang-type": "yang:timestamp"
                    }
                  }
                },
                "example": {
                  "CISCO-IETF-PW-MIB:cpwVcPerfTotalEntry": {
                    "cpwVcIndex": "example-string",
                    "cpwVcPerfTotalInHCPackets": 1234567890,
                    "cpwVcPerfTotalInHCBytes": 0,
                    "cpwVcPerfTotalOutHCPackets": 1234567890,
                    "cpwVcPerfTotalOutHCBytes": 0,
                    "cpwVcPerfTotalDiscontinuityTime": "example-string"
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cpwVcPerfTotalEntry-4"
      },
      "x-yang-path": "/cpwVcPerfTotalEntry={cpwVcIndex}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "cpwVcIndex"
      ]
    },
    "/data/CISCO-IETF-PW-MIB:cpwVcIdMappingEntry": {
      "get": {
        "summary": "Get cpwVcIdMappingEntry list",
        "description": "Retrieve list of cpwVcIdMappingEntry entries from MIB",
        "tags": [
          "CISCO-IETF-PW-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "An entry in this table is created by the agent for every  \n          VC configured by the cpwVcTable.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "cpwVcIdMappingVcType": {
                        "type": "string",
                        "description": "The VC type (indicate the service) of this VC.",
                        "x-yang-type": "cisco-ietf:CpwVcType"
                      },
                      "cpwVcIdMappingVcID": {
                        "type": "string",
                        "description": "The VC ID of this VC. Zero if the VC is configured  \n            manually.",
                        "x-yang-type": "cisco-ietf:CpwVcIDType"
                      },
                      "cpwVcIdMappingPeerAddrType": {
                        "type": "string",
                        "description": "IP address type of the peer node.",
                        "x-yang-type": "inet-address:InetAddressType"
                      },
                      "cpwVcIdMappingPeerAddr": {
                        "type": "string",
                        "description": "IP address type of the peer node.",
                        "x-yang-type": "inet-address:InetAddress"
                      },
                      "cpwVcIdMappingVcIndex": {
                        "type": "string",
                        "description": "The value that represent the VC in the cpwVcTable.",
                        "x-yang-type": "cisco-ietf:CpwVcIndexType"
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-IETF-PW-MIB:cpwVcIdMappingEntry": [
                    {
                      "cpwVcIdMappingVcType": "ethernetCsmacd(6)",
                      "cpwVcIdMappingVcID": "example-string",
                      "cpwVcIdMappingPeerAddrType": "192.168.1.1",
                      "cpwVcIdMappingPeerAddr": "192.168.1.1",
                      "cpwVcIdMappingVcIndex": "example-string"
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cpwVcIdMappingEntry-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": "/cpwVcIdMappingEntry",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-IETF-PW-MIB:cpwVcPeerMappingEntry": {
      "get": {
        "summary": "Get cpwVcPeerMappingEntry list",
        "description": "Retrieve list of cpwVcPeerMappingEntry entries from MIB",
        "tags": [
          "CISCO-IETF-PW-MIB"
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "type": "array",
                  "description": "An entry in this table is created by the agent for every  \n          VC configured in cpwVcTable.",
                  "items": {
                    "type": "object",
                    "properties": {
                      "cpwVcPeerMappingPeerAddrType": {
                        "type": "string",
                        "description": "IP address type of the peer node.",
                        "x-yang-type": "inet-address:InetAddressType"
                      },
                      "cpwVcPeerMappingPeerAddr": {
                        "type": "string",
                        "description": "IP address type of the peer node.",
                        "x-yang-type": "inet-address:InetAddress"
                      },
                      "cpwVcPeerMappingVcType": {
                        "type": "string",
                        "description": "The VC type (indicate the service) of this VC.",
                        "x-yang-type": "cisco-ietf:CpwVcType"
                      },
                      "cpwVcPeerMappingVcID": {
                        "type": "string",
                        "description": "The VC ID of this VC. Zero if the VC is configured  \n            manually.",
                        "x-yang-type": "cisco-ietf:CpwVcIDType"
                      },
                      "cpwVcPeerMappingVcIndex": {
                        "type": "string",
                        "description": "The value that represent the VC in the cpwVcTable.",
                        "x-yang-type": "cisco-ietf:CpwVcIndexType"
                      }
                    }
                  }
                },
                "example": {
                  "CISCO-IETF-PW-MIB:cpwVcPeerMappingEntry": [
                    {
                      "cpwVcPeerMappingPeerAddrType": "192.168.1.1",
                      "cpwVcPeerMappingPeerAddr": "192.168.1.1",
                      "cpwVcPeerMappingVcType": "ethernetCsmacd(6)",
                      "cpwVcPeerMappingVcID": "example-string",
                      "cpwVcPeerMappingVcIndex": "example-string"
                    }
                  ]
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cpwVcPeerMappingEntry-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": "/cpwVcPeerMappingEntry",
      "x-restconf-kind": "container"
    },
    "/data/CISCO-IETF-PW-MIB:cpwVcPerfIntervalTable/cpwVcPerfIntervalEntry={cpwVcIndex},{cpwVcPerfIntervalNumber}": {
      "get": {
        "summary": "Get cpwVcPerfIntervalEntry entry",
        "description": "Retrieve specific cpwVcPerfIntervalEntry entry by key from MIB",
        "tags": [
          "CISCO-IETF-PW-MIB"
        ],
        "parameters": [
          {
            "name": "cpwVcIndex",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "cpwVcPerfIntervalNumber",
            "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": {
                    "cpwVcIndex": {
                      "type": "string",
                      "description": "cpwVcIndex",
                      "x-yang-type": "leafref"
                    },
                    "cpwVcPerfIntervalNumber": {
                      "type": "integer",
                      "description": "A number N, between 1 and 96, which identifies the \n            interval for which the set of statistics is available. \n            The interval identified by 1 is the most recently \n            completed 15 minute interval, and the interval identified \n            by N is the interval immediately preceding the one \n            identified by N-1. \n            The minimum range of N is 1 through 4. The default range \n            is 1 to 32. The maximum range of N is 1 through 96.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "cpwVcPerfIntervalValidData": {
                      "type": "boolean",
                      "description": "This variable indicates if the data for this interval \n            is valid."
                    },
                    "cpwVcPerfIntervalTimeElapsed": {
                      "type": "integer",
                      "description": "The duration of a particular interval in seconds. \n            Adjustments in the system's time-of-day clock, may \n            cause the interval to be greater or less than the \n            normal value. Therefore this actual interval value \n            is provided.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "cpwVcPerfIntervalInHCPackets": {
                      "type": "integer",
                      "description": "High capacity counter for number of packets received by \n            the VC (from the PSN) in a particular 15-minute interval.",
                      "minimum": 0
                    },
                    "cpwVcPerfIntervalInHCBytes": {
                      "type": "integer",
                      "description": "High capacity counter for number of bytes received by the  \n            VC (from the PSN) in a particular 15-minute interval.",
                      "minimum": 0
                    },
                    "cpwVcPerfIntervalOutHCPackets": {
                      "type": "integer",
                      "description": "High capacity counter for number of packets forwarded by  \n            the VC (to the PSN) in a particular 15-minute interval.",
                      "minimum": 0
                    },
                    "cpwVcPerfIntervalOutHCBytes": {
                      "type": "integer",
                      "description": "High capacity counter for number of bytes forwarded by the  \n            VC (to the PSN) in a particular 15-minute interval.",
                      "minimum": 0
                    }
                  }
                },
                "example": {
                  "CISCO-IETF-PW-MIB:cpwVcPerfIntervalEntry": {
                    "cpwVcIndex": "example-string",
                    "cpwVcPerfIntervalNumber": -2147483648,
                    "cpwVcPerfIntervalValidData": true,
                    "cpwVcPerfIntervalTimeElapsed": -2147483648,
                    "cpwVcPerfIntervalInHCPackets": 1234567890,
                    "cpwVcPerfIntervalInHCBytes": 0,
                    "cpwVcPerfIntervalOutHCPackets": 1234567890,
                    "cpwVcPerfIntervalOutHCBytes": 0
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cpwVcPerfIntervalEntry-2"
      },
      "x-yang-path": "/cpwVcPerfIntervalTable/cpwVcPerfIntervalEntry={cpwVcIndex cpwVcPerfIntervalNumber}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "cpwVcIndex cpwVcPerfIntervalNumber"
      ]
    },
    "/data/CISCO-IETF-PW-MIB:cpwVcIdMappingTable/cpwVcIdMappingEntry={cpwVcIdMappingVcType},{cpwVcIdMappingVcID},{cpwVcIdMappingPeerAddrType},{cpwVcIdMappingPeerAddr},{cpwVcIdMappingVcIndex}": {
      "get": {
        "summary": "Get cpwVcIdMappingEntry entry",
        "description": "Retrieve specific cpwVcIdMappingEntry entry by key from MIB",
        "tags": [
          "CISCO-IETF-PW-MIB"
        ],
        "parameters": [
          {
            "name": "cpwVcIdMappingVcType",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "cpwVcIdMappingVcID",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "cpwVcIdMappingPeerAddrType",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "cpwVcIdMappingPeerAddr",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "cpwVcIdMappingVcIndex",
            "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": {
                    "cpwVcIdMappingVcType": {
                      "type": "string",
                      "description": "The VC type (indicate the service) of this VC.",
                      "x-yang-type": "cisco-ietf:CpwVcType"
                    },
                    "cpwVcIdMappingVcID": {
                      "type": "string",
                      "description": "The VC ID of this VC. Zero if the VC is configured  \n            manually.",
                      "x-yang-type": "cisco-ietf:CpwVcIDType"
                    },
                    "cpwVcIdMappingPeerAddrType": {
                      "type": "string",
                      "description": "IP address type of the peer node.",
                      "x-yang-type": "inet-address:InetAddressType"
                    },
                    "cpwVcIdMappingPeerAddr": {
                      "type": "string",
                      "description": "IP address type of the peer node.",
                      "x-yang-type": "inet-address:InetAddress"
                    },
                    "cpwVcIdMappingVcIndex": {
                      "type": "string",
                      "description": "The value that represent the VC in the cpwVcTable.",
                      "x-yang-type": "cisco-ietf:CpwVcIndexType"
                    }
                  }
                },
                "example": {
                  "CISCO-IETF-PW-MIB:cpwVcIdMappingEntry": {
                    "cpwVcIdMappingVcType": "ethernetCsmacd(6)",
                    "cpwVcIdMappingVcID": "example-string",
                    "cpwVcIdMappingPeerAddrType": "192.168.1.1",
                    "cpwVcIdMappingPeerAddr": "192.168.1.1",
                    "cpwVcIdMappingVcIndex": "example-string"
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cpwVcIdMappingEntry-2"
      },
      "x-yang-path": "/cpwVcIdMappingTable/cpwVcIdMappingEntry={cpwVcIdMappingVcType cpwVcIdMappingVcID cpwVcIdMappingPeerAddrType cpwVcIdMappingPeerAddr cpwVcIdMappingVcIndex}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "cpwVcIdMappingVcType cpwVcIdMappingVcID cpwVcIdMappingPeerAddrType cpwVcIdMappingPeerAddr cpwVcIdMappingVcIndex"
      ]
    },
    "/data/CISCO-IETF-PW-MIB:cpwVcPeerMappingTable/cpwVcPeerMappingEntry={cpwVcPeerMappingPeerAddrType},{cpwVcPeerMappingPeerAddr},{cpwVcPeerMappingVcType},{cpwVcPeerMappingVcID},{cpwVcPeerMappingVcIndex}": {
      "get": {
        "summary": "Get cpwVcPeerMappingEntry entry",
        "description": "Retrieve specific cpwVcPeerMappingEntry entry by key from MIB",
        "tags": [
          "CISCO-IETF-PW-MIB"
        ],
        "parameters": [
          {
            "name": "cpwVcPeerMappingPeerAddrType",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "cpwVcPeerMappingPeerAddr",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "cpwVcPeerMappingVcType",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "cpwVcPeerMappingVcID",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "cpwVcPeerMappingVcIndex",
            "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": {
                    "cpwVcPeerMappingPeerAddrType": {
                      "type": "string",
                      "description": "IP address type of the peer node.",
                      "x-yang-type": "inet-address:InetAddressType"
                    },
                    "cpwVcPeerMappingPeerAddr": {
                      "type": "string",
                      "description": "IP address type of the peer node.",
                      "x-yang-type": "inet-address:InetAddress"
                    },
                    "cpwVcPeerMappingVcType": {
                      "type": "string",
                      "description": "The VC type (indicate the service) of this VC.",
                      "x-yang-type": "cisco-ietf:CpwVcType"
                    },
                    "cpwVcPeerMappingVcID": {
                      "type": "string",
                      "description": "The VC ID of this VC. Zero if the VC is configured  \n            manually.",
                      "x-yang-type": "cisco-ietf:CpwVcIDType"
                    },
                    "cpwVcPeerMappingVcIndex": {
                      "type": "string",
                      "description": "The value that represent the VC in the cpwVcTable.",
                      "x-yang-type": "cisco-ietf:CpwVcIndexType"
                    }
                  }
                },
                "example": {
                  "CISCO-IETF-PW-MIB:cpwVcPeerMappingEntry": {
                    "cpwVcPeerMappingPeerAddrType": "192.168.1.1",
                    "cpwVcPeerMappingPeerAddr": "192.168.1.1",
                    "cpwVcPeerMappingVcType": "ethernetCsmacd(6)",
                    "cpwVcPeerMappingVcID": "example-string",
                    "cpwVcPeerMappingVcIndex": "example-string"
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cpwVcPeerMappingEntry-2"
      },
      "x-yang-path": "/cpwVcPeerMappingTable/cpwVcPeerMappingEntry={cpwVcPeerMappingPeerAddrType cpwVcPeerMappingPeerAddr cpwVcPeerMappingVcType cpwVcPeerMappingVcID cpwVcPeerMappingVcIndex}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "cpwVcPeerMappingPeerAddrType cpwVcPeerMappingPeerAddr cpwVcPeerMappingVcType cpwVcPeerMappingVcID cpwVcPeerMappingVcIndex"
      ]
    },
    "/data/CISCO-IETF-PW-MIB:cpwVcPerfIntervalEntry={cpwVcIndex},{cpwVcPerfIntervalNumber}": {
      "get": {
        "summary": "Get cpwVcPerfIntervalEntry entry",
        "description": "Retrieve specific cpwVcPerfIntervalEntry entry by key from MIB",
        "tags": [
          "CISCO-IETF-PW-MIB"
        ],
        "parameters": [
          {
            "name": "cpwVcIndex",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "cpwVcPerfIntervalNumber",
            "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": {
                    "cpwVcIndex": {
                      "type": "string",
                      "description": "cpwVcIndex",
                      "x-yang-type": "leafref"
                    },
                    "cpwVcPerfIntervalNumber": {
                      "type": "integer",
                      "description": "A number N, between 1 and 96, which identifies the \n            interval for which the set of statistics is available. \n            The interval identified by 1 is the most recently \n            completed 15 minute interval, and the interval identified \n            by N is the interval immediately preceding the one \n            identified by N-1. \n            The minimum range of N is 1 through 4. The default range \n            is 1 to 32. The maximum range of N is 1 through 96.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "cpwVcPerfIntervalValidData": {
                      "type": "boolean",
                      "description": "This variable indicates if the data for this interval \n            is valid."
                    },
                    "cpwVcPerfIntervalTimeElapsed": {
                      "type": "integer",
                      "description": "The duration of a particular interval in seconds. \n            Adjustments in the system's time-of-day clock, may \n            cause the interval to be greater or less than the \n            normal value. Therefore this actual interval value \n            is provided.",
                      "minimum": -2147483648,
                      "maximum": 2147483647
                    },
                    "cpwVcPerfIntervalInHCPackets": {
                      "type": "integer",
                      "description": "High capacity counter for number of packets received by \n            the VC (from the PSN) in a particular 15-minute interval.",
                      "minimum": 0
                    },
                    "cpwVcPerfIntervalInHCBytes": {
                      "type": "integer",
                      "description": "High capacity counter for number of bytes received by the  \n            VC (from the PSN) in a particular 15-minute interval.",
                      "minimum": 0
                    },
                    "cpwVcPerfIntervalOutHCPackets": {
                      "type": "integer",
                      "description": "High capacity counter for number of packets forwarded by  \n            the VC (to the PSN) in a particular 15-minute interval.",
                      "minimum": 0
                    },
                    "cpwVcPerfIntervalOutHCBytes": {
                      "type": "integer",
                      "description": "High capacity counter for number of bytes forwarded by the  \n            VC (to the PSN) in a particular 15-minute interval.",
                      "minimum": 0
                    }
                  }
                },
                "example": {
                  "CISCO-IETF-PW-MIB:cpwVcPerfIntervalEntry": {
                    "cpwVcIndex": "example-string",
                    "cpwVcPerfIntervalNumber": -2147483648,
                    "cpwVcPerfIntervalValidData": true,
                    "cpwVcPerfIntervalTimeElapsed": -2147483648,
                    "cpwVcPerfIntervalInHCPackets": 1234567890,
                    "cpwVcPerfIntervalInHCBytes": 0,
                    "cpwVcPerfIntervalOutHCPackets": 1234567890,
                    "cpwVcPerfIntervalOutHCBytes": 0
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cpwVcPerfIntervalEntry-4"
      },
      "x-yang-path": "/cpwVcPerfIntervalEntry={cpwVcIndex cpwVcPerfIntervalNumber}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "cpwVcIndex cpwVcPerfIntervalNumber"
      ]
    },
    "/data/CISCO-IETF-PW-MIB:cpwVcIdMappingEntry={cpwVcIdMappingVcType},{cpwVcIdMappingVcID},{cpwVcIdMappingPeerAddrType},{cpwVcIdMappingPeerAddr},{cpwVcIdMappingVcIndex}": {
      "get": {
        "summary": "Get cpwVcIdMappingEntry entry",
        "description": "Retrieve specific cpwVcIdMappingEntry entry by key from MIB",
        "tags": [
          "CISCO-IETF-PW-MIB"
        ],
        "parameters": [
          {
            "name": "cpwVcIdMappingVcType",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "cpwVcIdMappingVcID",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "cpwVcIdMappingPeerAddrType",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "cpwVcIdMappingPeerAddr",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "cpwVcIdMappingVcIndex",
            "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": {
                    "cpwVcIdMappingVcType": {
                      "type": "string",
                      "description": "The VC type (indicate the service) of this VC.",
                      "x-yang-type": "cisco-ietf:CpwVcType"
                    },
                    "cpwVcIdMappingVcID": {
                      "type": "string",
                      "description": "The VC ID of this VC. Zero if the VC is configured  \n            manually.",
                      "x-yang-type": "cisco-ietf:CpwVcIDType"
                    },
                    "cpwVcIdMappingPeerAddrType": {
                      "type": "string",
                      "description": "IP address type of the peer node.",
                      "x-yang-type": "inet-address:InetAddressType"
                    },
                    "cpwVcIdMappingPeerAddr": {
                      "type": "string",
                      "description": "IP address type of the peer node.",
                      "x-yang-type": "inet-address:InetAddress"
                    },
                    "cpwVcIdMappingVcIndex": {
                      "type": "string",
                      "description": "The value that represent the VC in the cpwVcTable.",
                      "x-yang-type": "cisco-ietf:CpwVcIndexType"
                    }
                  }
                },
                "example": {
                  "CISCO-IETF-PW-MIB:cpwVcIdMappingEntry": {
                    "cpwVcIdMappingVcType": "ethernetCsmacd(6)",
                    "cpwVcIdMappingVcID": "example-string",
                    "cpwVcIdMappingPeerAddrType": "192.168.1.1",
                    "cpwVcIdMappingPeerAddr": "192.168.1.1",
                    "cpwVcIdMappingVcIndex": "example-string"
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cpwVcIdMappingEntry-4"
      },
      "x-yang-path": "/cpwVcIdMappingEntry={cpwVcIdMappingVcType cpwVcIdMappingVcID cpwVcIdMappingPeerAddrType cpwVcIdMappingPeerAddr cpwVcIdMappingVcIndex}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "cpwVcIdMappingVcType cpwVcIdMappingVcID cpwVcIdMappingPeerAddrType cpwVcIdMappingPeerAddr cpwVcIdMappingVcIndex"
      ]
    },
    "/data/CISCO-IETF-PW-MIB:cpwVcPeerMappingEntry={cpwVcPeerMappingPeerAddrType},{cpwVcPeerMappingPeerAddr},{cpwVcPeerMappingVcType},{cpwVcPeerMappingVcID},{cpwVcPeerMappingVcIndex}": {
      "get": {
        "summary": "Get cpwVcPeerMappingEntry entry",
        "description": "Retrieve specific cpwVcPeerMappingEntry entry by key from MIB",
        "tags": [
          "CISCO-IETF-PW-MIB"
        ],
        "parameters": [
          {
            "name": "cpwVcPeerMappingPeerAddrType",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "cpwVcPeerMappingPeerAddr",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "cpwVcPeerMappingVcType",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "cpwVcPeerMappingVcID",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "cpwVcPeerMappingVcIndex",
            "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": {
                    "cpwVcPeerMappingPeerAddrType": {
                      "type": "string",
                      "description": "IP address type of the peer node.",
                      "x-yang-type": "inet-address:InetAddressType"
                    },
                    "cpwVcPeerMappingPeerAddr": {
                      "type": "string",
                      "description": "IP address type of the peer node.",
                      "x-yang-type": "inet-address:InetAddress"
                    },
                    "cpwVcPeerMappingVcType": {
                      "type": "string",
                      "description": "The VC type (indicate the service) of this VC.",
                      "x-yang-type": "cisco-ietf:CpwVcType"
                    },
                    "cpwVcPeerMappingVcID": {
                      "type": "string",
                      "description": "The VC ID of this VC. Zero if the VC is configured  \n            manually.",
                      "x-yang-type": "cisco-ietf:CpwVcIDType"
                    },
                    "cpwVcPeerMappingVcIndex": {
                      "type": "string",
                      "description": "The value that represent the VC in the cpwVcTable.",
                      "x-yang-type": "cisco-ietf:CpwVcIndexType"
                    }
                  }
                },
                "example": {
                  "CISCO-IETF-PW-MIB:cpwVcPeerMappingEntry": {
                    "cpwVcPeerMappingPeerAddrType": "192.168.1.1",
                    "cpwVcPeerMappingPeerAddr": "192.168.1.1",
                    "cpwVcPeerMappingVcType": "ethernetCsmacd(6)",
                    "cpwVcPeerMappingVcID": "example-string",
                    "cpwVcPeerMappingVcIndex": "example-string"
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden — insufficient access rights (NACM)",
            "content": {
              "application/yang-data+json": {
                "schema": {
                  "$ref": "#/components/schemas/restconf-error"
                }
              }
            }
          }
        },
        "operationId": "get-cpwVcPeerMappingEntry-4"
      },
      "x-yang-path": "/cpwVcPeerMappingEntry={cpwVcPeerMappingPeerAddrType cpwVcPeerMappingPeerAddr cpwVcPeerMappingVcType cpwVcPeerMappingVcID cpwVcPeerMappingVcIndex}",
      "x-restconf-kind": "list-instance",
      "x-list-keys": [
        "cpwVcPeerMappingPeerAddrType cpwVcPeerMappingPeerAddr cpwVcPeerMappingVcType cpwVcPeerMappingVcID cpwVcPeerMappingVcIndex"
      ]
    }
  },
  "components": {
    "schemas": {
      "CISCO-IETF-PW-MIB_CISCO-IETF-PW-MIB": {
        "type": "object",
        "description": "CISCO-IETF-PW-MIB",
        "properties": {
          "cpwVcEntry": {
            "type": "array",
            "description": "A row in this table represents an emulated virtual \n          connection (VC) across a packet network. It is indexed by \n          cpwVcIndex, which uniquely identifying a singular  \n          connection.",
            "items": {
              "type": "object",
              "properties": {
                "cpwVcIndex": {
                  "type": "string",
                  "description": "Index for the conceptual row identifying a VC within  \n            this PW Emulation VC table.",
                  "x-yang-type": "cisco-ietf:CpwVcIndexType",
                  "readOnly": true
                },
                "cpwVcType": {
                  "type": "string",
                  "description": "This value indicate the service to be carried over \n            this VC.  \n            Note: the exact set of VC types is yet to be worked  \n            out by the WG.",
                  "x-yang-type": "cisco-ietf:CpwVcType",
                  "readOnly": true
                },
                "cpwVcOwner": {
                  "type": "string",
                  "description": "Set by the operator to indicate the protocol responsible  \n            for establishing this VC. Value 'manual' is used in all \n            cases where no maintenance protocol (PW signaling) is used  \n            to set-up the VC, i.e. require configuration of entries in \n            the VC tables including VC labels, etc. The value  \n            'maintenanceProtocol' is used in case of standard \n            signaling of the VC for the specific PSN, for example LDP \n            for MPLS PSN as specified in <draft- draft-martini- \n            l2circuit-trans-mpls> or L2TP control protocol.  \n            Value 'other' is used for other types of signaling.",
                  "readOnly": true
                },
                "cpwVcPsnType": {
                  "type": "string",
                  "description": "Set by the operator to indicate the PSN type on which this  \n            VC will be carried. Based on this object, the relevant PSN  \n            table entries are created in the in the PSN specific MIB  \n            modules. For example, if mpls(1) is defined, the agent  \n            create an entry in cpwVcMplsTable, which further define the  \n            MPLS PSN configuration. \n            Note: the exact set of PSN types is yet to be worked  \n            out by the WG.",
                  "readOnly": true
                },
                "cpwVcSetUpPriority": {
                  "type": "integer",
                  "description": "This object define the relative set-up priority of the VC   \n            in a lowest-to-highest fashion, where 0 is the highest  \n            priority. VCs with the same priority are treated with \n            equal priority. Dropped VC will be set 'dormant' (as \n            indicated in cpwVcOperStatus). \n            This value is significant if there are competing resources \n            between VCs and the implementation support this feature. \n            If not supported or not relevant, the value of zero MUST \n            be used.",
                  "minimum": -2147483648,
                  "maximum": 2147483647,
                  "readOnly": true
                },
                "cpwVcHoldingPriority": {
                  "type": "integer",
                  "description": "This object define the relative holding priority of the VC   \n            in a lowest-to-highest fashion, where 0 is the highest  \n            priority. VCs with the same priority are treated with \n            equal priority. Dropped VC will be set 'dormant' (as \n            indicated in cpwVcOperStatus). \n            This value is significant if there are competing resources \n            between VCs and the implementation support this feature. \n            If not supported or not relevant, the value of zero MUST \n            be used.",
                  "minimum": -2147483648,
                  "maximum": 2147483647,
                  "readOnly": true
                },
                "cpwVcInboundMode": {
                  "type": "string",
                  "description": "This object is used to enable greater security for  \n            implementation that use per platform VC label space. In  \n            strict mode, packets coming from the PSN are accepted only  \n            from tunnels that are associated to the same VC via the  \n            inbound tunnel table in the case of MPLS, or as identified  \n            by the source IP address in case of L2TP or IP PSN. The  \n            entries in the inbound tunnel table are either explicitly  \n            configured or implicitly known by the maintenance protocol  \n            used for VC set-up. \n            \n            If such association is not known, not configured or not  \n            desired, loose mode should be configured, and the node  \n            should accept the packet based on the VC label only  \n            regardless of the outer tunnel used to carry the VC.",
                  "readOnly": true
                },
                "cpwVcPeerAddrType": {
                  "type": "string",
                  "description": "Denotes the address type of the peer node maintenance \n            protocol (signaling) address if PW maintenance protocol is \n            used for the VC creation. It should be set to  \n            'unknown' if PE/PW maintenance protocol is not used,  \n            i.e. cpwVcOwner is set to 'manual'.",
                  "x-yang-type": "inet-address:InetAddressType",
                  "readOnly": true
                },
                "cpwVcPeerAddr": {
                  "type": "string",
                  "description": "This object contains the value of of the peer node address \n            of the PW/PE maintenance protocol entity. This object  \n            should contain a value of 0 if not relevant (manual  \n            configuration of the VC).",
                  "x-yang-type": "inet-address:InetAddress",
                  "readOnly": true
                },
                "cpwVcID": {
                  "type": "string",
                  "description": "Used in the outgoing VC ID field within the 'Virtual \n            Circuit FEC Element' when LDP signaling is used or PW ID  \n            AVP for L2TP.",
                  "x-yang-type": "cisco-ietf:CpwVcIDType",
                  "readOnly": true
                },
                "cpwVcLocalGroupID": {
                  "type": "string",
                  "description": "Used in the Group ID field sent to the peer PWES  \n            within the maintenance protocol used for VC setup,  \n            zero if not used.",
                  "x-yang-type": "cisco-ietf:CpwGroupID",
                  "readOnly": true
                },
                "cpwVcControlWord": {
                  "type": "boolean",
                  "description": "Define if the control word will be sent with each packet by  \n            the local node.",
                  "readOnly": true
                },
                "cpwVcLocalIfMtu": {
                  "type": "integer",
                  "description": "If not equal zero, the optional IfMtu object in the  \n            maintenance protocol will be sent with this value,  \n            representing the locally supported MTU size over the  \n            interface (or the virtual interface) associated with the  \n            VC.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "cpwVcLocalIfString": {
                  "type": "boolean",
                  "description": "Each VC is associated to an interface (or a virtual  \n            interface) in the ifTable of the node as part of the \n            service configuration. This object defines if the  \n            maintenance protocol will send the interface's name as \n            appears on the ifTable in the name object as part of the \n            maintenance protocol. If set to false, the optional element \n            will not be sent.",
                  "readOnly": true
                },
                "cpwVcRemoteGroupID": {
                  "type": "string",
                  "description": "Obtained from the Group ID field as received via the  \n            maintenance protocol used for VC setup, zero if not used.  \n            Value of 0xFFFF shall be used if the object is yet to be  \n            defined by the VC maintenance protocol.",
                  "x-yang-type": "cisco-ietf:CpwGroupID",
                  "readOnly": true
                },
                "cpwVcRemoteControlWord": {
                  "type": "string",
                  "description": "If maintenance protocol is used for VC establishment, this  \n            parameter indicates the received status of the control word  \n            usage, i.e. if packets will be received with control word \n            or not. The value of 'notYetKnown' is used while the \n            maintenance protocol has not yet received the indication  \n            from the remote node. \n            In manual configuration of the VC this parameters indicate  \n            to the local node what is the expected encapsulation for \n            the received packets.",
                  "readOnly": true
                },
                "cpwVcRemoteIfMtu": {
                  "type": "integer",
                  "description": "The remote interface MTU as (optionally) received from the \n            remote node via the maintenance protocol. Should be zero if \n            this parameter is not available or not used.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "cpwVcRemoteIfString": {
                  "type": "string",
                  "description": "Indicate the interface description string as received by \n            the maintenance protocol, MUST be NULL string if not  \n            applicable or not known yet.",
                  "x-yang-type": "snmp-framework:SnmpAdminString",
                  "readOnly": true
                },
                "cpwVcOutboundVcLabel": {
                  "type": "integer",
                  "description": "The VC label used in the outbound direction (i.e. toward  \n            the PSN). It may be set up manually if owner is 'manual' or  \n            automatically otherwise. Examples: For MPLS PSN, it  \n            represents the 20 bits of VC tag, for L2TP it represent the \n            32 bits Session ID. \n            If the label is not yet known (signaling in process), the  \n            object should return a value of 0xFFFF.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "cpwVcInboundVcLabel": {
                  "type": "integer",
                  "description": "The VC label used in the inbound direction (i.e. packets  \n            received from the PSN. It may be set up manually if owner \n            is 'manual' or automatically otherwise.  \n            Examples: For MPLS PSN, it represents the 20 bits of VC \n            tag, for L2TP it represent the 32 bits Session ID. \n            If the label is not yet known (signaling in process), the  \n            object should return a value of 0xFFFF.",
                  "minimum": 0,
                  "maximum": 4294967295,
                  "readOnly": true
                },
                "cpwVcName": {
                  "type": "string",
                  "description": "The canonical name assigned to the VC.",
                  "x-yang-type": "snmp-framework:SnmpAdminString",
                  "readOnly": true
                },
                "cpwVcDescr": {
                  "type": "string",
                  "description": "A textual string containing information about the VC.  \n            If there is no description this object contains a zero \n            length string.",
                  "x-yang-type": "snmp-framework:SnmpAdminString",
                  "readOnly": true
                },
                "cpwVcCreateTime": {
                  "type": "string",
                  "description": "System time when this VC was created.",
                  "x-yang-type": "yang:timestamp",
                  "readOnly": true
                },
                "cpwVcUpTime": {
                  "type": "string",
                  "description": "Number of consecutive ticks this VC has been 'up' in \n            both directions together (i.e. 'up' is observed in  \n            cpwVcOperStatus.)",
                  "x-yang-type": "yang:timeticks",
                  "readOnly": true
                },
                "cpwVcAdminStatus": {
                  "type": "string",
                  "description": "The desired operational status of this VC.",
                  "readOnly": true
                },
                "cpwVcOperStatus": {
                  "type": "string",
                  "description": "Indicates the actual combined operational status of this  \n            VC. It is 'up' if both cpwVcInboundOperStatus and  \n            cpwVcOutboundOperStatus are in 'up' state. For all other  \n            values, if the VCs in both directions are of the same \n            value it reflects that value, otherwise it is set to the \n            most severe status out of the two statuses. The order of  \n            severance from most severe to less severe is: unknown,  \n            notPresent, down, lowerLayerDown, dormant, testing, up. \n            The operator may consult the per direction OperStatus for \n            fault isolation per direction.",
                  "x-yang-type": "cisco-ietf:CpwOperStatus",
                  "readOnly": true
                },
                "cpwVcInboundOperStatus": {
                  "type": "string",
                  "description": "Indicates the actual operational status of this VC in the  \n            inbound direction. \n            \n            - down:           if PW signaling has not yet finished, or \n                              indications available at the service  \n                              level indicate that the VC is not  \n                              passing packets. \n            - testing:        if AdminStatus at the VC level is set to  \n                              test. \n            - dormant:        The VC is not available because of the \n                              required resources are occupied VC with  \n                              higher priority VCs . \n            - notPresent:     Some component is missing to accomplish  \n                              the set up of the VC. \n            - lowerLayerDown: The underlying PSN is not in OperStatus  \n                              'up'.",
                  "x-yang-type": "cisco-ietf:CpwOperStatus",
                  "readOnly": true
                },
                "cpwVcOutboundOperStatus": {
                  "type": "string",
                  "description": "Indicates the actual operational status of this VC in the  \n            outbound direction \n            - down:           if PW signaling has not yet finished, or \n                              indications available at the service  \n                              level indicate that the VC is not \n                              passing packets. \n            - testing:        if AdminStatus at the VC level is set to  \n                              test. \n            - dormant:        The VC is not available because of the \n                              required resources are occupied VC with  \n                              higher priority VCs . \n            - notPresent:     Some component is missing to accomplish  \n                              the set up of the VC. \n            - lowerLayerDown: The underlying PSN is not in OperStatus  \n                              'up'.",
                  "x-yang-type": "cisco-ietf:CpwOperStatus",
                  "readOnly": true
                },
                "cpwVcTimeElapsed": {
                  "type": "integer",
                  "description": "The number of seconds, including partial seconds, \n            that have elapsed since the beginning of the current \n            measurement period. If, for some reason, such as an \n            adjustment in the system's time-of-day clock, the \n            current interval exceeds the maximum value, the \n            agent will return the maximum value.",
                  "minimum": -2147483648,
                  "maximum": 2147483647,
                  "readOnly": true
                },
                "cpwVcValidIntervals": {
                  "type": "integer",
                  "description": "The number of previous 15-minute intervals \n            for which data was collected.  \n            An agent with PW capability must be capable of supporting at  \n            least n intervals. The minimum value of n is 4, The default  \n            of n is 32 and the maximum value of n is 96. \n            The value will be <n> unless the measurement was (re-)  \n            started within the last (<n>*15) minutes, in which case the  \n            value will be the number of complete 15 minute intervals for  \n            which the agent has at least some data. In certain cases  \n            (e.g., in the case where the agent is a proxy) it is  \n            possible that some intervals are unavailable.  In this case,  \n            this interval is the maximum interval number for which data  \n            is available.",
                  "minimum": -2147483648,
                  "maximum": 2147483647,
                  "readOnly": true
                },
                "cpwVcRowStatus": {
                  "type": "string",
                  "description": "For creating, modifying, and deleting this row.",
                  "x-yang-type": "snmpv2-tc:RowStatus",
                  "readOnly": true
                },
                "cpwVcStorageType": {
                  "type": "string",
                  "description": "This variable indicates the storage type for this \n            object.",
                  "x-yang-type": "snmpv2-tc:StorageType",
                  "readOnly": true
                }
              }
            },
            "readOnly": true
          },
          "cpwVcPerfCurrentEntry": {
            "type": "array",
            "description": "An entry in this table is created by the agent for \n          every VC.",
            "items": {
              "type": "object",
              "properties": {
                "cpwVcIndex": {
                  "type": "string",
                  "description": "cpwVcIndex",
                  "x-yang-type": "leafref",
                  "readOnly": true
                },
                "cpwVcPerfCurrentInHCPackets": {
                  "type": "integer",
                  "description": "High capacity counter for number of packets received \n            by the VC (from the PSN) in the current 15 minute \n            interval.",
                  "minimum": 0,
                  "readOnly": true
                },
                "cpwVcPerfCurrentInHCBytes": {
                  "type": "integer",
                  "description": "High capacity counter for number of bytes received \n            by the VC (from the PSN) in the current 15 minute \n            interval.",
                  "minimum": 0,
                  "readOnly": true
                },
                "cpwVcPerfCurrentOutHCPackets": {
                  "type": "integer",
                  "description": "High capacity counter for number of packets forwarded \n            by the VC (to the PSN) in the current 15 minute interval.",
                  "minimum": 0,
                  "readOnly": true
                },
                "cpwVcPerfCurrentOutHCBytes": {
                  "type": "integer",
                  "description": "High capacity counter for number of bytes forwarded \n            by the VC (to the PSN) in the current 15 minute interval.",
                  "minimum": 0,
                  "readOnly": true
                }
              }
            },
            "readOnly": true
          },
          "cpwVcPerfIntervalEntry": {
            "type": "array",
            "description": "An entry in this table is created agent for every VC.",
            "items": {
              "type": "object",
              "properties": {
                "cpwVcIndex": {
                  "type": "string",
                  "description": "cpwVcIndex",
                  "x-yang-type": "leafref",
                  "readOnly": true
                },
                "cpwVcPerfIntervalNumber": {
                  "type": "integer",
                  "description": "A number N, between 1 and 96, which identifies the \n            interval for which the set of statistics is available. \n            The interval identified by 1 is the most recently \n            completed 15 minute interval, and the interval identified \n            by N is the interval immediately preceding the one \n            identified by N-1. \n            The minimum range of N is 1 through 4. The default range \n            is 1 to 32. The maximum range of N is 1 through 96.",
                  "minimum": -2147483648,
                  "maximum": 2147483647,
                  "readOnly": true
                },
                "cpwVcPerfIntervalValidData": {
                  "type": "boolean",
                  "description": "This variable indicates if the data for this interval \n            is valid.",
                  "readOnly": true
                },
                "cpwVcPerfIntervalTimeElapsed": {
                  "type": "integer",
                  "description": "The duration of a particular interval in seconds. \n            Adjustments in the system's time-of-day clock, may \n            cause the interval to be greater or less than the \n            normal value. Therefore this actual interval value \n            is provided.",
                  "minimum": -2147483648,
                  "maximum": 2147483647,
                  "readOnly": true
                },
                "cpwVcPerfIntervalInHCPackets": {
                  "type": "integer",
                  "description": "High capacity counter for number of packets received by \n            the VC (from the PSN) in a particular 15-minute interval.",
                  "minimum": 0,
                  "readOnly": true
                },
                "cpwVcPerfIntervalInHCBytes": {
                  "type": "integer",
                  "description": "High capacity counter for number of bytes received by the  \n            VC (from the PSN) in a particular 15-minute interval.",
                  "minimum": 0,
                  "readOnly": true
                },
                "cpwVcPerfIntervalOutHCPackets": {
                  "type": "integer",
                  "description": "High capacity counter for number of packets forwarded by  \n            the VC (to the PSN) in a particular 15-minute interval.",
                  "minimum": 0,
                  "readOnly": true
                },
                "cpwVcPerfIntervalOutHCBytes": {
                  "type": "integer",
                  "description": "High capacity counter for number of bytes forwarded by the  \n            VC (to the PSN) in a particular 15-minute interval.",
                  "minimum": 0,
                  "readOnly": true
                }
              }
            },
            "readOnly": true
          },
          "cpwVcPerfTotalEntry": {
            "type": "array",
            "description": "An entry in this table is created agent for every VC.",
            "items": {
              "type": "object",
              "properties": {
                "cpwVcIndex": {
                  "type": "string",
                  "description": "cpwVcIndex",
                  "x-yang-type": "leafref",
                  "readOnly": true
                },
                "cpwVcPerfTotalInHCPackets": {
                  "type": "integer",
                  "description": "High capacity counter for number of packets received by the  \n            VC (from the PSN).",
                  "minimum": 0,
                  "readOnly": true
                },
                "cpwVcPerfTotalInHCBytes": {
                  "type": "integer",
                  "description": "High capacity counter for number of bytes received by the  \n            VC (from the PSN).",
                  "minimum": 0,
                  "readOnly": true
                },
                "cpwVcPerfTotalOutHCPackets": {
                  "type": "integer",
                  "description": "High capacity counter for number of packets forwarded by  \n            the VC (to the PSN).",
                  "minimum": 0,
                  "readOnly": true
                },
                "cpwVcPerfTotalOutHCBytes": {
                  "type": "integer",
                  "description": "High capacity counter for number of bytes forwarded by the  \n            VC (to the PSN).",
                  "minimum": 0,
                  "readOnly": true
                },
                "cpwVcPerfTotalDiscontinuityTime": {
                  "type": "string",
                  "description": "The value of sysUpTime on the most recent occasion at \n            which any one or more of this row Counter32 or \n            Counter64 suffered a discontinuity. If no such \n            discontinuities have occurred since the last re- \n            initialization of the local management subsystem, then \n            this object contains a zero value.",
                  "x-yang-type": "yang:timestamp",
                  "readOnly": true
                }
              }
            },
            "readOnly": true
          },
          "cpwVcIdMappingEntry": {
            "type": "array",
            "description": "An entry in this table is created by the agent for every  \n          VC configured by the cpwVcTable.",
            "items": {
              "type": "object",
              "properties": {
                "cpwVcIdMappingVcType": {
                  "type": "string",
                  "description": "The VC type (indicate the service) of this VC.",
                  "x-yang-type": "cisco-ietf:CpwVcType",
                  "readOnly": true
                },
                "cpwVcIdMappingVcID": {
                  "type": "string",
                  "description": "The VC ID of this VC. Zero if the VC is configured  \n            manually.",
                  "x-yang-type": "cisco-ietf:CpwVcIDType",
                  "readOnly": true
                },
                "cpwVcIdMappingPeerAddrType": {
                  "type": "string",
                  "description": "IP address type of the peer node.",
                  "x-yang-type": "inet-address:InetAddressType",
                  "readOnly": true
                },
                "cpwVcIdMappingPeerAddr": {
                  "type": "string",
                  "description": "IP address type of the peer node.",
                  "x-yang-type": "inet-address:InetAddress",
                  "readOnly": true
                },
                "cpwVcIdMappingVcIndex": {
                  "type": "string",
                  "description": "The value that represent the VC in the cpwVcTable.",
                  "x-yang-type": "cisco-ietf:CpwVcIndexType",
                  "readOnly": true
                }
              }
            },
            "readOnly": true
          },
          "cpwVcPeerMappingEntry": {
            "type": "array",
            "description": "An entry in this table is created by the agent for every  \n          VC configured in cpwVcTable.",
            "items": {
              "type": "object",
              "properties": {
                "cpwVcPeerMappingPeerAddrType": {
                  "type": "string",
                  "description": "IP address type of the peer node.",
                  "x-yang-type": "inet-address:InetAddressType",
                  "readOnly": true
                },
                "cpwVcPeerMappingPeerAddr": {
                  "type": "string",
                  "description": "IP address type of the peer node.",
                  "x-yang-type": "inet-address:InetAddress",
                  "readOnly": true
                },
                "cpwVcPeerMappingVcType": {
                  "type": "string",
                  "description": "The VC type (indicate the service) of this VC.",
                  "x-yang-type": "cisco-ietf:CpwVcType",
                  "readOnly": true
                },
                "cpwVcPeerMappingVcID": {
                  "type": "string",
                  "description": "The VC ID of this VC. Zero if the VC is configured  \n            manually.",
                  "x-yang-type": "cisco-ietf:CpwVcIDType",
                  "readOnly": true
                },
                "cpwVcPeerMappingVcIndex": {
                  "type": "string",
                  "description": "The value that represent the VC in the cpwVcTable.",
                  "x-yang-type": "cisco-ietf:CpwVcIndexType",
                  "readOnly": true
                }
              }
            },
            "readOnly": true
          },
          "cpwVcObjects": {
            "type": "object",
            "description": "cpwVcObjects",
            "properties": {
              "cpwVcIndexNext": {
                "type": "integer",
                "description": "This object contains an appropriate value to be used \n          for cpwVcIndex when creating entries in the \n          cpwVcTable. The value 0 indicates that no \n          unassigned entries are available.  To obtain the \n          value of cpwVcIndex for a new entry in the \n          cpwVcTable, the manager issues a management \n          protocol retrieval operation to obtain the current \n          value of cpwVcIndex.  After each retrieval \n          operation, the agent should modify the value to \n          reflect the next unassigned index.  After a manager \n          retrieves a value the agent will determine through \n          its local policy when this index value will be made \n          available for reuse.",
                "minimum": 0,
                "maximum": 4294967295,
                "readOnly": true
              },
              "cpwVcPerfTotalErrorPackets": {
                "type": "integer",
                "description": "Counter for number of error at VC level processing, for  \n          example packets received with unknown VC label.",
                "minimum": 0,
                "readOnly": true
              },
              "cpwVcUpDownNotifEnable": {
                "type": "boolean",
                "description": "If this object is set to true(1), then it enables\n          the emission of cpwVcUp and cpwVcDown\n          notifications; otherwise these notifications are not\n          emitted.",
                "readOnly": true
              },
              "cpwVcNotifRate": {
                "type": "integer",
                "description": "This object defines the maximum number of PW VC notifications\n          that can be emitted from the device per second.",
                "minimum": 0,
                "maximum": 4294967295,
                "readOnly": true
              }
            },
            "readOnly": true
          },
          "cpwVcTable": {
            "type": "object",
            "description": "This table specifies information for connecting various \n        emulated services to various tunnel type.",
            "properties": {
              "cpwVcEntry": {
                "type": "array",
                "description": "A row in this table represents an emulated virtual \n          connection (VC) across a packet network. It is indexed by \n          cpwVcIndex, which uniquely identifying a singular  \n          connection.",
                "items": {
                  "type": "object",
                  "properties": {
                    "cpwVcIndex": {
                      "type": "string",
                      "description": "Index for the conceptual row identifying a VC within  \n            this PW Emulation VC table.",
                      "x-yang-type": "cisco-ietf:CpwVcIndexType",
                      "readOnly": true
                    },
                    "cpwVcType": {
                      "type": "string",
                      "description": "This value indicate the service to be carried over \n            this VC.  \n            Note: the exact set of VC types is yet to be worked  \n            out by the WG.",
                      "x-yang-type": "cisco-ietf:CpwVcType",
                      "readOnly": true
                    },
                    "cpwVcOwner": {
                      "type": "string",
                      "description": "Set by the operator to indicate the protocol responsible  \n            for establishing this VC. Value 'manual' is used in all \n            cases where no maintenance protocol (PW signaling) is used  \n            to set-up the VC, i.e. require configuration of entries in \n            the VC tables including VC labels, etc. The value  \n            'maintenanceProtocol' is used in case of standard \n            signaling of the VC for the specific PSN, for example LDP \n            for MPLS PSN as specified in <draft- draft-martini- \n            l2circuit-trans-mpls> or L2TP control protocol.  \n            Value 'other' is used for other types of signaling.",
                      "readOnly": true
                    },
                    "cpwVcPsnType": {
                      "type": "string",
                      "description": "Set by the operator to indicate the PSN type on which this  \n            VC will be carried. Based on this object, the relevant PSN  \n            table entries are created in the in the PSN specific MIB  \n            modules. For example, if mpls(1) is defined, the agent  \n            create an entry in cpwVcMplsTable, which further define the  \n            MPLS PSN configuration. \n            Note: the exact set of PSN types is yet to be worked  \n            out by the WG.",
                      "readOnly": true
                    },
                    "cpwVcSetUpPriority": {
                      "type": "integer",
                      "description": "This object define the relative set-up priority of the VC   \n            in a lowest-to-highest fashion, where 0 is the highest  \n            priority. VCs with the same priority are treated with \n            equal priority. Dropped VC will be set 'dormant' (as \n            indicated in cpwVcOperStatus). \n            This value is significant if there are competing resources \n            between VCs and the implementation support this feature. \n            If not supported or not relevant, the value of zero MUST \n            be used.",
                      "minimum": -2147483648,
                      "maximum": 2147483647,
                      "readOnly": true
                    },
                    "cpwVcHoldingPriority": {
                      "type": "integer",
                      "description": "This object define the relative holding priority of the VC   \n            in a lowest-to-highest fashion, where 0 is the highest  \n            priority. VCs with the same priority are treated with \n            equal priority. Dropped VC will be set 'dormant' (as \n            indicated in cpwVcOperStatus). \n            This value is significant if there are competing resources \n            between VCs and the implementation support this feature. \n            If not supported or not relevant, the value of zero MUST \n            be used.",
                      "minimum": -2147483648,
                      "maximum": 2147483647,
                      "readOnly": true
                    },
                    "cpwVcInboundMode": {
                      "type": "string",
                      "description": "This object is used to enable greater security for  \n            implementation that use per platform VC label space. In  \n            strict mode, packets coming from the PSN are accepted only  \n            from tunnels that are associated to the same VC via the  \n            inbound tunnel table in the case of MPLS, or as identified  \n            by the source IP address in case of L2TP or IP PSN. The  \n            entries in the inbound tunnel table are either explicitly  \n            configured or implicitly known by the maintenance protocol  \n            used for VC set-up. \n            \n            If such association is not known, not configured or not  \n            desired, loose mode should be configured, and the node  \n            should accept the packet based on the VC label only  \n            regardless of the outer tunnel used to carry the VC.",
                      "readOnly": true
                    },
                    "cpwVcPeerAddrType": {
                      "type": "string",
                      "description": "Denotes the address type of the peer node maintenance \n            protocol (signaling) address if PW maintenance protocol is \n            used for the VC creation. It should be set to  \n            'unknown' if PE/PW maintenance protocol is not used,  \n            i.e. cpwVcOwner is set to 'manual'.",
                      "x-yang-type": "inet-address:InetAddressType",
                      "readOnly": true
                    },
                    "cpwVcPeerAddr": {
                      "type": "string",
                      "description": "This object contains the value of of the peer node address \n            of the PW/PE maintenance protocol entity. This object  \n            should contain a value of 0 if not relevant (manual  \n            configuration of the VC).",
                      "x-yang-type": "inet-address:InetAddress",
                      "readOnly": true
                    },
                    "cpwVcID": {
                      "type": "string",
                      "description": "Used in the outgoing VC ID field within the 'Virtual \n            Circuit FEC Element' when LDP signaling is used or PW ID  \n            AVP for L2TP.",
                      "x-yang-type": "cisco-ietf:CpwVcIDType",
                      "readOnly": true
                    },
                    "cpwVcLocalGroupID": {
                      "type": "string",
                      "description": "Used in the Group ID field sent to the peer PWES  \n            within the maintenance protocol used for VC setup,  \n            zero if not used.",
                      "x-yang-type": "cisco-ietf:CpwGroupID",
                      "readOnly": true
                    },
                    "cpwVcControlWord": {
                      "type": "boolean",
                      "description": "Define if the control word will be sent with each packet by  \n            the local node.",
                      "readOnly": true
                    },
                    "cpwVcLocalIfMtu": {
                      "type": "integer",
                      "description": "If not equal zero, the optional IfMtu object in the  \n            maintenance protocol will be sent with this value,  \n            representing the locally supported MTU size over the  \n            interface (or the virtual interface) associated with the  \n            VC.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "cpwVcLocalIfString": {
                      "type": "boolean",
                      "description": "Each VC is associated to an interface (or a virtual  \n            interface) in the ifTable of the node as part of the \n            service configuration. This object defines if the  \n            maintenance protocol will send the interface's name as \n            appears on the ifTable in the name object as part of the \n            maintenance protocol. If set to false, the optional element \n            will not be sent.",
                      "readOnly": true
                    },
                    "cpwVcRemoteGroupID": {
                      "type": "string",
                      "description": "Obtained from the Group ID field as received via the  \n            maintenance protocol used for VC setup, zero if not used.  \n            Value of 0xFFFF shall be used if the object is yet to be  \n            defined by the VC maintenance protocol.",
                      "x-yang-type": "cisco-ietf:CpwGroupID",
                      "readOnly": true
                    },
                    "cpwVcRemoteControlWord": {
                      "type": "string",
                      "description": "If maintenance protocol is used for VC establishment, this  \n            parameter indicates the received status of the control word  \n            usage, i.e. if packets will be received with control word \n            or not. The value of 'notYetKnown' is used while the \n            maintenance protocol has not yet received the indication  \n            from the remote node. \n            In manual configuration of the VC this parameters indicate  \n            to the local node what is the expected encapsulation for \n            the received packets.",
                      "readOnly": true
                    },
                    "cpwVcRemoteIfMtu": {
                      "type": "integer",
                      "description": "The remote interface MTU as (optionally) received from the \n            remote node via the maintenance protocol. Should be zero if \n            this parameter is not available or not used.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "cpwVcRemoteIfString": {
                      "type": "string",
                      "description": "Indicate the interface description string as received by \n            the maintenance protocol, MUST be NULL string if not  \n            applicable or not known yet.",
                      "x-yang-type": "snmp-framework:SnmpAdminString",
                      "readOnly": true
                    },
                    "cpwVcOutboundVcLabel": {
                      "type": "integer",
                      "description": "The VC label used in the outbound direction (i.e. toward  \n            the PSN). It may be set up manually if owner is 'manual' or  \n            automatically otherwise. Examples: For MPLS PSN, it  \n            represents the 20 bits of VC tag, for L2TP it represent the \n            32 bits Session ID. \n            If the label is not yet known (signaling in process), the  \n            object should return a value of 0xFFFF.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "cpwVcInboundVcLabel": {
                      "type": "integer",
                      "description": "The VC label used in the inbound direction (i.e. packets  \n            received from the PSN. It may be set up manually if owner \n            is 'manual' or automatically otherwise.  \n            Examples: For MPLS PSN, it represents the 20 bits of VC \n            tag, for L2TP it represent the 32 bits Session ID. \n            If the label is not yet known (signaling in process), the  \n            object should return a value of 0xFFFF.",
                      "minimum": 0,
                      "maximum": 4294967295,
                      "readOnly": true
                    },
                    "cpwVcName": {
                      "type": "string",
                      "description": "The canonical name assigned to the VC.",
                      "x-yang-type": "snmp-framework:SnmpAdminString",
                      "readOnly": true
                    },
                    "cpwVcDescr": {
                      "type": "string",
                      "description": "A textual string containing information about the VC.  \n            If there is no description this object contains a zero \n            length string.",
                      "x-yang-type": "snmp-framework:SnmpAdminString",
                      "readOnly": true
                    },
                    "cpwVcCreateTime": {
                      "type": "string",
                      "description": "System time when this VC was created.",
                      "x-yang-type": "yang:timestamp",
                      "readOnly": true
                    },
                    "cpwVcUpTime": {
                      "type": "string",
                      "description": "Number of consecutive ticks this VC has been 'up' in \n            both directions together (i.e. 'up' is observed in  \n            cpwVcOperStatus.)",
                      "x-yang-type": "yang:timeticks",
                      "readOnly": true
                    },
                    "cpwVcAdminStatus": {
                      "type": "string",
                      "description": "The desired operational status of this VC.",
                      "readOnly": true
                    },
                    "cpwVcOperStatus": {
                      "type": "string",
                      "description": "Indicates the actual combined operational status of this  \n            VC. It is 'up' if both cpwVcInboundOperStatus and  \n            cpwVcOutboundOperStatus are in 'up' state. For all other  \n            values, if the VCs in both directions are of the same \n            value it reflects that value, otherwise it is set to the \n            most severe status out of the two statuses. The order of  \n            severance from most severe to less severe is: unknown,  \n            notPresent, down, lowerLayerDown, dormant, testing, up. \n            The operator may consult the per direction OperStatus for \n            fault isolation per direction.",
                      "x-yang-type": "cisco-ietf:CpwOperStatus",
                      "readOnly": true
                    },
                    "cpwVcInboundOperStatus": {
                      "type": "string",
                      "description": "Indicates the actual operational status of this VC in the  \n            inbound direction. \n            \n            - down:           if PW signaling has not yet finished, or \n                              indications available at the service  \n                              level indicate that the VC is not  \n                              passing packets. \n            - testing:        if AdminStatus at the VC level is set to  \n                              test. \n            - dormant:        The VC is not available because of the \n                              required resources are occupied VC with  \n                              higher priority VCs . \n            - notPresent:     Some component is missing to accomplish  \n                              the set up of the VC. \n            - lowerLayerDown: The underlying PSN is not in OperStatus  \n                              'up'.",
                      "x-yang-type": "cisco-ietf:CpwOperStatus",
                      "readOnly": true
                    },
                    "cpwVcOutboundOperStatus": {
                      "type": "string",
                      "description": "Indicates the actual operational status of this VC in the  \n            outbound direction \n            - down:           if PW signaling has not yet finished, or \n                              indications available at the service  \n                              level indicate that the VC is not \n                              passing packets. \n            - testing:        if AdminStatus at the VC level is set to  \n                              test. \n            - dormant:        The VC is not available because of the \n                              required resources are occupied VC with  \n                              higher priority VCs . \n            - notPresent:     Some component is missing to accomplish  \n                              the set up of the VC. \n            - lowerLayerDown: The underlying PSN is not in OperStatus  \n                              'up'.",
                      "x-yang-type": "cisco-ietf:CpwOperStatus",
                      "readOnly": true
                    },
                    "cpwVcTimeElapsed": {
                      "type": "integer",
                      "description": "The number of seconds, including partial seconds, \n            that have elapsed since the beginning of the current \n            measurement period. If, for some reason, such as an \n            adjustment in the system's time-of-day clock, the \n            current interval exceeds the maximum value, the \n            agent will return the maximum value.",
                      "minimum": -2147483648,
                      "maximum": 2147483647,
                      "readOnly": true
                    },
                    "cpwVcValidIntervals": {
                      "type": "integer",
                      "description": "The number of previous 15-minute intervals \n            for which data was collected.  \n            An agent with PW capability must be capable of supporting at  \n            least n intervals. The minimum value of n is 4, The default  \n            of n is 32 and the maximum value of n is 96. \n            The value will be <n> unless the measurement was (re-)  \n            started within the last (<n>*15) minutes, in which case the  \n            value will be the number of complete 15 minute intervals for  \n            which the agent has at least some data. In certain cases  \n            (e.g., in the case where the agent is a proxy) it is  \n            possible that some intervals are unavailable.  In this case,  \n            this interval is the maximum interval number for which data  \n            is available.",
                      "minimum": -2147483648,
                      "maximum": 2147483647,
                      "readOnly": true
                    },
                    "cpwVcRowStatus": {
                      "type": "string",
                      "description": "For creating, modifying, and deleting this row.",
                      "x-yang-type": "snmpv2-tc:RowStatus",
                      "readOnly": true
                    },
                    "cpwVcStorageType": {
                      "type": "string",
                      "description": "This variable indicates the storage type for this \n            object.",
                      "x-yang-type": "snmpv2-tc:StorageType",
                      "readOnly": true
                    }
                  }
                },
                "readOnly": true
              }
            },
            "readOnly": true
          },
          "cpwVcPerfCurrentTable": {
            "type": "object",
            "description": "This table provides per-VC performance information for the  \n        current interval.",
            "properties": {
              "cpwVcPerfCurrentEntry": {
                "type": "array",
                "description": "An entry in this table is created by the agent for \n          every VC.",
                "items": {
                  "type": "object",
                  "properties": {
                    "cpwVcIndex": {
                      "type": "string",
                      "description": "cpwVcIndex",
                      "x-yang-type": "leafref",
                      "readOnly": true
                    },
                    "cpwVcPerfCurrentInHCPackets": {
                      "type": "integer",
                      "description": "High capacity counter for number of packets received \n            by the VC (from the PSN) in the current 15 minute \n            interval.",
                      "minimum": 0,
                      "readOnly": true
                    },
                    "cpwVcPerfCurrentInHCBytes": {
                      "type": "integer",
                      "description": "High capacity counter for number of bytes received \n            by the VC (from the PSN) in the current 15 minute \n            interval.",
                      "minimum": 0,
                      "readOnly": true
                    },
                    "cpwVcPerfCurrentOutHCPackets": {
                      "type": "integer",
                      "description": "High capacity counter for number of packets forwarded \n            by the VC (to the PSN) in the current 15 minute interval.",
                      "minimum": 0,
                      "readOnly": true
                    },
                    "cpwVcPerfCurrentOutHCBytes": {
                      "type": "integer",
                      "description": "High capacity counter for number of bytes forwarded \n            by the VC (to the PSN) in the current 15 minute interval.",
                      "minimum": 0,
                      "readOnly": true
                    }
                  }
                },
                "readOnly": true
              }
            },
            "readOnly": true
          },
          "cpwVcPerfIntervalTable": {
            "type": "object",
            "description": "This table provides per-VC performance information for  \n        each interval.",
            "properties": {
              "cpwVcPerfIntervalEntry": {
                "type": "array",
                "description": "An entry in this table is created agent for every VC.",
                "items": {
                  "type": "object",
                  "properties": {
                    "cpwVcIndex": {
                      "type": "string",
                      "description": "cpwVcIndex",
                      "x-yang-type": "leafref",
                      "readOnly": true
                    },
                    "cpwVcPerfIntervalNumber": {
                      "type": "integer",
                      "description": "A number N, between 1 and 96, which identifies the \n            interval for which the set of statistics is available. \n            The interval identified by 1 is the most recently \n            completed 15 minute interval, and the interval identified \n            by N is the interval immediately preceding the one \n            identified by N-1. \n            The minimum range of N is 1 through 4. The default range \n            is 1 to 32. The maximum range of N is 1 through 96.",
                      "minimum": -2147483648,
                      "maximum": 2147483647,
                      "readOnly": true
                    },
                    "cpwVcPerfIntervalValidData": {
                      "type": "boolean",
                      "description": "This variable indicates if the data for this interval \n            is valid.",
                      "readOnly": true
                    },
                    "cpwVcPerfIntervalTimeElapsed": {
                      "type": "integer",
                      "description": "The duration of a particular interval in seconds. \n            Adjustments in the system's time-of-day clock, may \n            cause the interval to be greater or less than the \n            normal value. Therefore this actual interval value \n            is provided.",
                      "minimum": -2147483648,
                      "maximum": 2147483647,
                      "readOnly": true
                    },
                    "cpwVcPerfIntervalInHCPackets": {
                      "type": "integer",
                      "description": "High capacity counter for number of packets received by \n            the VC (from the PSN) in a particular 15-minute interval.",
                      "minimum": 0,
                      "readOnly": true
                    },
                    "cpwVcPerfIntervalInHCBytes": {
                      "type": "integer",
                      "description": "High capacity counter for number of bytes received by the  \n            VC (from the PSN) in a particular 15-minute interval.",
                      "minimum": 0,
                      "readOnly": true
                    },
                    "cpwVcPerfIntervalOutHCPackets": {
                      "type": "integer",
                      "description": "High capacity counter for number of packets forwarded by  \n            the VC (to the PSN) in a particular 15-minute interval.",
                      "minimum": 0,
                      "readOnly": true
                    },
                    "cpwVcPerfIntervalOutHCBytes": {
                      "type": "integer",
                      "description": "High capacity counter for number of bytes forwarded by the  \n            VC (to the PSN) in a particular 15-minute interval.",
                      "minimum": 0,
                      "readOnly": true
                    }
                  }
                },
                "readOnly": true
              }
            },
            "readOnly": true
          },
          "cpwVcPerfTotalTable": {
            "type": "object",
            "description": "This table provides per-VC Performance information from VC  \n        start time.",
            "properties": {
              "cpwVcPerfTotalEntry": {
                "type": "array",
                "description": "An entry in this table is created agent for every VC.",
                "items": {
                  "type": "object",
                  "properties": {
                    "cpwVcIndex": {
                      "type": "string",
                      "description": "cpwVcIndex",
                      "x-yang-type": "leafref",
                      "readOnly": true
                    },
                    "cpwVcPerfTotalInHCPackets": {
                      "type": "integer",
                      "description": "High capacity counter for number of packets received by the  \n            VC (from the PSN).",
                      "minimum": 0,
                      "readOnly": true
                    },
                    "cpwVcPerfTotalInHCBytes": {
                      "type": "integer",
                      "description": "High capacity counter for number of bytes received by the  \n            VC (from the PSN).",
                      "minimum": 0,
                      "readOnly": true
                    },
                    "cpwVcPerfTotalOutHCPackets": {
                      "type": "integer",
                      "description": "High capacity counter for number of packets forwarded by  \n            the VC (to the PSN).",
                      "minimum": 0,
                      "readOnly": true
                    },
                    "cpwVcPerfTotalOutHCBytes": {
                      "type": "integer",
                      "description": "High capacity counter for number of bytes forwarded by the  \n            VC (to the PSN).",
                      "minimum": 0,
                      "readOnly": true
                    },
                    "cpwVcPerfTotalDiscontinuityTime": {
                      "type": "string",
                      "description": "The value of sysUpTime on the most recent occasion at \n            which any one or more of this row Counter32 or \n            Counter64 suffered a discontinuity. If no such \n            discontinuities have occurred since the last re- \n            initialization of the local management subsystem, then \n            this object contains a zero value.",
                      "x-yang-type": "yang:timestamp",
                      "readOnly": true
                    }
                  }
                },
                "readOnly": true
              }
            },
            "readOnly": true
          },
          "cpwVcIdMappingTable": {
            "type": "object",
            "description": "This table provides reverse mapping of the existing VCs  \n        based on vc type and VC ID ordering. This table is  \n        typically useful for EMS ordered query of existing VCs.",
            "properties": {
              "cpwVcIdMappingEntry": {
                "type": "array",
                "description": "An entry in this table is created by the agent for every  \n          VC configured by the cpwVcTable.",
                "items": {
                  "type": "object",
                  "properties": {
                    "cpwVcIdMappingVcType": {
                      "type": "string",
                      "description": "The VC type (indicate the service) of this VC.",
                      "x-yang-type": "cisco-ietf:CpwVcType",
                      "readOnly": true
                    },
                    "cpwVcIdMappingVcID": {
                      "type": "string",
                      "description": "The VC ID of this VC. Zero if the VC is configured  \n            manually.",
                      "x-yang-type": "cisco-ietf:CpwVcIDType",
                      "readOnly": true
                    },
                    "cpwVcIdMappingPeerAddrType": {
                      "type": "string",
                      "description": "IP address type of the peer node.",
                      "x-yang-type": "inet-address:InetAddressType",
                      "readOnly": true
                    },
                    "cpwVcIdMappingPeerAddr": {
                      "type": "string",
                      "description": "IP address type of the peer node.",
                      "x-yang-type": "inet-address:InetAddress",
                      "readOnly": true
                    },
                    "cpwVcIdMappingVcIndex": {
                      "type": "string",
                      "description": "The value that represent the VC in the cpwVcTable.",
                      "x-yang-type": "cisco-ietf:CpwVcIndexType",
                      "readOnly": true
                    }
                  }
                },
                "readOnly": true
              }
            },
            "readOnly": true
          },
          "cpwVcPeerMappingTable": {
            "type": "object",
            "description": "This table provides reverse mapping of the existing VCs  \n        based on vc type and VC ID ordering. This table is  \n        typically useful for EMS ordered query of existing VCs.",
            "properties": {
              "cpwVcPeerMappingEntry": {
                "type": "array",
                "description": "An entry in this table is created by the agent for every  \n          VC configured in cpwVcTable.",
                "items": {
                  "type": "object",
                  "properties": {
                    "cpwVcPeerMappingPeerAddrType": {
                      "type": "string",
                      "description": "IP address type of the peer node.",
                      "x-yang-type": "inet-address:InetAddressType",
                      "readOnly": true
                    },
                    "cpwVcPeerMappingPeerAddr": {
                      "type": "string",
                      "description": "IP address type of the peer node.",
                      "x-yang-type": "inet-address:InetAddress",
                      "readOnly": true
                    },
                    "cpwVcPeerMappingVcType": {
                      "type": "string",
                      "description": "The VC type (indicate the service) of this VC.",
                      "x-yang-type": "cisco-ietf:CpwVcType",
                      "readOnly": true
                    },
                    "cpwVcPeerMappingVcID": {
                      "type": "string",
                      "description": "The VC ID of this VC. Zero if the VC is configured  \n            manually.",
                      "x-yang-type": "cisco-ietf:CpwVcIDType",
                      "readOnly": true
                    },
                    "cpwVcPeerMappingVcIndex": {
                      "type": "string",
                      "description": "The value that represent the VC in the cpwVcTable.",
                      "x-yang-type": "cisco-ietf:CpwVcIndexType",
                      "readOnly": true
                    }
                  }
                },
                "readOnly": true
              }
            },
            "readOnly": true
          }
        }
      },
      "CISCO-IETF-PW-MIB_object-1": {
        "type": "object",
        "description": "object-1",
        "properties": {
          "cpwVcIndex": {
            "type": "string",
            "description": "cpwVcIndex",
            "x-yang-type": "leafref",
            "readOnly": true
          },
          "cpwVcOperStatus": {
            "type": "string",
            "description": "cpwVcOperStatus",
            "x-yang-type": "leafref",
            "readOnly": true
          }
        }
      },
      "CISCO-IETF-PW-MIB_object-2": {
        "type": "object",
        "description": "object-2",
        "properties": {
          "cpwVcIndex": {
            "type": "string",
            "description": "cpwVcIndex",
            "x-yang-type": "leafref",
            "readOnly": true
          },
          "cpwVcOperStatus": {
            "type": "string",
            "description": "cpwVcOperStatus",
            "x-yang-type": "leafref",
            "readOnly": true
          }
        }
      },
      "CISCO-IETF-PW-MIB_cpwVcEntry": {
        "type": "array",
        "description": "A row in this table represents an emulated virtual \n          connection (VC) across a packet network. It is indexed by \n          cpwVcIndex, which uniquely identifying a singular  \n          connection.",
        "items": {
          "type": "object",
          "properties": {
            "cpwVcIndex": {
              "type": "string",
              "description": "Index for the conceptual row identifying a VC within  \n            this PW Emulation VC table.",
              "x-yang-type": "cisco-ietf:CpwVcIndexType",
              "readOnly": true
            },
            "cpwVcType": {
              "type": "string",
              "description": "This value indicate the service to be carried over \n            this VC.  \n            Note: the exact set of VC types is yet to be worked  \n            out by the WG.",
              "x-yang-type": "cisco-ietf:CpwVcType",
              "readOnly": true
            },
            "cpwVcOwner": {
              "type": "string",
              "description": "Set by the operator to indicate the protocol responsible  \n            for establishing this VC. Value 'manual' is used in all \n            cases where no maintenance protocol (PW signaling) is used  \n            to set-up the VC, i.e. require configuration of entries in \n            the VC tables including VC labels, etc. The value  \n            'maintenanceProtocol' is used in case of standard \n            signaling of the VC for the specific PSN, for example LDP \n            for MPLS PSN as specified in <draft- draft-martini- \n            l2circuit-trans-mpls> or L2TP control protocol.  \n            Value 'other' is used for other types of signaling.",
              "readOnly": true
            },
            "cpwVcPsnType": {
              "type": "string",
              "description": "Set by the operator to indicate the PSN type on which this  \n            VC will be carried. Based on this object, the relevant PSN  \n            table entries are created in the in the PSN specific MIB  \n            modules. For example, if mpls(1) is defined, the agent  \n            create an entry in cpwVcMplsTable, which further define the  \n            MPLS PSN configuration. \n            Note: the exact set of PSN types is yet to be worked  \n            out by the WG.",
              "readOnly": true
            },
            "cpwVcSetUpPriority": {
              "type": "integer",
              "description": "This object define the relative set-up priority of the VC   \n            in a lowest-to-highest fashion, where 0 is the highest  \n            priority. VCs with the same priority are treated with \n            equal priority. Dropped VC will be set 'dormant' (as \n            indicated in cpwVcOperStatus). \n            This value is significant if there are competing resources \n            between VCs and the implementation support this feature. \n            If not supported or not relevant, the value of zero MUST \n            be used.",
              "minimum": -2147483648,
              "maximum": 2147483647,
              "readOnly": true
            },
            "cpwVcHoldingPriority": {
              "type": "integer",
              "description": "This object define the relative holding priority of the VC   \n            in a lowest-to-highest fashion, where 0 is the highest  \n            priority. VCs with the same priority are treated with \n            equal priority. Dropped VC will be set 'dormant' (as \n            indicated in cpwVcOperStatus). \n            This value is significant if there are competing resources \n            between VCs and the implementation support this feature. \n            If not supported or not relevant, the value of zero MUST \n            be used.",
              "minimum": -2147483648,
              "maximum": 2147483647,
              "readOnly": true
            },
            "cpwVcInboundMode": {
              "type": "string",
              "description": "This object is used to enable greater security for  \n            implementation that use per platform VC label space. In  \n            strict mode, packets coming from the PSN are accepted only  \n            from tunnels that are associated to the same VC via the  \n            inbound tunnel table in the case of MPLS, or as identified  \n            by the source IP address in case of L2TP or IP PSN. The  \n            entries in the inbound tunnel table are either explicitly  \n            configured or implicitly known by the maintenance protocol  \n            used for VC set-up. \n            \n            If such association is not known, not configured or not  \n            desired, loose mode should be configured, and the node  \n            should accept the packet based on the VC label only  \n            regardless of the outer tunnel used to carry the VC.",
              "readOnly": true
            },
            "cpwVcPeerAddrType": {
              "type": "string",
              "description": "Denotes the address type of the peer node maintenance \n            protocol (signaling) address if PW maintenance protocol is \n            used for the VC creation. It should be set to  \n            'unknown' if PE/PW maintenance protocol is not used,  \n            i.e. cpwVcOwner is set to 'manual'.",
              "x-yang-type": "inet-address:InetAddressType",
              "readOnly": true
            },
            "cpwVcPeerAddr": {
              "type": "string",
              "description": "This object contains the value of of the peer node address \n            of the PW/PE maintenance protocol entity. This object  \n            should contain a value of 0 if not relevant (manual  \n            configuration of the VC).",
              "x-yang-type": "inet-address:InetAddress",
              "readOnly": true
            },
            "cpwVcID": {
              "type": "string",
              "description": "Used in the outgoing VC ID field within the 'Virtual \n            Circuit FEC Element' when LDP signaling is used or PW ID  \n            AVP for L2TP.",
              "x-yang-type": "cisco-ietf:CpwVcIDType",
              "readOnly": true
            },
            "cpwVcLocalGroupID": {
              "type": "string",
              "description": "Used in the Group ID field sent to the peer PWES  \n            within the maintenance protocol used for VC setup,  \n            zero if not used.",
              "x-yang-type": "cisco-ietf:CpwGroupID",
              "readOnly": true
            },
            "cpwVcControlWord": {
              "type": "boolean",
              "description": "Define if the control word will be sent with each packet by  \n            the local node.",
              "readOnly": true
            },
            "cpwVcLocalIfMtu": {
              "type": "integer",
              "description": "If not equal zero, the optional IfMtu object in the  \n            maintenance protocol will be sent with this value,  \n            representing the locally supported MTU size over the  \n            interface (or the virtual interface) associated with the  \n            VC.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "cpwVcLocalIfString": {
              "type": "boolean",
              "description": "Each VC is associated to an interface (or a virtual  \n            interface) in the ifTable of the node as part of the \n            service configuration. This object defines if the  \n            maintenance protocol will send the interface's name as \n            appears on the ifTable in the name object as part of the \n            maintenance protocol. If set to false, the optional element \n            will not be sent.",
              "readOnly": true
            },
            "cpwVcRemoteGroupID": {
              "type": "string",
              "description": "Obtained from the Group ID field as received via the  \n            maintenance protocol used for VC setup, zero if not used.  \n            Value of 0xFFFF shall be used if the object is yet to be  \n            defined by the VC maintenance protocol.",
              "x-yang-type": "cisco-ietf:CpwGroupID",
              "readOnly": true
            },
            "cpwVcRemoteControlWord": {
              "type": "string",
              "description": "If maintenance protocol is used for VC establishment, this  \n            parameter indicates the received status of the control word  \n            usage, i.e. if packets will be received with control word \n            or not. The value of 'notYetKnown' is used while the \n            maintenance protocol has not yet received the indication  \n            from the remote node. \n            In manual configuration of the VC this parameters indicate  \n            to the local node what is the expected encapsulation for \n            the received packets.",
              "readOnly": true
            },
            "cpwVcRemoteIfMtu": {
              "type": "integer",
              "description": "The remote interface MTU as (optionally) received from the \n            remote node via the maintenance protocol. Should be zero if \n            this parameter is not available or not used.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "cpwVcRemoteIfString": {
              "type": "string",
              "description": "Indicate the interface description string as received by \n            the maintenance protocol, MUST be NULL string if not  \n            applicable or not known yet.",
              "x-yang-type": "snmp-framework:SnmpAdminString",
              "readOnly": true
            },
            "cpwVcOutboundVcLabel": {
              "type": "integer",
              "description": "The VC label used in the outbound direction (i.e. toward  \n            the PSN). It may be set up manually if owner is 'manual' or  \n            automatically otherwise. Examples: For MPLS PSN, it  \n            represents the 20 bits of VC tag, for L2TP it represent the \n            32 bits Session ID. \n            If the label is not yet known (signaling in process), the  \n            object should return a value of 0xFFFF.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "cpwVcInboundVcLabel": {
              "type": "integer",
              "description": "The VC label used in the inbound direction (i.e. packets  \n            received from the PSN. It may be set up manually if owner \n            is 'manual' or automatically otherwise.  \n            Examples: For MPLS PSN, it represents the 20 bits of VC \n            tag, for L2TP it represent the 32 bits Session ID. \n            If the label is not yet known (signaling in process), the  \n            object should return a value of 0xFFFF.",
              "minimum": 0,
              "maximum": 4294967295,
              "readOnly": true
            },
            "cpwVcName": {
              "type": "string",
              "description": "The canonical name assigned to the VC.",
              "x-yang-type": "snmp-framework:SnmpAdminString",
              "readOnly": true
            },
            "cpwVcDescr": {
              "type": "string",
              "description": "A textual string containing information about the VC.  \n            If there is no description this object contains a zero \n            length string.",
              "x-yang-type": "snmp-framework:SnmpAdminString",
              "readOnly": true
            },
            "cpwVcCreateTime": {
              "type": "string",
              "description": "System time when this VC was created.",
              "x-yang-type": "yang:timestamp",
              "readOnly": true
            },
            "cpwVcUpTime": {
              "type": "string",
              "description": "Number of consecutive ticks this VC has been 'up' in \n            both directions together (i.e. 'up' is observed in  \n            cpwVcOperStatus.)",
              "x-yang-type": "yang:timeticks",
              "readOnly": true
            },
            "cpwVcAdminStatus": {
              "type": "string",
              "description": "The desired operational status of this VC.",
              "readOnly": true
            },
            "cpwVcOperStatus": {
              "type": "string",
              "description": "Indicates the actual combined operational status of this  \n            VC. It is 'up' if both cpwVcInboundOperStatus and  \n            cpwVcOutboundOperStatus are in 'up' state. For all other  \n            values, if the VCs in both directions are of the same \n            value it reflects that value, otherwise it is set to the \n            most severe status out of the two statuses. The order of  \n            severance from most severe to less severe is: unknown,  \n            notPresent, down, lowerLayerDown, dormant, testing, up. \n            The operator may consult the per direction OperStatus for \n            fault isolation per direction.",
              "x-yang-type": "cisco-ietf:CpwOperStatus",
              "readOnly": true
            },
            "cpwVcInboundOperStatus": {
              "type": "string",
              "description": "Indicates the actual operational status of this VC in the  \n            inbound direction. \n            \n            - down:           if PW signaling has not yet finished, or \n                              indications available at the service  \n                              level indicate that the VC is not  \n                              passing packets. \n            - testing:        if AdminStatus at the VC level is set to  \n                              test. \n            - dormant:        The VC is not available because of the \n                              required resources are occupied VC with  \n                              higher priority VCs . \n            - notPresent:     Some component is missing to accomplish  \n                              the set up of the VC. \n            - lowerLayerDown: The underlying PSN is not in OperStatus  \n                              'up'.",
              "x-yang-type": "cisco-ietf:CpwOperStatus",
              "readOnly": true
            },
            "cpwVcOutboundOperStatus": {
              "type": "string",
              "description": "Indicates the actual operational status of this VC in the  \n            outbound direction \n            - down:           if PW signaling has not yet finished, or \n                              indications available at the service  \n                              level indicate that the VC is not \n                              passing packets. \n            - testing:        if AdminStatus at the VC level is set to  \n                              test. \n            - dormant:        The VC is not available because of the \n                              required resources are occupied VC with  \n                              higher priority VCs . \n            - notPresent:     Some component is missing to accomplish  \n                              the set up of the VC. \n            - lowerLayerDown: The underlying PSN is not in OperStatus  \n                              'up'.",
              "x-yang-type": "cisco-ietf:CpwOperStatus",
              "readOnly": true
            },
            "cpwVcTimeElapsed": {
              "type": "integer",
              "description": "The number of seconds, including partial seconds, \n            that have elapsed since the beginning of the current \n            measurement period. If, for some reason, such as an \n            adjustment in the system's time-of-day clock, the \n            current interval exceeds the maximum value, the \n            agent will return the maximum value.",
              "minimum": -2147483648,
              "maximum": 2147483647,
              "readOnly": true
            },
            "cpwVcValidIntervals": {
              "type": "integer",
              "description": "The number of previous 15-minute intervals \n            for which data was collected.  \n            An agent with PW capability must be capable of supporting at  \n            least n intervals. The minimum value of n is 4, The default  \n            of n is 32 and the maximum value of n is 96. \n            The value will be <n> unless the measurement was (re-)  \n            started within the last (<n>*15) minutes, in which case the  \n            value will be the number of complete 15 minute intervals for  \n            which the agent has at least some data. In certain cases  \n            (e.g., in the case where the agent is a proxy) it is  \n            possible that some intervals are unavailable.  In this case,  \n            this interval is the maximum interval number for which data  \n            is available.",
              "minimum": -2147483648,
              "maximum": 2147483647,
              "readOnly": true
            },
            "cpwVcRowStatus": {
              "type": "string",
              "description": "For creating, modifying, and deleting this row.",
              "x-yang-type": "snmpv2-tc:RowStatus",
              "readOnly": true
            },
            "cpwVcStorageType": {
              "type": "string",
              "description": "This variable indicates the storage type for this \n            object.",
              "x-yang-type": "snmpv2-tc:StorageType",
              "readOnly": true
            }
          }
        }
      },
      "CISCO-IETF-PW-MIB_cpwVcPerfCurrentEntry": {
        "type": "array",
        "description": "An entry in this table is created by the agent for \n          every VC.",
        "items": {
          "type": "object",
          "properties": {
            "cpwVcIndex": {
              "type": "string",
              "description": "cpwVcIndex",
              "x-yang-type": "leafref",
              "readOnly": true
            },
            "cpwVcPerfCurrentInHCPackets": {
              "type": "integer",
              "description": "High capacity counter for number of packets received \n            by the VC (from the PSN) in the current 15 minute \n            interval.",
              "minimum": 0,
              "readOnly": true
            },
            "cpwVcPerfCurrentInHCBytes": {
              "type": "integer",
              "description": "High capacity counter for number of bytes received \n            by the VC (from the PSN) in the current 15 minute \n            interval.",
              "minimum": 0,
              "readOnly": true
            },
            "cpwVcPerfCurrentOutHCPackets": {
              "type": "integer",
              "description": "High capacity counter for number of packets forwarded \n            by the VC (to the PSN) in the current 15 minute interval.",
              "minimum": 0,
              "readOnly": true
            },
            "cpwVcPerfCurrentOutHCBytes": {
              "type": "integer",
              "description": "High capacity counter for number of bytes forwarded \n            by the VC (to the PSN) in the current 15 minute interval.",
              "minimum": 0,
              "readOnly": true
            }
          }
        }
      },
      "CISCO-IETF-PW-MIB_cpwVcPerfIntervalEntry": {
        "type": "array",
        "description": "An entry in this table is created agent for every VC.",
        "items": {
          "type": "object",
          "properties": {
            "cpwVcIndex": {
              "type": "string",
              "description": "cpwVcIndex",
              "x-yang-type": "leafref",
              "readOnly": true
            },
            "cpwVcPerfIntervalNumber": {
              "type": "integer",
              "description": "A number N, between 1 and 96, which identifies the \n            interval for which the set of statistics is available. \n            The interval identified by 1 is the most recently \n            completed 15 minute interval, and the interval identified \n            by N is the interval immediately preceding the one \n            identified by N-1. \n            The minimum range of N is 1 through 4. The default range \n            is 1 to 32. The maximum range of N is 1 through 96.",
              "minimum": -2147483648,
              "maximum": 2147483647,
              "readOnly": true
            },
            "cpwVcPerfIntervalValidData": {
              "type": "boolean",
              "description": "This variable indicates if the data for this interval \n            is valid.",
              "readOnly": true
            },
            "cpwVcPerfIntervalTimeElapsed": {
              "type": "integer",
              "description": "The duration of a particular interval in seconds. \n            Adjustments in the system's time-of-day clock, may \n            cause the interval to be greater or less than the \n            normal value. Therefore this actual interval value \n            is provided.",
              "minimum": -2147483648,
              "maximum": 2147483647,
              "readOnly": true
            },
            "cpwVcPerfIntervalInHCPackets": {
              "type": "integer",
              "description": "High capacity counter for number of packets received by \n            the VC (from the PSN) in a particular 15-minute interval.",
              "minimum": 0,
              "readOnly": true
            },
            "cpwVcPerfIntervalInHCBytes": {
              "type": "integer",
              "description": "High capacity counter for number of bytes received by the  \n            VC (from the PSN) in a particular 15-minute interval.",
              "minimum": 0,
              "readOnly": true
            },
            "cpwVcPerfIntervalOutHCPackets": {
              "type": "integer",
              "description": "High capacity counter for number of packets forwarded by  \n            the VC (to the PSN) in a particular 15-minute interval.",
              "minimum": 0,
              "readOnly": true
            },
            "cpwVcPerfIntervalOutHCBytes": {
              "type": "integer",
              "description": "High capacity counter for number of bytes forwarded by the  \n            VC (to the PSN) in a particular 15-minute interval.",
              "minimum": 0,
              "readOnly": true
            }
          }
        }
      },
      "CISCO-IETF-PW-MIB_cpwVcPerfTotalEntry": {
        "type": "array",
        "description": "An entry in this table is created agent for every VC.",
        "items": {
          "type": "object",
          "properties": {
            "cpwVcIndex": {
              "type": "string",
              "description": "cpwVcIndex",
              "x-yang-type": "leafref",
              "readOnly": true
            },
            "cpwVcPerfTotalInHCPackets": {
              "type": "integer",
              "description": "High capacity counter for number of packets received by the  \n            VC (from the PSN).",
              "minimum": 0,
              "readOnly": true
            },
            "cpwVcPerfTotalInHCBytes": {
              "type": "integer",
              "description": "High capacity counter for number of bytes received by the  \n            VC (from the PSN).",
              "minimum": 0,
              "readOnly": true
            },
            "cpwVcPerfTotalOutHCPackets": {
              "type": "integer",
              "description": "High capacity counter for number of packets forwarded by  \n            the VC (to the PSN).",
              "minimum": 0,
              "readOnly": true
            },
            "cpwVcPerfTotalOutHCBytes": {
              "type": "integer",
              "description": "High capacity counter for number of bytes forwarded by the  \n            VC (to the PSN).",
              "minimum": 0,
              "readOnly": true
            },
            "cpwVcPerfTotalDiscontinuityTime": {
              "type": "string",
              "description": "The value of sysUpTime on the most recent occasion at \n            which any one or more of this row Counter32 or \n            Counter64 suffered a discontinuity. If no such \n            discontinuities have occurred since the last re- \n            initialization of the local management subsystem, then \n            this object contains a zero value.",
              "x-yang-type": "yang:timestamp",
              "readOnly": true
            }
          }
        }
      },
      "CISCO-IETF-PW-MIB_cpwVcIdMappingEntry": {
        "type": "array",
        "description": "An entry in this table is created by the agent for every  \n          VC configured by the cpwVcTable.",
        "items": {
          "type": "object",
          "properties": {
            "cpwVcIdMappingVcType": {
              "type": "string",
              "description": "The VC type (indicate the service) of this VC.",
              "x-yang-type": "cisco-ietf:CpwVcType",
              "readOnly": true
            },
            "cpwVcIdMappingVcID": {
              "type": "string",
              "description": "The VC ID of this VC. Zero if the VC is configured  \n            manually.",
              "x-yang-type": "cisco-ietf:CpwVcIDType",
              "readOnly": true
            },
            "cpwVcIdMappingPeerAddrType": {
              "type": "string",
              "description": "IP address type of the peer node.",
              "x-yang-type": "inet-address:InetAddressType",
              "readOnly": true
            },
            "cpwVcIdMappingPeerAddr": {
              "type": "string",
              "description": "IP address type of the peer node.",
              "x-yang-type": "inet-address:InetAddress",
              "readOnly": true
            },
            "cpwVcIdMappingVcIndex": {
              "type": "string",
              "description": "The value that represent the VC in the cpwVcTable.",
              "x-yang-type": "cisco-ietf:CpwVcIndexType",
              "readOnly": true
            }
          }
        }
      },
      "CISCO-IETF-PW-MIB_cpwVcPeerMappingEntry": {
        "type": "array",
        "description": "An entry in this table is created by the agent for every  \n          VC configured in cpwVcTable.",
        "items": {
          "type": "object",
          "properties": {
            "cpwVcPeerMappingPeerAddrType": {
              "type": "string",
              "description": "IP address type of the peer node.",
              "x-yang-type": "inet-address:InetAddressType",
              "readOnly": true
            },
            "cpwVcPeerMappingPeerAddr": {
              "type": "string",
              "description": "IP address type of the peer node.",
              "x-yang-type": "inet-address:InetAddress",
              "readOnly": true
            },
            "cpwVcPeerMappingVcType": {
              "type": "string",
              "description": "The VC type (indicate the service) of this VC.",
              "x-yang-type": "cisco-ietf:CpwVcType",
              "readOnly": true
            },
            "cpwVcPeerMappingVcID": {
              "type": "string",
              "description": "The VC ID of this VC. Zero if the VC is configured  \n            manually.",
              "x-yang-type": "cisco-ietf:CpwVcIDType",
              "readOnly": true
            },
            "cpwVcPeerMappingVcIndex": {
              "type": "string",
              "description": "The value that represent the VC in the cpwVcTable.",
              "x-yang-type": "cisco-ietf:CpwVcIndexType",
              "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-IETF-PW-MIB",
      "description": "MIB operations for CISCO-IETF-PW-MIB"
    }
  ],
  "externalDocs": {
    "description": "Cisco SNMP Object Navigator",
    "url": "https://snmp.cloudapps.cisco.com/Support/IOS/do/BrowseMIB.do"
  }
}
